@cnamts/synapse 1.0.1 → 1.0.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/README.md +1 -1
- package/dist/{DateFilter-BmRuzQ9Z.js → DateFilter-YWOTbfeL.js} +1 -1
- package/dist/{NumberFilter-CnIPDHqx.js → NumberFilter-DMmMgALM.js} +1 -1
- package/dist/{PeriodFilter-CZwZ8CnQ.js → PeriodFilter-Bok5BHcn.js} +1 -1
- package/dist/SelectFilter-BKud2WhN.js +136 -0
- package/dist/{TextFilter-DTxZHJwX.js → TextFilter-DvMf2thH.js} +1 -1
- package/dist/components/Accordion/Accordion.d.ts +2 -1
- package/dist/components/Accordion/composables/useAccordionGroupCommunication.d.ts +5 -0
- package/dist/components/Accordion/composables/useAccordionKeyboardNavigation.d.ts +12 -0
- package/dist/components/Accordion/composables/useAccordionState.d.ts +13 -0
- package/dist/components/Customs/SyCheckbox/SyCheckbox.d.ts +85 -0
- package/dist/components/Customs/SyInputSelect/SyInputSelect.d.ts +2 -0
- package/dist/components/Customs/SySelect/SySelect.d.ts +33 -13
- package/dist/components/Customs/SyTextField/SyTextField.d.ts +2 -2
- package/dist/components/DatePicker/ComplexDatePicker/ComplexDatePicker.d.ts +1585 -1452
- package/dist/components/DatePicker/DatePicker/DatePicker.d.ts +16 -2
- package/dist/components/DatePicker/DateTextInput/DateTextInput.d.ts +3 -1
- package/dist/components/DatePicker/composables/index.d.ts +2 -0
- package/dist/components/DatePicker/composables/useAsteriskDisplay.d.ts +14 -0
- package/dist/components/DatePicker/composables/useDateAutoClamp.d.ts +16 -0
- package/dist/components/DatePicker/composables/useDateRangeInput.d.ts +1 -1
- package/dist/components/DatePicker/composables/useDisplayedDateString.d.ts +3 -0
- package/dist/components/DatePicker/composables/useInputBlurHandler.d.ts +1 -0
- package/dist/components/DatePicker/composables/useMonthButtonCustomization.d.ts +5 -2
- package/dist/components/NirField/NirField.d.ts +7 -3
- package/dist/components/NirField/nirValidation.d.ts +1 -1
- package/dist/components/PasswordField/PasswordField.d.ts +2 -0
- package/dist/components/PeriodField/PeriodField.d.ts +52 -8
- package/dist/components/PhoneField/PhoneField.d.ts +2 -2
- package/dist/components/RangeField/RangeField.d.ts +2 -0
- package/dist/components/SearchListField/SearchListField.d.ts +9 -0
- package/dist/components/SyTextArea/SyTextArea.d.ts +2 -0
- package/dist/components/Tables/SyServerTable/SyServerTable.d.ts +14 -9
- package/dist/components/Tables/SyTable/SyTable.d.ts +12 -7
- package/dist/components/Tables/common/SyTablePagination.d.ts +1636 -0
- package/dist/components/Tables/common/TableHeader.d.ts +2 -20
- package/dist/components/Tables/common/filters/SelectFilter.d.ts +5 -5
- package/dist/components/Tables/common/filters/getFilterComponent.d.ts +1 -0
- package/dist/components/Tables/common/filters/locales.d.ts +4 -0
- package/dist/components/Tables/common/filters/logics/date.d.ts +1 -0
- package/dist/components/Tables/common/filters/logics/number.d.ts +1 -0
- package/dist/components/Tables/common/filters/logics/period.d.ts +1 -0
- package/dist/components/Tables/common/filters/logics/select.d.ts +1 -0
- package/dist/components/Tables/common/filters/logics/text.d.ts +1 -0
- package/dist/components/Tables/common/locales.d.ts +21 -0
- package/dist/components/Tables/common/organizeColumns/OrganizeColumns.d.ts +267 -0
- package/dist/components/Tables/common/organizeColumns/sortHeaders.d.ts +2 -0
- package/dist/components/Tables/common/tableFilterUtils.d.ts +1 -0
- package/dist/components/Tables/common/tableStorageUtils.d.ts +41 -1
- package/dist/components/Tables/common/tableUtils.d.ts +42 -5
- package/dist/components/Tables/common/types.d.ts +19 -8
- package/dist/components/Tables/common/usePagination.d.ts +22 -0
- package/dist/components/Tables/common/useTableCheckbox.d.ts +20 -0
- package/dist/components/Tables/common/useTableHeaders.d.ts +76 -0
- package/dist/components/Tables/common/useTableItems.d.ts +24 -0
- package/dist/components/Tables/common/useTableOptions.d.ts +18 -0
- package/dist/components/ToolbarContainer/ToolbarContainer.d.ts +11 -0
- package/dist/components/UserMenuBtn/UserMenuBtn.d.ts +9 -2
- package/dist/components/index.d.ts +8 -6
- package/dist/design-system-v3.js +58 -56
- package/dist/design-system-v3.umd.cjs +22 -22
- package/dist/main-Cx8qG7YR.js +16344 -0
- package/dist/stories/Accessibilite/Vuetify/VuetifyItems.d.ts +14 -2
- package/dist/stories/DesignTokens/StylesTypographiques.stories.new.d.ts +8 -0
- package/dist/stories/DesignTokens/TypographyDisplay.d.ts +28 -0
- package/dist/stories/DesignTokens/vue-shims.d.ts +6 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/common/imgs/accessibility-svgrepo-com.svg +4 -0
- package/src/components/Accordion/Accessibilite/AccessibilityGuide.mdx +249 -0
- package/src/components/Accordion/Accordion.vue +48 -76
- package/src/components/Accordion/composables/__tests__/useAccordionGroupCommunication.spec.ts +146 -0
- package/src/components/Accordion/composables/__tests__/useAccordionKeyboardNavigation.spec.ts +209 -0
- package/src/components/Accordion/composables/__tests__/useAccordionState.spec.ts +144 -0
- package/src/components/Accordion/composables/useAccordionGroupCommunication.ts +52 -0
- package/src/components/Accordion/composables/useAccordionKeyboardNavigation.ts +111 -0
- package/src/components/Accordion/composables/useAccordionState.ts +59 -0
- package/src/components/Accordion/tests/__snapshots__/accordion.spec.ts.snap +3 -0
- package/src/components/Customs/SyCheckbox/Accessibilite.mdx +303 -0
- package/src/components/Customs/SyCheckbox/SyCheckbox.mdx +50 -0
- package/src/components/Customs/SyCheckbox/SyCheckbox.stories.ts +630 -0
- package/src/components/Customs/SyCheckbox/SyCheckbox.vue +326 -0
- package/src/components/Customs/SyCheckbox/tests/SyCheckbox.spec.ts +201 -0
- package/src/components/Customs/SyInputSelect/SyInputSelect.stories.ts +1 -0
- package/src/components/Customs/SyInputSelect/SyInputSelect.vue +8 -1
- package/src/components/Customs/SySelect/SySelect.stories.ts +160 -0
- package/src/components/Customs/SySelect/SySelect.vue +291 -32
- package/src/components/Customs/SySelect/tests/SySelect.spec.ts +230 -0
- package/src/components/Customs/SyTextField/SyTextField.stories.ts +3 -2
- package/src/components/Customs/SyTextField/SyTextField.vue +19 -8
- package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.stories.ts +241 -31
- package/src/components/DatePicker/ComplexDatePicker/ComplexDatePicker.vue +305 -57
- package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.events.spec.ts +161 -0
- package/src/components/DatePicker/ComplexDatePicker/tests/ComplexDatePicker.spec.ts +4 -2
- package/src/components/DatePicker/DatePicker/DatePicker.stories.ts +259 -137
- package/src/components/DatePicker/DatePicker/DatePicker.vue +153 -25
- package/src/components/DatePicker/DatePicker/tests/DatePicker.events.spec.ts +189 -0
- package/src/components/DatePicker/DatePicker/{DatePicker.spec.ts → tests/DatePicker.spec.ts} +1 -15
- package/src/components/DatePicker/DateTextInput/DateRange.stories.ts +24 -14
- package/src/components/DatePicker/DateTextInput/DateTextInput.events.spec.ts +148 -0
- package/src/components/DatePicker/DateTextInput/DateTextInput.spec.ts +3 -1
- package/src/components/DatePicker/DateTextInput/DateTextInput.vue +200 -5
- package/src/components/DatePicker/DateTextInput/NoCalendar.stories.ts +241 -31
- package/src/components/DatePicker/composables/index.ts +2 -0
- package/src/components/DatePicker/composables/tests/useDateAutoClamp.spec.ts +190 -0
- package/src/components/DatePicker/composables/tests/useInputBlurHandler.spec.ts +182 -4
- package/src/components/DatePicker/composables/tests/useMonthButtonCustomization.spec.ts +105 -80
- package/src/components/DatePicker/composables/useAsteriskDisplay.ts +31 -0
- package/src/components/DatePicker/composables/useDateAutoClamp.ts +136 -0
- package/src/components/DatePicker/composables/useDateRangeInput.ts +21 -18
- package/src/components/DatePicker/composables/useDisplayedDateString.ts +13 -1
- package/src/components/DatePicker/composables/useInputBlurHandler.ts +84 -20
- package/src/components/DatePicker/composables/useMonthButtonCustomization.ts +149 -51
- package/src/components/DiacriticPicker/DiacriticPicker.stories.ts +10 -0
- package/src/components/ErrorPage/Accessibilite.stories.ts +8 -0
- package/src/components/ErrorPage/ErrorPage.vue +12 -6
- package/src/components/ErrorPage/tests/__snapshots__/ErrorPage.spec.ts.snap +4 -4
- package/src/components/NirField/NirField.mdx +22 -9
- package/src/components/NirField/NirField.stories.ts +26 -2
- package/src/components/NirField/NirField.vue +209 -22
- package/src/components/NirField/nirValidation.ts +17 -3
- package/src/components/NirField/tests/NirField.spec.ts +2 -2
- package/src/components/NotFoundPage/Accessibilite.stories.ts +8 -0
- package/src/components/NotFoundPage/NotFoundPage.vue +2 -1
- package/src/components/NotFoundPage/tests/__snapshots__/NotFoundPage.spec.ts.snap +8 -6
- package/src/components/PaginatedTable/PaginatedTable.mdx +2 -0
- package/src/components/PasswordField/PasswordField.stories.ts +4 -0
- package/src/components/PasswordField/PasswordField.vue +3 -0
- package/src/components/PeriodField/PeriodField.vue +2 -0
- package/src/components/PhoneField/PhoneField.stories.ts +15 -15
- package/src/components/PhoneField/PhoneField.vue +1 -1
- package/src/components/RangeField/RangeField.stories.ts +9 -0
- package/src/components/RangeField/RangeField.vue +4 -0
- package/src/components/RangeField/tests/__snapshots__/RangeField.spec.ts.snap +12 -0
- package/src/components/SearchListField/SearchListField.vue +5 -0
- package/src/components/SyTextArea/SyTextArea.vue +3 -0
- package/src/components/SyTextArea/tests/SyTextArea.spec.ts +0 -1
- package/src/components/Tables/SyServerTable/FilterRules.stories.ts +632 -15
- package/src/components/Tables/SyServerTable/SyServerTable.mdx +15 -5
- package/src/components/Tables/SyServerTable/SyServerTable.stories.ts +2844 -1377
- package/src/components/Tables/SyServerTable/SyServerTable.vue +155 -66
- package/src/components/Tables/SyServerTable/tests/SyServerTable.spec.ts +256 -4
- package/src/components/Tables/SyTable/FilterRules.stories.ts +183 -0
- package/src/components/Tables/SyTable/SyTable.mdx +14 -4
- package/src/components/Tables/SyTable/SyTable.stories.ts +1265 -477
- package/src/components/Tables/SyTable/SyTable.vue +152 -72
- package/src/components/Tables/SyTable/tests/SyTable.spec.ts +366 -4
- package/src/components/Tables/common/SyTableFilter.vue +3 -56
- package/src/components/Tables/common/SyTablePagination.vue +375 -0
- package/src/components/Tables/common/TableHeader.vue +10 -26
- package/src/components/Tables/common/filters/SelectFilter.vue +131 -22
- package/src/components/Tables/common/filters/getFilterComponent.ts +54 -0
- package/src/components/Tables/common/filters/locales.ts +4 -0
- package/src/components/Tables/common/filters/logics/date.ts +12 -0
- package/src/components/Tables/common/filters/logics/number.ts +48 -0
- package/src/components/Tables/common/filters/logics/period.ts +25 -0
- package/src/components/Tables/common/filters/logics/select.ts +27 -0
- package/src/components/Tables/common/filters/logics/tests/TextFilterLogic.spec.ts +177 -0
- package/src/components/Tables/common/filters/logics/text.ts +62 -0
- package/src/components/Tables/common/filters/tests/TextFilter.spec.ts +11 -11
- package/src/components/Tables/common/locales.ts +24 -0
- package/src/components/Tables/common/organizeColumns/OrganizeColumns.vue +269 -0
- package/src/components/Tables/common/organizeColumns/sortHeaders.ts +9 -0
- package/src/components/Tables/common/tableFilterUtils.ts +43 -295
- package/src/components/Tables/common/tableStorageUtils.ts +27 -2
- package/src/components/Tables/common/tableStyles.scss +26 -0
- package/src/components/Tables/common/tableUtils.ts +3 -16
- package/src/components/Tables/common/tests/SyTablePagination.spec.ts +170 -0
- package/src/components/Tables/common/tests/filterByRange.spec.ts +215 -0
- package/src/components/Tables/common/tests/tableFilterUtils.spec.ts +0 -14
- package/src/components/Tables/common/tests/tableUtils.spec.ts +7 -51
- package/src/components/Tables/common/types.ts +17 -6
- package/src/components/Tables/common/usePagination.ts +83 -0
- package/src/components/Tables/common/useTableCheckbox.ts +58 -0
- package/src/components/Tables/common/useTableHeaders.ts +88 -0
- package/src/components/Tables/common/useTableItems.ts +87 -0
- package/src/components/Tables/common/useTableOptions.ts +93 -0
- package/src/components/ToolbarContainer/ToolbarContainer.mdx +16 -0
- package/src/components/ToolbarContainer/ToolbarContainer.stories.ts +675 -0
- package/src/components/ToolbarContainer/ToolbarContainer.vue +128 -0
- package/src/components/ToolbarContainer/tests/ToolbarContainer.spec.ts +156 -0
- package/src/components/UserMenuBtn/UserMenuBtn.stories.ts +74 -0
- package/src/components/UserMenuBtn/UserMenuBtn.vue +19 -17
- package/src/components/index.ts +8 -6
- package/src/stories/Accessibilite/Aculturation/AuditDesignSystem.mdx +293 -20
- package/src/stories/Accessibilite/Aculturation/SensibilisationAccessibilite.mdx +448 -54
- package/src/stories/Accessibilite/Audit/RGAA.mdx +231 -23
- package/src/stories/Accessibilite/Avancement/Avancement.mdx +591 -7
- package/src/stories/Accessibilite/Avancement/Avancement.stories.ts +139 -38
- package/src/stories/Accessibilite/Introduction.mdx +258 -18
- package/src/stories/Accessibilite/KitDePreAudit/Echantillonnage.mdx +221 -31
- package/src/stories/Accessibilite/KitDePreAudit/Introduction.mdx +204 -22
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Introduction.mdx +537 -24
- package/src/stories/Accessibilite/KitDePreAudit/Outils/LecteursDEcran.mdx +577 -70
- package/src/stories/Accessibilite/KitDePreAudit/Outils/Tanaguru.mdx +382 -31
- package/src/stories/Accessibilite/KitDePreAudit/Preaudit.mdx +419 -81
- package/src/stories/Accessibilite/Vuetify/Vuetify.mdx +132 -6
- package/src/stories/Accessibilite/Vuetify/Vuetify.stories.ts +370 -146
- package/src/stories/Accessibilite/Vuetify/VuetifyItems.ts +35 -57
- package/src/stories/Demarrer/Accueil.stories.ts +20 -5
- package/src/stories/DesignTokens/StylesTypographiques.mdx +10 -9
- package/src/stories/DesignTokens/StylesTypographiques.stories.new.ts +397 -0
- package/src/stories/DesignTokens/StylesTypographiques.stories.ts +397 -0
- package/src/stories/DesignTokens/TypographyDisplay.vue +155 -0
- package/src/stories/DesignTokens/vue-shims.d.ts +6 -0
- package/src/stories/GuideDuDev/LesBreackingChanges.mdx +0 -2
- package/src/stories/GuideDuDev/MigrationDepuisBridge.mdx +1 -1
- package/src/stories/GuideDuDev/MigrationDepuisVue2.mdx +1 -1
- package/src/stories/GuideDuDev/PortailAgent.mdx +10 -0
- package/src/stories/GuideDuDev/PortailAgent.stories.ts +506 -0
- package/src/stories/GuideDuDev/Theme.mdx +41 -0
- package/dist/SelectFilter-Cj-GW2Cc.js +0 -97
- package/dist/main-WDqeoGM-.js +0 -14788
- package/src/components/PaginatedTable/tests/__snapshots__/PaginatedTable.spec.ts.snap +0 -886
- package/src/components/Tables/SyServerTable/tests/__snapshots__/SyServerTable.spec.ts.snap +0 -521
- package/src/components/Tables/SyTable/tests/__snapshots__/SyTable.spec.ts.snap +0 -521
- package/src/stories/DesignTokens/ThemePA.mdx +0 -35
|
@@ -2,6 +2,7 @@ import { nextTick, ComponentPublicInstance, Ref } from 'vue';
|
|
|
2
2
|
import { DateInput, DateValue } from '../../../composables/date/useDateInitializationDayjs';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
modelValue?: DateInput;
|
|
5
|
+
label?: string;
|
|
5
6
|
placeholder?: string;
|
|
6
7
|
format?: string;
|
|
7
8
|
dateFormatReturn?: string;
|
|
@@ -33,10 +34,13 @@ type __VLS_Props = {
|
|
|
33
34
|
textFieldActivator?: boolean;
|
|
34
35
|
displayTodayButton?: boolean;
|
|
35
36
|
displayWeekendDays?: boolean;
|
|
37
|
+
displayHolidayDays?: boolean;
|
|
38
|
+
displayAsterisk?: boolean;
|
|
36
39
|
period?: {
|
|
37
40
|
min?: string;
|
|
38
41
|
max?: string;
|
|
39
42
|
};
|
|
43
|
+
autoClamp?: boolean;
|
|
40
44
|
};
|
|
41
45
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
42
46
|
validateOnSubmit: () => import('../../../composables/validation/useValidation').ValidationResult;
|
|
@@ -49,6 +53,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
49
53
|
updateAccessibility: () => Promise<void>;
|
|
50
54
|
openDatePicker: () => void;
|
|
51
55
|
updateDisplayFormattedDate: () => void;
|
|
56
|
+
currentMonth: Ref<string | null, string | null>;
|
|
57
|
+
currentMonthName: Ref<string | null, string | null>;
|
|
52
58
|
toggleDatePicker: () => void;
|
|
53
59
|
validateField: (value: unknown, rules?: import('../../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../../composables/validation/useValidation').ValidationRule[]) => import('../../../composables/validation/useValidation').ValidationResult;
|
|
54
60
|
clearValidation: () => void;
|
|
@@ -80,11 +86,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
80
86
|
}>, {
|
|
81
87
|
required: boolean;
|
|
82
88
|
modelValue: DateInput;
|
|
89
|
+
label: string;
|
|
83
90
|
readonly: boolean;
|
|
84
91
|
bgColor: string;
|
|
85
92
|
disabled: boolean;
|
|
86
93
|
placeholder: string;
|
|
87
94
|
width: string;
|
|
95
|
+
displayAsterisk: boolean;
|
|
88
96
|
noIcon: boolean;
|
|
89
97
|
customRules: {
|
|
90
98
|
type: string;
|
|
@@ -105,11 +113,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
105
113
|
displayIcon: boolean;
|
|
106
114
|
displayAppendIcon: boolean;
|
|
107
115
|
displayPrependIcon: boolean;
|
|
116
|
+
autoClamp: boolean;
|
|
108
117
|
isBirthDate: boolean;
|
|
109
118
|
birthDate: boolean;
|
|
110
119
|
showWeekNumber: boolean;
|
|
111
120
|
displayTodayButton: boolean;
|
|
112
121
|
displayWeekendDays: boolean;
|
|
122
|
+
displayHolidayDays: boolean;
|
|
113
123
|
period: {
|
|
114
124
|
min?: string | undefined;
|
|
115
125
|
max?: string | undefined;
|
|
@@ -136,6 +146,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
136
146
|
showSuccessMessages?: boolean | undefined;
|
|
137
147
|
bgColor?: string | undefined;
|
|
138
148
|
displayRange?: boolean | undefined;
|
|
149
|
+
autoClamp?: boolean | undefined;
|
|
139
150
|
}> & Readonly<{
|
|
140
151
|
onBlur?: (() => any) | undefined;
|
|
141
152
|
onFocus?: (() => any) | undefined;
|
|
@@ -172,6 +183,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
172
183
|
displayIcon: boolean;
|
|
173
184
|
displayAppendIcon: boolean;
|
|
174
185
|
displayPrependIcon: boolean;
|
|
186
|
+
autoClamp: boolean;
|
|
175
187
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
176
188
|
inputRef: ({
|
|
177
189
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -1347,7 +1359,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1347
1359
|
flat: boolean;
|
|
1348
1360
|
reverse: boolean;
|
|
1349
1361
|
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
1350
|
-
error: boolean;
|
|
1362
|
+
error: boolean; /** @type { [typeof __VLS_components.VIcon, typeof __VLS_components.VIcon, ] } */
|
|
1351
1363
|
active: boolean;
|
|
1352
1364
|
style: import('vue').StyleValue;
|
|
1353
1365
|
disabled: boolean;
|
|
@@ -1619,7 +1631,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1619
1631
|
disabled: boolean;
|
|
1620
1632
|
readonly: boolean | null;
|
|
1621
1633
|
messages: string | readonly string[];
|
|
1622
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> |
|
|
1634
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
1623
1635
|
focused: boolean;
|
|
1624
1636
|
errorMessages: string | readonly string[] | null;
|
|
1625
1637
|
maxErrors: string | number;
|
|
@@ -2010,6 +2022,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2010
2022
|
showSuccessMessages?: boolean | undefined;
|
|
2011
2023
|
bgColor?: string | undefined;
|
|
2012
2024
|
displayRange?: boolean | undefined;
|
|
2025
|
+
autoClamp?: boolean | undefined;
|
|
2013
2026
|
}> & Readonly<{
|
|
2014
2027
|
onBlur?: (() => any) | undefined;
|
|
2015
2028
|
onFocus?: (() => any) | undefined;
|
|
@@ -2040,238 +2053,159 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2040
2053
|
displayIcon: boolean;
|
|
2041
2054
|
displayAppendIcon: boolean;
|
|
2042
2055
|
displayPrependIcon: boolean;
|
|
2056
|
+
autoClamp: boolean;
|
|
2043
2057
|
}> | null;
|
|
2044
|
-
dateCalendarTextInputRef: ({
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
direction
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
readonly
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2184
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2185
|
-
centerAffix?: boolean | undefined;
|
|
2186
|
-
iconColor?: string | boolean | undefined;
|
|
2187
|
-
hint?: string | undefined;
|
|
2188
|
-
hideDetails?: boolean | "auto" | undefined;
|
|
2189
|
-
suffix?: string | undefined;
|
|
2190
|
-
counterValue?: number | ((value: any) => number) | undefined;
|
|
2191
|
-
modelModifiers?: Record<string, boolean> | undefined;
|
|
2192
|
-
} & {
|
|
2193
|
-
$children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
|
|
2194
|
-
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2195
|
-
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2196
|
-
props: Record<string, any>;
|
|
2197
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2198
|
-
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2199
|
-
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2200
|
-
label: string | undefined;
|
|
2201
|
-
props: Record<string, any>;
|
|
2202
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2203
|
-
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2204
|
-
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2205
|
-
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2206
|
-
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2207
|
-
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2208
|
-
default?: (() => import('vue').VNodeChild) | undefined;
|
|
2209
|
-
counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2210
|
-
};
|
|
2211
|
-
'v-slots'?: {
|
|
2212
|
-
message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2213
|
-
clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2214
|
-
props: Record<string, any>;
|
|
2215
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2216
|
-
details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2217
|
-
label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2218
|
-
label: string | undefined;
|
|
2219
|
-
props: Record<string, any>;
|
|
2220
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2221
|
-
append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2222
|
-
prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2223
|
-
loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2224
|
-
'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2225
|
-
'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2226
|
-
default?: false | (() => import('vue').VNodeChild) | undefined;
|
|
2227
|
-
counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2228
|
-
} | undefined;
|
|
2229
|
-
} & {
|
|
2230
|
-
"v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2231
|
-
"v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2232
|
-
props: Record<string, any>;
|
|
2233
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2234
|
-
"v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2235
|
-
"v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2236
|
-
label: string | undefined;
|
|
2237
|
-
props: Record<string, any>;
|
|
2238
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2239
|
-
"v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2240
|
-
"v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2241
|
-
"v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2242
|
-
"v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2243
|
-
"v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2244
|
-
"v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
|
|
2245
|
-
"v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2058
|
+
dateCalendarTextInputRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2059
|
+
modelValue?: DateValue | undefined;
|
|
2060
|
+
placeholder?: string | undefined;
|
|
2061
|
+
format?: string | undefined;
|
|
2062
|
+
dateFormatReturn?: string | undefined;
|
|
2063
|
+
label?: string | undefined;
|
|
2064
|
+
required?: boolean | undefined;
|
|
2065
|
+
disabled?: boolean | undefined;
|
|
2066
|
+
readonly?: boolean | undefined;
|
|
2067
|
+
isOutlined?: boolean | undefined;
|
|
2068
|
+
displayIcon?: boolean | undefined;
|
|
2069
|
+
displayAppendIcon?: boolean | undefined;
|
|
2070
|
+
noIcon?: boolean | undefined;
|
|
2071
|
+
customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2072
|
+
customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2073
|
+
displayPrependIcon?: boolean | undefined;
|
|
2074
|
+
disableErrorHandling?: boolean | undefined;
|
|
2075
|
+
showSuccessMessages?: boolean | undefined;
|
|
2076
|
+
bgColor?: string | undefined;
|
|
2077
|
+
displayRange?: boolean | undefined;
|
|
2078
|
+
autoClamp?: boolean | undefined;
|
|
2079
|
+
}> & Readonly<{
|
|
2080
|
+
onBlur?: (() => any) | undefined;
|
|
2081
|
+
onFocus?: (() => any) | undefined;
|
|
2082
|
+
onInput?: ((value: string) => any) | undefined;
|
|
2083
|
+
"onUpdate:model-value"?: ((value: DateValue) => any) | undefined;
|
|
2084
|
+
"onDate-selected"?: ((value: DateValue) => any) | undefined;
|
|
2085
|
+
}>, {
|
|
2086
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
2087
|
+
focus(): void;
|
|
2088
|
+
blur(): void;
|
|
2089
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2090
|
+
blur: () => any;
|
|
2091
|
+
focus: () => any;
|
|
2092
|
+
input: (value: string) => any;
|
|
2093
|
+
"update:model-value": (value: DateValue) => any;
|
|
2094
|
+
"date-selected": (value: DateValue) => any;
|
|
2095
|
+
}, import('vue').PublicProps, {
|
|
2096
|
+
required: boolean;
|
|
2097
|
+
modelValue: DateValue;
|
|
2098
|
+
label: string;
|
|
2099
|
+
readonly: boolean;
|
|
2100
|
+
bgColor: string;
|
|
2101
|
+
disabled: boolean;
|
|
2102
|
+
placeholder: string;
|
|
2103
|
+
noIcon: boolean;
|
|
2104
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2105
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
2106
|
+
showSuccessMessages: boolean;
|
|
2107
|
+
disableErrorHandling: boolean;
|
|
2108
|
+
format: string;
|
|
2109
|
+
displayRange: boolean;
|
|
2110
|
+
dateFormatReturn: string;
|
|
2111
|
+
isOutlined: boolean;
|
|
2112
|
+
displayIcon: boolean;
|
|
2113
|
+
displayAppendIcon: boolean;
|
|
2114
|
+
displayPrependIcon: boolean;
|
|
2115
|
+
autoClamp: boolean;
|
|
2116
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
2117
|
+
inputRef: ({
|
|
2118
|
+
$: import('vue').ComponentInternalInstance;
|
|
2119
|
+
$data: {};
|
|
2120
|
+
$props: {
|
|
2121
|
+
readonly modelValue?: string | number | null | undefined;
|
|
2122
|
+
readonly prependIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2123
|
+
readonly appendIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2124
|
+
readonly prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2125
|
+
readonly appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
2126
|
+
readonly prependTooltip?: string | undefined;
|
|
2127
|
+
readonly appendTooltip?: string | undefined;
|
|
2128
|
+
readonly tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
2129
|
+
readonly variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
|
|
2130
|
+
readonly color?: import('../../Customs/SyTextField/types').ColorType | undefined;
|
|
2131
|
+
readonly isClearable?: boolean | undefined;
|
|
2132
|
+
readonly showDivider?: boolean | undefined;
|
|
2133
|
+
readonly label?: string | undefined;
|
|
2134
|
+
readonly required?: boolean | undefined;
|
|
2135
|
+
readonly errorMessages?: string[] | null | undefined;
|
|
2136
|
+
readonly warningMessages?: string[] | null | undefined;
|
|
2137
|
+
readonly successMessages?: string[] | null | undefined;
|
|
2138
|
+
readonly readonly?: boolean | undefined;
|
|
2139
|
+
readonly isActive?: boolean | undefined;
|
|
2140
|
+
readonly baseColor?: string | undefined;
|
|
2141
|
+
readonly bgColor?: string | undefined;
|
|
2142
|
+
readonly centerAffix?: boolean | undefined;
|
|
2143
|
+
readonly counter?: string | number | boolean | undefined;
|
|
2144
|
+
readonly counterValue?: number | ((value: any) => number) | undefined;
|
|
2145
|
+
readonly density?: "default" | "comfortable" | "compact" | undefined;
|
|
2146
|
+
readonly direction?: "horizontal" | "vertical" | undefined;
|
|
2147
|
+
readonly isDirty?: boolean | undefined;
|
|
2148
|
+
readonly disabled?: boolean | undefined;
|
|
2149
|
+
readonly isOnError?: boolean | undefined;
|
|
2150
|
+
readonly isFlat?: boolean | undefined;
|
|
2151
|
+
readonly isFocused?: boolean | undefined;
|
|
2152
|
+
readonly areDetailsHidden?: boolean | "auto" | undefined;
|
|
2153
|
+
readonly areSpinButtonsHidden?: boolean | undefined;
|
|
2154
|
+
readonly hint?: string | undefined;
|
|
2155
|
+
readonly id?: string | undefined;
|
|
2156
|
+
readonly loading?: string | boolean | undefined;
|
|
2157
|
+
readonly maxErrors?: string | number | undefined;
|
|
2158
|
+
readonly maxWidth?: string | number | undefined;
|
|
2159
|
+
readonly messages?: string | string[] | undefined;
|
|
2160
|
+
readonly minWidth?: string | number | undefined;
|
|
2161
|
+
readonly name?: string | undefined;
|
|
2162
|
+
readonly displayPersistentClear?: boolean | undefined;
|
|
2163
|
+
readonly displayPersistentCounter?: boolean | undefined;
|
|
2164
|
+
readonly displayPersistentHint?: boolean | undefined;
|
|
2165
|
+
readonly displayPersistentPlaceholder?: boolean | undefined;
|
|
2166
|
+
readonly placeholder?: string | undefined;
|
|
2167
|
+
readonly prefix?: string | undefined;
|
|
2168
|
+
readonly isReversed?: boolean | undefined;
|
|
2169
|
+
readonly role?: string | undefined;
|
|
2170
|
+
readonly rounded?: string | number | boolean | undefined;
|
|
2171
|
+
readonly isOnSingleLine?: boolean | undefined;
|
|
2172
|
+
readonly suffix?: string | undefined;
|
|
2173
|
+
readonly theme?: string | undefined;
|
|
2174
|
+
readonly isTiled?: boolean | undefined;
|
|
2175
|
+
readonly type?: string | undefined;
|
|
2176
|
+
readonly width?: string | number | undefined;
|
|
2177
|
+
readonly displayAsterisk?: boolean | undefined;
|
|
2178
|
+
readonly noIcon?: boolean | undefined;
|
|
2179
|
+
readonly customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2180
|
+
readonly customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2181
|
+
readonly customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
2182
|
+
readonly showSuccessMessages?: boolean | undefined;
|
|
2183
|
+
readonly isValidateOnBlur?: boolean | undefined;
|
|
2184
|
+
readonly disableErrorHandling?: boolean | undefined;
|
|
2185
|
+
readonly disableClickButton?: boolean | undefined;
|
|
2186
|
+
readonly autocomplete?: string | undefined;
|
|
2187
|
+
readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2188
|
+
readonly onClear?: ((...args: any[]) => any) | undefined;
|
|
2189
|
+
readonly "onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
2190
|
+
readonly "onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
2191
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
2192
|
+
$attrs: {
|
|
2193
|
+
[x: string]: unknown;
|
|
2194
|
+
};
|
|
2195
|
+
$refs: {
|
|
2196
|
+
[x: string]: unknown;
|
|
2246
2197
|
} & {
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
$: import('vue').ComponentInternalInstance;
|
|
2253
|
-
$data: {};
|
|
2254
|
-
$props: Partial<{
|
|
2255
|
-
error: boolean;
|
|
2256
|
-
direction: "horizontal" | "vertical";
|
|
2257
|
-
style: import('vue').StyleValue;
|
|
2258
|
-
disabled: boolean | null;
|
|
2259
|
-
readonly: boolean | null;
|
|
2260
|
-
messages: string | readonly string[];
|
|
2261
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2262
|
-
focused: boolean;
|
|
2263
|
-
errorMessages: string | readonly string[] | null;
|
|
2264
|
-
maxErrors: string | number;
|
|
2265
|
-
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2266
|
-
centerAffix: boolean;
|
|
2267
|
-
glow: boolean;
|
|
2268
|
-
hideSpinButtons: boolean;
|
|
2269
|
-
persistentHint: boolean;
|
|
2270
|
-
}> & Omit<{
|
|
2198
|
+
syTextFieldRef: import('vue').CreateComponentPublicInstanceWithMixins<{
|
|
2199
|
+
flat: boolean;
|
|
2200
|
+
reverse: boolean;
|
|
2201
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2202
|
+
type: string;
|
|
2271
2203
|
error: boolean;
|
|
2204
|
+
active: boolean;
|
|
2272
2205
|
direction: "horizontal" | "vertical";
|
|
2273
2206
|
style: import('vue').StyleValue;
|
|
2274
|
-
|
|
2207
|
+
autofocus: boolean;
|
|
2208
|
+
disabled: boolean;
|
|
2275
2209
|
readonly: boolean | null;
|
|
2276
2210
|
messages: string | readonly string[];
|
|
2277
2211
|
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
@@ -2279,77 +2213,329 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2279
2213
|
errorMessages: string | readonly string[] | null;
|
|
2280
2214
|
maxErrors: string | number;
|
|
2281
2215
|
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2282
|
-
|
|
2216
|
+
tile: boolean;
|
|
2217
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2283
2218
|
glow: boolean;
|
|
2284
2219
|
hideSpinButtons: boolean;
|
|
2285
2220
|
persistentHint: boolean;
|
|
2221
|
+
clearable: boolean;
|
|
2222
|
+
dirty: boolean;
|
|
2223
|
+
persistentClear: boolean;
|
|
2224
|
+
singleLine: boolean;
|
|
2225
|
+
persistentPlaceholder: boolean;
|
|
2226
|
+
persistentCounter: boolean;
|
|
2227
|
+
} & {
|
|
2286
2228
|
name?: string | undefined;
|
|
2287
2229
|
id?: string | undefined;
|
|
2288
2230
|
width?: string | number | undefined;
|
|
2289
2231
|
color?: string | undefined;
|
|
2290
2232
|
maxWidth?: string | number | undefined;
|
|
2291
2233
|
minWidth?: string | number | undefined;
|
|
2234
|
+
loading?: string | boolean | undefined;
|
|
2292
2235
|
label?: string | undefined;
|
|
2236
|
+
prefix?: string | undefined;
|
|
2237
|
+
role?: string | undefined;
|
|
2293
2238
|
class?: any;
|
|
2294
2239
|
theme?: string | undefined;
|
|
2240
|
+
placeholder?: string | undefined;
|
|
2241
|
+
counter?: string | number | boolean | undefined;
|
|
2295
2242
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2243
|
+
modelValue?: any;
|
|
2296
2244
|
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2297
2245
|
validationValue?: any;
|
|
2246
|
+
rounded?: string | number | boolean | undefined;
|
|
2298
2247
|
baseColor?: string | undefined;
|
|
2248
|
+
bgColor?: string | undefined;
|
|
2299
2249
|
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2300
2250
|
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2251
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2252
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2253
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2301
2254
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2302
2255
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2256
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2257
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2258
|
+
centerAffix?: boolean | undefined;
|
|
2303
2259
|
iconColor?: string | boolean | undefined;
|
|
2304
2260
|
hint?: string | undefined;
|
|
2305
2261
|
hideDetails?: boolean | "auto" | undefined;
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
}
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2262
|
+
suffix?: string | undefined;
|
|
2263
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
2264
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
2265
|
+
} & {
|
|
2266
|
+
$children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
|
|
2267
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2268
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2269
|
+
props: Record<string, any>;
|
|
2270
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2271
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2272
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2273
|
+
label: string | undefined;
|
|
2274
|
+
props: Record<string, any>;
|
|
2275
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2276
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2277
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2278
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2279
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2280
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2281
|
+
default?: (() => import('vue').VNodeChild) | undefined;
|
|
2282
|
+
counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2283
|
+
};
|
|
2284
|
+
'v-slots'?: {
|
|
2285
|
+
message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2286
|
+
clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2287
|
+
props: Record<string, any>;
|
|
2288
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2289
|
+
details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2290
|
+
label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2291
|
+
label: string | undefined;
|
|
2292
|
+
props: Record<string, any>;
|
|
2293
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2294
|
+
append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2295
|
+
prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2296
|
+
loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2297
|
+
'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2298
|
+
'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2299
|
+
default?: false | (() => import('vue').VNodeChild) | undefined;
|
|
2300
|
+
counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2301
|
+
} | undefined;
|
|
2302
|
+
} & {
|
|
2303
|
+
"v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2304
|
+
"v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2305
|
+
props: Record<string, any>;
|
|
2306
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2307
|
+
"v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2308
|
+
"v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2309
|
+
label: string | undefined;
|
|
2310
|
+
props: Record<string, any>;
|
|
2311
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2312
|
+
"v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2313
|
+
"v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2314
|
+
"v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2315
|
+
"v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2316
|
+
"v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2317
|
+
"v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
|
|
2318
|
+
"v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2319
|
+
} & {
|
|
2320
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2321
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
2322
|
+
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
2323
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
2324
|
+
}, HTMLInputElement & Omit<Omit<{
|
|
2325
|
+
$: import('vue').ComponentInternalInstance;
|
|
2326
|
+
$data: {};
|
|
2327
|
+
$props: Partial<{
|
|
2328
|
+
error: boolean;
|
|
2329
|
+
direction: "horizontal" | "vertical";
|
|
2330
|
+
style: import('vue').StyleValue;
|
|
2331
|
+
disabled: boolean | null;
|
|
2332
|
+
readonly: boolean | null;
|
|
2333
|
+
messages: string | readonly string[];
|
|
2334
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2335
|
+
focused: boolean;
|
|
2336
|
+
errorMessages: string | readonly string[] | null;
|
|
2337
|
+
maxErrors: string | number;
|
|
2338
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2339
|
+
centerAffix: boolean;
|
|
2340
|
+
glow: boolean;
|
|
2341
|
+
hideSpinButtons: boolean;
|
|
2342
|
+
persistentHint: boolean;
|
|
2343
|
+
}> & Omit<{
|
|
2344
|
+
error: boolean;
|
|
2345
|
+
direction: "horizontal" | "vertical";
|
|
2346
|
+
style: import('vue').StyleValue;
|
|
2347
|
+
disabled: boolean | null;
|
|
2348
|
+
readonly: boolean | null;
|
|
2349
|
+
messages: string | readonly string[];
|
|
2350
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2351
|
+
focused: boolean;
|
|
2352
|
+
errorMessages: string | readonly string[] | null;
|
|
2353
|
+
maxErrors: string | number;
|
|
2354
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2355
|
+
centerAffix: boolean;
|
|
2356
|
+
glow: boolean;
|
|
2357
|
+
hideSpinButtons: boolean;
|
|
2358
|
+
persistentHint: boolean;
|
|
2359
|
+
name?: string | undefined;
|
|
2360
|
+
id?: string | undefined;
|
|
2361
|
+
width?: string | number | undefined;
|
|
2362
|
+
color?: string | undefined;
|
|
2363
|
+
maxWidth?: string | number | undefined;
|
|
2364
|
+
minWidth?: string | number | undefined;
|
|
2365
|
+
label?: string | undefined;
|
|
2366
|
+
class?: any;
|
|
2367
|
+
theme?: string | undefined;
|
|
2368
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2369
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2370
|
+
validationValue?: any;
|
|
2371
|
+
baseColor?: string | undefined;
|
|
2372
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2373
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2374
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2375
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2376
|
+
iconColor?: string | boolean | undefined;
|
|
2377
|
+
hint?: string | undefined;
|
|
2378
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
2379
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
|
|
2380
|
+
$attrs: {
|
|
2381
|
+
[x: string]: unknown;
|
|
2382
|
+
};
|
|
2383
|
+
$refs: {
|
|
2384
|
+
[x: string]: unknown;
|
|
2385
|
+
};
|
|
2386
|
+
$slots: Readonly<{
|
|
2387
|
+
default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2388
|
+
[key: string]: any;
|
|
2389
|
+
}>[]) | undefined;
|
|
2390
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2391
|
+
[key: string]: any;
|
|
2392
|
+
}>[]) | undefined;
|
|
2393
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2394
|
+
[key: string]: any;
|
|
2395
|
+
}>[]) | undefined;
|
|
2396
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2397
|
+
[key: string]: any;
|
|
2398
|
+
}>[]) | undefined;
|
|
2399
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2400
|
+
[key: string]: any;
|
|
2401
|
+
}>[]) | undefined;
|
|
2402
|
+
}>;
|
|
2403
|
+
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2404
|
+
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2405
|
+
$host: Element | null;
|
|
2406
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
2407
|
+
$el: any;
|
|
2408
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
2409
|
+
error: boolean;
|
|
2410
|
+
direction: "horizontal" | "vertical";
|
|
2411
|
+
style: import('vue').StyleValue;
|
|
2412
|
+
disabled: boolean | null;
|
|
2413
|
+
readonly: boolean | null;
|
|
2414
|
+
messages: string | readonly string[];
|
|
2415
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2416
|
+
focused: boolean;
|
|
2417
|
+
errorMessages: string | readonly string[] | null;
|
|
2418
|
+
maxErrors: string | number;
|
|
2419
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2420
|
+
centerAffix: boolean;
|
|
2421
|
+
glow: boolean;
|
|
2422
|
+
hideSpinButtons: boolean;
|
|
2423
|
+
persistentHint: boolean;
|
|
2424
|
+
} & {
|
|
2425
|
+
name?: string | undefined;
|
|
2426
|
+
id?: string | undefined;
|
|
2427
|
+
width?: string | number | undefined;
|
|
2428
|
+
color?: string | undefined;
|
|
2429
|
+
maxWidth?: string | number | undefined;
|
|
2430
|
+
minWidth?: string | number | undefined;
|
|
2431
|
+
label?: string | undefined;
|
|
2432
|
+
class?: any;
|
|
2433
|
+
theme?: string | undefined;
|
|
2434
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2435
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2436
|
+
validationValue?: any;
|
|
2437
|
+
baseColor?: string | undefined;
|
|
2438
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2439
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2440
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2441
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2442
|
+
iconColor?: string | boolean | undefined;
|
|
2443
|
+
hint?: string | undefined;
|
|
2444
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
2445
|
+
}, {
|
|
2446
|
+
reset: () => Promise<void>;
|
|
2447
|
+
resetValidation: () => Promise<void>;
|
|
2448
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
2449
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
2450
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
2451
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
2452
|
+
'update:modelValue': (value: any) => true;
|
|
2453
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
|
|
2454
|
+
error: boolean;
|
|
2455
|
+
direction: "horizontal" | "vertical";
|
|
2456
|
+
style: import('vue').StyleValue;
|
|
2457
|
+
disabled: boolean | null;
|
|
2458
|
+
readonly: boolean | null;
|
|
2459
|
+
messages: string | readonly string[];
|
|
2460
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2461
|
+
focused: boolean;
|
|
2462
|
+
errorMessages: string | readonly string[] | null;
|
|
2463
|
+
maxErrors: string | number;
|
|
2464
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2465
|
+
centerAffix: boolean;
|
|
2466
|
+
glow: boolean;
|
|
2467
|
+
hideSpinButtons: boolean;
|
|
2468
|
+
persistentHint: boolean;
|
|
2469
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
2470
|
+
default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2471
|
+
[key: string]: any;
|
|
2472
|
+
}>[];
|
|
2473
|
+
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2474
|
+
[key: string]: any;
|
|
2475
|
+
}>[];
|
|
2476
|
+
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2477
|
+
[key: string]: any;
|
|
2478
|
+
}>[];
|
|
2479
|
+
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2480
|
+
[key: string]: any;
|
|
2481
|
+
}>[];
|
|
2482
|
+
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2483
|
+
[key: string]: any;
|
|
2484
|
+
}>[];
|
|
2485
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
2486
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
2487
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
2488
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
2489
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
2490
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
2491
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
2492
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
2493
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
2494
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
2495
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
2496
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
2497
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
2498
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
2499
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
2500
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
2501
|
+
};
|
|
2502
|
+
$forceUpdate: () => void;
|
|
2503
|
+
$nextTick: typeof nextTick;
|
|
2504
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
2505
|
+
} & Readonly<{
|
|
2506
|
+
error: boolean;
|
|
2507
|
+
direction: "horizontal" | "vertical";
|
|
2508
|
+
style: import('vue').StyleValue;
|
|
2509
|
+
disabled: boolean | null;
|
|
2510
|
+
readonly: boolean | null;
|
|
2511
|
+
messages: string | readonly string[];
|
|
2512
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2513
|
+
focused: boolean;
|
|
2514
|
+
errorMessages: string | readonly string[] | null;
|
|
2515
|
+
maxErrors: string | number;
|
|
2516
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2517
|
+
centerAffix: boolean;
|
|
2518
|
+
glow: boolean;
|
|
2519
|
+
hideSpinButtons: boolean;
|
|
2520
|
+
persistentHint: boolean;
|
|
2521
|
+
}> & Omit<{
|
|
2522
|
+
error: boolean;
|
|
2523
|
+
direction: "horizontal" | "vertical";
|
|
2524
|
+
style: import('vue').StyleValue;
|
|
2525
|
+
disabled: boolean | null;
|
|
2526
|
+
readonly: boolean | null;
|
|
2527
|
+
messages: string | readonly string[];
|
|
2528
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2529
|
+
focused: boolean;
|
|
2530
|
+
errorMessages: string | readonly string[] | null;
|
|
2531
|
+
maxErrors: string | number;
|
|
2532
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2533
|
+
centerAffix: boolean;
|
|
2534
|
+
glow: boolean;
|
|
2535
|
+
hideSpinButtons: boolean;
|
|
2536
|
+
persistentHint: boolean;
|
|
2537
|
+
} & {
|
|
2538
|
+
name?: string | undefined;
|
|
2353
2539
|
id?: string | undefined;
|
|
2354
2540
|
width?: string | number | undefined;
|
|
2355
2541
|
color?: string | undefined;
|
|
@@ -2366,135 +2552,214 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2366
2552
|
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2367
2553
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2368
2554
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2369
|
-
iconColor?: string | boolean | undefined;
|
|
2370
|
-
hint?: string | undefined;
|
|
2371
|
-
hideDetails?: boolean | "auto" | undefined;
|
|
2372
|
-
}, {
|
|
2373
|
-
reset: () => Promise<void>;
|
|
2374
|
-
resetValidation: () => Promise<void>;
|
|
2375
|
-
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
2376
|
-
isValid: import('vue').ComputedRef<boolean | null>;
|
|
2377
|
-
errorMessages: import('vue').ComputedRef<string[]>;
|
|
2378
|
-
}
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
}>
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2555
|
+
iconColor?: string | boolean | undefined;
|
|
2556
|
+
hint?: string | undefined;
|
|
2557
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
2558
|
+
}, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
|
|
2559
|
+
reset: () => Promise<void>;
|
|
2560
|
+
resetValidation: () => Promise<void>;
|
|
2561
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
2562
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
2563
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
2564
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
2565
|
+
modelValue?: unknown;
|
|
2566
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
2567
|
+
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
|
|
2568
|
+
$: import('vue').ComponentInternalInstance;
|
|
2569
|
+
$data: {};
|
|
2570
|
+
$props: Partial<{
|
|
2571
|
+
flat: boolean;
|
|
2572
|
+
reverse: boolean;
|
|
2573
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2574
|
+
error: boolean;
|
|
2575
|
+
active: boolean;
|
|
2576
|
+
style: import('vue').StyleValue;
|
|
2577
|
+
disabled: boolean;
|
|
2578
|
+
focused: boolean;
|
|
2579
|
+
rounded: string | number | boolean;
|
|
2580
|
+
tile: boolean;
|
|
2581
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2582
|
+
centerAffix: boolean;
|
|
2583
|
+
glow: boolean;
|
|
2584
|
+
clearable: boolean;
|
|
2585
|
+
dirty: boolean;
|
|
2586
|
+
persistentClear: boolean;
|
|
2587
|
+
singleLine: boolean;
|
|
2588
|
+
}> & Omit<{
|
|
2589
|
+
flat: boolean;
|
|
2590
|
+
reverse: boolean;
|
|
2591
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2592
|
+
error: boolean;
|
|
2593
|
+
active: boolean;
|
|
2594
|
+
style: import('vue').StyleValue;
|
|
2595
|
+
disabled: boolean;
|
|
2596
|
+
focused: boolean;
|
|
2597
|
+
tile: boolean;
|
|
2598
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2599
|
+
glow: boolean;
|
|
2600
|
+
clearable: boolean;
|
|
2601
|
+
dirty: boolean;
|
|
2602
|
+
persistentClear: boolean;
|
|
2603
|
+
singleLine: boolean;
|
|
2604
|
+
id?: string | undefined;
|
|
2605
|
+
color?: string | undefined;
|
|
2606
|
+
loading?: string | boolean | undefined;
|
|
2607
|
+
label?: string | undefined;
|
|
2608
|
+
class?: any;
|
|
2609
|
+
theme?: string | undefined;
|
|
2610
|
+
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
2611
|
+
rounded?: string | number | boolean | undefined;
|
|
2612
|
+
baseColor?: string | undefined;
|
|
2613
|
+
bgColor?: string | undefined;
|
|
2614
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2615
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2616
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2617
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2618
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2619
|
+
centerAffix?: boolean | undefined;
|
|
2620
|
+
iconColor?: string | boolean | undefined;
|
|
2621
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
2622
|
+
$attrs: {
|
|
2623
|
+
[x: string]: unknown;
|
|
2624
|
+
};
|
|
2625
|
+
$refs: {
|
|
2626
|
+
[x: string]: unknown;
|
|
2627
|
+
};
|
|
2628
|
+
$slots: Readonly<{
|
|
2629
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2630
|
+
props: Record<string, any>;
|
|
2631
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2632
|
+
[key: string]: any;
|
|
2633
|
+
}>[]) | undefined;
|
|
2634
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2635
|
+
[key: string]: any;
|
|
2636
|
+
}>[]) | undefined;
|
|
2637
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2638
|
+
[key: string]: any;
|
|
2639
|
+
}>[]) | undefined;
|
|
2640
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2641
|
+
label: string | undefined;
|
|
2642
|
+
props: Record<string, any>;
|
|
2643
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2644
|
+
[key: string]: any;
|
|
2645
|
+
}>[]) | undefined;
|
|
2646
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2647
|
+
[key: string]: any;
|
|
2648
|
+
}>[]) | undefined;
|
|
2649
|
+
default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2650
|
+
[key: string]: any;
|
|
2651
|
+
}>[]) | undefined;
|
|
2652
|
+
}>;
|
|
2653
|
+
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2654
|
+
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2655
|
+
$host: Element | null;
|
|
2656
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
2657
|
+
$el: any;
|
|
2658
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
2659
|
+
flat: boolean;
|
|
2660
|
+
reverse: boolean;
|
|
2661
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2662
|
+
error: boolean;
|
|
2663
|
+
active: boolean;
|
|
2664
|
+
style: import('vue').StyleValue;
|
|
2665
|
+
disabled: boolean;
|
|
2666
|
+
focused: boolean;
|
|
2667
|
+
tile: boolean;
|
|
2668
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2669
|
+
glow: boolean;
|
|
2670
|
+
clearable: boolean;
|
|
2671
|
+
dirty: boolean;
|
|
2672
|
+
persistentClear: boolean;
|
|
2673
|
+
singleLine: boolean;
|
|
2674
|
+
} & {
|
|
2675
|
+
id?: string | undefined;
|
|
2676
|
+
color?: string | undefined;
|
|
2677
|
+
loading?: string | boolean | undefined;
|
|
2678
|
+
label?: string | undefined;
|
|
2679
|
+
class?: any;
|
|
2680
|
+
theme?: string | undefined;
|
|
2681
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2682
|
+
rounded?: string | number | boolean | undefined;
|
|
2683
|
+
baseColor?: string | undefined;
|
|
2684
|
+
bgColor?: string | undefined;
|
|
2685
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2686
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2687
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2688
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2689
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2690
|
+
centerAffix?: boolean | undefined;
|
|
2691
|
+
iconColor?: string | boolean | undefined;
|
|
2692
|
+
} & {
|
|
2693
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2694
|
+
}, {
|
|
2695
|
+
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2696
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
2697
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
2698
|
+
'update:focused': (focused: boolean) => true;
|
|
2699
|
+
'update:modelValue': (value: any) => true;
|
|
2700
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
|
|
2701
|
+
flat: boolean;
|
|
2702
|
+
reverse: boolean;
|
|
2703
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2704
|
+
error: boolean;
|
|
2705
|
+
active: boolean;
|
|
2706
|
+
style: import('vue').StyleValue;
|
|
2707
|
+
disabled: boolean;
|
|
2708
|
+
focused: boolean;
|
|
2709
|
+
rounded: string | number | boolean;
|
|
2710
|
+
tile: boolean;
|
|
2711
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2712
|
+
centerAffix: boolean;
|
|
2713
|
+
glow: boolean;
|
|
2714
|
+
clearable: boolean;
|
|
2715
|
+
dirty: boolean;
|
|
2716
|
+
persistentClear: boolean;
|
|
2717
|
+
singleLine: boolean;
|
|
2718
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
2719
|
+
clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2720
|
+
props: Record<string, any>;
|
|
2721
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2722
|
+
[key: string]: any;
|
|
2723
|
+
}>[];
|
|
2724
|
+
'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2725
|
+
[key: string]: any;
|
|
2726
|
+
}>[];
|
|
2727
|
+
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2728
|
+
[key: string]: any;
|
|
2729
|
+
}>[];
|
|
2730
|
+
label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2731
|
+
label: string | undefined;
|
|
2732
|
+
props: Record<string, any>;
|
|
2733
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2734
|
+
[key: string]: any;
|
|
2735
|
+
}>[];
|
|
2736
|
+
loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2737
|
+
[key: string]: any;
|
|
2738
|
+
}>[];
|
|
2739
|
+
default: (arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2740
|
+
[key: string]: any;
|
|
2741
|
+
}>[];
|
|
2742
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
2743
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
2744
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
2745
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
2746
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
2747
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
2748
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
2749
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
2750
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
2751
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
2752
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
2753
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
2754
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
2755
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
2756
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
2757
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
2758
|
+
};
|
|
2759
|
+
$forceUpdate: () => void;
|
|
2760
|
+
$nextTick: typeof nextTick;
|
|
2761
|
+
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R_1 ? (args_0: R_1, args_1: R_1, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
2762
|
+
} & Readonly<{
|
|
2498
2763
|
flat: boolean;
|
|
2499
2764
|
reverse: boolean;
|
|
2500
2765
|
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
@@ -2528,76 +2793,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2528
2793
|
dirty: boolean;
|
|
2529
2794
|
persistentClear: boolean;
|
|
2530
2795
|
singleLine: boolean;
|
|
2531
|
-
id?: string | undefined;
|
|
2532
|
-
color?: string | undefined;
|
|
2533
|
-
loading?: string | boolean | undefined;
|
|
2534
|
-
label?: string | undefined;
|
|
2535
|
-
class?: any;
|
|
2536
|
-
theme?: string | undefined;
|
|
2537
|
-
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
2538
|
-
rounded?: string | number | boolean | undefined;
|
|
2539
|
-
baseColor?: string | undefined;
|
|
2540
|
-
bgColor?: string | undefined;
|
|
2541
|
-
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2542
|
-
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2543
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2544
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2545
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2546
|
-
centerAffix?: boolean | undefined;
|
|
2547
|
-
iconColor?: string | boolean | undefined;
|
|
2548
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
2549
|
-
$attrs: {
|
|
2550
|
-
[x: string]: unknown;
|
|
2551
|
-
};
|
|
2552
|
-
$refs: {
|
|
2553
|
-
[x: string]: unknown;
|
|
2554
|
-
};
|
|
2555
|
-
$slots: Readonly<{
|
|
2556
|
-
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2557
|
-
props: Record<string, any>;
|
|
2558
|
-
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2559
|
-
[key: string]: any;
|
|
2560
|
-
}>[]) | undefined;
|
|
2561
|
-
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2562
|
-
[key: string]: any;
|
|
2563
|
-
}>[]) | undefined;
|
|
2564
|
-
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2565
|
-
[key: string]: any;
|
|
2566
|
-
}>[]) | undefined;
|
|
2567
|
-
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2568
|
-
label: string | undefined;
|
|
2569
|
-
props: Record<string, any>;
|
|
2570
|
-
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2571
|
-
[key: string]: any;
|
|
2572
|
-
}>[]) | undefined;
|
|
2573
|
-
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2574
|
-
[key: string]: any;
|
|
2575
|
-
}>[]) | undefined;
|
|
2576
|
-
default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2577
|
-
[key: string]: any;
|
|
2578
|
-
}>[]) | undefined;
|
|
2579
|
-
}>;
|
|
2580
|
-
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2581
|
-
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
2582
|
-
$host: Element | null;
|
|
2583
|
-
$emit: (event: "update:focused", focused: boolean) => void;
|
|
2584
|
-
$el: any;
|
|
2585
|
-
$options: import('vue').ComponentOptionsBase<{
|
|
2586
|
-
flat: boolean;
|
|
2587
|
-
reverse: boolean;
|
|
2588
|
-
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2589
|
-
error: boolean;
|
|
2590
|
-
active: boolean;
|
|
2591
|
-
style: import('vue').StyleValue;
|
|
2592
|
-
disabled: boolean;
|
|
2593
|
-
focused: boolean;
|
|
2594
|
-
tile: boolean;
|
|
2595
|
-
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2596
|
-
glow: boolean;
|
|
2597
|
-
clearable: boolean;
|
|
2598
|
-
dirty: boolean;
|
|
2599
|
-
persistentClear: boolean;
|
|
2600
|
-
singleLine: boolean;
|
|
2601
2796
|
} & {
|
|
2602
2797
|
id?: string | undefined;
|
|
2603
2798
|
color?: string | undefined;
|
|
@@ -2618,40 +2813,69 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2618
2813
|
iconColor?: string | boolean | undefined;
|
|
2619
2814
|
} & {
|
|
2620
2815
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2621
|
-
}, {
|
|
2816
|
+
}, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
|
|
2622
2817
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2623
2818
|
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
2624
|
-
}
|
|
2819
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
2820
|
+
modelValue?: unknown;
|
|
2821
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
2822
|
+
}, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
|
|
2823
|
+
_allExposed: {} | {
|
|
2824
|
+
reset: () => Promise<void>;
|
|
2825
|
+
resetValidation: () => Promise<void>;
|
|
2826
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
2827
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
2828
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
2829
|
+
} | {
|
|
2830
|
+
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2831
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
2832
|
+
};
|
|
2833
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2834
|
+
'click:control': (e: MouseEvent) => true;
|
|
2835
|
+
'mousedown:control': (e: MouseEvent) => true;
|
|
2625
2836
|
'update:focused': (focused: boolean) => true;
|
|
2626
|
-
'update:modelValue': (
|
|
2627
|
-
},
|
|
2837
|
+
'update:modelValue': (val: string) => true;
|
|
2838
|
+
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
|
|
2628
2839
|
flat: boolean;
|
|
2629
2840
|
reverse: boolean;
|
|
2630
2841
|
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2842
|
+
type: string;
|
|
2631
2843
|
error: boolean;
|
|
2632
2844
|
active: boolean;
|
|
2845
|
+
direction: "horizontal" | "vertical";
|
|
2633
2846
|
style: import('vue').StyleValue;
|
|
2847
|
+
autofocus: boolean;
|
|
2634
2848
|
disabled: boolean;
|
|
2849
|
+
readonly: boolean | null;
|
|
2850
|
+
messages: string | readonly string[];
|
|
2851
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2635
2852
|
focused: boolean;
|
|
2853
|
+
errorMessages: string | readonly string[] | null;
|
|
2854
|
+
maxErrors: string | number;
|
|
2855
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2636
2856
|
rounded: string | number | boolean;
|
|
2637
2857
|
tile: boolean;
|
|
2638
2858
|
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2639
2859
|
centerAffix: boolean;
|
|
2640
2860
|
glow: boolean;
|
|
2861
|
+
hideSpinButtons: boolean;
|
|
2862
|
+
persistentHint: boolean;
|
|
2641
2863
|
clearable: boolean;
|
|
2642
2864
|
dirty: boolean;
|
|
2643
2865
|
persistentClear: boolean;
|
|
2644
2866
|
singleLine: boolean;
|
|
2645
|
-
|
|
2867
|
+
persistentPlaceholder: boolean;
|
|
2868
|
+
persistentCounter: boolean;
|
|
2869
|
+
}, true, {}, import('vue').SlotsType<Partial<{
|
|
2870
|
+
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2871
|
+
[key: string]: any;
|
|
2872
|
+
}>[];
|
|
2646
2873
|
clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2647
2874
|
props: Record<string, any>;
|
|
2648
2875
|
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2649
2876
|
[key: string]: any;
|
|
2650
2877
|
}>[];
|
|
2651
|
-
|
|
2652
|
-
[key: string]: any;
|
|
2653
|
-
}>[];
|
|
2654
|
-
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2878
|
+
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2655
2879
|
[key: string]: any;
|
|
2656
2880
|
}>[];
|
|
2657
2881
|
label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
@@ -2660,400 +2884,45 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2660
2884
|
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2661
2885
|
[key: string]: any;
|
|
2662
2886
|
}>[];
|
|
2663
|
-
|
|
2887
|
+
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2664
2888
|
[key: string]: any;
|
|
2665
2889
|
}>[];
|
|
2666
|
-
|
|
2890
|
+
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2667
2891
|
[key: string]: any;
|
|
2668
2892
|
}>[];
|
|
2669
|
-
|
|
2670
|
-
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
2671
|
-
created?: (() => void) | (() => void)[] | undefined;
|
|
2672
|
-
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
2673
|
-
mounted?: (() => void) | (() => void)[] | undefined;
|
|
2674
|
-
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
2675
|
-
updated?: (() => void) | (() => void)[] | undefined;
|
|
2676
|
-
activated?: (() => void) | (() => void)[] | undefined;
|
|
2677
|
-
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
2678
|
-
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
2679
|
-
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
2680
|
-
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
2681
|
-
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
2682
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
2683
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
2684
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
2685
|
-
};
|
|
2686
|
-
$forceUpdate: () => void;
|
|
2687
|
-
$nextTick: typeof nextTick;
|
|
2688
|
-
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R_1 ? (args_0: R_1, args_1: R_1, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
2689
|
-
} & Readonly<{
|
|
2690
|
-
flat: boolean;
|
|
2691
|
-
reverse: boolean;
|
|
2692
|
-
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2693
|
-
error: boolean;
|
|
2694
|
-
active: boolean;
|
|
2695
|
-
style: import('vue').StyleValue;
|
|
2696
|
-
disabled: boolean;
|
|
2697
|
-
focused: boolean;
|
|
2698
|
-
rounded: string | number | boolean;
|
|
2699
|
-
tile: boolean;
|
|
2700
|
-
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2701
|
-
centerAffix: boolean;
|
|
2702
|
-
glow: boolean;
|
|
2703
|
-
clearable: boolean;
|
|
2704
|
-
dirty: boolean;
|
|
2705
|
-
persistentClear: boolean;
|
|
2706
|
-
singleLine: boolean;
|
|
2707
|
-
}> & Omit<{
|
|
2708
|
-
flat: boolean;
|
|
2709
|
-
reverse: boolean;
|
|
2710
|
-
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2711
|
-
error: boolean;
|
|
2712
|
-
active: boolean;
|
|
2713
|
-
style: import('vue').StyleValue;
|
|
2714
|
-
disabled: boolean;
|
|
2715
|
-
focused: boolean;
|
|
2716
|
-
tile: boolean;
|
|
2717
|
-
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2718
|
-
glow: boolean;
|
|
2719
|
-
clearable: boolean;
|
|
2720
|
-
dirty: boolean;
|
|
2721
|
-
persistentClear: boolean;
|
|
2722
|
-
singleLine: boolean;
|
|
2723
|
-
} & {
|
|
2724
|
-
id?: string | undefined;
|
|
2725
|
-
color?: string | undefined;
|
|
2726
|
-
loading?: string | boolean | undefined;
|
|
2727
|
-
label?: string | undefined;
|
|
2728
|
-
class?: any;
|
|
2729
|
-
theme?: string | undefined;
|
|
2730
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2731
|
-
rounded?: string | number | boolean | undefined;
|
|
2732
|
-
baseColor?: string | undefined;
|
|
2733
|
-
bgColor?: string | undefined;
|
|
2734
|
-
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2735
|
-
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2736
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2737
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2738
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2739
|
-
centerAffix?: boolean | undefined;
|
|
2740
|
-
iconColor?: string | boolean | undefined;
|
|
2741
|
-
} & {
|
|
2742
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2743
|
-
}, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
|
|
2744
|
-
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2745
|
-
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
2746
|
-
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
2747
|
-
modelValue?: unknown;
|
|
2748
|
-
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
2749
|
-
}, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
|
|
2750
|
-
_allExposed: {} | {
|
|
2751
|
-
reset: () => Promise<void>;
|
|
2752
|
-
resetValidation: () => Promise<void>;
|
|
2753
|
-
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
2754
|
-
isValid: import('vue').ComputedRef<boolean | null>;
|
|
2755
|
-
errorMessages: import('vue').ComputedRef<string[]>;
|
|
2756
|
-
} | {
|
|
2757
|
-
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2758
|
-
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
2759
|
-
};
|
|
2760
|
-
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2761
|
-
'click:control': (e: MouseEvent) => true;
|
|
2762
|
-
'mousedown:control': (e: MouseEvent) => true;
|
|
2763
|
-
'update:focused': (focused: boolean) => true;
|
|
2764
|
-
'update:modelValue': (val: string) => true;
|
|
2765
|
-
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
|
|
2766
|
-
flat: boolean;
|
|
2767
|
-
reverse: boolean;
|
|
2768
|
-
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2769
|
-
type: string;
|
|
2770
|
-
error: boolean;
|
|
2771
|
-
active: boolean;
|
|
2772
|
-
direction: "horizontal" | "vertical";
|
|
2773
|
-
style: import('vue').StyleValue;
|
|
2774
|
-
autofocus: boolean;
|
|
2775
|
-
disabled: boolean;
|
|
2776
|
-
readonly: boolean | null;
|
|
2777
|
-
messages: string | readonly string[];
|
|
2778
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2779
|
-
focused: boolean;
|
|
2780
|
-
errorMessages: string | readonly string[] | null;
|
|
2781
|
-
maxErrors: string | number;
|
|
2782
|
-
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2783
|
-
rounded: string | number | boolean;
|
|
2784
|
-
tile: boolean;
|
|
2785
|
-
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2786
|
-
centerAffix: boolean;
|
|
2787
|
-
glow: boolean;
|
|
2788
|
-
hideSpinButtons: boolean;
|
|
2789
|
-
persistentHint: boolean;
|
|
2790
|
-
clearable: boolean;
|
|
2791
|
-
dirty: boolean;
|
|
2792
|
-
persistentClear: boolean;
|
|
2793
|
-
singleLine: boolean;
|
|
2794
|
-
persistentPlaceholder: boolean;
|
|
2795
|
-
persistentCounter: boolean;
|
|
2796
|
-
}, true, {}, import('vue').SlotsType<Partial<{
|
|
2797
|
-
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2798
|
-
[key: string]: any;
|
|
2799
|
-
}>[];
|
|
2800
|
-
clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2801
|
-
props: Record<string, any>;
|
|
2802
|
-
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2803
|
-
[key: string]: any;
|
|
2804
|
-
}>[];
|
|
2805
|
-
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2806
|
-
[key: string]: any;
|
|
2807
|
-
}>[];
|
|
2808
|
-
label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2809
|
-
label: string | undefined;
|
|
2810
|
-
props: Record<string, any>;
|
|
2811
|
-
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2812
|
-
[key: string]: any;
|
|
2813
|
-
}>[];
|
|
2814
|
-
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2815
|
-
[key: string]: any;
|
|
2816
|
-
}>[];
|
|
2817
|
-
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2818
|
-
[key: string]: any;
|
|
2819
|
-
}>[];
|
|
2820
|
-
loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2821
|
-
[key: string]: any;
|
|
2822
|
-
}>[];
|
|
2823
|
-
'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2824
|
-
[key: string]: any;
|
|
2825
|
-
}>[];
|
|
2826
|
-
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2827
|
-
[key: string]: any;
|
|
2828
|
-
}>[];
|
|
2829
|
-
default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2830
|
-
[key: string]: any;
|
|
2831
|
-
}>[];
|
|
2832
|
-
counter: (arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2833
|
-
[key: string]: any;
|
|
2834
|
-
}>[];
|
|
2835
|
-
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
2836
|
-
P: {};
|
|
2837
|
-
B: {};
|
|
2838
|
-
D: {};
|
|
2839
|
-
C: {};
|
|
2840
|
-
M: {};
|
|
2841
|
-
Defaults: {};
|
|
2842
|
-
}, {
|
|
2843
|
-
flat: boolean;
|
|
2844
|
-
reverse: boolean;
|
|
2845
|
-
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2846
|
-
type: string;
|
|
2847
|
-
error: boolean;
|
|
2848
|
-
active: boolean;
|
|
2849
|
-
direction: "horizontal" | "vertical";
|
|
2850
|
-
style: import('vue').StyleValue;
|
|
2851
|
-
autofocus: boolean;
|
|
2852
|
-
disabled: boolean;
|
|
2853
|
-
readonly: boolean | null;
|
|
2854
|
-
messages: string | readonly string[];
|
|
2855
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2856
|
-
focused: boolean;
|
|
2857
|
-
errorMessages: string | readonly string[] | null;
|
|
2858
|
-
maxErrors: string | number;
|
|
2859
|
-
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2860
|
-
tile: boolean;
|
|
2861
|
-
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
2862
|
-
glow: boolean;
|
|
2863
|
-
hideSpinButtons: boolean;
|
|
2864
|
-
persistentHint: boolean;
|
|
2865
|
-
clearable: boolean;
|
|
2866
|
-
dirty: boolean;
|
|
2867
|
-
persistentClear: boolean;
|
|
2868
|
-
singleLine: boolean;
|
|
2869
|
-
persistentPlaceholder: boolean;
|
|
2870
|
-
persistentCounter: boolean;
|
|
2871
|
-
} & {
|
|
2872
|
-
name?: string | undefined;
|
|
2873
|
-
id?: string | undefined;
|
|
2874
|
-
width?: string | number | undefined;
|
|
2875
|
-
color?: string | undefined;
|
|
2876
|
-
maxWidth?: string | number | undefined;
|
|
2877
|
-
minWidth?: string | number | undefined;
|
|
2878
|
-
loading?: string | boolean | undefined;
|
|
2879
|
-
label?: string | undefined;
|
|
2880
|
-
prefix?: string | undefined;
|
|
2881
|
-
role?: string | undefined;
|
|
2882
|
-
class?: any;
|
|
2883
|
-
theme?: string | undefined;
|
|
2884
|
-
placeholder?: string | undefined;
|
|
2885
|
-
counter?: string | number | boolean | undefined;
|
|
2886
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2887
|
-
modelValue?: any;
|
|
2888
|
-
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
2889
|
-
validationValue?: any;
|
|
2890
|
-
rounded?: string | number | boolean | undefined;
|
|
2891
|
-
baseColor?: string | undefined;
|
|
2892
|
-
bgColor?: string | undefined;
|
|
2893
|
-
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2894
|
-
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2895
|
-
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2896
|
-
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2897
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2898
|
-
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2899
|
-
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2900
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2901
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2902
|
-
centerAffix?: boolean | undefined;
|
|
2903
|
-
iconColor?: string | boolean | undefined;
|
|
2904
|
-
hint?: string | undefined;
|
|
2905
|
-
hideDetails?: boolean | "auto" | undefined;
|
|
2906
|
-
suffix?: string | undefined;
|
|
2907
|
-
counterValue?: number | ((value: any) => number) | undefined;
|
|
2908
|
-
modelModifiers?: Record<string, boolean> | undefined;
|
|
2909
|
-
} & {
|
|
2910
|
-
$children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
|
|
2911
|
-
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2912
|
-
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2913
|
-
props: Record<string, any>;
|
|
2914
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2915
|
-
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2916
|
-
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2917
|
-
label: string | undefined;
|
|
2918
|
-
props: Record<string, any>;
|
|
2919
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2920
|
-
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2921
|
-
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2922
|
-
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2923
|
-
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2924
|
-
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2925
|
-
default?: (() => import('vue').VNodeChild) | undefined;
|
|
2926
|
-
counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2927
|
-
};
|
|
2928
|
-
'v-slots'?: {
|
|
2929
|
-
message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2930
|
-
clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2931
|
-
props: Record<string, any>;
|
|
2932
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2933
|
-
details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2934
|
-
label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2935
|
-
label: string | undefined;
|
|
2936
|
-
props: Record<string, any>;
|
|
2937
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2938
|
-
append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2939
|
-
prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2940
|
-
loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2941
|
-
'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2942
|
-
'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2943
|
-
default?: false | (() => import('vue').VNodeChild) | undefined;
|
|
2944
|
-
counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2945
|
-
} | undefined;
|
|
2946
|
-
} & {
|
|
2947
|
-
"v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2948
|
-
"v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2949
|
-
props: Record<string, any>;
|
|
2950
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2951
|
-
"v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2952
|
-
"v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2953
|
-
label: string | undefined;
|
|
2954
|
-
props: Record<string, any>;
|
|
2955
|
-
}) => import('vue').VNodeChild) | undefined;
|
|
2956
|
-
"v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2957
|
-
"v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2958
|
-
"v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2959
|
-
"v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2960
|
-
"v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2961
|
-
"v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
|
|
2962
|
-
"v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
2963
|
-
} & {
|
|
2964
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2965
|
-
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
2966
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
2967
|
-
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
2968
|
-
}, HTMLInputElement & Omit<Omit<{
|
|
2969
|
-
$: import('vue').ComponentInternalInstance;
|
|
2970
|
-
$data: {};
|
|
2971
|
-
$props: Partial<{
|
|
2972
|
-
error: boolean;
|
|
2973
|
-
direction: "horizontal" | "vertical";
|
|
2974
|
-
style: import('vue').StyleValue;
|
|
2975
|
-
disabled: boolean | null;
|
|
2976
|
-
readonly: boolean | null;
|
|
2977
|
-
messages: string | readonly string[];
|
|
2978
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2979
|
-
focused: boolean;
|
|
2980
|
-
errorMessages: string | readonly string[] | null;
|
|
2981
|
-
maxErrors: string | number;
|
|
2982
|
-
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2983
|
-
centerAffix: boolean;
|
|
2984
|
-
glow: boolean;
|
|
2985
|
-
hideSpinButtons: boolean;
|
|
2986
|
-
persistentHint: boolean;
|
|
2987
|
-
}> & Omit<{
|
|
2988
|
-
error: boolean;
|
|
2989
|
-
direction: "horizontal" | "vertical";
|
|
2990
|
-
style: import('vue').StyleValue;
|
|
2991
|
-
disabled: boolean | null;
|
|
2992
|
-
readonly: boolean | null;
|
|
2993
|
-
messages: string | readonly string[];
|
|
2994
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
2995
|
-
focused: boolean;
|
|
2996
|
-
errorMessages: string | readonly string[] | null;
|
|
2997
|
-
maxErrors: string | number;
|
|
2998
|
-
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
2999
|
-
centerAffix: boolean;
|
|
3000
|
-
glow: boolean;
|
|
3001
|
-
hideSpinButtons: boolean;
|
|
3002
|
-
persistentHint: boolean;
|
|
3003
|
-
name?: string | undefined;
|
|
3004
|
-
id?: string | undefined;
|
|
3005
|
-
width?: string | number | undefined;
|
|
3006
|
-
color?: string | undefined;
|
|
3007
|
-
maxWidth?: string | number | undefined;
|
|
3008
|
-
minWidth?: string | number | undefined;
|
|
3009
|
-
label?: string | undefined;
|
|
3010
|
-
class?: any;
|
|
3011
|
-
theme?: string | undefined;
|
|
3012
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3013
|
-
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
3014
|
-
validationValue?: any;
|
|
3015
|
-
baseColor?: string | undefined;
|
|
3016
|
-
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3017
|
-
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3018
|
-
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3019
|
-
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3020
|
-
iconColor?: string | boolean | undefined;
|
|
3021
|
-
hint?: string | undefined;
|
|
3022
|
-
hideDetails?: boolean | "auto" | undefined;
|
|
3023
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
|
|
3024
|
-
$attrs: {
|
|
3025
|
-
[x: string]: unknown;
|
|
3026
|
-
};
|
|
3027
|
-
$refs: {
|
|
3028
|
-
[x: string]: unknown;
|
|
3029
|
-
};
|
|
3030
|
-
$slots: Readonly<{
|
|
3031
|
-
default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
2893
|
+
loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3032
2894
|
[key: string]: any;
|
|
3033
|
-
}>[]
|
|
3034
|
-
prepend
|
|
2895
|
+
}>[];
|
|
2896
|
+
'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3035
2897
|
[key: string]: any;
|
|
3036
|
-
}>[]
|
|
3037
|
-
append
|
|
2898
|
+
}>[];
|
|
2899
|
+
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3038
2900
|
[key: string]: any;
|
|
3039
|
-
}>[]
|
|
3040
|
-
|
|
2901
|
+
}>[];
|
|
2902
|
+
default: () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3041
2903
|
[key: string]: any;
|
|
3042
|
-
}>[]
|
|
3043
|
-
|
|
2904
|
+
}>[];
|
|
2905
|
+
counter: (arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3044
2906
|
[key: string]: any;
|
|
3045
|
-
}>[]
|
|
3046
|
-
}
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
2907
|
+
}>[];
|
|
2908
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
2909
|
+
P: {};
|
|
2910
|
+
B: {};
|
|
2911
|
+
D: {};
|
|
2912
|
+
C: {};
|
|
2913
|
+
M: {};
|
|
2914
|
+
Defaults: {};
|
|
2915
|
+
}, {
|
|
2916
|
+
flat: boolean;
|
|
2917
|
+
reverse: boolean;
|
|
2918
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
2919
|
+
type: string;
|
|
3053
2920
|
error: boolean;
|
|
2921
|
+
active: boolean;
|
|
3054
2922
|
direction: "horizontal" | "vertical";
|
|
3055
2923
|
style: import('vue').StyleValue;
|
|
3056
|
-
|
|
2924
|
+
autofocus: boolean;
|
|
2925
|
+
disabled: boolean;
|
|
3057
2926
|
readonly: boolean | null;
|
|
3058
2927
|
messages: string | readonly string[];
|
|
3059
2928
|
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
@@ -3061,10 +2930,17 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3061
2930
|
errorMessages: string | readonly string[] | null;
|
|
3062
2931
|
maxErrors: string | number;
|
|
3063
2932
|
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3064
|
-
|
|
2933
|
+
tile: boolean;
|
|
2934
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3065
2935
|
glow: boolean;
|
|
3066
2936
|
hideSpinButtons: boolean;
|
|
3067
2937
|
persistentHint: boolean;
|
|
2938
|
+
clearable: boolean;
|
|
2939
|
+
dirty: boolean;
|
|
2940
|
+
persistentClear: boolean;
|
|
2941
|
+
singleLine: boolean;
|
|
2942
|
+
persistentPlaceholder: boolean;
|
|
2943
|
+
persistentCounter: boolean;
|
|
3068
2944
|
} & {
|
|
3069
2945
|
name?: string | undefined;
|
|
3070
2946
|
id?: string | undefined;
|
|
@@ -3072,29 +2948,278 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3072
2948
|
color?: string | undefined;
|
|
3073
2949
|
maxWidth?: string | number | undefined;
|
|
3074
2950
|
minWidth?: string | number | undefined;
|
|
2951
|
+
loading?: string | boolean | undefined;
|
|
3075
2952
|
label?: string | undefined;
|
|
2953
|
+
prefix?: string | undefined;
|
|
2954
|
+
role?: string | undefined;
|
|
3076
2955
|
class?: any;
|
|
3077
2956
|
theme?: string | undefined;
|
|
2957
|
+
placeholder?: string | undefined;
|
|
2958
|
+
counter?: string | number | boolean | undefined;
|
|
3078
2959
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2960
|
+
modelValue?: any;
|
|
3079
2961
|
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
3080
2962
|
validationValue?: any;
|
|
2963
|
+
rounded?: string | number | boolean | undefined;
|
|
3081
2964
|
baseColor?: string | undefined;
|
|
2965
|
+
bgColor?: string | undefined;
|
|
3082
2966
|
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3083
2967
|
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2968
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2969
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
2970
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3084
2971
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3085
2972
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2973
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2974
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2975
|
+
centerAffix?: boolean | undefined;
|
|
3086
2976
|
iconColor?: string | boolean | undefined;
|
|
3087
2977
|
hint?: string | undefined;
|
|
3088
2978
|
hideDetails?: boolean | "auto" | undefined;
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
2979
|
+
suffix?: string | undefined;
|
|
2980
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
2981
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
2982
|
+
} & {
|
|
2983
|
+
$children?: import('vue').VNodeChild | (() => import('vue').VNodeChild) | {
|
|
2984
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
2985
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2986
|
+
props: Record<string, any>;
|
|
2987
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2988
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2989
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
2990
|
+
label: string | undefined;
|
|
2991
|
+
props: Record<string, any>;
|
|
2992
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
2993
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2994
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2995
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
2996
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2997
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
2998
|
+
default?: (() => import('vue').VNodeChild) | undefined;
|
|
2999
|
+
counter?: ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
3000
|
+
};
|
|
3001
|
+
'v-slots'?: {
|
|
3002
|
+
message?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
3003
|
+
clear?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3004
|
+
props: Record<string, any>;
|
|
3005
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
3006
|
+
details?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
3007
|
+
label?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3008
|
+
label: string | undefined;
|
|
3009
|
+
props: Record<string, any>;
|
|
3010
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
3011
|
+
append?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
3012
|
+
prepend?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
3013
|
+
loader?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
3014
|
+
'prepend-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
3015
|
+
'append-inner'?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
3016
|
+
default?: false | (() => import('vue').VNodeChild) | undefined;
|
|
3017
|
+
counter?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
3018
|
+
} | undefined;
|
|
3019
|
+
} & {
|
|
3020
|
+
"v-slot:message"?: false | ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNodeChild) | undefined;
|
|
3021
|
+
"v-slot:clear"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3022
|
+
props: Record<string, any>;
|
|
3023
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
3024
|
+
"v-slot:details"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
3025
|
+
"v-slot:label"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3026
|
+
label: string | undefined;
|
|
3027
|
+
props: Record<string, any>;
|
|
3028
|
+
}) => import('vue').VNodeChild) | undefined;
|
|
3029
|
+
"v-slot:append"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
3030
|
+
"v-slot:prepend"?: false | ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNodeChild) | undefined;
|
|
3031
|
+
"v-slot:loader"?: false | ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNodeChild) | undefined;
|
|
3032
|
+
"v-slot:prepend-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
3033
|
+
"v-slot:append-inner"?: false | ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNodeChild) | undefined;
|
|
3034
|
+
"v-slot:default"?: false | (() => import('vue').VNodeChild) | undefined;
|
|
3035
|
+
"v-slot:counter"?: false | ((arg: import('vuetify/lib/components/VCounter/VCounter.mjs').VCounterSlot) => import('vue').VNodeChild) | undefined;
|
|
3036
|
+
} & {
|
|
3037
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3038
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
3039
|
+
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
3040
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
3041
|
+
}, HTMLInputElement & Omit<Omit<{
|
|
3042
|
+
$: import('vue').ComponentInternalInstance;
|
|
3043
|
+
$data: {};
|
|
3044
|
+
$props: Partial<{
|
|
3045
|
+
error: boolean;
|
|
3046
|
+
direction: "horizontal" | "vertical";
|
|
3047
|
+
style: import('vue').StyleValue;
|
|
3048
|
+
disabled: boolean | null;
|
|
3049
|
+
readonly: boolean | null;
|
|
3050
|
+
messages: string | readonly string[];
|
|
3051
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
3052
|
+
focused: boolean;
|
|
3053
|
+
errorMessages: string | readonly string[] | null;
|
|
3054
|
+
maxErrors: string | number;
|
|
3055
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3056
|
+
centerAffix: boolean;
|
|
3057
|
+
glow: boolean;
|
|
3058
|
+
hideSpinButtons: boolean;
|
|
3059
|
+
persistentHint: boolean;
|
|
3060
|
+
}> & Omit<{
|
|
3061
|
+
error: boolean;
|
|
3062
|
+
direction: "horizontal" | "vertical";
|
|
3063
|
+
style: import('vue').StyleValue;
|
|
3064
|
+
disabled: boolean | null;
|
|
3065
|
+
readonly: boolean | null;
|
|
3066
|
+
messages: string | readonly string[];
|
|
3067
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
3068
|
+
focused: boolean;
|
|
3069
|
+
errorMessages: string | readonly string[] | null;
|
|
3070
|
+
maxErrors: string | number;
|
|
3071
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3072
|
+
centerAffix: boolean;
|
|
3073
|
+
glow: boolean;
|
|
3074
|
+
hideSpinButtons: boolean;
|
|
3075
|
+
persistentHint: boolean;
|
|
3076
|
+
name?: string | undefined;
|
|
3077
|
+
id?: string | undefined;
|
|
3078
|
+
width?: string | number | undefined;
|
|
3079
|
+
color?: string | undefined;
|
|
3080
|
+
maxWidth?: string | number | undefined;
|
|
3081
|
+
minWidth?: string | number | undefined;
|
|
3082
|
+
label?: string | undefined;
|
|
3083
|
+
class?: any;
|
|
3084
|
+
theme?: string | undefined;
|
|
3085
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3086
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
3087
|
+
validationValue?: any;
|
|
3088
|
+
baseColor?: string | undefined;
|
|
3089
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3090
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3091
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3092
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3093
|
+
iconColor?: string | boolean | undefined;
|
|
3094
|
+
hint?: string | undefined;
|
|
3095
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
3096
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint">;
|
|
3097
|
+
$attrs: {
|
|
3098
|
+
[x: string]: unknown;
|
|
3099
|
+
};
|
|
3100
|
+
$refs: {
|
|
3101
|
+
[x: string]: unknown;
|
|
3102
|
+
};
|
|
3103
|
+
$slots: Readonly<{
|
|
3104
|
+
default?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3105
|
+
[key: string]: any;
|
|
3106
|
+
}>[]) | undefined;
|
|
3107
|
+
prepend?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3108
|
+
[key: string]: any;
|
|
3109
|
+
}>[]) | undefined;
|
|
3110
|
+
append?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3111
|
+
[key: string]: any;
|
|
3112
|
+
}>[]) | undefined;
|
|
3113
|
+
details?: ((arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3114
|
+
[key: string]: any;
|
|
3115
|
+
}>[]) | undefined;
|
|
3116
|
+
message?: ((arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3117
|
+
[key: string]: any;
|
|
3118
|
+
}>[]) | undefined;
|
|
3119
|
+
}>;
|
|
3120
|
+
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
3121
|
+
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
3122
|
+
$host: Element | null;
|
|
3123
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
3124
|
+
$el: any;
|
|
3125
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
3126
|
+
error: boolean;
|
|
3127
|
+
direction: "horizontal" | "vertical";
|
|
3128
|
+
style: import('vue').StyleValue;
|
|
3129
|
+
disabled: boolean | null;
|
|
3130
|
+
readonly: boolean | null;
|
|
3131
|
+
messages: string | readonly string[];
|
|
3132
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
3133
|
+
focused: boolean;
|
|
3134
|
+
errorMessages: string | readonly string[] | null;
|
|
3135
|
+
maxErrors: string | number;
|
|
3136
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3137
|
+
centerAffix: boolean;
|
|
3138
|
+
glow: boolean;
|
|
3139
|
+
hideSpinButtons: boolean;
|
|
3140
|
+
persistentHint: boolean;
|
|
3141
|
+
} & {
|
|
3142
|
+
name?: string | undefined;
|
|
3143
|
+
id?: string | undefined;
|
|
3144
|
+
width?: string | number | undefined;
|
|
3145
|
+
color?: string | undefined;
|
|
3146
|
+
maxWidth?: string | number | undefined;
|
|
3147
|
+
minWidth?: string | number | undefined;
|
|
3148
|
+
label?: string | undefined;
|
|
3149
|
+
class?: any;
|
|
3150
|
+
theme?: string | undefined;
|
|
3151
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3152
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
3153
|
+
validationValue?: any;
|
|
3154
|
+
baseColor?: string | undefined;
|
|
3155
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3156
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3157
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3158
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3159
|
+
iconColor?: string | boolean | undefined;
|
|
3160
|
+
hint?: string | undefined;
|
|
3161
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
3162
|
+
}, {
|
|
3163
|
+
reset: () => Promise<void>;
|
|
3164
|
+
resetValidation: () => Promise<void>;
|
|
3165
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
3166
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
3167
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
3168
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
3169
|
+
'update:modelValue': (value: any) => true;
|
|
3170
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, string, {
|
|
3171
|
+
error: boolean;
|
|
3172
|
+
direction: "horizontal" | "vertical";
|
|
3173
|
+
style: import('vue').StyleValue;
|
|
3174
|
+
disabled: boolean | null;
|
|
3175
|
+
readonly: boolean | null;
|
|
3176
|
+
messages: string | readonly string[];
|
|
3177
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
3178
|
+
focused: boolean;
|
|
3179
|
+
errorMessages: string | readonly string[] | null;
|
|
3180
|
+
maxErrors: string | number;
|
|
3181
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3182
|
+
centerAffix: boolean;
|
|
3183
|
+
glow: boolean;
|
|
3184
|
+
hideSpinButtons: boolean;
|
|
3185
|
+
persistentHint: boolean;
|
|
3186
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
3187
|
+
default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3188
|
+
[key: string]: any;
|
|
3189
|
+
}>[];
|
|
3190
|
+
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3191
|
+
[key: string]: any;
|
|
3192
|
+
}>[];
|
|
3193
|
+
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3194
|
+
[key: string]: any;
|
|
3195
|
+
}>[];
|
|
3196
|
+
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3197
|
+
[key: string]: any;
|
|
3198
|
+
}>[];
|
|
3199
|
+
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3200
|
+
[key: string]: any;
|
|
3201
|
+
}>[];
|
|
3202
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3203
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
3204
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
3205
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
3206
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
3207
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
3208
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
3209
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
3210
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
3211
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
3212
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
3213
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
3214
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
3215
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3216
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3217
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
3218
|
+
};
|
|
3219
|
+
$forceUpdate: () => void;
|
|
3220
|
+
$nextTick: typeof nextTick;
|
|
3221
|
+
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R_2 ? (args_0: R_2, args_1: R_2, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
3222
|
+
} & Readonly<{
|
|
3098
3223
|
error: boolean;
|
|
3099
3224
|
direction: "horizontal" | "vertical";
|
|
3100
3225
|
style: import('vue').StyleValue;
|
|
@@ -3107,199 +3232,269 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3107
3232
|
maxErrors: string | number;
|
|
3108
3233
|
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3109
3234
|
centerAffix: boolean;
|
|
3110
|
-
glow: boolean;
|
|
3111
|
-
hideSpinButtons: boolean;
|
|
3112
|
-
persistentHint: boolean;
|
|
3113
|
-
}, {}, string, import('vue').SlotsType<Partial<{
|
|
3114
|
-
default: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3115
|
-
[key: string]: any;
|
|
3116
|
-
}>[];
|
|
3117
|
-
prepend: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3118
|
-
[key: string]: any;
|
|
3119
|
-
}>[];
|
|
3120
|
-
append: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3121
|
-
[key: string]: any;
|
|
3122
|
-
}>[];
|
|
3123
|
-
details: (arg: import('vuetify/lib/components/VInput/VInput.mjs').VInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3124
|
-
[key: string]: any;
|
|
3125
|
-
}>[];
|
|
3126
|
-
message: (arg: import('vuetify/lib/components/VMessages/VMessages.mjs').VMessageSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3127
|
-
[key: string]: any;
|
|
3128
|
-
}>[];
|
|
3129
|
-
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3130
|
-
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
3131
|
-
created?: (() => void) | (() => void)[] | undefined;
|
|
3132
|
-
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
3133
|
-
mounted?: (() => void) | (() => void)[] | undefined;
|
|
3134
|
-
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
3135
|
-
updated?: (() => void) | (() => void)[] | undefined;
|
|
3136
|
-
activated?: (() => void) | (() => void)[] | undefined;
|
|
3137
|
-
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
3138
|
-
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
3139
|
-
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
3140
|
-
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
3141
|
-
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
3142
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3143
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3144
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
3145
|
-
};
|
|
3146
|
-
$forceUpdate: () => void;
|
|
3147
|
-
$nextTick: typeof nextTick;
|
|
3148
|
-
$watch<T_2 extends string | ((...args: any) => any)>(source: T_2, cb: T_2 extends (...args: any) => infer R_2 ? (args_0: R_2, args_1: R_2, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
3149
|
-
} & Readonly<{
|
|
3150
|
-
error: boolean;
|
|
3151
|
-
direction: "horizontal" | "vertical";
|
|
3152
|
-
style: import('vue').StyleValue;
|
|
3153
|
-
disabled: boolean | null;
|
|
3154
|
-
readonly: boolean | null;
|
|
3155
|
-
messages: string | readonly string[];
|
|
3156
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
3157
|
-
focused: boolean;
|
|
3158
|
-
errorMessages: string | readonly string[] | null;
|
|
3159
|
-
maxErrors: string | number;
|
|
3160
|
-
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3161
|
-
centerAffix: boolean;
|
|
3162
|
-
glow: boolean;
|
|
3163
|
-
hideSpinButtons: boolean;
|
|
3164
|
-
persistentHint: boolean;
|
|
3165
|
-
}> & Omit<{
|
|
3166
|
-
error: boolean;
|
|
3167
|
-
direction: "horizontal" | "vertical";
|
|
3168
|
-
style: import('vue').StyleValue;
|
|
3169
|
-
disabled: boolean | null;
|
|
3170
|
-
readonly: boolean | null;
|
|
3171
|
-
messages: string | readonly string[];
|
|
3172
|
-
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
3173
|
-
focused: boolean;
|
|
3174
|
-
errorMessages: string | readonly string[] | null;
|
|
3175
|
-
maxErrors: string | number;
|
|
3176
|
-
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3177
|
-
centerAffix: boolean;
|
|
3178
|
-
glow: boolean;
|
|
3179
|
-
hideSpinButtons: boolean;
|
|
3180
|
-
persistentHint: boolean;
|
|
3181
|
-
} & {
|
|
3182
|
-
name?: string | undefined;
|
|
3183
|
-
id?: string | undefined;
|
|
3184
|
-
width?: string | number | undefined;
|
|
3185
|
-
color?: string | undefined;
|
|
3186
|
-
maxWidth?: string | number | undefined;
|
|
3187
|
-
minWidth?: string | number | undefined;
|
|
3188
|
-
label?: string | undefined;
|
|
3189
|
-
class?: any;
|
|
3190
|
-
theme?: string | undefined;
|
|
3191
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3192
|
-
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
3193
|
-
validationValue?: any;
|
|
3194
|
-
baseColor?: string | undefined;
|
|
3195
|
-
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3196
|
-
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3197
|
-
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3198
|
-
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3199
|
-
iconColor?: string | boolean | undefined;
|
|
3200
|
-
hint?: string | undefined;
|
|
3201
|
-
hideDetails?: boolean | "auto" | undefined;
|
|
3202
|
-
}, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
|
|
3203
|
-
reset: () => Promise<void>;
|
|
3204
|
-
resetValidation: () => Promise<void>;
|
|
3205
|
-
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
3206
|
-
isValid: import('vue').ComputedRef<boolean | null>;
|
|
3207
|
-
errorMessages: import('vue').ComputedRef<string[]>;
|
|
3208
|
-
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
3209
|
-
modelValue?: unknown;
|
|
3210
|
-
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
3211
|
-
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
|
|
3212
|
-
$: import('vue').ComponentInternalInstance;
|
|
3213
|
-
$data: {};
|
|
3214
|
-
$props: Partial<{
|
|
3215
|
-
flat: boolean;
|
|
3216
|
-
reverse: boolean;
|
|
3217
|
-
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3218
|
-
error: boolean;
|
|
3219
|
-
active: boolean;
|
|
3220
|
-
style: import('vue').StyleValue;
|
|
3221
|
-
disabled: boolean;
|
|
3222
|
-
focused: boolean;
|
|
3223
|
-
rounded: string | number | boolean;
|
|
3224
|
-
tile: boolean;
|
|
3225
|
-
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3226
|
-
centerAffix: boolean;
|
|
3227
|
-
glow: boolean;
|
|
3228
|
-
clearable: boolean;
|
|
3229
|
-
dirty: boolean;
|
|
3230
|
-
persistentClear: boolean;
|
|
3231
|
-
singleLine: boolean;
|
|
3235
|
+
glow: boolean;
|
|
3236
|
+
hideSpinButtons: boolean;
|
|
3237
|
+
persistentHint: boolean;
|
|
3232
3238
|
}> & Omit<{
|
|
3233
|
-
flat: boolean;
|
|
3234
|
-
reverse: boolean;
|
|
3235
|
-
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3236
3239
|
error: boolean;
|
|
3237
|
-
|
|
3240
|
+
direction: "horizontal" | "vertical";
|
|
3238
3241
|
style: import('vue').StyleValue;
|
|
3239
|
-
disabled: boolean;
|
|
3242
|
+
disabled: boolean | null;
|
|
3243
|
+
readonly: boolean | null;
|
|
3244
|
+
messages: string | readonly string[];
|
|
3245
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | [string, any, (string | undefined)?] | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>))[];
|
|
3240
3246
|
focused: boolean;
|
|
3241
|
-
|
|
3242
|
-
|
|
3247
|
+
errorMessages: string | readonly string[] | null;
|
|
3248
|
+
maxErrors: string | number;
|
|
3249
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3250
|
+
centerAffix: boolean;
|
|
3243
3251
|
glow: boolean;
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3252
|
+
hideSpinButtons: boolean;
|
|
3253
|
+
persistentHint: boolean;
|
|
3254
|
+
} & {
|
|
3255
|
+
name?: string | undefined;
|
|
3248
3256
|
id?: string | undefined;
|
|
3257
|
+
width?: string | number | undefined;
|
|
3249
3258
|
color?: string | undefined;
|
|
3250
|
-
|
|
3259
|
+
maxWidth?: string | number | undefined;
|
|
3260
|
+
minWidth?: string | number | undefined;
|
|
3251
3261
|
label?: string | undefined;
|
|
3252
3262
|
class?: any;
|
|
3253
3263
|
theme?: string | undefined;
|
|
3254
|
-
'onUpdate:focused'?: ((
|
|
3255
|
-
|
|
3264
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3265
|
+
validateOn?: "lazy" | "blur" | "input" | "submit" | "invalid-input" | "blur lazy" | "input lazy" | "submit lazy" | "invalid-input lazy" | "blur eager" | "input eager" | "submit eager" | "invalid-input eager" | "lazy blur" | "lazy input" | "lazy submit" | "lazy invalid-input" | "eager blur" | "eager input" | "eager submit" | "eager invalid-input" | "eager" | undefined;
|
|
3266
|
+
validationValue?: any;
|
|
3256
3267
|
baseColor?: string | undefined;
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
'onClick:
|
|
3261
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3262
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3263
|
-
centerAffix?: boolean | undefined;
|
|
3268
|
+
prependIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3269
|
+
appendIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3270
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3271
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3264
3272
|
iconColor?: string | boolean | undefined;
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3273
|
+
hint?: string | undefined;
|
|
3274
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
3275
|
+
}, "error" | "errorMessages" | "readonly" | "centerAffix" | "density" | "direction" | "disabled" | "maxErrors" | "messages" | "reset" | "isValid" | "validate" | "resetValidation" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint"> & import('vue').ShallowUnwrapRef<{
|
|
3276
|
+
reset: () => Promise<void>;
|
|
3277
|
+
resetValidation: () => Promise<void>;
|
|
3278
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
3279
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
3280
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
3281
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
3282
|
+
modelValue?: unknown;
|
|
3283
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
3284
|
+
}, import('vuetify/lib/components/VInput/VInput.mjs').VInputSlots>, "error" | "modelValue" | "prependIcon" | "appendIcon" | "color" | "label" | "errorMessages" | "readonly" | "baseColor" | "centerAffix" | "density" | "direction" | "disabled" | "hint" | "id" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "theme" | "width" | "onUpdate:modelValue" | "style" | "rules" | "focused" | "glow" | "hideSpinButtons" | "persistentHint" | "class" | "onUpdate:focused" | "validateOn" | "validationValue" | "onClick:append" | "onClick:prepend" | "iconColor" | "hideDetails" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "v-slot:prepend" | "v-slot:append" | "v-slot:message" | "v-slot:details">, `$${any}`> & Omit<Omit<{
|
|
3285
|
+
$: import('vue').ComponentInternalInstance;
|
|
3286
|
+
$data: {};
|
|
3287
|
+
$props: Partial<{
|
|
3288
|
+
flat: boolean;
|
|
3289
|
+
reverse: boolean;
|
|
3290
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3291
|
+
error: boolean; /** @type { [typeof __VLS_components.VIcon, typeof __VLS_components.VIcon, ] } */
|
|
3292
|
+
active: boolean;
|
|
3293
|
+
style: import('vue').StyleValue;
|
|
3294
|
+
disabled: boolean;
|
|
3295
|
+
focused: boolean;
|
|
3296
|
+
rounded: string | number | boolean;
|
|
3297
|
+
tile: boolean;
|
|
3298
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3299
|
+
centerAffix: boolean;
|
|
3300
|
+
glow: boolean;
|
|
3301
|
+
clearable: boolean;
|
|
3302
|
+
dirty: boolean;
|
|
3303
|
+
persistentClear: boolean;
|
|
3304
|
+
singleLine: boolean;
|
|
3305
|
+
}> & Omit<{
|
|
3306
|
+
flat: boolean;
|
|
3307
|
+
reverse: boolean;
|
|
3308
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3309
|
+
error: boolean;
|
|
3310
|
+
active: boolean;
|
|
3311
|
+
style: import('vue').StyleValue;
|
|
3312
|
+
disabled: boolean;
|
|
3313
|
+
focused: boolean;
|
|
3314
|
+
tile: boolean;
|
|
3315
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3316
|
+
glow: boolean;
|
|
3317
|
+
clearable: boolean;
|
|
3318
|
+
dirty: boolean;
|
|
3319
|
+
persistentClear: boolean;
|
|
3320
|
+
singleLine: boolean;
|
|
3321
|
+
id?: string | undefined;
|
|
3322
|
+
color?: string | undefined;
|
|
3323
|
+
loading?: string | boolean | undefined;
|
|
3324
|
+
label?: string | undefined;
|
|
3325
|
+
class?: any;
|
|
3326
|
+
theme?: string | undefined;
|
|
3327
|
+
'onUpdate:focused'?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
3328
|
+
rounded?: string | number | boolean | undefined;
|
|
3329
|
+
baseColor?: string | undefined;
|
|
3330
|
+
bgColor?: string | undefined;
|
|
3331
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3332
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3333
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3334
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3335
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3336
|
+
centerAffix?: boolean | undefined;
|
|
3337
|
+
iconColor?: string | boolean | undefined;
|
|
3338
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
3339
|
+
$attrs: {
|
|
3340
|
+
[x: string]: unknown;
|
|
3341
|
+
};
|
|
3342
|
+
$refs: {
|
|
3343
|
+
[x: string]: unknown;
|
|
3344
|
+
};
|
|
3345
|
+
$slots: Readonly<{
|
|
3346
|
+
clear?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3347
|
+
props: Record<string, any>;
|
|
3348
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3349
|
+
[key: string]: any;
|
|
3350
|
+
}>[]) | undefined;
|
|
3351
|
+
'prepend-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3352
|
+
[key: string]: any;
|
|
3353
|
+
}>[]) | undefined;
|
|
3354
|
+
'append-inner'?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3355
|
+
[key: string]: any;
|
|
3356
|
+
}>[]) | undefined;
|
|
3357
|
+
label?: ((arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3358
|
+
label: string | undefined;
|
|
3359
|
+
props: Record<string, any>;
|
|
3360
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3361
|
+
[key: string]: any;
|
|
3362
|
+
}>[]) | undefined;
|
|
3363
|
+
loader?: ((arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3364
|
+
[key: string]: any;
|
|
3365
|
+
}>[]) | undefined;
|
|
3366
|
+
default?: ((arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3367
|
+
[key: string]: any;
|
|
3368
|
+
}>[]) | undefined;
|
|
3369
|
+
}>;
|
|
3370
|
+
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
3371
|
+
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
3372
|
+
$host: Element | null;
|
|
3373
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
3374
|
+
$el: any;
|
|
3375
|
+
$options: import('vue').ComponentOptionsBase<{
|
|
3376
|
+
flat: boolean;
|
|
3377
|
+
reverse: boolean;
|
|
3378
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3379
|
+
error: boolean;
|
|
3380
|
+
active: boolean;
|
|
3381
|
+
style: import('vue').StyleValue;
|
|
3382
|
+
disabled: boolean;
|
|
3383
|
+
focused: boolean;
|
|
3384
|
+
tile: boolean;
|
|
3385
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3386
|
+
glow: boolean;
|
|
3387
|
+
clearable: boolean;
|
|
3388
|
+
dirty: boolean;
|
|
3389
|
+
persistentClear: boolean;
|
|
3390
|
+
singleLine: boolean;
|
|
3391
|
+
} & {
|
|
3392
|
+
id?: string | undefined;
|
|
3393
|
+
color?: string | undefined;
|
|
3394
|
+
loading?: string | boolean | undefined;
|
|
3395
|
+
label?: string | undefined;
|
|
3396
|
+
class?: any;
|
|
3397
|
+
theme?: string | undefined;
|
|
3398
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3399
|
+
rounded?: string | number | boolean | undefined;
|
|
3400
|
+
baseColor?: string | undefined;
|
|
3401
|
+
bgColor?: string | undefined;
|
|
3402
|
+
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3403
|
+
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3404
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3405
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3406
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3407
|
+
centerAffix?: boolean | undefined;
|
|
3408
|
+
iconColor?: string | boolean | undefined;
|
|
3409
|
+
} & {
|
|
3410
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3411
|
+
}, {
|
|
3412
|
+
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
3413
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
3414
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, Omit<{
|
|
3415
|
+
'update:focused': (focused: boolean) => true;
|
|
3416
|
+
'update:modelValue': (value: any) => true;
|
|
3417
|
+
}, "modelValue" | "update:modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
|
|
3418
|
+
flat: boolean;
|
|
3419
|
+
reverse: boolean;
|
|
3420
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3421
|
+
error: boolean;
|
|
3422
|
+
active: boolean;
|
|
3423
|
+
style: import('vue').StyleValue;
|
|
3424
|
+
disabled: boolean;
|
|
3425
|
+
focused: boolean;
|
|
3426
|
+
rounded: string | number | boolean;
|
|
3427
|
+
tile: boolean;
|
|
3428
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3429
|
+
centerAffix: boolean;
|
|
3430
|
+
glow: boolean;
|
|
3431
|
+
clearable: boolean;
|
|
3432
|
+
dirty: boolean;
|
|
3433
|
+
persistentClear: boolean;
|
|
3434
|
+
singleLine: boolean;
|
|
3435
|
+
}, {}, string, import('vue').SlotsType<Partial<{
|
|
3436
|
+
clear: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3437
|
+
props: Record<string, any>;
|
|
3438
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3439
|
+
[key: string]: any;
|
|
3440
|
+
}>[];
|
|
3441
|
+
'prepend-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3442
|
+
[key: string]: any;
|
|
3443
|
+
}>[];
|
|
3444
|
+
'append-inner': (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3445
|
+
[key: string]: any;
|
|
3446
|
+
}>[];
|
|
3447
|
+
label: (arg: import('vuetify/lib/components/VField/VField.mjs').DefaultInputSlot & {
|
|
3448
|
+
label: string | undefined;
|
|
3449
|
+
props: Record<string, any>;
|
|
3450
|
+
}) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3451
|
+
[key: string]: any;
|
|
3452
|
+
}>[];
|
|
3453
|
+
loader: (arg: import('vuetify/lib/composables/loader.mjs').LoaderSlotProps) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3454
|
+
[key: string]: any;
|
|
3455
|
+
}>[];
|
|
3456
|
+
default: (arg: import('vuetify/lib/components/VField/VField.mjs').VFieldSlot) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
3457
|
+
[key: string]: any;
|
|
3458
|
+
}>[];
|
|
3459
|
+
}>>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3460
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
3461
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
3462
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
3463
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
3464
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
3465
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
3466
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
3467
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
3468
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
3469
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
3470
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
3471
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
3472
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3473
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3474
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
3475
|
+
};
|
|
3476
|
+
$forceUpdate: () => void;
|
|
3477
|
+
$nextTick: typeof nextTick;
|
|
3478
|
+
$watch<T_3 extends string | ((...args: any) => any)>(source: T_3, cb: T_3 extends (...args: any) => infer R_3 ? (args_0: R_3, args_1: R_3, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
3479
|
+
} & Readonly<{
|
|
3480
|
+
flat: boolean;
|
|
3481
|
+
reverse: boolean;
|
|
3482
|
+
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3483
|
+
error: boolean;
|
|
3484
|
+
active: boolean;
|
|
3485
|
+
style: import('vue').StyleValue;
|
|
3486
|
+
disabled: boolean;
|
|
3487
|
+
focused: boolean;
|
|
3488
|
+
rounded: string | number | boolean;
|
|
3489
|
+
tile: boolean;
|
|
3490
|
+
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3491
|
+
centerAffix: boolean;
|
|
3492
|
+
glow: boolean;
|
|
3493
|
+
clearable: boolean;
|
|
3494
|
+
dirty: boolean;
|
|
3495
|
+
persistentClear: boolean;
|
|
3496
|
+
singleLine: boolean;
|
|
3497
|
+
}> & Omit<{
|
|
3303
3498
|
flat: boolean;
|
|
3304
3499
|
reverse: boolean;
|
|
3305
3500
|
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
@@ -3335,187 +3530,306 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3335
3530
|
iconColor?: string | boolean | undefined;
|
|
3336
3531
|
} & {
|
|
3337
3532
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3338
|
-
}, {
|
|
3533
|
+
}, "error" | "reverse" | "flat" | "centerAffix" | "disabled" | "rounded" | "style" | "focused" | "glow" | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor"> & import('vue').ShallowUnwrapRef<{
|
|
3339
3534
|
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
3340
3535
|
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
3341
|
-
}
|
|
3342
|
-
|
|
3343
|
-
'
|
|
3344
|
-
}, "modelValue" | "
|
|
3536
|
+
}> & import('vue').ComponentCustomProperties & import('vuetify/lib/util/defineComponent.mjs').GenericProps<{
|
|
3537
|
+
modelValue?: unknown;
|
|
3538
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
3539
|
+
}, import('vuetify/lib/components/VField/VField.mjs').VFieldSlots>, "error" | "reverse" | "flat" | "modelValue" | "prependInnerIcon" | "appendInnerIcon" | "color" | "label" | "baseColor" | "bgColor" | "centerAffix" | "disabled" | "id" | "loading" | "rounded" | "theme" | "onUpdate:modelValue" | "style" | "focused" | "glow" | "class" | "onUpdate:focused" | "iconColor" | "$children" | "v-slots" | "v-slot:default" | keyof import('vue').VNodeProps | "variant" | "active" | "tile" | "clearIcon" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, `$${any}`> & {
|
|
3540
|
+
_allExposed: {} | {
|
|
3541
|
+
reset: () => Promise<void>;
|
|
3542
|
+
resetValidation: () => Promise<void>;
|
|
3543
|
+
validate: (silent?: boolean | undefined) => Promise<string[]>;
|
|
3544
|
+
isValid: import('vue').ComputedRef<boolean | null>;
|
|
3545
|
+
errorMessages: import('vue').ComputedRef<string[]>;
|
|
3546
|
+
} | {
|
|
3547
|
+
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
3548
|
+
fieldIconColor: import('vue').ComputedRef<string | undefined>;
|
|
3549
|
+
};
|
|
3550
|
+
}, {}, {}, {}, {
|
|
3345
3551
|
flat: boolean;
|
|
3346
3552
|
reverse: boolean;
|
|
3347
3553
|
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3554
|
+
type: string;
|
|
3348
3555
|
error: boolean;
|
|
3349
3556
|
active: boolean;
|
|
3557
|
+
direction: "horizontal" | "vertical";
|
|
3350
3558
|
style: import('vue').StyleValue;
|
|
3559
|
+
autofocus: boolean;
|
|
3351
3560
|
disabled: boolean;
|
|
3561
|
+
readonly: boolean | null;
|
|
3562
|
+
messages: string | readonly string[];
|
|
3563
|
+
rules: readonly (string | boolean | PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult> | ((value: any) => import('vuetify/lib/composables/validation.mjs').ValidationResult) | ((value: any) => PromiseLike<import('vuetify/lib/composables/validation.mjs').ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
3352
3564
|
focused: boolean;
|
|
3565
|
+
errorMessages: string | readonly string[] | null;
|
|
3566
|
+
maxErrors: string | number;
|
|
3567
|
+
density: import('vuetify/lib/composables/density.mjs').Density;
|
|
3353
3568
|
rounded: string | number | boolean;
|
|
3354
3569
|
tile: boolean;
|
|
3355
3570
|
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3356
3571
|
centerAffix: boolean;
|
|
3357
3572
|
glow: boolean;
|
|
3573
|
+
hideSpinButtons: boolean;
|
|
3574
|
+
persistentHint: boolean;
|
|
3358
3575
|
clearable: boolean;
|
|
3359
3576
|
dirty: boolean;
|
|
3360
3577
|
persistentClear: boolean;
|
|
3361
3578
|
singleLine: boolean;
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
3388
|
-
created?: (() => void) | (() => void)[] | undefined;
|
|
3389
|
-
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
3390
|
-
mounted?: (() => void) | (() => void)[] | undefined;
|
|
3391
|
-
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
3392
|
-
updated?: (() => void) | (() => void)[] | undefined;
|
|
3393
|
-
activated?: (() => void) | (() => void)[] | undefined;
|
|
3394
|
-
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
3395
|
-
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
3396
|
-
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
3397
|
-
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
3398
|
-
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
3399
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3400
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
3401
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[] | undefined;
|
|
3402
|
-
};
|
|
3403
|
-
$forceUpdate: () => void;
|
|
3404
|
-
$nextTick: typeof nextTick;
|
|
3405
|
-
$watch<T_3 extends string | ((...args: any) => any)>(source: T_3, cb: T_3 extends (...args: any) => infer R_3 ? (args_0: R_3, args_1: R_3, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
3406
|
-
} & Readonly<{
|
|
3407
|
-
flat: boolean;
|
|
3408
|
-
reverse: boolean;
|
|
3409
|
-
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3410
|
-
error: boolean;
|
|
3411
|
-
active: boolean;
|
|
3412
|
-
style: import('vue').StyleValue;
|
|
3413
|
-
disabled: boolean;
|
|
3414
|
-
focused: boolean;
|
|
3415
|
-
rounded: string | number | boolean;
|
|
3416
|
-
tile: boolean;
|
|
3417
|
-
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3418
|
-
centerAffix: boolean;
|
|
3419
|
-
glow: boolean;
|
|
3420
|
-
clearable: boolean;
|
|
3421
|
-
dirty: boolean;
|
|
3422
|
-
persistentClear: boolean;
|
|
3423
|
-
singleLine: boolean;
|
|
3424
|
-
}> & Omit<{
|
|
3425
|
-
flat: boolean;
|
|
3426
|
-
reverse: boolean;
|
|
3427
|
-
variant: "outlined" | "filled" | "solo" | "solo-inverted" | "solo-filled" | "underlined" | "plain";
|
|
3428
|
-
error: boolean;
|
|
3429
|
-
active: boolean;
|
|
3430
|
-
style: import('vue').StyleValue;
|
|
3431
|
-
disabled: boolean;
|
|
3432
|
-
focused: boolean;
|
|
3433
|
-
tile: boolean;
|
|
3434
|
-
clearIcon: import('vuetify/lib/composables/icons.mjs').IconValue;
|
|
3435
|
-
glow: boolean;
|
|
3436
|
-
clearable: boolean;
|
|
3437
|
-
dirty: boolean;
|
|
3438
|
-
persistentClear: boolean;
|
|
3439
|
-
singleLine: boolean;
|
|
3440
|
-
} & {
|
|
3441
|
-
id?: string | undefined;
|
|
3442
|
-
color?: string | undefined;
|
|
3443
|
-
loading?: string | boolean | undefined;
|
|
3579
|
+
persistentPlaceholder: boolean;
|
|
3580
|
+
persistentCounter: boolean;
|
|
3581
|
+
}> | null;
|
|
3582
|
+
};
|
|
3583
|
+
$slots: Readonly<{
|
|
3584
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
3585
|
+
}>;
|
|
3586
|
+
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
3587
|
+
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
3588
|
+
$host: Element | null;
|
|
3589
|
+
$emit: ((event: "update:modelValue", ...args: any[]) => void) & ((event: "clear", ...args: any[]) => void) & ((event: "prepend-icon-click", ...args: any[]) => void) & ((event: "append-icon-click", ...args: any[]) => void);
|
|
3590
|
+
$el: any;
|
|
3591
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
3592
|
+
modelValue?: string | number | null | undefined;
|
|
3593
|
+
prependIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
3594
|
+
appendIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
3595
|
+
prependInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
3596
|
+
appendInnerIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
3597
|
+
prependTooltip?: string | undefined;
|
|
3598
|
+
appendTooltip?: string | undefined;
|
|
3599
|
+
tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
3600
|
+
variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
|
|
3601
|
+
color?: import('../../Customs/SyTextField/types').ColorType | undefined;
|
|
3602
|
+
isClearable?: boolean | undefined;
|
|
3603
|
+
showDivider?: boolean | undefined;
|
|
3444
3604
|
label?: string | undefined;
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3605
|
+
required?: boolean | undefined;
|
|
3606
|
+
errorMessages?: string[] | null | undefined;
|
|
3607
|
+
warningMessages?: string[] | null | undefined;
|
|
3608
|
+
successMessages?: string[] | null | undefined;
|
|
3609
|
+
readonly?: boolean | undefined;
|
|
3610
|
+
isActive?: boolean | undefined;
|
|
3449
3611
|
baseColor?: string | undefined;
|
|
3450
3612
|
bgColor?: string | undefined;
|
|
3451
|
-
appendInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3452
|
-
prependInnerIcon?: import('vuetify/lib/composables/icons.mjs').IconValue | undefined;
|
|
3453
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3454
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3455
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3456
3613
|
centerAffix?: boolean | undefined;
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
"
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3614
|
+
counter?: string | number | boolean | undefined;
|
|
3615
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
3616
|
+
density?: "default" | "comfortable" | "compact" | undefined;
|
|
3617
|
+
direction?: "horizontal" | "vertical" | undefined;
|
|
3618
|
+
isDirty?: boolean | undefined;
|
|
3619
|
+
disabled?: boolean | undefined;
|
|
3620
|
+
isOnError?: boolean | undefined;
|
|
3621
|
+
isFlat?: boolean | undefined;
|
|
3622
|
+
isFocused?: boolean | undefined;
|
|
3623
|
+
areDetailsHidden?: boolean | "auto" | undefined;
|
|
3624
|
+
areSpinButtonsHidden?: boolean | undefined;
|
|
3625
|
+
hint?: string | undefined;
|
|
3626
|
+
id?: string | undefined;
|
|
3627
|
+
loading?: string | boolean | undefined;
|
|
3628
|
+
maxErrors?: string | number | undefined;
|
|
3629
|
+
maxWidth?: string | number | undefined;
|
|
3630
|
+
messages?: string | string[] | undefined;
|
|
3631
|
+
minWidth?: string | number | undefined;
|
|
3632
|
+
name?: string | undefined;
|
|
3633
|
+
displayPersistentClear?: boolean | undefined;
|
|
3634
|
+
displayPersistentCounter?: boolean | undefined;
|
|
3635
|
+
displayPersistentHint?: boolean | undefined;
|
|
3636
|
+
displayPersistentPlaceholder?: boolean | undefined;
|
|
3637
|
+
placeholder?: string | undefined;
|
|
3638
|
+
prefix?: string | undefined;
|
|
3639
|
+
isReversed?: boolean | undefined;
|
|
3640
|
+
role?: string | undefined;
|
|
3641
|
+
rounded?: string | number | boolean | undefined;
|
|
3642
|
+
isOnSingleLine?: boolean | undefined;
|
|
3643
|
+
suffix?: string | undefined;
|
|
3644
|
+
theme?: string | undefined;
|
|
3645
|
+
isTiled?: boolean | undefined;
|
|
3646
|
+
type?: string | undefined;
|
|
3647
|
+
width?: string | number | undefined;
|
|
3648
|
+
displayAsterisk?: boolean | undefined;
|
|
3649
|
+
noIcon?: boolean | undefined;
|
|
3650
|
+
customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
3651
|
+
customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
3652
|
+
customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
3653
|
+
showSuccessMessages?: boolean | undefined;
|
|
3654
|
+
isValidateOnBlur?: boolean | undefined;
|
|
3655
|
+
disableErrorHandling?: boolean | undefined;
|
|
3656
|
+
disableClickButton?: boolean | undefined;
|
|
3657
|
+
autocomplete?: string | undefined;
|
|
3658
|
+
}> & Readonly<{
|
|
3659
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3660
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
3661
|
+
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3662
|
+
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3663
|
+
}>, {
|
|
3664
|
+
validation: {
|
|
3665
|
+
errors: Ref<string[], string[]>;
|
|
3666
|
+
warnings: Ref<string[], string[]>;
|
|
3667
|
+
successes: Ref<string[], string[]>;
|
|
3668
|
+
hasError: import('vue').ComputedRef<boolean>;
|
|
3669
|
+
hasWarning: import('vue').ComputedRef<boolean>;
|
|
3670
|
+
hasSuccess: import('vue').ComputedRef<boolean>;
|
|
3671
|
+
validateField: (value: unknown, rules?: import('../../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../../composables/validation/useValidation').ValidationRule[]) => import('../../../composables/validation/useValidation').ValidationResult;
|
|
3672
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
3673
|
+
clearValidation: () => void;
|
|
3476
3674
|
};
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3675
|
+
validateOnSubmit: () => boolean;
|
|
3676
|
+
checkErrorOnBlur: () => void;
|
|
3677
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3678
|
+
"update:modelValue": (...args: any[]) => void;
|
|
3679
|
+
clear: (...args: any[]) => void;
|
|
3680
|
+
"prepend-icon-click": (...args: any[]) => void;
|
|
3681
|
+
"append-icon-click": (...args: any[]) => void;
|
|
3682
|
+
}, string, {
|
|
3683
|
+
modelValue: string | number | null;
|
|
3684
|
+
prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3685
|
+
appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3686
|
+
prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3687
|
+
appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3688
|
+
prependTooltip: string;
|
|
3689
|
+
appendTooltip: string;
|
|
3690
|
+
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
3691
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
3692
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
3693
|
+
isClearable: boolean;
|
|
3694
|
+
label: string;
|
|
3695
|
+
errorMessages: string[] | null;
|
|
3696
|
+
warningMessages: string[] | null;
|
|
3697
|
+
successMessages: string[] | null;
|
|
3698
|
+
readonly: boolean;
|
|
3699
|
+
isActive: boolean;
|
|
3700
|
+
baseColor: string;
|
|
3701
|
+
bgColor: string;
|
|
3702
|
+
centerAffix: boolean;
|
|
3703
|
+
counter: string | number | boolean;
|
|
3704
|
+
counterValue: number | ((value: any) => number);
|
|
3705
|
+
density: "default" | "comfortable" | "compact";
|
|
3484
3706
|
direction: "horizontal" | "vertical";
|
|
3485
|
-
|
|
3486
|
-
autofocus: boolean;
|
|
3707
|
+
isDirty: boolean;
|
|
3487
3708
|
disabled: boolean;
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3709
|
+
isOnError: boolean;
|
|
3710
|
+
isFlat: boolean;
|
|
3711
|
+
isFocused: boolean;
|
|
3712
|
+
areDetailsHidden: boolean | "auto";
|
|
3713
|
+
areSpinButtonsHidden: boolean;
|
|
3714
|
+
hint: string;
|
|
3715
|
+
id: string;
|
|
3716
|
+
loading: string | boolean;
|
|
3493
3717
|
maxErrors: string | number;
|
|
3494
|
-
|
|
3718
|
+
maxWidth: string | number;
|
|
3719
|
+
messages: string | string[];
|
|
3720
|
+
minWidth: string | number;
|
|
3721
|
+
name: string;
|
|
3722
|
+
displayPersistentClear: boolean;
|
|
3723
|
+
displayPersistentCounter: boolean;
|
|
3724
|
+
displayPersistentHint: boolean;
|
|
3725
|
+
displayPersistentPlaceholder: boolean;
|
|
3726
|
+
placeholder: string;
|
|
3727
|
+
prefix: string;
|
|
3728
|
+
isReversed: boolean;
|
|
3729
|
+
role: string;
|
|
3495
3730
|
rounded: string | number | boolean;
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3731
|
+
isOnSingleLine: boolean;
|
|
3732
|
+
suffix: string;
|
|
3733
|
+
theme: string;
|
|
3734
|
+
isTiled: boolean;
|
|
3735
|
+
type: string;
|
|
3736
|
+
width: string | number;
|
|
3737
|
+
displayAsterisk: boolean;
|
|
3738
|
+
noIcon: boolean;
|
|
3739
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3740
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3741
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3742
|
+
showSuccessMessages: boolean;
|
|
3743
|
+
isValidateOnBlur: boolean;
|
|
3744
|
+
disableErrorHandling: boolean;
|
|
3745
|
+
disableClickButton: boolean;
|
|
3746
|
+
autocomplete: string;
|
|
3747
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3748
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
3749
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
3750
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
3751
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
3752
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
3753
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
3754
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
3755
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
3756
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
3757
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
3758
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
3759
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
3760
|
+
renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
3761
|
+
renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
3762
|
+
errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
|
|
3763
|
+
};
|
|
3764
|
+
$forceUpdate: () => void;
|
|
3765
|
+
$nextTick: typeof nextTick;
|
|
3766
|
+
$watch<T_4 extends string | ((...args: any) => any)>(source: T_4, cb: T_4 extends (...args: any) => infer R_4 ? (args_0: R_4, args_1: R_4, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
3767
|
+
} & Readonly<{
|
|
3768
|
+
modelValue: string | number | null;
|
|
3769
|
+
prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3770
|
+
appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3771
|
+
prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3772
|
+
appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3773
|
+
prependTooltip: string;
|
|
3774
|
+
appendTooltip: string;
|
|
3775
|
+
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
3776
|
+
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
3777
|
+
color: import('../../Customs/SyTextField/types').ColorType;
|
|
3778
|
+
isClearable: boolean;
|
|
3779
|
+
label: string;
|
|
3780
|
+
errorMessages: string[] | null;
|
|
3781
|
+
warningMessages: string[] | null;
|
|
3782
|
+
successMessages: string[] | null;
|
|
3783
|
+
readonly: boolean;
|
|
3784
|
+
isActive: boolean;
|
|
3785
|
+
baseColor: string;
|
|
3786
|
+
bgColor: string;
|
|
3787
|
+
centerAffix: boolean;
|
|
3788
|
+
counter: string | number | boolean;
|
|
3789
|
+
counterValue: number | ((value: any) => number);
|
|
3790
|
+
density: "default" | "comfortable" | "compact";
|
|
3791
|
+
direction: "horizontal" | "vertical";
|
|
3792
|
+
isDirty: boolean;
|
|
3793
|
+
disabled: boolean;
|
|
3794
|
+
isOnError: boolean;
|
|
3795
|
+
isFlat: boolean;
|
|
3796
|
+
isFocused: boolean;
|
|
3797
|
+
areDetailsHidden: boolean | "auto";
|
|
3798
|
+
areSpinButtonsHidden: boolean;
|
|
3799
|
+
hint: string;
|
|
3800
|
+
id: string;
|
|
3801
|
+
loading: string | boolean;
|
|
3802
|
+
maxErrors: string | number;
|
|
3803
|
+
maxWidth: string | number;
|
|
3804
|
+
messages: string | string[];
|
|
3805
|
+
minWidth: string | number;
|
|
3806
|
+
name: string;
|
|
3807
|
+
displayPersistentClear: boolean;
|
|
3808
|
+
displayPersistentCounter: boolean;
|
|
3809
|
+
displayPersistentHint: boolean;
|
|
3810
|
+
displayPersistentPlaceholder: boolean;
|
|
3811
|
+
placeholder: string;
|
|
3812
|
+
prefix: string;
|
|
3813
|
+
isReversed: boolean;
|
|
3814
|
+
role: string;
|
|
3815
|
+
rounded: string | number | boolean;
|
|
3816
|
+
isOnSingleLine: boolean;
|
|
3817
|
+
suffix: string;
|
|
3818
|
+
theme: string;
|
|
3819
|
+
isTiled: boolean;
|
|
3820
|
+
type: string;
|
|
3821
|
+
width: string | number;
|
|
3822
|
+
displayAsterisk: boolean;
|
|
3823
|
+
noIcon: boolean;
|
|
3824
|
+
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3825
|
+
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3826
|
+
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3827
|
+
showSuccessMessages: boolean;
|
|
3828
|
+
isValidateOnBlur: boolean;
|
|
3829
|
+
disableErrorHandling: boolean;
|
|
3830
|
+
disableClickButton: boolean;
|
|
3831
|
+
autocomplete: string;
|
|
3832
|
+
}> & Omit<Readonly<{
|
|
3519
3833
|
modelValue?: string | number | null | undefined;
|
|
3520
3834
|
prependIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
3521
3835
|
appendIcon?: import('../../Customs/SyTextField/types').IconType;
|
|
@@ -3587,7 +3901,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3587
3901
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
3588
3902
|
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3589
3903
|
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3590
|
-
}>, {
|
|
3904
|
+
}>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling" | "disableClickButton" | "autocomplete")> & import('vue').ShallowUnwrapRef<{
|
|
3591
3905
|
validation: {
|
|
3592
3906
|
errors: Ref<string[], string[]>;
|
|
3593
3907
|
warnings: Ref<string[], string[]>;
|
|
@@ -3601,256 +3915,75 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3601
3915
|
};
|
|
3602
3916
|
validateOnSubmit: () => boolean;
|
|
3603
3917
|
checkErrorOnBlur: () => void;
|
|
3604
|
-
}
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
prefix: string;
|
|
3655
|
-
isReversed: boolean;
|
|
3656
|
-
role: string;
|
|
3657
|
-
rounded: string | number | boolean;
|
|
3658
|
-
isOnSingleLine: boolean;
|
|
3659
|
-
suffix: string;
|
|
3660
|
-
theme: string;
|
|
3661
|
-
isTiled: boolean;
|
|
3662
|
-
type: string;
|
|
3663
|
-
width: string | number;
|
|
3664
|
-
displayAsterisk: boolean;
|
|
3665
|
-
noIcon: boolean;
|
|
3666
|
-
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3667
|
-
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3668
|
-
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3669
|
-
showSuccessMessages: boolean;
|
|
3670
|
-
isValidateOnBlur: boolean;
|
|
3671
|
-
disableErrorHandling: boolean;
|
|
3672
|
-
disableClickButton: boolean;
|
|
3673
|
-
autocomplete: string;
|
|
3674
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3675
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
3676
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
3677
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
3678
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
3679
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
3680
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
3681
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
3682
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
3683
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
3684
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
3685
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
3686
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
3687
|
-
renderTracked?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
3688
|
-
renderTriggered?: (((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[]) | undefined;
|
|
3689
|
-
errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
|
|
3690
|
-
};
|
|
3691
|
-
$forceUpdate: () => void;
|
|
3692
|
-
$nextTick: typeof nextTick;
|
|
3693
|
-
$watch<T_4 extends string | ((...args: any) => any)>(source: T_4, cb: T_4 extends (...args: any) => infer R_4 ? (args_0: R_4, args_1: R_4, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
3694
|
-
} & Readonly<{
|
|
3695
|
-
modelValue: string | number | null;
|
|
3696
|
-
prependIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3697
|
-
appendIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3698
|
-
prependInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3699
|
-
appendInnerIcon: "error" | "warning" | "info" | "success" | "close" | "calendar";
|
|
3700
|
-
prependTooltip: string;
|
|
3701
|
-
appendTooltip: string;
|
|
3702
|
-
tooltipLocation: "top" | "bottom" | "start" | "end";
|
|
3703
|
-
variantStyle: import('../../Customs/SyTextField/types').VariantStyle;
|
|
3704
|
-
color: import('../../Customs/SyTextField/types').ColorType;
|
|
3705
|
-
isClearable: boolean;
|
|
3918
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
3919
|
+
$slots: {
|
|
3920
|
+
prepend?(_: {}): any;
|
|
3921
|
+
append?(_: {}): any;
|
|
3922
|
+
'prepend-inner'?(_: {}): any;
|
|
3923
|
+
'append-inner'?(_: {}): any;
|
|
3924
|
+
details?(_: {}): any;
|
|
3925
|
+
};
|
|
3926
|
+
}) | null;
|
|
3927
|
+
}, any, import('vue').ComponentProvideOptions, {
|
|
3928
|
+
P: {};
|
|
3929
|
+
B: {};
|
|
3930
|
+
D: {};
|
|
3931
|
+
C: {};
|
|
3932
|
+
M: {};
|
|
3933
|
+
Defaults: {};
|
|
3934
|
+
}, Readonly<{
|
|
3935
|
+
modelValue?: DateValue | undefined;
|
|
3936
|
+
placeholder?: string | undefined;
|
|
3937
|
+
format?: string | undefined;
|
|
3938
|
+
dateFormatReturn?: string | undefined;
|
|
3939
|
+
label?: string | undefined;
|
|
3940
|
+
required?: boolean | undefined;
|
|
3941
|
+
disabled?: boolean | undefined;
|
|
3942
|
+
readonly?: boolean | undefined;
|
|
3943
|
+
isOutlined?: boolean | undefined;
|
|
3944
|
+
displayIcon?: boolean | undefined;
|
|
3945
|
+
displayAppendIcon?: boolean | undefined;
|
|
3946
|
+
noIcon?: boolean | undefined;
|
|
3947
|
+
customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
3948
|
+
customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
3949
|
+
displayPrependIcon?: boolean | undefined;
|
|
3950
|
+
disableErrorHandling?: boolean | undefined;
|
|
3951
|
+
showSuccessMessages?: boolean | undefined;
|
|
3952
|
+
bgColor?: string | undefined;
|
|
3953
|
+
displayRange?: boolean | undefined;
|
|
3954
|
+
autoClamp?: boolean | undefined;
|
|
3955
|
+
}> & Readonly<{
|
|
3956
|
+
onBlur?: (() => any) | undefined;
|
|
3957
|
+
onFocus?: (() => any) | undefined;
|
|
3958
|
+
onInput?: ((value: string) => any) | undefined;
|
|
3959
|
+
"onUpdate:model-value"?: ((value: DateValue) => any) | undefined;
|
|
3960
|
+
"onDate-selected"?: ((value: DateValue) => any) | undefined;
|
|
3961
|
+
}>, {
|
|
3962
|
+
validateOnSubmit: () => Promise<boolean>;
|
|
3963
|
+
focus(): void;
|
|
3964
|
+
blur(): void;
|
|
3965
|
+
}, {}, {}, {}, {
|
|
3966
|
+
required: boolean;
|
|
3967
|
+
modelValue: DateValue;
|
|
3706
3968
|
label: string;
|
|
3707
|
-
errorMessages: string[] | null;
|
|
3708
|
-
warningMessages: string[] | null;
|
|
3709
|
-
successMessages: string[] | null;
|
|
3710
3969
|
readonly: boolean;
|
|
3711
|
-
isActive: boolean;
|
|
3712
|
-
baseColor: string;
|
|
3713
3970
|
bgColor: string;
|
|
3714
|
-
centerAffix: boolean;
|
|
3715
|
-
counter: string | number | boolean;
|
|
3716
|
-
counterValue: number | ((value: any) => number);
|
|
3717
|
-
density: "default" | "comfortable" | "compact";
|
|
3718
|
-
direction: "horizontal" | "vertical";
|
|
3719
|
-
isDirty: boolean;
|
|
3720
3971
|
disabled: boolean;
|
|
3721
|
-
isOnError: boolean;
|
|
3722
|
-
isFlat: boolean;
|
|
3723
|
-
isFocused: boolean;
|
|
3724
|
-
areDetailsHidden: boolean | "auto";
|
|
3725
|
-
areSpinButtonsHidden: boolean;
|
|
3726
|
-
hint: string;
|
|
3727
|
-
id: string;
|
|
3728
|
-
loading: string | boolean;
|
|
3729
|
-
maxErrors: string | number;
|
|
3730
|
-
maxWidth: string | number;
|
|
3731
|
-
messages: string | string[];
|
|
3732
|
-
minWidth: string | number;
|
|
3733
|
-
name: string;
|
|
3734
|
-
displayPersistentClear: boolean;
|
|
3735
|
-
displayPersistentCounter: boolean;
|
|
3736
|
-
displayPersistentHint: boolean;
|
|
3737
|
-
displayPersistentPlaceholder: boolean;
|
|
3738
3972
|
placeholder: string;
|
|
3739
|
-
prefix: string;
|
|
3740
|
-
isReversed: boolean;
|
|
3741
|
-
role: string;
|
|
3742
|
-
rounded: string | number | boolean;
|
|
3743
|
-
isOnSingleLine: boolean;
|
|
3744
|
-
suffix: string;
|
|
3745
|
-
theme: string;
|
|
3746
|
-
isTiled: boolean;
|
|
3747
|
-
type: string;
|
|
3748
|
-
width: string | number;
|
|
3749
|
-
displayAsterisk: boolean;
|
|
3750
3973
|
noIcon: boolean;
|
|
3751
3974
|
customRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3752
3975
|
customWarningRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3753
|
-
customSuccessRules: import('../../../composables/validation/useValidation').ValidationRule[];
|
|
3754
3976
|
showSuccessMessages: boolean;
|
|
3755
|
-
isValidateOnBlur: boolean;
|
|
3756
3977
|
disableErrorHandling: boolean;
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
appendTooltip?: string | undefined;
|
|
3767
|
-
tooltipLocation?: "top" | "bottom" | "start" | "end" | undefined;
|
|
3768
|
-
variantStyle?: import('../../Customs/SyTextField/types').VariantStyle | undefined;
|
|
3769
|
-
color?: import('../../Customs/SyTextField/types').ColorType | undefined;
|
|
3770
|
-
isClearable?: boolean | undefined;
|
|
3771
|
-
showDivider?: boolean | undefined;
|
|
3772
|
-
label?: string | undefined;
|
|
3773
|
-
required?: boolean | undefined;
|
|
3774
|
-
errorMessages?: string[] | null | undefined;
|
|
3775
|
-
warningMessages?: string[] | null | undefined;
|
|
3776
|
-
successMessages?: string[] | null | undefined;
|
|
3777
|
-
readonly?: boolean | undefined;
|
|
3778
|
-
isActive?: boolean | undefined;
|
|
3779
|
-
baseColor?: string | undefined;
|
|
3780
|
-
bgColor?: string | undefined;
|
|
3781
|
-
centerAffix?: boolean | undefined;
|
|
3782
|
-
counter?: string | number | boolean | undefined;
|
|
3783
|
-
counterValue?: number | ((value: any) => number) | undefined;
|
|
3784
|
-
density?: "default" | "comfortable" | "compact" | undefined;
|
|
3785
|
-
direction?: "horizontal" | "vertical" | undefined;
|
|
3786
|
-
isDirty?: boolean | undefined;
|
|
3787
|
-
disabled?: boolean | undefined;
|
|
3788
|
-
isOnError?: boolean | undefined;
|
|
3789
|
-
isFlat?: boolean | undefined;
|
|
3790
|
-
isFocused?: boolean | undefined;
|
|
3791
|
-
areDetailsHidden?: boolean | "auto" | undefined;
|
|
3792
|
-
areSpinButtonsHidden?: boolean | undefined;
|
|
3793
|
-
hint?: string | undefined;
|
|
3794
|
-
id?: string | undefined;
|
|
3795
|
-
loading?: string | boolean | undefined;
|
|
3796
|
-
maxErrors?: string | number | undefined;
|
|
3797
|
-
maxWidth?: string | number | undefined;
|
|
3798
|
-
messages?: string | string[] | undefined;
|
|
3799
|
-
minWidth?: string | number | undefined;
|
|
3800
|
-
name?: string | undefined;
|
|
3801
|
-
displayPersistentClear?: boolean | undefined;
|
|
3802
|
-
displayPersistentCounter?: boolean | undefined;
|
|
3803
|
-
displayPersistentHint?: boolean | undefined;
|
|
3804
|
-
displayPersistentPlaceholder?: boolean | undefined;
|
|
3805
|
-
placeholder?: string | undefined;
|
|
3806
|
-
prefix?: string | undefined;
|
|
3807
|
-
isReversed?: boolean | undefined;
|
|
3808
|
-
role?: string | undefined;
|
|
3809
|
-
rounded?: string | number | boolean | undefined;
|
|
3810
|
-
isOnSingleLine?: boolean | undefined;
|
|
3811
|
-
suffix?: string | undefined;
|
|
3812
|
-
theme?: string | undefined;
|
|
3813
|
-
isTiled?: boolean | undefined;
|
|
3814
|
-
type?: string | undefined;
|
|
3815
|
-
width?: string | number | undefined;
|
|
3816
|
-
displayAsterisk?: boolean | undefined;
|
|
3817
|
-
noIcon?: boolean | undefined;
|
|
3818
|
-
customRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
3819
|
-
customWarningRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
3820
|
-
customSuccessRules?: import('../../../composables/validation/useValidation').ValidationRule[] | undefined;
|
|
3821
|
-
showSuccessMessages?: boolean | undefined;
|
|
3822
|
-
isValidateOnBlur?: boolean | undefined;
|
|
3823
|
-
disableErrorHandling?: boolean | undefined;
|
|
3824
|
-
disableClickButton?: boolean | undefined;
|
|
3825
|
-
autocomplete?: string | undefined;
|
|
3826
|
-
}> & Readonly<{
|
|
3827
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3828
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
3829
|
-
"onPrepend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3830
|
-
"onAppend-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
3831
|
-
}>, "validation" | "validateOnSubmit" | "checkErrorOnBlur" | ("modelValue" | "prependIcon" | "appendIcon" | "prependInnerIcon" | "appendInnerIcon" | "prependTooltip" | "appendTooltip" | "tooltipLocation" | "variantStyle" | "color" | "isClearable" | "label" | "errorMessages" | "warningMessages" | "successMessages" | "readonly" | "isActive" | "baseColor" | "bgColor" | "centerAffix" | "counter" | "counterValue" | "density" | "direction" | "isDirty" | "disabled" | "isOnError" | "isFlat" | "isFocused" | "areDetailsHidden" | "areSpinButtonsHidden" | "hint" | "id" | "loading" | "maxErrors" | "maxWidth" | "messages" | "minWidth" | "name" | "displayPersistentClear" | "displayPersistentCounter" | "displayPersistentHint" | "displayPersistentPlaceholder" | "placeholder" | "prefix" | "isReversed" | "role" | "rounded" | "isOnSingleLine" | "suffix" | "theme" | "isTiled" | "type" | "width" | "displayAsterisk" | "noIcon" | "customRules" | "customWarningRules" | "customSuccessRules" | "showSuccessMessages" | "isValidateOnBlur" | "disableErrorHandling" | "disableClickButton" | "autocomplete")> & import('vue').ShallowUnwrapRef<{
|
|
3832
|
-
validation: {
|
|
3833
|
-
errors: Ref<string[], string[]>;
|
|
3834
|
-
warnings: Ref<string[], string[]>;
|
|
3835
|
-
successes: Ref<string[], string[]>;
|
|
3836
|
-
hasError: import('vue').ComputedRef<boolean>;
|
|
3837
|
-
hasWarning: import('vue').ComputedRef<boolean>;
|
|
3838
|
-
hasSuccess: import('vue').ComputedRef<boolean>;
|
|
3839
|
-
validateField: (value: unknown, rules?: import('../../../composables/validation/useValidation').ValidationRule[], warningRules?: import('../../../composables/validation/useValidation').ValidationRule[], successRules?: import('../../../composables/validation/useValidation').ValidationRule[]) => import('../../../composables/validation/useValidation').ValidationResult;
|
|
3840
|
-
validateOnSubmit: () => Promise<boolean>;
|
|
3841
|
-
clearValidation: () => void;
|
|
3842
|
-
};
|
|
3843
|
-
validateOnSubmit: () => boolean;
|
|
3844
|
-
checkErrorOnBlur: () => void;
|
|
3845
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
3846
|
-
$slots: {
|
|
3847
|
-
prepend?(_: {}): any;
|
|
3848
|
-
append?(_: {}): any;
|
|
3849
|
-
'prepend-inner'?(_: {}): any;
|
|
3850
|
-
'append-inner'?(_: {}): any;
|
|
3851
|
-
details?(_: {}): any;
|
|
3852
|
-
};
|
|
3853
|
-
}) | null;
|
|
3978
|
+
format: string;
|
|
3979
|
+
displayRange: boolean;
|
|
3980
|
+
dateFormatReturn: string;
|
|
3981
|
+
isOutlined: boolean;
|
|
3982
|
+
displayIcon: boolean;
|
|
3983
|
+
displayAppendIcon: boolean;
|
|
3984
|
+
displayPrependIcon: boolean;
|
|
3985
|
+
autoClamp: boolean;
|
|
3986
|
+
}> | null;
|
|
3854
3987
|
datePickerRef: ({
|
|
3855
3988
|
$: import('vue').ComponentInternalInstance;
|
|
3856
3989
|
$data: {};
|