@strands.gg/accui 2.17.59 → 2.17.61
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/StrandsUIPlugin-5AOCDOcM.cjs.js +143 -0
- package/dist/StrandsUIPlugin-CCRrewS9.es.js +20587 -0
- package/dist/accui.css +1 -0
- package/dist/index.cjs.js +5 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.es.js +12948 -0
- package/dist/nuxt/module.cjs.js +23 -0
- package/dist/nuxt/module.d.ts +4 -0
- package/dist/nuxt/module.es.js +182 -0
- package/dist/nuxt/runtime/composables/useAuthenticatedFetch.cjs.js +1 -0
- package/dist/nuxt/runtime/composables/useAuthenticatedFetch.d.ts +20 -0
- package/dist/nuxt/runtime/composables/useAuthenticatedFetch.es.js +103 -0
- package/dist/nuxt/runtime/composables/useStrandsAuth.cjs.js +1 -0
- package/dist/nuxt/runtime/composables/useStrandsAuth.d.ts +111 -0
- package/dist/nuxt/runtime/composables/useStrandsAuth.es.js +100 -0
- package/dist/nuxt/runtime/composables/useStrandsOAuth.d.ts +8 -0
- package/dist/nuxt/runtime/middleware/auth.d.ts +6 -0
- package/dist/nuxt/runtime/middleware/auth.global.cjs.js +1 -0
- package/dist/nuxt/runtime/middleware/auth.global.d.ts +2 -0
- package/dist/nuxt/runtime/middleware/auth.global.es.js +17 -0
- package/dist/nuxt/runtime/middleware/guest.d.ts +6 -0
- package/dist/nuxt/runtime/plugin.client.cjs.js +1 -0
- package/dist/nuxt/runtime/plugin.client.d.ts +2 -0
- package/dist/nuxt/runtime/plugin.client.es.js +21 -0
- package/dist/nuxt/runtime/plugin.server.cjs.js +1 -0
- package/dist/nuxt/runtime/plugin.server.d.ts +2 -0
- package/dist/nuxt/runtime/plugin.server.es.js +15 -0
- package/dist/nuxt/runtime/plugins/auth-interceptor.client.cjs.js +1 -0
- package/dist/nuxt/runtime/plugins/auth-interceptor.client.d.ts +9 -0
- package/dist/nuxt/runtime/plugins/auth-interceptor.client.es.js +46 -0
- package/dist/nuxt/types.d.ts +51 -0
- package/dist/nuxt.cjs.js +1 -0
- package/dist/nuxt.d.ts +4 -0
- package/dist/nuxt.es.js +11 -0
- package/dist/robots.txt +4 -0
- package/dist/shared/defaults.d.ts +2 -0
- package/dist/sitemap.xml +9 -0
- package/dist/types/composables.d.ts +97 -0
- package/dist/types/index.d.ts +263 -0
- package/dist/types/oauth.d.ts +420 -0
- package/dist/useDarkMode-BdG1G2mj.es.js +102 -0
- package/dist/useDarkMode-Dd0Q5Nnz.cjs.js +1 -0
- package/dist/useStrandsAuth-DSLFMDTj.es.js +717 -0
- package/dist/useStrandsAuth-Db5ZGvxL.cjs.js +1 -0
- package/dist/useStrandsConfig-B2UXxIbT.es.js +213 -0
- package/dist/useStrandsConfig-BYOAEt9d.cjs.js +1 -0
- package/dist/utils/colors.d.ts +10 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/slots.d.ts +1 -0
- package/dist/utils/validation.d.ts +12 -0
- package/dist/vite/index.d.ts +2 -0
- package/dist/vite/plugin.d.ts +68 -0
- package/dist/vite.cjs.js +29 -0
- package/dist/vite.d.ts +6 -0
- package/dist/vite.es.js +92 -0
- package/dist/vue/components/SignedIn.vue.d.ts +35 -0
- package/dist/vue/components/StrandsAuth.vue.d.ts +24 -0
- package/dist/vue/components/StrandsBackupCodesModal.vue.d.ts +11 -0
- package/dist/vue/components/StrandsCompleteSignUp.vue.d.ts +20 -0
- package/dist/vue/components/StrandsConfigProvider.vue.d.ts +21 -0
- package/dist/vue/components/StrandsConfirmModal.vue.d.ts +21 -0
- package/dist/vue/components/StrandsEmailMfaSetupModal.vue.d.ts +11 -0
- package/dist/vue/components/StrandsHardwareKeySetupModal.vue.d.ts +14 -0
- package/dist/vue/components/StrandsLogo.vue.d.ts +9 -0
- package/dist/vue/components/StrandsMFASetup.vue.d.ts +15 -0
- package/dist/vue/components/StrandsMfaModal.vue.d.ts +11 -0
- package/dist/vue/components/StrandsMfaVerification.vue.d.ts +16 -0
- package/dist/vue/components/StrandsNav/StrandsNav.vue.d.ts +43 -0
- package/dist/vue/components/StrandsNav/StrandsNavItem.vue.d.ts +26 -0
- package/dist/vue/components/StrandsNav/index.d.ts +8 -0
- package/dist/vue/components/StrandsNav/types.d.ts +12 -0
- package/dist/vue/components/StrandsOAuthButton.vue.d.ts +18 -0
- package/dist/vue/components/StrandsOAuthCallback.vue.d.ts +12 -0
- package/dist/vue/components/StrandsPasswordReset.vue.d.ts +14 -0
- package/dist/vue/components/StrandsSecuredFooter.vue.d.ts +21 -0
- package/dist/vue/components/StrandsSessionsModal.vue.d.ts +11 -0
- package/dist/vue/components/StrandsSettingsModal.vue.d.ts +32 -0
- package/dist/vue/components/StrandsSignIn.vue.d.ts +20 -0
- package/dist/vue/components/StrandsSignUp.vue.d.ts +18 -0
- package/dist/vue/components/StrandsTotpSetupModal.vue.d.ts +11 -0
- package/dist/vue/components/StrandsUserButton.vue.d.ts +54 -0
- package/dist/vue/components/StrandsUserProfile.vue.d.ts +25 -0
- package/dist/vue/components/SvgIcon.vue.d.ts +16 -0
- package/dist/vue/components/VirtualList.vue.d.ts +36 -0
- package/dist/vue/components/icons/IconGithub.vue.d.ts +2 -0
- package/dist/vue/components/icons/IconGoogle.vue.d.ts +2 -0
- package/dist/vue/components/icons/index.d.ts +2 -0
- package/dist/vue/components/index.d.ts +29 -0
- package/dist/vue/composables/useAuthenticatedFetch.d.ts +22 -0
- package/dist/vue/composables/useDarkMode.d.ts +53 -0
- package/dist/vue/composables/useFloatingPosition.d.ts +22 -0
- package/dist/vue/composables/useModalStack.d.ts +86 -0
- package/dist/vue/composables/useOAuthProviders.d.ts +73 -0
- package/dist/vue/composables/useStrandsAuth.d.ts +2 -0
- package/dist/vue/composables/useStrandsConfig.d.ts +5 -0
- package/dist/vue/composables/useStrandsMfa.d.ts +36 -0
- package/dist/vue/composables/useStrandsOAuth.d.ts +10 -0
- package/dist/vue/composables/useTheme.d.ts +18 -0
- package/dist/vue/index.d.ts +16 -0
- package/dist/vue/plugins/StrandsUIPlugin.d.ts +19 -0
- package/dist/vue/ui/UiAlert.vue.d.ts +30 -0
- package/dist/vue/ui/UiApp.vue.d.ts +26 -0
- package/dist/vue/ui/UiAvatarEditor.vue.d.ts +24 -0
- package/dist/vue/ui/UiButton/UiButton.Anchor.vue.d.ts +42 -0
- package/dist/vue/ui/UiButton/UiButton.Content.vue.d.ts +32 -0
- package/dist/vue/ui/UiButton/UiButton.Nuxt.vue.d.ts +39 -0
- package/dist/vue/ui/UiButton/index.d.ts +11 -0
- package/dist/vue/ui/UiButton.vue.d.ts +77 -0
- package/dist/vue/ui/UiCard.vue.d.ts +38 -0
- package/dist/vue/ui/UiCheckboxGroup.vue.d.ts +46 -0
- package/dist/vue/ui/UiColorPicker/UiColorPicker.Button.vue.d.ts +19 -0
- package/dist/vue/ui/UiColorPicker/UiColorPicker.Picker.vue.d.ts +31 -0
- package/dist/vue/ui/UiColorPicker.vue.d.ts +34 -0
- package/dist/vue/ui/UiDateTimePicker.vue.d.ts +36 -0
- package/dist/vue/ui/UiDivider.vue.d.ts +43 -0
- package/dist/vue/ui/UiHero.vue.d.ts +53 -0
- package/dist/vue/ui/UiInput/UiInput.Date.vue.d.ts +30 -0
- package/dist/vue/ui/UiInput/UiInput.DateTime.vue.d.ts +34 -0
- package/dist/vue/ui/UiInput/UiInput.File.vue.d.ts +59 -0
- package/dist/vue/ui/UiInput/UiInput.Pincode.vue.d.ts +58 -0
- package/dist/vue/ui/UiInput/UiInput.RichText.vue.d.ts +66 -0
- package/dist/vue/ui/UiInput/UiInput.Select.vue.d.ts +806 -0
- package/dist/vue/ui/UiInput/UiInput.Text.vue.d.ts +55 -0
- package/dist/vue/ui/UiInput/UiInput.Textarea.vue.d.ts +60 -0
- package/dist/vue/ui/UiInput/UiInput.Time.vue.d.ts +30 -0
- package/dist/vue/ui/UiInput.vue.d.ts +84 -0
- package/dist/vue/ui/UiLevelProgress.vue.d.ts +18 -0
- package/dist/vue/ui/UiLink.vue.d.ts +42 -0
- package/dist/vue/ui/UiLoader.vue.d.ts +18 -0
- package/dist/vue/ui/UiMegaMenu/UiMegaMenu.Group.vue.d.ts +20 -0
- package/dist/vue/ui/UiMegaMenu/UiMegaMenu.Item.vue.d.ts +35 -0
- package/dist/vue/ui/UiMegaMenu/UiMegaMenu.Panel.vue.d.ts +28 -0
- package/dist/vue/ui/UiMegaMenu/index.d.ts +4 -0
- package/dist/vue/ui/UiMegaMenu.vue.d.ts +48 -0
- package/dist/vue/ui/UiModal.vue.d.ts +71 -0
- package/dist/vue/ui/UiPill.vue.d.ts +43 -0
- package/dist/vue/ui/UiRadioGroup.vue.d.ts +40 -0
- package/dist/vue/ui/UiSlider.vue.d.ts +53 -0
- package/dist/vue/ui/UiTable.vue.d.ts +114 -0
- package/dist/vue/ui/UiTabs.vue.d.ts +87 -0
- package/dist/vue/ui/UiThemeToggle.vue.d.ts +13 -0
- package/dist/vue/ui/UiToggle.vue.d.ts +20 -0
- package/dist/vue/ui/UiTooltip.vue.d.ts +41 -0
- package/dist/vue/ui/index.d.ts +62 -0
- package/dist/vue/utils/contrast.d.ts +75 -0
- package/dist/vue/utils/debounce.d.ts +12 -0
- package/dist/vue/utils/fontPreloader.d.ts +11 -0
- package/dist/vue/utils/iconProps.d.ts +9 -0
- package/dist/vue/utils/lazyComponents.d.ts +4 -0
- package/dist/vue/utils/levels.d.ts +27 -0
- package/dist/vue/utils/modalStack.d.ts +34 -0
- package/dist/vue/utils/performanceInit.d.ts +40 -0
- package/dist/vue/utils/requestCache.d.ts +49 -0
- package/dist/vue/utils/slots.d.ts +9 -0
- package/dist/vue/utils/sounds.d.ts +57 -0
- package/dist/webcomponents/define-element.d.ts +19 -0
- package/dist/webcomponents/entries/strands-alert.d.ts +2 -0
- package/dist/webcomponents/entries/strands-button.d.ts +2 -0
- package/dist/webcomponents/entries/strands-card.d.ts +2 -0
- package/dist/webcomponents/entries/strands-checkbox-group.d.ts +2 -0
- package/dist/webcomponents/entries/strands-divider.d.ts +2 -0
- package/dist/webcomponents/entries/strands-input.d.ts +2 -0
- package/dist/webcomponents/entries/strands-link.d.ts +2 -0
- package/dist/webcomponents/entries/strands-loader-spinner.d.ts +2 -0
- package/dist/webcomponents/entries/strands-modal.d.ts +2 -0
- package/dist/webcomponents/entries/strands-pill.d.ts +2 -0
- package/dist/webcomponents/entries/strands-radio-group.d.ts +2 -0
- package/dist/webcomponents/entries/strands-slider.d.ts +2 -0
- package/dist/webcomponents/entries/strands-table.d.ts +2 -0
- package/dist/webcomponents/entries/strands-tabs.d.ts +2 -0
- package/dist/webcomponents/entries/strands-theme-toggle.d.ts +2 -0
- package/dist/webcomponents/entries/strands-toggle.d.ts +2 -0
- package/dist/webcomponents/entries/strands-tooltip.d.ts +2 -0
- package/dist/webcomponents/index.d.ts +8 -0
- package/dist/webcomponents/loader.d.ts +57 -0
- package/dist/webcomponents/registry.d.ts +41 -0
- package/package.json +1 -1
|
@@ -0,0 +1,806 @@
|
|
|
1
|
+
import { nextTick } from 'vue';
|
|
2
|
+
import { CommonInputProps } from '../UiInput.vue';
|
|
3
|
+
interface SelectOption {
|
|
4
|
+
value: any;
|
|
5
|
+
label: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export interface UiInputSelectType extends CommonInputProps {
|
|
10
|
+
type: 'select';
|
|
11
|
+
options?: SelectOption[];
|
|
12
|
+
multiple?: boolean;
|
|
13
|
+
searchable?: boolean;
|
|
14
|
+
allowInsert?: boolean;
|
|
15
|
+
maxDropdownHeight?: number;
|
|
16
|
+
noOptionsText?: string;
|
|
17
|
+
searchPlaceholder?: string;
|
|
18
|
+
hasLeadingIcon?: boolean;
|
|
19
|
+
hasTrailingIcon?: boolean;
|
|
20
|
+
}
|
|
21
|
+
interface Props extends Omit<UiInputSelectType, 'type'> {
|
|
22
|
+
}
|
|
23
|
+
declare function __VLS_template(): {
|
|
24
|
+
attrs: Partial<{}>;
|
|
25
|
+
slots: {
|
|
26
|
+
leading?(_: {}): any;
|
|
27
|
+
'leading-icon'?(_: {}): any;
|
|
28
|
+
'trailing-icon'?(_: {}): any;
|
|
29
|
+
trailing?(_: {}): any;
|
|
30
|
+
'zero-state'?(_: {}): any;
|
|
31
|
+
};
|
|
32
|
+
refs: {
|
|
33
|
+
selectTriggerRef: HTMLDivElement;
|
|
34
|
+
dropdownRef: HTMLDivElement;
|
|
35
|
+
searchInputRef: {
|
|
36
|
+
$: import('vue').ComponentInternalInstance;
|
|
37
|
+
$data: {};
|
|
38
|
+
$props: ({
|
|
39
|
+
readonly type: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
|
|
40
|
+
readonly min?: string | number;
|
|
41
|
+
readonly max?: string | number;
|
|
42
|
+
readonly step?: string | number;
|
|
43
|
+
readonly autocomplete?: string;
|
|
44
|
+
readonly spellcheck?: boolean;
|
|
45
|
+
readonly hasLeadingIcon?: boolean;
|
|
46
|
+
readonly hasTrailingIcon?: boolean;
|
|
47
|
+
readonly label?: string;
|
|
48
|
+
readonly helpText?: string;
|
|
49
|
+
readonly modelValue?: any;
|
|
50
|
+
readonly value?: any;
|
|
51
|
+
readonly placeholder?: string;
|
|
52
|
+
readonly disabled?: boolean;
|
|
53
|
+
readonly readonly?: boolean;
|
|
54
|
+
readonly required?: boolean;
|
|
55
|
+
readonly fullWidth?: boolean;
|
|
56
|
+
readonly inputId?: string;
|
|
57
|
+
readonly error?: boolean | string | Error;
|
|
58
|
+
readonly size?: "sm" | "md" | "lg";
|
|
59
|
+
readonly tabindex?: number;
|
|
60
|
+
readonly onInput?: (value: any) => any;
|
|
61
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
62
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
63
|
+
readonly onChange?: (value: any) => any;
|
|
64
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
65
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
66
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
67
|
+
readonly "onClear-preview"?: () => any;
|
|
68
|
+
readonly onComplete?: (value: string) => any;
|
|
69
|
+
} | {
|
|
70
|
+
readonly type: "textarea";
|
|
71
|
+
readonly rows?: number;
|
|
72
|
+
readonly cols?: number;
|
|
73
|
+
readonly maxlength?: number;
|
|
74
|
+
readonly autocomplete?: string;
|
|
75
|
+
readonly spellcheck?: boolean;
|
|
76
|
+
readonly resizable?: boolean;
|
|
77
|
+
readonly hasLeadingIcon?: boolean;
|
|
78
|
+
readonly hasTrailingIcon?: boolean;
|
|
79
|
+
readonly label?: string;
|
|
80
|
+
readonly helpText?: string;
|
|
81
|
+
readonly modelValue?: any;
|
|
82
|
+
readonly value?: any;
|
|
83
|
+
readonly placeholder?: string;
|
|
84
|
+
readonly disabled?: boolean;
|
|
85
|
+
readonly readonly?: boolean;
|
|
86
|
+
readonly required?: boolean;
|
|
87
|
+
readonly fullWidth?: boolean;
|
|
88
|
+
readonly inputId?: string;
|
|
89
|
+
readonly error?: boolean | string | Error;
|
|
90
|
+
readonly size?: "sm" | "md" | "lg";
|
|
91
|
+
readonly tabindex?: number;
|
|
92
|
+
readonly onInput?: (value: any) => any;
|
|
93
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
94
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
95
|
+
readonly onChange?: (value: any) => any;
|
|
96
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
97
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
98
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
99
|
+
readonly "onClear-preview"?: () => any;
|
|
100
|
+
readonly onComplete?: (value: string) => any;
|
|
101
|
+
} | {
|
|
102
|
+
readonly type: "select";
|
|
103
|
+
readonly options?: SelectOption[];
|
|
104
|
+
readonly multiple?: boolean;
|
|
105
|
+
readonly searchable?: boolean;
|
|
106
|
+
readonly allowInsert?: boolean;
|
|
107
|
+
readonly maxDropdownHeight?: number;
|
|
108
|
+
readonly noOptionsText?: string;
|
|
109
|
+
readonly searchPlaceholder?: string;
|
|
110
|
+
readonly hasLeadingIcon?: boolean;
|
|
111
|
+
readonly hasTrailingIcon?: boolean;
|
|
112
|
+
readonly label?: string;
|
|
113
|
+
readonly helpText?: string;
|
|
114
|
+
readonly modelValue?: any;
|
|
115
|
+
readonly value?: any;
|
|
116
|
+
readonly placeholder?: string;
|
|
117
|
+
readonly disabled?: boolean;
|
|
118
|
+
readonly readonly?: boolean;
|
|
119
|
+
readonly required?: boolean;
|
|
120
|
+
readonly fullWidth?: boolean;
|
|
121
|
+
readonly inputId?: string;
|
|
122
|
+
readonly error?: boolean | string | Error;
|
|
123
|
+
readonly size?: "sm" | "md" | "lg";
|
|
124
|
+
readonly tabindex?: number;
|
|
125
|
+
readonly onInput?: (value: any) => any;
|
|
126
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
127
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
128
|
+
readonly onChange?: (value: any) => any;
|
|
129
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
130
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
131
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
132
|
+
readonly "onClear-preview"?: () => any;
|
|
133
|
+
readonly onComplete?: (value: string) => any;
|
|
134
|
+
} | {
|
|
135
|
+
readonly type: "file";
|
|
136
|
+
readonly accept?: string;
|
|
137
|
+
readonly multiple?: boolean;
|
|
138
|
+
readonly maxFileSize?: number;
|
|
139
|
+
readonly dragDropText?: string;
|
|
140
|
+
readonly selectedText?: string;
|
|
141
|
+
readonly preview?: string;
|
|
142
|
+
readonly hasLeadingIcon?: boolean;
|
|
143
|
+
readonly hasTrailingIcon?: boolean;
|
|
144
|
+
readonly label?: string;
|
|
145
|
+
readonly helpText?: string;
|
|
146
|
+
readonly modelValue?: any;
|
|
147
|
+
readonly value?: any;
|
|
148
|
+
readonly placeholder?: string;
|
|
149
|
+
readonly disabled?: boolean;
|
|
150
|
+
readonly readonly?: boolean;
|
|
151
|
+
readonly required?: boolean;
|
|
152
|
+
readonly fullWidth?: boolean;
|
|
153
|
+
readonly inputId?: string;
|
|
154
|
+
readonly error?: boolean | string | Error;
|
|
155
|
+
readonly size?: "sm" | "md" | "lg";
|
|
156
|
+
readonly tabindex?: number;
|
|
157
|
+
readonly onInput?: (value: any) => any;
|
|
158
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
159
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
160
|
+
readonly onChange?: (value: any) => any;
|
|
161
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
162
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
163
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
164
|
+
readonly "onClear-preview"?: () => any;
|
|
165
|
+
readonly onComplete?: (value: string) => any;
|
|
166
|
+
} | {
|
|
167
|
+
readonly type: "date";
|
|
168
|
+
readonly min?: string | Date;
|
|
169
|
+
readonly max?: string | Date;
|
|
170
|
+
readonly format?: "iso" | "us" | "eu";
|
|
171
|
+
readonly label?: string;
|
|
172
|
+
readonly helpText?: string;
|
|
173
|
+
readonly modelValue?: any;
|
|
174
|
+
readonly value?: any;
|
|
175
|
+
readonly placeholder?: string;
|
|
176
|
+
readonly disabled?: boolean;
|
|
177
|
+
readonly readonly?: boolean;
|
|
178
|
+
readonly required?: boolean;
|
|
179
|
+
readonly fullWidth?: boolean;
|
|
180
|
+
readonly inputId?: string;
|
|
181
|
+
readonly error?: boolean | string | Error;
|
|
182
|
+
readonly size?: "sm" | "md" | "lg";
|
|
183
|
+
readonly tabindex?: number;
|
|
184
|
+
readonly onInput?: (value: any) => any;
|
|
185
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
186
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
187
|
+
readonly onChange?: (value: any) => any;
|
|
188
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
189
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
190
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
191
|
+
readonly "onClear-preview"?: () => any;
|
|
192
|
+
readonly onComplete?: (value: string) => any;
|
|
193
|
+
} | {
|
|
194
|
+
readonly type: "time";
|
|
195
|
+
readonly is24Hour?: boolean;
|
|
196
|
+
readonly minuteStep?: number;
|
|
197
|
+
readonly label?: string;
|
|
198
|
+
readonly helpText?: string;
|
|
199
|
+
readonly modelValue?: any;
|
|
200
|
+
readonly value?: any;
|
|
201
|
+
readonly placeholder?: string;
|
|
202
|
+
readonly disabled?: boolean;
|
|
203
|
+
readonly readonly?: boolean;
|
|
204
|
+
readonly required?: boolean;
|
|
205
|
+
readonly fullWidth?: boolean;
|
|
206
|
+
readonly inputId?: string;
|
|
207
|
+
readonly error?: boolean | string | Error;
|
|
208
|
+
readonly size?: "sm" | "md" | "lg";
|
|
209
|
+
readonly tabindex?: number;
|
|
210
|
+
readonly onInput?: (value: any) => any;
|
|
211
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
212
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
213
|
+
readonly onChange?: (value: any) => any;
|
|
214
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
215
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
216
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
217
|
+
readonly "onClear-preview"?: () => any;
|
|
218
|
+
readonly onComplete?: (value: string) => any;
|
|
219
|
+
} | {
|
|
220
|
+
readonly type: "datetime";
|
|
221
|
+
readonly min?: string | Date;
|
|
222
|
+
readonly max?: string | Date;
|
|
223
|
+
readonly format?: "iso" | "local";
|
|
224
|
+
readonly is24Hour?: boolean;
|
|
225
|
+
readonly minuteStep?: number;
|
|
226
|
+
readonly label?: string;
|
|
227
|
+
readonly helpText?: string;
|
|
228
|
+
readonly modelValue?: any;
|
|
229
|
+
readonly value?: any;
|
|
230
|
+
readonly placeholder?: string;
|
|
231
|
+
readonly disabled?: boolean;
|
|
232
|
+
readonly readonly?: boolean;
|
|
233
|
+
readonly required?: boolean;
|
|
234
|
+
readonly fullWidth?: boolean;
|
|
235
|
+
readonly inputId?: string;
|
|
236
|
+
readonly error?: boolean | string | Error;
|
|
237
|
+
readonly size?: "sm" | "md" | "lg";
|
|
238
|
+
readonly tabindex?: number;
|
|
239
|
+
readonly onInput?: (value: any) => any;
|
|
240
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
241
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
242
|
+
readonly onChange?: (value: any) => any;
|
|
243
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
244
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
245
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
246
|
+
readonly "onClear-preview"?: () => any;
|
|
247
|
+
readonly onComplete?: (value: string) => any;
|
|
248
|
+
} | {
|
|
249
|
+
readonly type: "richtext" | "rich-text";
|
|
250
|
+
readonly minHeight?: string;
|
|
251
|
+
readonly maxHeight?: string;
|
|
252
|
+
readonly customControls?: import('./UiInput.RichText.vue').RichTextCustomControl[];
|
|
253
|
+
readonly label?: string;
|
|
254
|
+
readonly helpText?: string;
|
|
255
|
+
readonly modelValue?: any;
|
|
256
|
+
readonly value?: any;
|
|
257
|
+
readonly placeholder?: string;
|
|
258
|
+
readonly disabled?: boolean;
|
|
259
|
+
readonly readonly?: boolean;
|
|
260
|
+
readonly required?: boolean;
|
|
261
|
+
readonly fullWidth?: boolean;
|
|
262
|
+
readonly inputId?: string;
|
|
263
|
+
readonly error?: boolean | string | Error;
|
|
264
|
+
readonly size?: "sm" | "md" | "lg";
|
|
265
|
+
readonly tabindex?: number;
|
|
266
|
+
readonly onInput?: (value: any) => any;
|
|
267
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
268
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
269
|
+
readonly onChange?: (value: any) => any;
|
|
270
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
271
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
272
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
273
|
+
readonly "onClear-preview"?: () => any;
|
|
274
|
+
readonly onComplete?: (value: string) => any;
|
|
275
|
+
} | {
|
|
276
|
+
readonly type: "pincode";
|
|
277
|
+
readonly maxLength?: number;
|
|
278
|
+
readonly variant?: "numeric" | "alpha" | "alphanumeric";
|
|
279
|
+
readonly divider?: number | {
|
|
280
|
+
count: number;
|
|
281
|
+
character?: string;
|
|
282
|
+
} | {
|
|
283
|
+
count: number;
|
|
284
|
+
component: "divider";
|
|
285
|
+
props?: any;
|
|
286
|
+
};
|
|
287
|
+
readonly hasLeadingIcon?: boolean;
|
|
288
|
+
readonly hasTrailingIcon?: boolean;
|
|
289
|
+
readonly label?: string;
|
|
290
|
+
readonly helpText?: string;
|
|
291
|
+
readonly modelValue?: any;
|
|
292
|
+
readonly value?: any;
|
|
293
|
+
readonly placeholder?: string;
|
|
294
|
+
readonly disabled?: boolean;
|
|
295
|
+
readonly readonly?: boolean;
|
|
296
|
+
readonly required?: boolean;
|
|
297
|
+
readonly fullWidth?: boolean;
|
|
298
|
+
readonly inputId?: string;
|
|
299
|
+
readonly error?: boolean | string | Error;
|
|
300
|
+
readonly size?: "sm" | "md" | "lg";
|
|
301
|
+
readonly tabindex?: number;
|
|
302
|
+
readonly onInput?: (value: any) => any;
|
|
303
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
304
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
305
|
+
readonly onChange?: (value: any) => any;
|
|
306
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
307
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
308
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
309
|
+
readonly "onClear-preview"?: () => any;
|
|
310
|
+
readonly onComplete?: (value: string) => any;
|
|
311
|
+
}) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
312
|
+
$attrs: {
|
|
313
|
+
[x: string]: unknown;
|
|
314
|
+
};
|
|
315
|
+
$refs: {
|
|
316
|
+
[x: string]: unknown;
|
|
317
|
+
};
|
|
318
|
+
$slots: Readonly<{
|
|
319
|
+
[name: string]: import('vue').Slot<any>;
|
|
320
|
+
}>;
|
|
321
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
322
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
323
|
+
$host: Element | null;
|
|
324
|
+
$emit: ((event: "input", value: any) => void) & ((event: "keydown", event: KeyboardEvent) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "change", value: any) => void) & ((event: "focus", event: FocusEvent) => void) & ((event: "update:modelValue", value: any) => void) & ((event: "file-error", error: string) => void) & ((event: "clear-preview") => void) & ((event: "complete", value: string) => void);
|
|
325
|
+
$el: HTMLDivElement;
|
|
326
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../UiInput.vue').InputProps> & Readonly<{
|
|
327
|
+
onInput?: (value: any) => any;
|
|
328
|
+
onKeydown?: (event: KeyboardEvent) => any;
|
|
329
|
+
onBlur?: (event: FocusEvent) => any;
|
|
330
|
+
onChange?: (value: any) => any;
|
|
331
|
+
onFocus?: (event: FocusEvent) => any;
|
|
332
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
|
333
|
+
"onFile-error"?: (error: string) => any;
|
|
334
|
+
"onClear-preview"?: () => any;
|
|
335
|
+
onComplete?: (value: string) => any;
|
|
336
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
337
|
+
input: (value: any) => any;
|
|
338
|
+
keydown: (event: KeyboardEvent) => any;
|
|
339
|
+
blur: (event: FocusEvent) => any;
|
|
340
|
+
change: (value: any) => any;
|
|
341
|
+
focus: (event: FocusEvent) => any;
|
|
342
|
+
"update:modelValue": (value: any) => any;
|
|
343
|
+
"file-error": (error: string) => any;
|
|
344
|
+
"clear-preview": () => any;
|
|
345
|
+
complete: (value: string) => any;
|
|
346
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
347
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
348
|
+
created?: (() => void) | (() => void)[];
|
|
349
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
350
|
+
mounted?: (() => void) | (() => void)[];
|
|
351
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
352
|
+
updated?: (() => void) | (() => void)[];
|
|
353
|
+
activated?: (() => void) | (() => void)[];
|
|
354
|
+
deactivated?: (() => void) | (() => void)[];
|
|
355
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
356
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
357
|
+
destroyed?: (() => void) | (() => void)[];
|
|
358
|
+
unmounted?: (() => void) | (() => void)[];
|
|
359
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
360
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
361
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
362
|
+
};
|
|
363
|
+
$forceUpdate: () => void;
|
|
364
|
+
$nextTick: typeof nextTick;
|
|
365
|
+
$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;
|
|
366
|
+
} & Readonly<{}> & Omit<{} & (Readonly<import('../UiInput.vue').InputProps> & Readonly<{
|
|
367
|
+
onInput?: (value: any) => any;
|
|
368
|
+
onKeydown?: (event: KeyboardEvent) => any;
|
|
369
|
+
onBlur?: (event: FocusEvent) => any;
|
|
370
|
+
onChange?: (value: any) => any;
|
|
371
|
+
onFocus?: (event: FocusEvent) => any;
|
|
372
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
|
373
|
+
"onFile-error"?: (error: string) => any;
|
|
374
|
+
"onClear-preview"?: () => any;
|
|
375
|
+
onComplete?: (value: string) => any;
|
|
376
|
+
}>), never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
377
|
+
$slots: {
|
|
378
|
+
leading?(_: {}): any;
|
|
379
|
+
leading?(_: {}): any;
|
|
380
|
+
leading?(_: {}): any;
|
|
381
|
+
leading?(_: {}): any;
|
|
382
|
+
leading?(_: {}): any;
|
|
383
|
+
'leading-icon'?(_: {}): any;
|
|
384
|
+
'leading-icon'?(_: {}): any;
|
|
385
|
+
'leading-icon'?(_: {}): any;
|
|
386
|
+
'leading-icon'?(_: {}): any;
|
|
387
|
+
'leading-icon'?(_: {}): any;
|
|
388
|
+
'trailing-icon'?(_: {}): any;
|
|
389
|
+
'trailing-icon'?(_: {}): any;
|
|
390
|
+
'trailing-icon'?(_: {}): any;
|
|
391
|
+
'trailing-icon'?(_: {}): any;
|
|
392
|
+
'trailing-icon'?(_: {}): any;
|
|
393
|
+
trailing?(_: {}): any;
|
|
394
|
+
trailing?(_: {}): any;
|
|
395
|
+
trailing?(_: {}): any;
|
|
396
|
+
trailing?(_: {}): any;
|
|
397
|
+
trailing?(_: {}): any;
|
|
398
|
+
default?(_: {}): any;
|
|
399
|
+
default?(_: {}): any;
|
|
400
|
+
hint?(_: {}): any;
|
|
401
|
+
};
|
|
402
|
+
};
|
|
403
|
+
};
|
|
404
|
+
rootEl: any;
|
|
405
|
+
};
|
|
406
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
407
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
408
|
+
blur: (event: FocusEvent) => any;
|
|
409
|
+
focus: (event: FocusEvent) => any;
|
|
410
|
+
"update:modelValue": (value: any) => any;
|
|
411
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
412
|
+
onBlur?: (event: FocusEvent) => any;
|
|
413
|
+
onFocus?: (event: FocusEvent) => any;
|
|
414
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
|
415
|
+
}>, {
|
|
416
|
+
disabled: boolean;
|
|
417
|
+
error: boolean | string | Error;
|
|
418
|
+
size: "sm" | "md" | "lg";
|
|
419
|
+
hasLeadingIcon: boolean;
|
|
420
|
+
hasTrailingIcon: boolean;
|
|
421
|
+
options: SelectOption[];
|
|
422
|
+
multiple: boolean;
|
|
423
|
+
searchable: boolean;
|
|
424
|
+
allowInsert: boolean;
|
|
425
|
+
maxDropdownHeight: number;
|
|
426
|
+
noOptionsText: string;
|
|
427
|
+
searchPlaceholder: string;
|
|
428
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
429
|
+
selectTriggerRef: HTMLDivElement;
|
|
430
|
+
dropdownRef: HTMLDivElement;
|
|
431
|
+
searchInputRef: {
|
|
432
|
+
$: import('vue').ComponentInternalInstance;
|
|
433
|
+
$data: {};
|
|
434
|
+
$props: ({
|
|
435
|
+
readonly type: "text" | "email" | "password" | "number" | "tel" | "url" | "search";
|
|
436
|
+
readonly min?: string | number;
|
|
437
|
+
readonly max?: string | number;
|
|
438
|
+
readonly step?: string | number;
|
|
439
|
+
readonly autocomplete?: string;
|
|
440
|
+
readonly spellcheck?: boolean;
|
|
441
|
+
readonly hasLeadingIcon?: boolean;
|
|
442
|
+
readonly hasTrailingIcon?: boolean;
|
|
443
|
+
readonly label?: string;
|
|
444
|
+
readonly helpText?: string;
|
|
445
|
+
readonly modelValue?: any;
|
|
446
|
+
readonly value?: any;
|
|
447
|
+
readonly placeholder?: string;
|
|
448
|
+
readonly disabled?: boolean;
|
|
449
|
+
readonly readonly?: boolean;
|
|
450
|
+
readonly required?: boolean;
|
|
451
|
+
readonly fullWidth?: boolean;
|
|
452
|
+
readonly inputId?: string;
|
|
453
|
+
readonly error?: boolean | string | Error;
|
|
454
|
+
readonly size?: "sm" | "md" | "lg";
|
|
455
|
+
readonly tabindex?: number;
|
|
456
|
+
readonly onInput?: (value: any) => any;
|
|
457
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
458
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
459
|
+
readonly onChange?: (value: any) => any;
|
|
460
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
461
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
462
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
463
|
+
readonly "onClear-preview"?: () => any;
|
|
464
|
+
readonly onComplete?: (value: string) => any;
|
|
465
|
+
} | {
|
|
466
|
+
readonly type: "textarea";
|
|
467
|
+
readonly rows?: number;
|
|
468
|
+
readonly cols?: number;
|
|
469
|
+
readonly maxlength?: number;
|
|
470
|
+
readonly autocomplete?: string;
|
|
471
|
+
readonly spellcheck?: boolean;
|
|
472
|
+
readonly resizable?: boolean;
|
|
473
|
+
readonly hasLeadingIcon?: boolean;
|
|
474
|
+
readonly hasTrailingIcon?: boolean;
|
|
475
|
+
readonly label?: string;
|
|
476
|
+
readonly helpText?: string;
|
|
477
|
+
readonly modelValue?: any;
|
|
478
|
+
readonly value?: any;
|
|
479
|
+
readonly placeholder?: string;
|
|
480
|
+
readonly disabled?: boolean;
|
|
481
|
+
readonly readonly?: boolean;
|
|
482
|
+
readonly required?: boolean;
|
|
483
|
+
readonly fullWidth?: boolean;
|
|
484
|
+
readonly inputId?: string;
|
|
485
|
+
readonly error?: boolean | string | Error;
|
|
486
|
+
readonly size?: "sm" | "md" | "lg";
|
|
487
|
+
readonly tabindex?: number;
|
|
488
|
+
readonly onInput?: (value: any) => any;
|
|
489
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
490
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
491
|
+
readonly onChange?: (value: any) => any;
|
|
492
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
493
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
494
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
495
|
+
readonly "onClear-preview"?: () => any;
|
|
496
|
+
readonly onComplete?: (value: string) => any;
|
|
497
|
+
} | {
|
|
498
|
+
readonly type: "select";
|
|
499
|
+
readonly options?: SelectOption[];
|
|
500
|
+
readonly multiple?: boolean;
|
|
501
|
+
readonly searchable?: boolean;
|
|
502
|
+
readonly allowInsert?: boolean;
|
|
503
|
+
readonly maxDropdownHeight?: number;
|
|
504
|
+
readonly noOptionsText?: string;
|
|
505
|
+
readonly searchPlaceholder?: string;
|
|
506
|
+
readonly hasLeadingIcon?: boolean;
|
|
507
|
+
readonly hasTrailingIcon?: boolean;
|
|
508
|
+
readonly label?: string;
|
|
509
|
+
readonly helpText?: string;
|
|
510
|
+
readonly modelValue?: any;
|
|
511
|
+
readonly value?: any;
|
|
512
|
+
readonly placeholder?: string;
|
|
513
|
+
readonly disabled?: boolean;
|
|
514
|
+
readonly readonly?: boolean;
|
|
515
|
+
readonly required?: boolean;
|
|
516
|
+
readonly fullWidth?: boolean;
|
|
517
|
+
readonly inputId?: string;
|
|
518
|
+
readonly error?: boolean | string | Error;
|
|
519
|
+
readonly size?: "sm" | "md" | "lg";
|
|
520
|
+
readonly tabindex?: number;
|
|
521
|
+
readonly onInput?: (value: any) => any;
|
|
522
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
523
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
524
|
+
readonly onChange?: (value: any) => any;
|
|
525
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
526
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
527
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
528
|
+
readonly "onClear-preview"?: () => any;
|
|
529
|
+
readonly onComplete?: (value: string) => any;
|
|
530
|
+
} | {
|
|
531
|
+
readonly type: "file";
|
|
532
|
+
readonly accept?: string;
|
|
533
|
+
readonly multiple?: boolean;
|
|
534
|
+
readonly maxFileSize?: number;
|
|
535
|
+
readonly dragDropText?: string;
|
|
536
|
+
readonly selectedText?: string;
|
|
537
|
+
readonly preview?: string;
|
|
538
|
+
readonly hasLeadingIcon?: boolean;
|
|
539
|
+
readonly hasTrailingIcon?: boolean;
|
|
540
|
+
readonly label?: string;
|
|
541
|
+
readonly helpText?: string;
|
|
542
|
+
readonly modelValue?: any;
|
|
543
|
+
readonly value?: any;
|
|
544
|
+
readonly placeholder?: string;
|
|
545
|
+
readonly disabled?: boolean;
|
|
546
|
+
readonly readonly?: boolean;
|
|
547
|
+
readonly required?: boolean;
|
|
548
|
+
readonly fullWidth?: boolean;
|
|
549
|
+
readonly inputId?: string;
|
|
550
|
+
readonly error?: boolean | string | Error;
|
|
551
|
+
readonly size?: "sm" | "md" | "lg";
|
|
552
|
+
readonly tabindex?: number;
|
|
553
|
+
readonly onInput?: (value: any) => any;
|
|
554
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
555
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
556
|
+
readonly onChange?: (value: any) => any;
|
|
557
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
558
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
559
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
560
|
+
readonly "onClear-preview"?: () => any;
|
|
561
|
+
readonly onComplete?: (value: string) => any;
|
|
562
|
+
} | {
|
|
563
|
+
readonly type: "date";
|
|
564
|
+
readonly min?: string | Date;
|
|
565
|
+
readonly max?: string | Date;
|
|
566
|
+
readonly format?: "iso" | "us" | "eu";
|
|
567
|
+
readonly label?: string;
|
|
568
|
+
readonly helpText?: string;
|
|
569
|
+
readonly modelValue?: any;
|
|
570
|
+
readonly value?: any;
|
|
571
|
+
readonly placeholder?: string;
|
|
572
|
+
readonly disabled?: boolean;
|
|
573
|
+
readonly readonly?: boolean;
|
|
574
|
+
readonly required?: boolean;
|
|
575
|
+
readonly fullWidth?: boolean;
|
|
576
|
+
readonly inputId?: string;
|
|
577
|
+
readonly error?: boolean | string | Error;
|
|
578
|
+
readonly size?: "sm" | "md" | "lg";
|
|
579
|
+
readonly tabindex?: number;
|
|
580
|
+
readonly onInput?: (value: any) => any;
|
|
581
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
582
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
583
|
+
readonly onChange?: (value: any) => any;
|
|
584
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
585
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
586
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
587
|
+
readonly "onClear-preview"?: () => any;
|
|
588
|
+
readonly onComplete?: (value: string) => any;
|
|
589
|
+
} | {
|
|
590
|
+
readonly type: "time";
|
|
591
|
+
readonly is24Hour?: boolean;
|
|
592
|
+
readonly minuteStep?: number;
|
|
593
|
+
readonly label?: string;
|
|
594
|
+
readonly helpText?: string;
|
|
595
|
+
readonly modelValue?: any;
|
|
596
|
+
readonly value?: any;
|
|
597
|
+
readonly placeholder?: string;
|
|
598
|
+
readonly disabled?: boolean;
|
|
599
|
+
readonly readonly?: boolean;
|
|
600
|
+
readonly required?: boolean;
|
|
601
|
+
readonly fullWidth?: boolean;
|
|
602
|
+
readonly inputId?: string;
|
|
603
|
+
readonly error?: boolean | string | Error;
|
|
604
|
+
readonly size?: "sm" | "md" | "lg";
|
|
605
|
+
readonly tabindex?: number;
|
|
606
|
+
readonly onInput?: (value: any) => any;
|
|
607
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
608
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
609
|
+
readonly onChange?: (value: any) => any;
|
|
610
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
611
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
612
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
613
|
+
readonly "onClear-preview"?: () => any;
|
|
614
|
+
readonly onComplete?: (value: string) => any;
|
|
615
|
+
} | {
|
|
616
|
+
readonly type: "datetime";
|
|
617
|
+
readonly min?: string | Date;
|
|
618
|
+
readonly max?: string | Date;
|
|
619
|
+
readonly format?: "iso" | "local";
|
|
620
|
+
readonly is24Hour?: boolean;
|
|
621
|
+
readonly minuteStep?: number;
|
|
622
|
+
readonly label?: string;
|
|
623
|
+
readonly helpText?: string;
|
|
624
|
+
readonly modelValue?: any;
|
|
625
|
+
readonly value?: any;
|
|
626
|
+
readonly placeholder?: string;
|
|
627
|
+
readonly disabled?: boolean;
|
|
628
|
+
readonly readonly?: boolean;
|
|
629
|
+
readonly required?: boolean;
|
|
630
|
+
readonly fullWidth?: boolean;
|
|
631
|
+
readonly inputId?: string;
|
|
632
|
+
readonly error?: boolean | string | Error;
|
|
633
|
+
readonly size?: "sm" | "md" | "lg";
|
|
634
|
+
readonly tabindex?: number;
|
|
635
|
+
readonly onInput?: (value: any) => any;
|
|
636
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
637
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
638
|
+
readonly onChange?: (value: any) => any;
|
|
639
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
640
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
641
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
642
|
+
readonly "onClear-preview"?: () => any;
|
|
643
|
+
readonly onComplete?: (value: string) => any;
|
|
644
|
+
} | {
|
|
645
|
+
readonly type: "richtext" | "rich-text";
|
|
646
|
+
readonly minHeight?: string;
|
|
647
|
+
readonly maxHeight?: string;
|
|
648
|
+
readonly customControls?: import('./UiInput.RichText.vue').RichTextCustomControl[];
|
|
649
|
+
readonly label?: string;
|
|
650
|
+
readonly helpText?: string;
|
|
651
|
+
readonly modelValue?: any;
|
|
652
|
+
readonly value?: any;
|
|
653
|
+
readonly placeholder?: string;
|
|
654
|
+
readonly disabled?: boolean;
|
|
655
|
+
readonly readonly?: boolean;
|
|
656
|
+
readonly required?: boolean;
|
|
657
|
+
readonly fullWidth?: boolean;
|
|
658
|
+
readonly inputId?: string;
|
|
659
|
+
readonly error?: boolean | string | Error;
|
|
660
|
+
readonly size?: "sm" | "md" | "lg";
|
|
661
|
+
readonly tabindex?: number;
|
|
662
|
+
readonly onInput?: (value: any) => any;
|
|
663
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
664
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
665
|
+
readonly onChange?: (value: any) => any;
|
|
666
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
667
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
668
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
669
|
+
readonly "onClear-preview"?: () => any;
|
|
670
|
+
readonly onComplete?: (value: string) => any;
|
|
671
|
+
} | {
|
|
672
|
+
readonly type: "pincode";
|
|
673
|
+
readonly maxLength?: number;
|
|
674
|
+
readonly variant?: "numeric" | "alpha" | "alphanumeric";
|
|
675
|
+
readonly divider?: number | {
|
|
676
|
+
count: number;
|
|
677
|
+
character?: string;
|
|
678
|
+
} | {
|
|
679
|
+
count: number;
|
|
680
|
+
component: "divider";
|
|
681
|
+
props?: any;
|
|
682
|
+
};
|
|
683
|
+
readonly hasLeadingIcon?: boolean;
|
|
684
|
+
readonly hasTrailingIcon?: boolean;
|
|
685
|
+
readonly label?: string;
|
|
686
|
+
readonly helpText?: string;
|
|
687
|
+
readonly modelValue?: any;
|
|
688
|
+
readonly value?: any;
|
|
689
|
+
readonly placeholder?: string;
|
|
690
|
+
readonly disabled?: boolean;
|
|
691
|
+
readonly readonly?: boolean;
|
|
692
|
+
readonly required?: boolean;
|
|
693
|
+
readonly fullWidth?: boolean;
|
|
694
|
+
readonly inputId?: string;
|
|
695
|
+
readonly error?: boolean | string | Error;
|
|
696
|
+
readonly size?: "sm" | "md" | "lg";
|
|
697
|
+
readonly tabindex?: number;
|
|
698
|
+
readonly onInput?: (value: any) => any;
|
|
699
|
+
readonly onKeydown?: (event: KeyboardEvent) => any;
|
|
700
|
+
readonly onBlur?: (event: FocusEvent) => any;
|
|
701
|
+
readonly onChange?: (value: any) => any;
|
|
702
|
+
readonly onFocus?: (event: FocusEvent) => any;
|
|
703
|
+
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
704
|
+
readonly "onFile-error"?: (error: string) => any;
|
|
705
|
+
readonly "onClear-preview"?: () => any;
|
|
706
|
+
readonly onComplete?: (value: string) => any;
|
|
707
|
+
}) & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
708
|
+
$attrs: {
|
|
709
|
+
[x: string]: unknown;
|
|
710
|
+
};
|
|
711
|
+
$refs: {
|
|
712
|
+
[x: string]: unknown;
|
|
713
|
+
};
|
|
714
|
+
$slots: Readonly<{
|
|
715
|
+
[name: string]: import('vue').Slot<any>;
|
|
716
|
+
}>;
|
|
717
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
718
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
719
|
+
$host: Element | null;
|
|
720
|
+
$emit: ((event: "input", value: any) => void) & ((event: "keydown", event: KeyboardEvent) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "change", value: any) => void) & ((event: "focus", event: FocusEvent) => void) & ((event: "update:modelValue", value: any) => void) & ((event: "file-error", error: string) => void) & ((event: "clear-preview") => void) & ((event: "complete", value: string) => void);
|
|
721
|
+
$el: HTMLDivElement;
|
|
722
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../UiInput.vue').InputProps> & Readonly<{
|
|
723
|
+
onInput?: (value: any) => any;
|
|
724
|
+
onKeydown?: (event: KeyboardEvent) => any;
|
|
725
|
+
onBlur?: (event: FocusEvent) => any;
|
|
726
|
+
onChange?: (value: any) => any;
|
|
727
|
+
onFocus?: (event: FocusEvent) => any;
|
|
728
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
|
729
|
+
"onFile-error"?: (error: string) => any;
|
|
730
|
+
"onClear-preview"?: () => any;
|
|
731
|
+
onComplete?: (value: string) => any;
|
|
732
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
733
|
+
input: (value: any) => any;
|
|
734
|
+
keydown: (event: KeyboardEvent) => any;
|
|
735
|
+
blur: (event: FocusEvent) => any;
|
|
736
|
+
change: (value: any) => any;
|
|
737
|
+
focus: (event: FocusEvent) => any;
|
|
738
|
+
"update:modelValue": (value: any) => any;
|
|
739
|
+
"file-error": (error: string) => any;
|
|
740
|
+
"clear-preview": () => any;
|
|
741
|
+
complete: (value: string) => any;
|
|
742
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
743
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
744
|
+
created?: (() => void) | (() => void)[];
|
|
745
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
746
|
+
mounted?: (() => void) | (() => void)[];
|
|
747
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
748
|
+
updated?: (() => void) | (() => void)[];
|
|
749
|
+
activated?: (() => void) | (() => void)[];
|
|
750
|
+
deactivated?: (() => void) | (() => void)[];
|
|
751
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
752
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
753
|
+
destroyed?: (() => void) | (() => void)[];
|
|
754
|
+
unmounted?: (() => void) | (() => void)[];
|
|
755
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
756
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
757
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
758
|
+
};
|
|
759
|
+
$forceUpdate: () => void;
|
|
760
|
+
$nextTick: typeof nextTick;
|
|
761
|
+
$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;
|
|
762
|
+
} & Readonly<{}> & Omit<{} & (Readonly<import('../UiInput.vue').InputProps> & Readonly<{
|
|
763
|
+
onInput?: (value: any) => any;
|
|
764
|
+
onKeydown?: (event: KeyboardEvent) => any;
|
|
765
|
+
onBlur?: (event: FocusEvent) => any;
|
|
766
|
+
onChange?: (value: any) => any;
|
|
767
|
+
onFocus?: (event: FocusEvent) => any;
|
|
768
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
|
769
|
+
"onFile-error"?: (error: string) => any;
|
|
770
|
+
"onClear-preview"?: () => any;
|
|
771
|
+
onComplete?: (value: string) => any;
|
|
772
|
+
}>), never> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
773
|
+
$slots: {
|
|
774
|
+
leading?(_: {}): any;
|
|
775
|
+
leading?(_: {}): any;
|
|
776
|
+
leading?(_: {}): any;
|
|
777
|
+
leading?(_: {}): any;
|
|
778
|
+
leading?(_: {}): any;
|
|
779
|
+
'leading-icon'?(_: {}): any;
|
|
780
|
+
'leading-icon'?(_: {}): any;
|
|
781
|
+
'leading-icon'?(_: {}): any;
|
|
782
|
+
'leading-icon'?(_: {}): any;
|
|
783
|
+
'leading-icon'?(_: {}): any;
|
|
784
|
+
'trailing-icon'?(_: {}): any;
|
|
785
|
+
'trailing-icon'?(_: {}): any;
|
|
786
|
+
'trailing-icon'?(_: {}): any;
|
|
787
|
+
'trailing-icon'?(_: {}): any;
|
|
788
|
+
'trailing-icon'?(_: {}): any;
|
|
789
|
+
trailing?(_: {}): any;
|
|
790
|
+
trailing?(_: {}): any;
|
|
791
|
+
trailing?(_: {}): any;
|
|
792
|
+
trailing?(_: {}): any;
|
|
793
|
+
trailing?(_: {}): any;
|
|
794
|
+
default?(_: {}): any;
|
|
795
|
+
default?(_: {}): any;
|
|
796
|
+
hint?(_: {}): any;
|
|
797
|
+
};
|
|
798
|
+
};
|
|
799
|
+
}, any>;
|
|
800
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
801
|
+
export default _default;
|
|
802
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
803
|
+
new (): {
|
|
804
|
+
$slots: S;
|
|
805
|
+
};
|
|
806
|
+
};
|