@knime/kds-components 0.18.0 → 0.18.2
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/accessories/Icon/useIcon.d.ts.map +1 -1
- package/dist/forms/_helper/InfoPopover/KdsInfoToggleButton.vue.d.ts +0 -2
- package/dist/forms/_helper/InfoPopover/KdsInfoToggleButton.vue.d.ts.map +1 -1
- package/dist/forms/_helper/VariablePopover/KdsVariableToggleButton.vue.d.ts +0 -2
- package/dist/forms/_helper/VariablePopover/KdsVariableToggleButton.vue.d.ts.map +1 -1
- package/dist/forms/inputs/BaseInput.vue.d.ts +6 -0
- package/dist/forms/inputs/BaseInput.vue.d.ts.map +1 -1
- package/dist/forms/inputs/ColorInput/ColorPicker.vue.d.ts.map +1 -1
- package/dist/forms/inputs/DateInput/KdsDateInput.vue.d.ts +6 -2
- package/dist/forms/inputs/DateInput/KdsDateInput.vue.d.ts.map +1 -1
- package/dist/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts +252 -0
- package/dist/forms/inputs/PasswordInput/KdsPasswordInput.vue.d.ts.map +1 -0
- package/dist/forms/inputs/PasswordInput/enums.d.ts +13 -0
- package/dist/forms/inputs/PasswordInput/enums.d.ts.map +1 -0
- package/dist/forms/inputs/PasswordInput/index.d.ts +4 -0
- package/dist/forms/inputs/PasswordInput/index.d.ts.map +1 -0
- package/dist/forms/inputs/PasswordInput/types.d.ts +25 -0
- package/dist/forms/inputs/PasswordInput/types.d.ts.map +1 -0
- package/dist/forms/inputs/TextInput/KdsTextInput.vue.d.ts.map +1 -1
- package/dist/forms/inputs/TextInput/types.d.ts +7 -1
- package/dist/forms/inputs/TextInput/types.d.ts.map +1 -1
- package/dist/forms/inputs/UsernameInput/KdsUsernameInput.vue.d.ts +250 -0
- package/dist/forms/inputs/UsernameInput/KdsUsernameInput.vue.d.ts.map +1 -0
- package/dist/forms/inputs/UsernameInput/enums.d.ts +6 -0
- package/dist/forms/inputs/UsernameInput/enums.d.ts.map +1 -0
- package/dist/forms/inputs/UsernameInput/index.d.ts +4 -0
- package/dist/forms/inputs/UsernameInput/index.d.ts.map +1 -0
- package/dist/forms/inputs/UsernameInput/types.d.ts +7 -0
- package/dist/forms/inputs/UsernameInput/types.d.ts.map +1 -0
- package/dist/forms/inputs/index.d.ts +4 -0
- package/dist/forms/inputs/index.d.ts.map +1 -1
- package/dist/forms/selects/Dropdown/DropdownContainer.vue.d.ts +6 -1
- package/dist/forms/selects/Dropdown/DropdownContainer.vue.d.ts.map +1 -1
- package/dist/forms/selects/Dropdown/MultiSelectDropdownContainer.vue.d.ts +6 -1
- package/dist/forms/selects/Dropdown/MultiSelectDropdownContainer.vue.d.ts.map +1 -1
- package/dist/index.css +79 -72
- package/dist/index.js +425 -157
- package/dist/index.js.map +1 -1
- package/dist/layouts/ResizeContainer/KdsResizeContainer.vue.d.ts +26 -0
- package/dist/layouts/ResizeContainer/KdsResizeContainer.vue.d.ts.map +1 -0
- package/dist/layouts/ResizeContainer/ResizeHandle/ResizeHandle.vue.d.ts +7 -0
- package/dist/layouts/ResizeContainer/ResizeHandle/ResizeHandle.vue.d.ts.map +1 -0
- package/dist/layouts/ResizeContainer/ResizeHandle/index.d.ts +3 -0
- package/dist/layouts/ResizeContainer/ResizeHandle/index.d.ts.map +1 -0
- package/dist/layouts/ResizeContainer/ResizeHandle/types.d.ts +14 -0
- package/dist/layouts/ResizeContainer/ResizeHandle/types.d.ts.map +1 -0
- package/dist/layouts/ResizeContainer/index.d.ts +3 -0
- package/dist/layouts/ResizeContainer/index.d.ts.map +1 -0
- package/dist/layouts/ResizeContainer/types.d.ts +37 -0
- package/dist/layouts/ResizeContainer/types.d.ts.map +1 -0
- package/dist/overlays/Popover/KdsPopover.vue.d.ts.map +1 -1
- package/dist/overlays/Popover/types.d.ts +0 -8
- package/dist/overlays/Popover/types.d.ts.map +1 -1
- package/dist/util/usePointerHandler.d.ts.map +1 -0
- package/package.json +4 -4
- package/dist/forms/inputs/ColorInput/usePointerHandler.d.ts.map +0 -1
- /package/dist/{forms/inputs/ColorInput → util}/usePointerHandler.d.ts +0 -0
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
import { KdsUsernameInputProps } from './types';
|
|
2
|
+
type __VLS_Props = KdsUsernameInputProps;
|
|
3
|
+
type __VLS_PublicProps = {
|
|
4
|
+
modelValue?: string;
|
|
5
|
+
} & __VLS_Props;
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
7
|
+
focus: () => void;
|
|
8
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: string) => any;
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
error: boolean;
|
|
15
|
+
validating: boolean;
|
|
16
|
+
preserveSubTextSpace: boolean;
|
|
17
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
18
|
+
baseInput: ({
|
|
19
|
+
$: import('vue').ComponentInternalInstance;
|
|
20
|
+
$data: {};
|
|
21
|
+
$props: {
|
|
22
|
+
readonly modelValue?: string | undefined;
|
|
23
|
+
readonly id?: string | undefined;
|
|
24
|
+
readonly type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | undefined;
|
|
25
|
+
readonly min?: number | string | undefined;
|
|
26
|
+
readonly max?: number | string | undefined;
|
|
27
|
+
readonly ariaExpanded?: boolean | undefined;
|
|
28
|
+
readonly step?: number | undefined;
|
|
29
|
+
readonly placeholder?: string | undefined;
|
|
30
|
+
readonly disabled?: boolean | undefined;
|
|
31
|
+
readonly leadingIcon?: import('../../../index.ts').KdsIconName | undefined;
|
|
32
|
+
readonly trailingIcon?: import('../../../index.ts').KdsIconName | undefined;
|
|
33
|
+
readonly error?: boolean | undefined;
|
|
34
|
+
readonly autocomplete?: string | undefined;
|
|
35
|
+
readonly ariaLabel?: string | undefined;
|
|
36
|
+
readonly ariaLabelledby?: string | undefined;
|
|
37
|
+
readonly ariaDescribedby?: string | undefined;
|
|
38
|
+
readonly ariaInvalid?: boolean | undefined;
|
|
39
|
+
readonly role?: string | undefined;
|
|
40
|
+
readonly ariaValuenow?: number | undefined;
|
|
41
|
+
readonly ariaValuemin?: number | undefined;
|
|
42
|
+
readonly ariaValuemax?: number | undefined;
|
|
43
|
+
readonly ariaValuetext?: string | undefined;
|
|
44
|
+
readonly ariaActivedescendant?: string | undefined;
|
|
45
|
+
readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
|
|
46
|
+
readonly ariaControls?: string | undefined;
|
|
47
|
+
readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
|
|
48
|
+
readonly unit?: string | undefined;
|
|
49
|
+
readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
50
|
+
readonly clearable?: boolean | undefined;
|
|
51
|
+
readonly pattern?: string | undefined;
|
|
52
|
+
readonly onInput?: ((event: Event) => any) | undefined;
|
|
53
|
+
readonly onClick?: ((event: MouseEvent) => any) | undefined;
|
|
54
|
+
readonly onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
55
|
+
readonly onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
56
|
+
readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
57
|
+
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
58
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
59
|
+
$attrs: import('vue').Attrs;
|
|
60
|
+
$refs: {
|
|
61
|
+
[x: string]: unknown;
|
|
62
|
+
} & {
|
|
63
|
+
input: HTMLInputElement;
|
|
64
|
+
};
|
|
65
|
+
$slots: Readonly<{
|
|
66
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
67
|
+
}>;
|
|
68
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
69
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
70
|
+
$host: Element | null;
|
|
71
|
+
$emit: ((event: "input", event: Event) => void) & ((event: "click", event: MouseEvent) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "focus", event: FocusEvent) => void) & ((event: "keydown", event: KeyboardEvent) => void) & ((event: "update:modelValue", value: string) => void);
|
|
72
|
+
$el: HTMLDivElement;
|
|
73
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
74
|
+
modelValue?: string;
|
|
75
|
+
} & {
|
|
76
|
+
id?: string;
|
|
77
|
+
type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
|
|
78
|
+
min?: number | string;
|
|
79
|
+
max?: number | string;
|
|
80
|
+
ariaExpanded?: boolean;
|
|
81
|
+
step?: number;
|
|
82
|
+
placeholder?: string;
|
|
83
|
+
disabled?: boolean;
|
|
84
|
+
leadingIcon?: import('../../../index.ts').KdsIconName;
|
|
85
|
+
trailingIcon?: import('../../../index.ts').KdsIconName;
|
|
86
|
+
error?: boolean;
|
|
87
|
+
autocomplete?: string;
|
|
88
|
+
ariaLabel?: string;
|
|
89
|
+
ariaLabelledby?: string;
|
|
90
|
+
ariaDescribedby?: string;
|
|
91
|
+
ariaInvalid?: boolean;
|
|
92
|
+
role?: string;
|
|
93
|
+
ariaValuenow?: number;
|
|
94
|
+
ariaValuemin?: number;
|
|
95
|
+
ariaValuemax?: number;
|
|
96
|
+
ariaValuetext?: string;
|
|
97
|
+
ariaActivedescendant?: string;
|
|
98
|
+
ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
99
|
+
ariaControls?: string;
|
|
100
|
+
ariaAutocomplete?: "none" | "inline" | "list" | "both";
|
|
101
|
+
unit?: string;
|
|
102
|
+
inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
103
|
+
clearable?: boolean;
|
|
104
|
+
pattern?: string;
|
|
105
|
+
}> & Readonly<{
|
|
106
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
107
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
108
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
109
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
110
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
111
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
112
|
+
}>, {
|
|
113
|
+
focus: () => void;
|
|
114
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
115
|
+
input: (event: Event) => any;
|
|
116
|
+
click: (event: MouseEvent) => any;
|
|
117
|
+
blur: (event: FocusEvent) => any;
|
|
118
|
+
focus: (event: FocusEvent) => any;
|
|
119
|
+
keydown: (event: KeyboardEvent) => any;
|
|
120
|
+
"update:modelValue": (value: string) => any;
|
|
121
|
+
}, string, {
|
|
122
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
|
|
123
|
+
pattern: string;
|
|
124
|
+
role: string;
|
|
125
|
+
placeholder: string;
|
|
126
|
+
disabled: boolean;
|
|
127
|
+
error: boolean;
|
|
128
|
+
leadingIcon: import('../../../index.ts').KdsIconName;
|
|
129
|
+
ariaLabel: string;
|
|
130
|
+
trailingIcon: import('../../../index.ts').KdsIconName;
|
|
131
|
+
id: string;
|
|
132
|
+
min: number | string;
|
|
133
|
+
max: number | string;
|
|
134
|
+
ariaExpanded: boolean;
|
|
135
|
+
step: number;
|
|
136
|
+
autocomplete: string;
|
|
137
|
+
ariaLabelledby: string;
|
|
138
|
+
ariaDescribedby: string;
|
|
139
|
+
ariaInvalid: boolean;
|
|
140
|
+
ariaValuenow: number;
|
|
141
|
+
ariaValuemin: number;
|
|
142
|
+
ariaValuemax: number;
|
|
143
|
+
ariaValuetext: string;
|
|
144
|
+
ariaActivedescendant: string;
|
|
145
|
+
ariaHaspopup: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
146
|
+
ariaControls: string;
|
|
147
|
+
ariaAutocomplete: "none" | "inline" | "list" | "both";
|
|
148
|
+
unit: string;
|
|
149
|
+
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
150
|
+
clearable: boolean;
|
|
151
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
152
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
153
|
+
created?: (() => void) | (() => void)[];
|
|
154
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
155
|
+
mounted?: (() => void) | (() => void)[];
|
|
156
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
157
|
+
updated?: (() => void) | (() => void)[];
|
|
158
|
+
activated?: (() => void) | (() => void)[];
|
|
159
|
+
deactivated?: (() => void) | (() => void)[];
|
|
160
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
161
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
162
|
+
destroyed?: (() => void) | (() => void)[];
|
|
163
|
+
unmounted?: (() => void) | (() => void)[];
|
|
164
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
165
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
166
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
167
|
+
};
|
|
168
|
+
$forceUpdate: () => void;
|
|
169
|
+
$nextTick: typeof import('vue').nextTick;
|
|
170
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
171
|
+
} & Readonly<{
|
|
172
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
|
|
173
|
+
pattern: string;
|
|
174
|
+
role: string;
|
|
175
|
+
placeholder: string;
|
|
176
|
+
disabled: boolean;
|
|
177
|
+
error: boolean;
|
|
178
|
+
leadingIcon: import('../../../index.ts').KdsIconName;
|
|
179
|
+
ariaLabel: string;
|
|
180
|
+
trailingIcon: import('../../../index.ts').KdsIconName;
|
|
181
|
+
id: string;
|
|
182
|
+
min: number | string;
|
|
183
|
+
max: number | string;
|
|
184
|
+
ariaExpanded: boolean;
|
|
185
|
+
step: number;
|
|
186
|
+
autocomplete: string;
|
|
187
|
+
ariaLabelledby: string;
|
|
188
|
+
ariaDescribedby: string;
|
|
189
|
+
ariaInvalid: boolean;
|
|
190
|
+
ariaValuenow: number;
|
|
191
|
+
ariaValuemin: number;
|
|
192
|
+
ariaValuemax: number;
|
|
193
|
+
ariaValuetext: string;
|
|
194
|
+
ariaActivedescendant: string;
|
|
195
|
+
ariaHaspopup: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
196
|
+
ariaControls: string;
|
|
197
|
+
ariaAutocomplete: "none" | "inline" | "list" | "both";
|
|
198
|
+
unit: string;
|
|
199
|
+
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
200
|
+
clearable: boolean;
|
|
201
|
+
}> & Omit<Readonly<{
|
|
202
|
+
modelValue?: string;
|
|
203
|
+
} & {
|
|
204
|
+
id?: string;
|
|
205
|
+
type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
|
|
206
|
+
min?: number | string;
|
|
207
|
+
max?: number | string;
|
|
208
|
+
ariaExpanded?: boolean;
|
|
209
|
+
step?: number;
|
|
210
|
+
placeholder?: string;
|
|
211
|
+
disabled?: boolean;
|
|
212
|
+
leadingIcon?: import('../../../index.ts').KdsIconName;
|
|
213
|
+
trailingIcon?: import('../../../index.ts').KdsIconName;
|
|
214
|
+
error?: boolean;
|
|
215
|
+
autocomplete?: string;
|
|
216
|
+
ariaLabel?: string;
|
|
217
|
+
ariaLabelledby?: string;
|
|
218
|
+
ariaDescribedby?: string;
|
|
219
|
+
ariaInvalid?: boolean;
|
|
220
|
+
role?: string;
|
|
221
|
+
ariaValuenow?: number;
|
|
222
|
+
ariaValuemin?: number;
|
|
223
|
+
ariaValuemax?: number;
|
|
224
|
+
ariaValuetext?: string;
|
|
225
|
+
ariaActivedescendant?: string;
|
|
226
|
+
ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
227
|
+
ariaControls?: string;
|
|
228
|
+
ariaAutocomplete?: "none" | "inline" | "list" | "both";
|
|
229
|
+
unit?: string;
|
|
230
|
+
inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
231
|
+
clearable?: boolean;
|
|
232
|
+
pattern?: string;
|
|
233
|
+
}> & Readonly<{
|
|
234
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
235
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
236
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
237
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
238
|
+
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
239
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
240
|
+
}>, "focus" | ("type" | "pattern" | "role" | "placeholder" | "disabled" | "error" | "leadingIcon" | "ariaLabel" | "trailingIcon" | "id" | "min" | "max" | "ariaExpanded" | "step" | "autocomplete" | "ariaLabelledby" | "ariaDescribedby" | "ariaInvalid" | "ariaValuenow" | "ariaValuemin" | "ariaValuemax" | "ariaValuetext" | "ariaActivedescendant" | "ariaHaspopup" | "ariaControls" | "ariaAutocomplete" | "unit" | "inputmode" | "clearable")> & import('vue').ShallowUnwrapRef<{
|
|
241
|
+
focus: () => void;
|
|
242
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
243
|
+
$slots: {
|
|
244
|
+
leading?(_: {}): any;
|
|
245
|
+
trailing?(_: {}): any;
|
|
246
|
+
};
|
|
247
|
+
}) | null;
|
|
248
|
+
}, HTMLDivElement>;
|
|
249
|
+
export default _default;
|
|
250
|
+
//# sourceMappingURL=KdsUsernameInput.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KdsUsernameInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/inputs/UsernameInput/KdsUsernameInput.vue"],"names":[],"mappings":"AAkDA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAErD,KAAK,WAAW,GAAG,qBAAqB,CAAC;AA2BzC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAiHqwnB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAzB34nB,wBAWG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["../../../../src/forms/inputs/UsernameInput/enums.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,4BAA4B;;;CAG/B,CAAC;AAEX,eAAO,MAAM,6BAA6B,wBAEzC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/forms/inputs/UsernameInput/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AACrE,OAAO,EACL,4BAA4B,EAC5B,6BAA6B,GAC9B,MAAM,SAAS,CAAC;AACjB,mBAAmB,SAAS,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { KdsInputFieldProps } from '../types';
|
|
2
|
+
import { kdsUsernameInputAutocomplete } from './enums';
|
|
3
|
+
export type KdsUsernameInputAutocomplete = (typeof kdsUsernameInputAutocomplete)[keyof typeof kdsUsernameInputAutocomplete];
|
|
4
|
+
export type KdsUsernameInputProps = Omit<KdsInputFieldProps, "autocomplete"> & {
|
|
5
|
+
autocomplete?: KdsUsernameInputAutocomplete;
|
|
6
|
+
};
|
|
7
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/forms/inputs/UsernameInput/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAEnD,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,SAAS,CAAC;AAE5D,MAAM,MAAM,4BAA4B,GACtC,CAAC,OAAO,4BAA4B,CAAC,CAAC,MAAM,OAAO,4BAA4B,CAAC,CAAC;AAEnF,MAAM,MAAM,qBAAqB,GAAG,IAAI,CAAC,kBAAkB,EAAE,cAAc,CAAC,GAAG;IAC7E,YAAY,CAAC,EAAE,4BAA4B,CAAC;CAC7C,CAAC"}
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export * from './ColorInput';
|
|
2
2
|
export type * from './ColorInput';
|
|
3
|
+
export * from './PasswordInput';
|
|
4
|
+
export type * from './PasswordInput';
|
|
5
|
+
export * from './UsernameInput';
|
|
6
|
+
export type * from './UsernameInput';
|
|
3
7
|
export * from './DateInput';
|
|
4
8
|
export type * from './DateInput';
|
|
5
9
|
export * from './DateTimeFormatInput';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/forms/inputs/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,uBAAuB,CAAC;AACtC,mBAAmB,uBAAuB,CAAC;AAE3C,cAAc,eAAe,CAAC;AAC9B,mBAAmB,eAAe,CAAC;AAEnC,cAAc,gBAAgB,CAAC;AAC/B,mBAAmB,gBAAgB,CAAC;AAEpC,cAAc,eAAe,CAAC;AAC9B,mBAAmB,eAAe,CAAC;AAEnC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,YAAY,CAAC;AAC3B,mBAAmB,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/forms/inputs/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,mBAAmB,cAAc,CAAC;AAElC,cAAc,iBAAiB,CAAC;AAChC,mBAAmB,iBAAiB,CAAC;AAErC,cAAc,iBAAiB,CAAC;AAChC,mBAAmB,iBAAiB,CAAC;AAErC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,uBAAuB,CAAC;AACtC,mBAAmB,uBAAuB,CAAC;AAE3C,cAAc,eAAe,CAAC;AAC9B,mBAAmB,eAAe,CAAC;AAEnC,cAAc,gBAAgB,CAAC;AAC/B,mBAAmB,gBAAgB,CAAC;AAEpC,cAAc,eAAe,CAAC;AAC9B,mBAAmB,eAAe,CAAC;AAEnC,cAAc,aAAa,CAAC;AAC5B,mBAAmB,aAAa,CAAC;AAEjC,cAAc,YAAY,CAAC;AAC3B,mBAAmB,YAAY,CAAC"}
|
|
@@ -39,6 +39,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
39
39
|
readonly ariaActivedescendant?: string | undefined;
|
|
40
40
|
readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
|
|
41
41
|
readonly ariaControls?: string | undefined;
|
|
42
|
+
readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
|
|
42
43
|
readonly unit?: string | undefined;
|
|
43
44
|
readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
44
45
|
readonly clearable?: boolean | undefined;
|
|
@@ -91,6 +92,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
91
92
|
ariaActivedescendant?: string;
|
|
92
93
|
ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
93
94
|
ariaControls?: string;
|
|
95
|
+
ariaAutocomplete?: "none" | "inline" | "list" | "both";
|
|
94
96
|
unit?: string;
|
|
95
97
|
inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
96
98
|
clearable?: boolean;
|
|
@@ -137,6 +139,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
137
139
|
ariaActivedescendant: string;
|
|
138
140
|
ariaHaspopup: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
139
141
|
ariaControls: string;
|
|
142
|
+
ariaAutocomplete: "none" | "inline" | "list" | "both";
|
|
140
143
|
unit: string;
|
|
141
144
|
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
142
145
|
clearable: boolean;
|
|
@@ -186,6 +189,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
186
189
|
ariaActivedescendant: string;
|
|
187
190
|
ariaHaspopup: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
188
191
|
ariaControls: string;
|
|
192
|
+
ariaAutocomplete: "none" | "inline" | "list" | "both";
|
|
189
193
|
unit: string;
|
|
190
194
|
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
191
195
|
clearable: boolean;
|
|
@@ -216,6 +220,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
216
220
|
ariaActivedescendant?: string;
|
|
217
221
|
ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
218
222
|
ariaControls?: string;
|
|
223
|
+
ariaAutocomplete?: "none" | "inline" | "list" | "both";
|
|
219
224
|
unit?: string;
|
|
220
225
|
inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
221
226
|
clearable?: boolean;
|
|
@@ -227,7 +232,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
227
232
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
228
233
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
229
234
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
230
|
-
}>, "focus" | ("type" | "pattern" | "role" | "placeholder" | "disabled" | "error" | "leadingIcon" | "ariaLabel" | "trailingIcon" | "id" | "min" | "max" | "ariaExpanded" | "step" | "autocomplete" | "ariaLabelledby" | "ariaDescribedby" | "ariaInvalid" | "ariaValuenow" | "ariaValuemin" | "ariaValuemax" | "ariaValuetext" | "ariaActivedescendant" | "ariaHaspopup" | "ariaControls" | "unit" | "inputmode" | "clearable")> & import('vue').ShallowUnwrapRef<{
|
|
235
|
+
}>, "focus" | ("type" | "pattern" | "role" | "placeholder" | "disabled" | "error" | "leadingIcon" | "ariaLabel" | "trailingIcon" | "id" | "min" | "max" | "ariaExpanded" | "step" | "autocomplete" | "ariaLabelledby" | "ariaDescribedby" | "ariaInvalid" | "ariaValuenow" | "ariaValuemin" | "ariaValuemax" | "ariaValuetext" | "ariaActivedescendant" | "ariaHaspopup" | "ariaControls" | "ariaAutocomplete" | "unit" | "inputmode" | "clearable")> & import('vue').ShallowUnwrapRef<{
|
|
231
236
|
focus: () => void;
|
|
232
237
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
233
238
|
$slots: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropdownContainer.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/selects/Dropdown/DropdownContainer.vue"],"names":[],"mappings":"AA8IA,OAAO,KAAK,EAAE,sBAAsB,EAAqB,MAAM,SAAS,CAAC;AAEzE,KAAK,WAAW,GAAG,sBAAsB,CAAC;AA6E1C,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC
|
|
1
|
+
{"version":3,"file":"DropdownContainer.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/selects/Dropdown/DropdownContainer.vue"],"names":[],"mappings":"AA8IA,OAAO,KAAK,EAAE,sBAAsB,EAAqB,MAAM,SAAS,CAAC;AAEzE,KAAK,WAAW,GAAG,sBAAsB,CAAC;AA6E1C,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAgKsub,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAlB52b,wBAUG"}
|
|
@@ -47,6 +47,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
47
47
|
readonly ariaActivedescendant?: string | undefined;
|
|
48
48
|
readonly ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true" | undefined;
|
|
49
49
|
readonly ariaControls?: string | undefined;
|
|
50
|
+
readonly ariaAutocomplete?: "none" | "inline" | "list" | "both" | undefined;
|
|
50
51
|
readonly unit?: string | undefined;
|
|
51
52
|
readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
52
53
|
readonly clearable?: boolean | undefined;
|
|
@@ -99,6 +100,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
99
100
|
ariaActivedescendant?: string;
|
|
100
101
|
ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
101
102
|
ariaControls?: string;
|
|
103
|
+
ariaAutocomplete?: "none" | "inline" | "list" | "both";
|
|
102
104
|
unit?: string;
|
|
103
105
|
inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
104
106
|
clearable?: boolean;
|
|
@@ -145,6 +147,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
145
147
|
ariaActivedescendant: string;
|
|
146
148
|
ariaHaspopup: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
147
149
|
ariaControls: string;
|
|
150
|
+
ariaAutocomplete: "none" | "inline" | "list" | "both";
|
|
148
151
|
unit: string;
|
|
149
152
|
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
150
153
|
clearable: boolean;
|
|
@@ -194,6 +197,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
194
197
|
ariaActivedescendant: string;
|
|
195
198
|
ariaHaspopup: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
196
199
|
ariaControls: string;
|
|
200
|
+
ariaAutocomplete: "none" | "inline" | "list" | "both";
|
|
197
201
|
unit: string;
|
|
198
202
|
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
199
203
|
clearable: boolean;
|
|
@@ -224,6 +228,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
224
228
|
ariaActivedescendant?: string;
|
|
225
229
|
ariaHaspopup?: "listbox" | "menu" | "dialog" | "grid" | "tree" | "true";
|
|
226
230
|
ariaControls?: string;
|
|
231
|
+
ariaAutocomplete?: "none" | "inline" | "list" | "both";
|
|
227
232
|
unit?: string;
|
|
228
233
|
inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
229
234
|
clearable?: boolean;
|
|
@@ -235,7 +240,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
235
240
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
236
241
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
237
242
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
238
|
-
}>, "focus" | ("type" | "pattern" | "role" | "placeholder" | "disabled" | "error" | "leadingIcon" | "ariaLabel" | "trailingIcon" | "id" | "min" | "max" | "ariaExpanded" | "step" | "autocomplete" | "ariaLabelledby" | "ariaDescribedby" | "ariaInvalid" | "ariaValuenow" | "ariaValuemin" | "ariaValuemax" | "ariaValuetext" | "ariaActivedescendant" | "ariaHaspopup" | "ariaControls" | "unit" | "inputmode" | "clearable")> & import('vue').ShallowUnwrapRef<{
|
|
243
|
+
}>, "focus" | ("type" | "pattern" | "role" | "placeholder" | "disabled" | "error" | "leadingIcon" | "ariaLabel" | "trailingIcon" | "id" | "min" | "max" | "ariaExpanded" | "step" | "autocomplete" | "ariaLabelledby" | "ariaDescribedby" | "ariaInvalid" | "ariaValuenow" | "ariaValuemin" | "ariaValuemax" | "ariaValuetext" | "ariaActivedescendant" | "ariaHaspopup" | "ariaControls" | "ariaAutocomplete" | "unit" | "inputmode" | "clearable")> & import('vue').ShallowUnwrapRef<{
|
|
239
244
|
focus: () => void;
|
|
240
245
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
241
246
|
$slots: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MultiSelectDropdownContainer.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/selects/Dropdown/MultiSelectDropdownContainer.vue"],"names":[],"mappings":"AAgPA,OAAO,KAAK,EAEV,oCAAoC,EACrC,MAAM,SAAS,CAAC;AAIjB,KAAK,WAAW,GAAG,oCAAoC,CAAC;AA8JxD,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;CACtB,GAAG,WAAW,CAAC
|
|
1
|
+
{"version":3,"file":"MultiSelectDropdownContainer.vue.d.ts","sourceRoot":"","sources":["../../../../src/forms/selects/Dropdown/MultiSelectDropdownContainer.vue"],"names":[],"mappings":"AAgPA,OAAO,KAAK,EAEV,oCAAoC,EACrC,MAAM,SAAS,CAAC;AAIjB,KAAK,WAAW,GAAG,oCAAoC,CAAC;AA8JxD,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;CACtB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA4M0yK,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAzBh7K,wBAWG"}
|