@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 +18 -14
- package/config/index.d.ts +3 -0
- package/config/index.js +3 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/amtext/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import
|
|
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
|
|
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
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
|
|
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;
|
package/config/index.js
ADDED
package/index.js
CHANGED