@appmax_npm/ds-prime 1.0.0-alpha.47 → 1.0.0-alpha.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/amtext/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
- import type { DefineComponent, GlobalComponentConstructor, EmitFn } from '@primevue/core';
2
- import { VNode } from 'vue';
1
+ import { DefineComponent, VNode } from 'vue';
3
2
 
4
3
  export interface AmTextProps {
5
4
  as?: string;
@@ -13,9 +12,7 @@ export interface AmTextSlots {
13
12
  default: () => VNode[],
14
13
  };
15
14
 
16
- export interface AmTextEmitsOptions {};
17
-
18
- declare type AmTextEmits = EmitFn<AmTextEmitsOptions>;
15
+ export interface AmTextEmits {};
19
16
 
20
17
  /**
21
18
  * **DS Prime - AmText**
@@ -28,12 +25,19 @@ declare type AmTextEmits = EmitFn<AmTextEmitsOptions>;
28
25
  *
29
26
  */
30
27
 
31
- declare const AmText: DefineComponent<AmTextProps, AmTextSlots, AmTextEmits>;
32
-
33
- declare module 'vue' {
34
- export interface GlobalComponents {
35
- AmText: GlobalComponentConstructor<AmTextProps, AmTextSlots, AmTextEmits>;
36
- }
37
- }
38
-
39
- export default AmText;
28
+ declare const _default: DefineComponent<
29
+ AmTextProps, // Props
30
+ {}, // Raw bindings (deixe como um objeto vazio se não houver)
31
+ {}, // Data (deixe como um objeto vazio se não houver)
32
+ {}, // Computed options (deixe como um objeto vazio se não houver)
33
+ {}, // Methods (deixe como um objeto vazio se não houver)
34
+ {}, // Mixin (deixe como um objeto vazio se não houver)
35
+ {}, // Extends (deixe como um objeto vazio se não houver)
36
+ AmTextEmits, // Emits
37
+ string, // Events name (tipicamente `string`, pode ser `keyof AmTextEmits` também)
38
+ {}, // Defaults (deixe como um objeto vazio se não houver)
39
+ {}, // Injeções providas (deixe como um objeto vazio se não houver)
40
+ AmTextSlots // Slots
41
+ >;
42
+
43
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export * from './colors';
2
+ export * from './preset';
3
+ export * from './theme';
@@ -0,0 +1,3 @@
1
+ export * from './colors';
2
+ export * from './preset';
3
+ export * from './theme';
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import Primevue from 'primevue/config';
2
- import { AmDSPrimeConfig } from './config/theme';
2
+ import { AmDSPrimeConfig } from './config';
3
3
  import ToastService from 'primevue/toastservice';
4
4
  import Tooltip from 'primevue/tooltip';
5
5
  import './css/index.css';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appmax_npm/ds-prime",
3
- "version": "1.0.0-alpha.47",
3
+ "version": "1.0.0-alpha.48",
4
4
  "description": "Design System da Appmax baseado no Primevue",
5
5
  "author": "Appmax",
6
6
  "exports": {