@dronico/droni-kit 1.10.0 → 1.12.0
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/CHANGELOG.md +25 -0
- package/dist/droni-kit.cjs.js +9 -9
- package/dist/droni-kit.css +1 -1
- package/dist/droni-kit.es.js +409 -459
- package/dist/index.d.ts +2 -1
- package/dist/stories/Elements/DuiCard.stories.d.ts +92 -0
- package/dist/stories/Elements/DuiCard.vue.d.ts +31 -0
- package/dist/stories/Forms/DuiInput.stories.d.ts +20 -186
- package/dist/stories/Forms/DuiInput.vue.d.ts +1 -118
- package/dist/stories/Forms/DuiLabel.stories.d.ts +161 -0
- package/dist/stories/Forms/DuiLabel.vue.d.ts +74 -0
- package/dist/stories/Forms/DuiSelect.stories.d.ts +22 -97
- package/dist/stories/Forms/DuiSelect.vue.d.ts +10 -64
- package/dist/stories/Forms/DuiTextarea.stories.d.ts +10 -105
- package/dist/stories/Forms/DuiTextarea.vue.d.ts +1 -64
- package/package.json +1 -1
|
@@ -11,34 +11,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
11
11
|
type: BooleanConstructor;
|
|
12
12
|
default: boolean;
|
|
13
13
|
};
|
|
14
|
-
disabled: {
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
placeholder: {
|
|
19
|
-
type: StringConstructor;
|
|
20
|
-
default: undefined;
|
|
21
|
-
};
|
|
22
|
-
name: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
default: undefined;
|
|
25
|
-
};
|
|
26
|
-
id: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: undefined;
|
|
29
|
-
};
|
|
30
|
-
required: {
|
|
31
|
-
type: BooleanConstructor;
|
|
32
|
-
default: boolean;
|
|
33
|
-
};
|
|
34
|
-
label: {
|
|
35
|
-
type: StringConstructor;
|
|
36
|
-
default: undefined;
|
|
37
|
-
};
|
|
38
|
-
readonly: {
|
|
39
|
-
type: BooleanConstructor;
|
|
40
|
-
default: boolean;
|
|
41
|
-
};
|
|
42
14
|
rounded: {
|
|
43
15
|
type: () => "all" | "top" | "bottom" | "left" | "right" | "none";
|
|
44
16
|
default: string;
|
|
@@ -66,34 +38,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
66
38
|
type: BooleanConstructor;
|
|
67
39
|
default: boolean;
|
|
68
40
|
};
|
|
69
|
-
disabled: {
|
|
70
|
-
type: BooleanConstructor;
|
|
71
|
-
default: boolean;
|
|
72
|
-
};
|
|
73
|
-
placeholder: {
|
|
74
|
-
type: StringConstructor;
|
|
75
|
-
default: undefined;
|
|
76
|
-
};
|
|
77
|
-
name: {
|
|
78
|
-
type: StringConstructor;
|
|
79
|
-
default: undefined;
|
|
80
|
-
};
|
|
81
|
-
id: {
|
|
82
|
-
type: StringConstructor;
|
|
83
|
-
default: undefined;
|
|
84
|
-
};
|
|
85
|
-
required: {
|
|
86
|
-
type: BooleanConstructor;
|
|
87
|
-
default: boolean;
|
|
88
|
-
};
|
|
89
|
-
label: {
|
|
90
|
-
type: StringConstructor;
|
|
91
|
-
default: undefined;
|
|
92
|
-
};
|
|
93
|
-
readonly: {
|
|
94
|
-
type: BooleanConstructor;
|
|
95
|
-
default: boolean;
|
|
96
|
-
};
|
|
97
41
|
rounded: {
|
|
98
42
|
type: () => "all" | "top" | "bottom" | "left" | "right" | "none";
|
|
99
43
|
default: string;
|
|
@@ -109,18 +53,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
109
53
|
}>> & Readonly<{
|
|
110
54
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
111
55
|
}>, {
|
|
112
|
-
name: string;
|
|
113
56
|
size: "sm" | "md" | "lg";
|
|
114
|
-
disabled: boolean;
|
|
115
57
|
block: boolean;
|
|
116
58
|
rounded: "all" | "top" | "bottom" | "left" | "right" | "none";
|
|
117
|
-
label: string;
|
|
118
59
|
modelValue: string;
|
|
119
|
-
placeholder: string;
|
|
120
|
-
id: string;
|
|
121
|
-
required: boolean;
|
|
122
|
-
readonly: boolean;
|
|
123
60
|
autoheight: boolean;
|
|
124
61
|
resize: "none" | "both" | "horizontal" | "vertical";
|
|
125
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
62
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
126
63
|
export default _default;
|