@knime/kds-components 0.28.7 → 0.28.9
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/dist/index.css +53 -48
- package/dist/index.js +113 -48
- package/dist/index.js.map +1 -1
- package/dist/src/accessories/MissingValueIcon/KdsMissingValueIcon.vue.d.ts +7 -0
- package/dist/src/accessories/MissingValueIcon/KdsMissingValueIcon.vue.d.ts.map +1 -0
- package/dist/src/accessories/MissingValueIcon/index.d.ts +2 -0
- package/dist/src/accessories/MissingValueIcon/index.d.ts.map +1 -0
- package/dist/src/accessories/index.d.ts +1 -0
- package/dist/src/accessories/index.d.ts.map +1 -1
- package/dist/src/buttons/KdsMenuButton/KdsMenuButton.vue.d.ts +29 -19
- package/dist/src/buttons/KdsMenuButton/KdsMenuButton.vue.d.ts.map +1 -1
- package/dist/src/buttons/KdsSplitButton/KdsSplitButton.vue.d.ts +15 -15
- package/dist/src/containers/Menu/KdsMenu.vue.d.ts +30 -30
- package/dist/src/containers/MenuContainer/KdsMenuItem.vue.d.ts.map +1 -1
- package/dist/src/containers/MenuContainer/types.d.ts +5 -0
- package/dist/src/containers/MenuContainer/types.d.ts.map +1 -1
- package/dist/src/forms/_helper/InfoPopover/KdsInfoToggleButton.vue.d.ts +30 -30
- package/dist/src/forms/_helper/VariablePopover/KdsVariableToggleButton.vue.d.ts +30 -30
- package/dist/src/forms/inputs/BaseInput.vue.d.ts +1 -1
- package/dist/src/forms/inputs/BaseInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/ColorInput/KdsColorInput.vue.d.ts +15 -15
- package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts +18 -18
- package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/DateTimeFormatInput/KdsDateTimeFormatInput.vue.d.ts +15 -15
- package/dist/src/forms/inputs/IntervalInput/KdsIntervalInput.vue.d.ts +17 -17
- package/dist/src/forms/inputs/NumberInput/KdsNumberInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/NumberInput/KdsNumberInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/PatternInput/KdsPatternInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/PatternInput/KdsPatternInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts +18 -18
- package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/TextInput/KdsTextInput.vue.d.ts +18 -18
- package/dist/src/forms/inputs/TextInput/KdsTextInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/Textarea/KdsTextarea.vue.d.ts +1 -1
- package/dist/src/forms/inputs/Textarea/KdsTextarea.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/TimeInput/KdsTimeInput.vue.d.ts +30 -30
- package/dist/src/forms/inputs/TimeInput/KdsTimeInput.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/TimeInput/TimePicker.vue.d.ts +12 -12
- package/dist/src/forms/inputs/TimeInput/TimePicker.vue.d.ts.map +1 -1
- package/dist/src/forms/inputs/UsernameInput/KdsUsernameInput.vue.d.ts +3 -3
- package/dist/src/forms/inputs/UsernameInput/KdsUsernameInput.vue.d.ts.map +1 -1
- package/dist/src/forms/selects/Dropdown/BaseDropdown.vue.d.ts +3 -1
- package/dist/src/forms/selects/Dropdown/BaseDropdown.vue.d.ts.map +1 -1
- package/dist/src/forms/selects/Dropdown/DropdownContainer.vue.d.ts +2 -2
- package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts +48 -18
- package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts.map +1 -1
- package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts +48 -18
- package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts.map +1 -1
- package/dist/src/forms/selects/Dropdown/MultiSelectDropdownContainer.vue.d.ts +2 -2
- package/dist/src/forms/types.d.ts +1 -1
- package/dist/src/forms/types.d.ts.map +1 -1
- package/dist/src/overlays/index.d.ts +2 -0
- package/dist/src/overlays/index.d.ts.map +1 -1
- package/dist/src/patterns/ResponsiveButtonGroup/KdsResponsiveButtonGroup.vue.d.ts +30 -19
- package/dist/src/patterns/ResponsiveButtonGroup/KdsResponsiveButtonGroup.vue.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -17,18 +17,18 @@ declare function __VLS_template(): {
|
|
|
17
17
|
$data: {};
|
|
18
18
|
$props: ({
|
|
19
19
|
readonly modelValue?: boolean | undefined;
|
|
20
|
-
readonly role?: import('../../../
|
|
21
|
-
readonly popoverType?: import('../../../
|
|
20
|
+
readonly role?: import('../../../index.ts').KdsPopoverRole | undefined;
|
|
21
|
+
readonly popoverType?: import('../../../index.ts').KdsPopoverType | undefined;
|
|
22
22
|
readonly fullWidth?: boolean | undefined;
|
|
23
23
|
readonly maxInlineSize?: string | undefined;
|
|
24
24
|
readonly content?: string | undefined;
|
|
25
|
-
readonly placement?: Exclude<import('../../../
|
|
25
|
+
readonly placement?: Exclude<import('../../../index.ts').KdsPopoverPlacement, "custom"> | undefined;
|
|
26
26
|
readonly customPlacementPosition?: never | undefined;
|
|
27
27
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
28
28
|
} | {
|
|
29
29
|
readonly modelValue?: boolean | undefined;
|
|
30
|
-
readonly role?: import('../../../
|
|
31
|
-
readonly popoverType?: import('../../../
|
|
30
|
+
readonly role?: import('../../../index.ts').KdsPopoverRole | undefined;
|
|
31
|
+
readonly popoverType?: import('../../../index.ts').KdsPopoverType | undefined;
|
|
32
32
|
readonly fullWidth?: boolean | undefined;
|
|
33
33
|
readonly maxInlineSize?: string | undefined;
|
|
34
34
|
readonly content?: string | undefined;
|
|
@@ -56,19 +56,19 @@ declare function __VLS_template(): {
|
|
|
56
56
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
57
57
|
modelValue?: boolean;
|
|
58
58
|
} & {
|
|
59
|
-
role?: import('../../../
|
|
60
|
-
popoverType?: import('../../../
|
|
59
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
60
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
61
61
|
fullWidth?: boolean;
|
|
62
62
|
maxInlineSize?: string;
|
|
63
63
|
content?: string;
|
|
64
64
|
} & {
|
|
65
|
-
placement?: Exclude<import('../../../
|
|
65
|
+
placement?: Exclude<import('../../../index.ts').KdsPopoverPlacement, "custom">;
|
|
66
66
|
customPlacementPosition?: never;
|
|
67
67
|
}) | ({
|
|
68
68
|
modelValue?: boolean;
|
|
69
69
|
} & {
|
|
70
|
-
role?: import('../../../
|
|
71
|
-
popoverType?: import('../../../
|
|
70
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
71
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
72
72
|
fullWidth?: boolean;
|
|
73
73
|
maxInlineSize?: string;
|
|
74
74
|
content?: string;
|
|
@@ -108,19 +108,19 @@ declare function __VLS_template(): {
|
|
|
108
108
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
109
109
|
modelValue?: boolean;
|
|
110
110
|
} & {
|
|
111
|
-
role?: import('../../../
|
|
112
|
-
popoverType?: import('../../../
|
|
111
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
112
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
113
113
|
fullWidth?: boolean;
|
|
114
114
|
maxInlineSize?: string;
|
|
115
115
|
content?: string;
|
|
116
116
|
} & {
|
|
117
|
-
placement?: Exclude<import('../../../
|
|
117
|
+
placement?: Exclude<import('../../../index.ts').KdsPopoverPlacement, "custom">;
|
|
118
118
|
customPlacementPosition?: never;
|
|
119
119
|
}) | ({
|
|
120
120
|
modelValue?: boolean;
|
|
121
121
|
} & {
|
|
122
|
-
role?: import('../../../
|
|
123
|
-
popoverType?: import('../../../
|
|
122
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
123
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
124
124
|
fullWidth?: boolean;
|
|
125
125
|
maxInlineSize?: string;
|
|
126
126
|
content?: string;
|
|
@@ -154,18 +154,18 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
154
154
|
$data: {};
|
|
155
155
|
$props: ({
|
|
156
156
|
readonly modelValue?: boolean | undefined;
|
|
157
|
-
readonly role?: import('../../../
|
|
158
|
-
readonly popoverType?: import('../../../
|
|
157
|
+
readonly role?: import('../../../index.ts').KdsPopoverRole | undefined;
|
|
158
|
+
readonly popoverType?: import('../../../index.ts').KdsPopoverType | undefined;
|
|
159
159
|
readonly fullWidth?: boolean | undefined;
|
|
160
160
|
readonly maxInlineSize?: string | undefined;
|
|
161
161
|
readonly content?: string | undefined;
|
|
162
|
-
readonly placement?: Exclude<import('../../../
|
|
162
|
+
readonly placement?: Exclude<import('../../../index.ts').KdsPopoverPlacement, "custom"> | undefined;
|
|
163
163
|
readonly customPlacementPosition?: never | undefined;
|
|
164
164
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
165
165
|
} | {
|
|
166
166
|
readonly modelValue?: boolean | undefined;
|
|
167
|
-
readonly role?: import('../../../
|
|
168
|
-
readonly popoverType?: import('../../../
|
|
167
|
+
readonly role?: import('../../../index.ts').KdsPopoverRole | undefined;
|
|
168
|
+
readonly popoverType?: import('../../../index.ts').KdsPopoverType | undefined;
|
|
169
169
|
readonly fullWidth?: boolean | undefined;
|
|
170
170
|
readonly maxInlineSize?: string | undefined;
|
|
171
171
|
readonly content?: string | undefined;
|
|
@@ -193,19 +193,19 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
193
193
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
194
194
|
modelValue?: boolean;
|
|
195
195
|
} & {
|
|
196
|
-
role?: import('../../../
|
|
197
|
-
popoverType?: import('../../../
|
|
196
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
197
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
198
198
|
fullWidth?: boolean;
|
|
199
199
|
maxInlineSize?: string;
|
|
200
200
|
content?: string;
|
|
201
201
|
} & {
|
|
202
|
-
placement?: Exclude<import('../../../
|
|
202
|
+
placement?: Exclude<import('../../../index.ts').KdsPopoverPlacement, "custom">;
|
|
203
203
|
customPlacementPosition?: never;
|
|
204
204
|
}) | ({
|
|
205
205
|
modelValue?: boolean;
|
|
206
206
|
} & {
|
|
207
|
-
role?: import('../../../
|
|
208
|
-
popoverType?: import('../../../
|
|
207
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
208
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
209
209
|
fullWidth?: boolean;
|
|
210
210
|
maxInlineSize?: string;
|
|
211
211
|
content?: string;
|
|
@@ -245,19 +245,19 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
245
245
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
246
246
|
modelValue?: boolean;
|
|
247
247
|
} & {
|
|
248
|
-
role?: import('../../../
|
|
249
|
-
popoverType?: import('../../../
|
|
248
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
249
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
250
250
|
fullWidth?: boolean;
|
|
251
251
|
maxInlineSize?: string;
|
|
252
252
|
content?: string;
|
|
253
253
|
} & {
|
|
254
|
-
placement?: Exclude<import('../../../
|
|
254
|
+
placement?: Exclude<import('../../../index.ts').KdsPopoverPlacement, "custom">;
|
|
255
255
|
customPlacementPosition?: never;
|
|
256
256
|
}) | ({
|
|
257
257
|
modelValue?: boolean;
|
|
258
258
|
} & {
|
|
259
|
-
role?: import('../../../
|
|
260
|
-
popoverType?: import('../../../
|
|
259
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
260
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
261
261
|
fullWidth?: boolean;
|
|
262
262
|
maxInlineSize?: string;
|
|
263
263
|
content?: string;
|
|
@@ -149,7 +149,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
149
149
|
/**
|
|
150
150
|
* Focuses the input element
|
|
151
151
|
*/
|
|
152
|
-
focus: () => void;
|
|
152
|
+
focus: (options?: FocusOptions) => void;
|
|
153
153
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
154
154
|
input: (event: Event) => any;
|
|
155
155
|
click: (event: MouseEvent) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/inputs/BaseInput.vue"],"names":[],"mappings":"AA2jBA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAGhE,OAAO,EACL,KAAK,sBAAsB,EAG5B,MAAM,oBAAoB,CAAC;AAE5B,KAAK,cAAc,GAAG;IACpB;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,QAAQ,GAAG,KAAK,GAAG,KAAK,GAAG,QAAQ,CAAC;IAC3E;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACtB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACtB;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B;;OAEG;IACH,YAAY,CAAC,EAAE,WAAW,CAAC;IAC3B;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;OAGG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B;;;OAGG;IACH,YAAY,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC;IACxE;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,MAAM,GAAG,MAAM,CAAC;IACvD;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,SAAS,CAAC,EACN,MAAM,GACN,MAAM,GACN,KAAK,GACL,KAAK,GACL,OAAO,GACP,SAAS,GACT,SAAS,GACT,QAAQ,CAAC;IACb;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,QAAQ,CAAC,EAAE,sBAAsB,CAAC;CACnC,CAAC;AAEF,KAAK,WAAW,GAAG,cAAc,CAAC;AAwLlC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA+KT,OAAO,IAA6B;;yBAZrB,GAAG;0BACD,GAAG;;;;;;EAgBjC;AA2BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;IAvOnB;;OAEG
|
|
1
|
+
{"version":3,"file":"BaseInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/inputs/BaseInput.vue"],"names":[],"mappings":"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"}
|
|
@@ -80,18 +80,18 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
80
80
|
$data: {};
|
|
81
81
|
$props: ({
|
|
82
82
|
readonly modelValue?: boolean | undefined;
|
|
83
|
-
readonly role?: import('
|
|
84
|
-
readonly popoverType?: import('
|
|
83
|
+
readonly role?: import('../../..').KdsPopoverRole | undefined;
|
|
84
|
+
readonly popoverType?: import('../../..').KdsPopoverType | undefined;
|
|
85
85
|
readonly fullWidth?: boolean | undefined;
|
|
86
86
|
readonly maxInlineSize?: string | undefined;
|
|
87
87
|
readonly content?: string | undefined;
|
|
88
|
-
readonly placement?: Exclude<import('
|
|
88
|
+
readonly placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom"> | undefined;
|
|
89
89
|
readonly customPlacementPosition?: never | undefined;
|
|
90
90
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
91
91
|
} | {
|
|
92
92
|
readonly modelValue?: boolean | undefined;
|
|
93
|
-
readonly role?: import('
|
|
94
|
-
readonly popoverType?: import('
|
|
93
|
+
readonly role?: import('../../..').KdsPopoverRole | undefined;
|
|
94
|
+
readonly popoverType?: import('../../..').KdsPopoverType | undefined;
|
|
95
95
|
readonly fullWidth?: boolean | undefined;
|
|
96
96
|
readonly maxInlineSize?: string | undefined;
|
|
97
97
|
readonly content?: string | undefined;
|
|
@@ -119,19 +119,19 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
119
119
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
120
120
|
modelValue?: boolean;
|
|
121
121
|
} & {
|
|
122
|
-
role?: import('
|
|
123
|
-
popoverType?: import('
|
|
122
|
+
role?: import('../../..').KdsPopoverRole;
|
|
123
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
124
124
|
fullWidth?: boolean;
|
|
125
125
|
maxInlineSize?: string;
|
|
126
126
|
content?: string;
|
|
127
127
|
} & {
|
|
128
|
-
placement?: Exclude<import('
|
|
128
|
+
placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom">;
|
|
129
129
|
customPlacementPosition?: never;
|
|
130
130
|
}) | ({
|
|
131
131
|
modelValue?: boolean;
|
|
132
132
|
} & {
|
|
133
|
-
role?: import('
|
|
134
|
-
popoverType?: import('
|
|
133
|
+
role?: import('../../..').KdsPopoverRole;
|
|
134
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
135
135
|
fullWidth?: boolean;
|
|
136
136
|
maxInlineSize?: string;
|
|
137
137
|
content?: string;
|
|
@@ -171,19 +171,19 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
171
171
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
172
172
|
modelValue?: boolean;
|
|
173
173
|
} & {
|
|
174
|
-
role?: import('
|
|
175
|
-
popoverType?: import('
|
|
174
|
+
role?: import('../../..').KdsPopoverRole;
|
|
175
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
176
176
|
fullWidth?: boolean;
|
|
177
177
|
maxInlineSize?: string;
|
|
178
178
|
content?: string;
|
|
179
179
|
} & {
|
|
180
|
-
placement?: Exclude<import('
|
|
180
|
+
placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom">;
|
|
181
181
|
customPlacementPosition?: never;
|
|
182
182
|
}) | ({
|
|
183
183
|
modelValue?: boolean;
|
|
184
184
|
} & {
|
|
185
|
-
role?: import('
|
|
186
|
-
popoverType?: import('
|
|
185
|
+
role?: import('../../..').KdsPopoverRole;
|
|
186
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
187
187
|
fullWidth?: boolean;
|
|
188
188
|
maxInlineSize?: string;
|
|
189
189
|
content?: string;
|
|
@@ -6,7 +6,7 @@ type __VLS_PublicProps = {
|
|
|
6
6
|
modelValue?: Temporal.PlainDate | null;
|
|
7
7
|
} & __VLS_Props;
|
|
8
8
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
9
|
-
focus: () => void;
|
|
9
|
+
focus: (options?: FocusOptions) => void;
|
|
10
10
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
11
|
"update:modelValue": (value: Temporal.PlainDate | null) => any;
|
|
12
12
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -111,7 +111,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
111
111
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
112
112
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
113
113
|
}>, {
|
|
114
|
-
focus: () => void;
|
|
114
|
+
focus: (options?: FocusOptions) => void;
|
|
115
115
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
116
116
|
input: (event: Event) => any;
|
|
117
117
|
click: (event: MouseEvent) => any;
|
|
@@ -182,7 +182,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
182
182
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
183
183
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
184
184
|
}>, "focus"> & {
|
|
185
|
-
focus: () => void;
|
|
185
|
+
focus: (options?: FocusOptions) => void;
|
|
186
186
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
187
187
|
$slots: {
|
|
188
188
|
leading?(_: {}): any;
|
|
@@ -194,18 +194,18 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
194
194
|
$data: {};
|
|
195
195
|
$props: ({
|
|
196
196
|
readonly modelValue?: boolean | undefined;
|
|
197
|
-
readonly role?: import('../../../
|
|
198
|
-
readonly popoverType?: import('../../../
|
|
197
|
+
readonly role?: import('../../../index.ts').KdsPopoverRole | undefined;
|
|
198
|
+
readonly popoverType?: import('../../../index.ts').KdsPopoverType | undefined;
|
|
199
199
|
readonly fullWidth?: boolean | undefined;
|
|
200
200
|
readonly maxInlineSize?: string | undefined;
|
|
201
201
|
readonly content?: string | undefined;
|
|
202
|
-
readonly placement?: Exclude<import('../../../
|
|
202
|
+
readonly placement?: Exclude<import('../../../index.ts').KdsPopoverPlacement, "custom"> | undefined;
|
|
203
203
|
readonly customPlacementPosition?: never | undefined;
|
|
204
204
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
205
205
|
} | {
|
|
206
206
|
readonly modelValue?: boolean | undefined;
|
|
207
|
-
readonly role?: import('../../../
|
|
208
|
-
readonly popoverType?: import('../../../
|
|
207
|
+
readonly role?: import('../../../index.ts').KdsPopoverRole | undefined;
|
|
208
|
+
readonly popoverType?: import('../../../index.ts').KdsPopoverType | undefined;
|
|
209
209
|
readonly fullWidth?: boolean | undefined;
|
|
210
210
|
readonly maxInlineSize?: string | undefined;
|
|
211
211
|
readonly content?: string | undefined;
|
|
@@ -233,19 +233,19 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
233
233
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
234
234
|
modelValue?: boolean;
|
|
235
235
|
} & {
|
|
236
|
-
role?: import('../../../
|
|
237
|
-
popoverType?: import('../../../
|
|
236
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
237
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
238
238
|
fullWidth?: boolean;
|
|
239
239
|
maxInlineSize?: string;
|
|
240
240
|
content?: string;
|
|
241
241
|
} & {
|
|
242
|
-
placement?: Exclude<import('../../../
|
|
242
|
+
placement?: Exclude<import('../../../index.ts').KdsPopoverPlacement, "custom">;
|
|
243
243
|
customPlacementPosition?: never;
|
|
244
244
|
}) | ({
|
|
245
245
|
modelValue?: boolean;
|
|
246
246
|
} & {
|
|
247
|
-
role?: import('../../../
|
|
248
|
-
popoverType?: import('../../../
|
|
247
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
248
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
249
249
|
fullWidth?: boolean;
|
|
250
250
|
maxInlineSize?: string;
|
|
251
251
|
content?: string;
|
|
@@ -285,19 +285,19 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
285
285
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
286
286
|
modelValue?: boolean;
|
|
287
287
|
} & {
|
|
288
|
-
role?: import('../../../
|
|
289
|
-
popoverType?: import('../../../
|
|
288
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
289
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
290
290
|
fullWidth?: boolean;
|
|
291
291
|
maxInlineSize?: string;
|
|
292
292
|
content?: string;
|
|
293
293
|
} & {
|
|
294
|
-
placement?: Exclude<import('../../../
|
|
294
|
+
placement?: Exclude<import('../../../index.ts').KdsPopoverPlacement, "custom">;
|
|
295
295
|
customPlacementPosition?: never;
|
|
296
296
|
}) | ({
|
|
297
297
|
modelValue?: boolean;
|
|
298
298
|
} & {
|
|
299
|
-
role?: import('../../../
|
|
300
|
-
popoverType?: import('../../../
|
|
299
|
+
role?: import('../../../index.ts').KdsPopoverRole;
|
|
300
|
+
popoverType?: import('../../../index.ts').KdsPopoverType;
|
|
301
301
|
fullWidth?: boolean;
|
|
302
302
|
maxInlineSize?: string;
|
|
303
303
|
content?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsDateInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/DateInput/KdsDateInput.vue"],"names":[],"mappings":"AAkNA,OAAO,EAAY,QAAQ,EAA8B,MAAM,KAAK,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAS7C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAGpD,KAAK,WAAW,GAAG,iBAAiB,CAAC;AA6IrC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;CACtC,GAAG,WAAW,CAAC
|
|
1
|
+
{"version":3,"file":"KdsDateInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/DateInput/KdsDateInput.vue"],"names":[],"mappings":"AAkNA,OAAO,EAAY,QAAQ,EAA8B,MAAM,KAAK,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAS7C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAGpD,KAAK,WAAW,GAAG,iBAAiB,CAAC;AA6IrC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC;CACtC,GAAG,WAAW,CAAC;;mBA5JhB,CA7HsD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA4gBmxL,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlB/7L,wBAUG"}
|
|
@@ -92,18 +92,18 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
92
92
|
$data: {};
|
|
93
93
|
$props: ({
|
|
94
94
|
readonly modelValue?: boolean | undefined;
|
|
95
|
-
readonly role?: import('
|
|
96
|
-
readonly popoverType?: import('
|
|
95
|
+
readonly role?: import('../../..').KdsPopoverRole | undefined;
|
|
96
|
+
readonly popoverType?: import('../../..').KdsPopoverType | undefined;
|
|
97
97
|
readonly fullWidth?: boolean | undefined;
|
|
98
98
|
readonly maxInlineSize?: string | undefined;
|
|
99
99
|
readonly content?: string | undefined;
|
|
100
|
-
readonly placement?: Exclude<import('
|
|
100
|
+
readonly placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom"> | undefined;
|
|
101
101
|
readonly customPlacementPosition?: never | undefined;
|
|
102
102
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
103
103
|
} | {
|
|
104
104
|
readonly modelValue?: boolean | undefined;
|
|
105
|
-
readonly role?: import('
|
|
106
|
-
readonly popoverType?: import('
|
|
105
|
+
readonly role?: import('../../..').KdsPopoverRole | undefined;
|
|
106
|
+
readonly popoverType?: import('../../..').KdsPopoverType | undefined;
|
|
107
107
|
readonly fullWidth?: boolean | undefined;
|
|
108
108
|
readonly maxInlineSize?: string | undefined;
|
|
109
109
|
readonly content?: string | undefined;
|
|
@@ -131,19 +131,19 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
131
131
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
132
132
|
modelValue?: boolean;
|
|
133
133
|
} & {
|
|
134
|
-
role?: import('
|
|
135
|
-
popoverType?: import('
|
|
134
|
+
role?: import('../../..').KdsPopoverRole;
|
|
135
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
136
136
|
fullWidth?: boolean;
|
|
137
137
|
maxInlineSize?: string;
|
|
138
138
|
content?: string;
|
|
139
139
|
} & {
|
|
140
|
-
placement?: Exclude<import('
|
|
140
|
+
placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom">;
|
|
141
141
|
customPlacementPosition?: never;
|
|
142
142
|
}) | ({
|
|
143
143
|
modelValue?: boolean;
|
|
144
144
|
} & {
|
|
145
|
-
role?: import('
|
|
146
|
-
popoverType?: import('
|
|
145
|
+
role?: import('../../..').KdsPopoverRole;
|
|
146
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
147
147
|
fullWidth?: boolean;
|
|
148
148
|
maxInlineSize?: string;
|
|
149
149
|
content?: string;
|
|
@@ -183,19 +183,19 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
183
183
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
184
184
|
modelValue?: boolean;
|
|
185
185
|
} & {
|
|
186
|
-
role?: import('
|
|
187
|
-
popoverType?: import('
|
|
186
|
+
role?: import('../../..').KdsPopoverRole;
|
|
187
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
188
188
|
fullWidth?: boolean;
|
|
189
189
|
maxInlineSize?: string;
|
|
190
190
|
content?: string;
|
|
191
191
|
} & {
|
|
192
|
-
placement?: Exclude<import('
|
|
192
|
+
placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom">;
|
|
193
193
|
customPlacementPosition?: never;
|
|
194
194
|
}) | ({
|
|
195
195
|
modelValue?: boolean;
|
|
196
196
|
} & {
|
|
197
|
-
role?: import('
|
|
198
|
-
popoverType?: import('
|
|
197
|
+
role?: import('../../..').KdsPopoverRole;
|
|
198
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
199
199
|
fullWidth?: boolean;
|
|
200
200
|
maxInlineSize?: string;
|
|
201
201
|
content?: string;
|
|
@@ -187,7 +187,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
187
187
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
188
188
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
189
189
|
}>, {
|
|
190
|
-
focus: () => void;
|
|
190
|
+
focus: (options?: FocusOptions) => void;
|
|
191
191
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
192
192
|
input: (event: Event) => any;
|
|
193
193
|
click: (event: MouseEvent) => any;
|
|
@@ -258,7 +258,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
258
258
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
259
259
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
260
260
|
}>, "focus"> & {
|
|
261
|
-
focus: () => void;
|
|
261
|
+
focus: (options?: FocusOptions) => void;
|
|
262
262
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
263
263
|
$slots: {
|
|
264
264
|
leading?(_: {}): any;
|
|
@@ -270,18 +270,18 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
270
270
|
$data: {};
|
|
271
271
|
$props: ({
|
|
272
272
|
readonly modelValue?: boolean | undefined;
|
|
273
|
-
readonly role?: import('
|
|
274
|
-
readonly popoverType?: import('
|
|
273
|
+
readonly role?: import('../../..').KdsPopoverRole | undefined;
|
|
274
|
+
readonly popoverType?: import('../../..').KdsPopoverType | undefined;
|
|
275
275
|
readonly fullWidth?: boolean | undefined;
|
|
276
276
|
readonly maxInlineSize?: string | undefined;
|
|
277
277
|
readonly content?: string | undefined;
|
|
278
|
-
readonly placement?: Exclude<import('
|
|
278
|
+
readonly placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom"> | undefined;
|
|
279
279
|
readonly customPlacementPosition?: never | undefined;
|
|
280
280
|
readonly "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
281
281
|
} | {
|
|
282
282
|
readonly modelValue?: boolean | undefined;
|
|
283
|
-
readonly role?: import('
|
|
284
|
-
readonly popoverType?: import('
|
|
283
|
+
readonly role?: import('../../..').KdsPopoverRole | undefined;
|
|
284
|
+
readonly popoverType?: import('../../..').KdsPopoverType | undefined;
|
|
285
285
|
readonly fullWidth?: boolean | undefined;
|
|
286
286
|
readonly maxInlineSize?: string | undefined;
|
|
287
287
|
readonly content?: string | undefined;
|
|
@@ -309,19 +309,19 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
309
309
|
$options: import('vue').ComponentOptionsBase<Readonly<({
|
|
310
310
|
modelValue?: boolean;
|
|
311
311
|
} & {
|
|
312
|
-
role?: import('
|
|
313
|
-
popoverType?: import('
|
|
312
|
+
role?: import('../../..').KdsPopoverRole;
|
|
313
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
314
314
|
fullWidth?: boolean;
|
|
315
315
|
maxInlineSize?: string;
|
|
316
316
|
content?: string;
|
|
317
317
|
} & {
|
|
318
|
-
placement?: Exclude<import('
|
|
318
|
+
placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom">;
|
|
319
319
|
customPlacementPosition?: never;
|
|
320
320
|
}) | ({
|
|
321
321
|
modelValue?: boolean;
|
|
322
322
|
} & {
|
|
323
|
-
role?: import('
|
|
324
|
-
popoverType?: import('
|
|
323
|
+
role?: import('../../..').KdsPopoverRole;
|
|
324
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
325
325
|
fullWidth?: boolean;
|
|
326
326
|
maxInlineSize?: string;
|
|
327
327
|
content?: string;
|
|
@@ -361,19 +361,19 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
361
361
|
} & Readonly<{}> & Omit<{} & (Readonly<({
|
|
362
362
|
modelValue?: boolean;
|
|
363
363
|
} & {
|
|
364
|
-
role?: import('
|
|
365
|
-
popoverType?: import('
|
|
364
|
+
role?: import('../../..').KdsPopoverRole;
|
|
365
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
366
366
|
fullWidth?: boolean;
|
|
367
367
|
maxInlineSize?: string;
|
|
368
368
|
content?: string;
|
|
369
369
|
} & {
|
|
370
|
-
placement?: Exclude<import('
|
|
370
|
+
placement?: Exclude<import('../../..').KdsPopoverPlacement, "custom">;
|
|
371
371
|
customPlacementPosition?: never;
|
|
372
372
|
}) | ({
|
|
373
373
|
modelValue?: boolean;
|
|
374
374
|
} & {
|
|
375
|
-
role?: import('
|
|
376
|
-
popoverType?: import('
|
|
375
|
+
role?: import('../../..').KdsPopoverRole;
|
|
376
|
+
popoverType?: import('../../..').KdsPopoverType;
|
|
377
377
|
fullWidth?: boolean;
|
|
378
378
|
maxInlineSize?: string;
|
|
379
379
|
content?: string;
|
|
@@ -45,7 +45,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
45
45
|
max?: number;
|
|
46
46
|
step?: number;
|
|
47
47
|
}), {
|
|
48
|
-
focus: () => void;
|
|
48
|
+
focus: (options?: FocusOptions) => void;
|
|
49
49
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
50
50
|
"update:modelValue": (value: number) => any;
|
|
51
51
|
}, string, import('vue').PublicProps, Readonly<({
|
|
@@ -196,7 +196,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
196
196
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
197
197
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
198
198
|
}>, {
|
|
199
|
-
focus: () => void;
|
|
199
|
+
focus: (options?: FocusOptions) => void;
|
|
200
200
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
201
201
|
input: (event: Event) => any;
|
|
202
202
|
click: (event: MouseEvent) => any;
|
|
@@ -267,7 +267,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
267
267
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
268
268
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
269
269
|
}>, "focus"> & {
|
|
270
|
-
focus: () => void;
|
|
270
|
+
focus: (options?: FocusOptions) => void;
|
|
271
271
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
272
272
|
$slots: {
|
|
273
273
|
leading?(_: {}): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsNumberInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/NumberInput/KdsNumberInput.vue"],"names":[],"mappings":";iBAifa,MAAM;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM
|
|
1
|
+
{"version":3,"file":"KdsNumberInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/NumberInput/KdsNumberInput.vue"],"names":[],"mappings":";iBAifa,MAAM;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;mBA7NnB,CApKa;;;;iBAiYA,MAAM;;;;;;;;;;;;;;;;;;;;;;;iBAAN,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA4Po+G,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlB7mH,wBAUG"}
|
|
@@ -4,7 +4,7 @@ type __VLS_PublicProps = {
|
|
|
4
4
|
modelValue?: string;
|
|
5
5
|
} & __VLS_Props;
|
|
6
6
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
7
|
-
focus: () => void;
|
|
7
|
+
focus: (options?: FocusOptions) => void;
|
|
8
8
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
9
|
"update:modelValue": (value: string) => any;
|
|
10
10
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -109,7 +109,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
109
109
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
110
110
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
111
111
|
}>, {
|
|
112
|
-
focus: () => void;
|
|
112
|
+
focus: (options?: FocusOptions) => void;
|
|
113
113
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
114
114
|
input: (event: Event) => any;
|
|
115
115
|
click: (event: MouseEvent) => any;
|
|
@@ -180,7 +180,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
180
180
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
181
181
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
182
182
|
}>, "focus"> & {
|
|
183
|
-
focus: () => void;
|
|
183
|
+
focus: (options?: FocusOptions) => void;
|
|
184
184
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
185
185
|
$slots: {
|
|
186
186
|
leading?(_: {}): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KdsPasswordInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/PasswordInput/KdsPasswordInput.vue"],"names":[],"mappings":"AAmGA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAErD,KAAK,WAAW,GAAG,qBAAqB,CAAC;AAsCzC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC
|
|
1
|
+
{"version":3,"file":"KdsPasswordInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/forms/inputs/PasswordInput/KdsPasswordInput.vue"],"names":[],"mappings":"AAmGA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAErD,KAAK,WAAW,GAAG,qBAAqB,CAAC;AAsCzC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;mBAjDgC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAwPqhe,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlB5re,wBAUG"}
|
|
@@ -41,7 +41,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
41
41
|
disabled?: boolean;
|
|
42
42
|
autocomplete?: string;
|
|
43
43
|
}), {
|
|
44
|
-
focus: () => void;
|
|
44
|
+
focus: (options?: FocusOptions) => void;
|
|
45
45
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
46
46
|
"update:modelValue": (value: string) => any;
|
|
47
47
|
"update:regex": (value: string) => any;
|
|
@@ -196,7 +196,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
196
196
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
197
197
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
198
198
|
}>, {
|
|
199
|
-
focus: () => void;
|
|
199
|
+
focus: (options?: FocusOptions) => void;
|
|
200
200
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
201
201
|
input: (event: Event) => any;
|
|
202
202
|
click: (event: MouseEvent) => any;
|
|
@@ -267,7 +267,7 @@ declare const _default: import('vue').DefineComponent<({
|
|
|
267
267
|
onPaste?: ((event: ClipboardEvent) => any) | undefined;
|
|
268
268
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
269
269
|
}>, "focus"> & {
|
|
270
|
-
focus: () => void;
|
|
270
|
+
focus: (options?: FocusOptions) => void;
|
|
271
271
|
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
272
272
|
$slots: {
|
|
273
273
|
leading?(_: {}): any;
|