@club-employes/utopia 4.380.0 → 4.382.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/molecules/CartStepper/types.d.ts +1 -1
- package/dist/components/molecules/DropDown/DropDown.d.ts +2 -0
- package/dist/components/molecules/GrantSelect/GrantSelectTree.d.ts +8 -2
- package/dist/components/molecules/InputPhone/InputPhone.d.ts +3 -0
- package/dist/index.js +1330 -1338
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { DropDownOption, DropDownProps } from './types';
|
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives } from 'vue';
|
|
3
3
|
import { InputTextProps } from '../..';
|
|
4
4
|
declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5
|
+
search: (value: string) => any;
|
|
5
6
|
blur: (event: FocusEvent) => any;
|
|
6
7
|
change: (value: string | number | boolean | (string | number | boolean)[] | undefined) => any;
|
|
7
8
|
close: () => any;
|
|
@@ -11,6 +12,7 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
|
|
|
11
12
|
"update:message": (value: string) => any;
|
|
12
13
|
open: () => any;
|
|
13
14
|
}, string, PublicProps, Readonly<DropDownProps> & Readonly<{
|
|
15
|
+
onSearch?: ((value: string) => any) | undefined;
|
|
14
16
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
15
17
|
onChange?: ((value: string | number | boolean | (string | number | boolean)[] | undefined) => any) | undefined;
|
|
16
18
|
onClose?: (() => any) | undefined;
|
|
@@ -43,10 +43,16 @@ declare function __VLS_template(): {
|
|
|
43
43
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
44
44
|
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
45
45
|
"update:modelValue": (value?: string | undefined) => any;
|
|
46
|
-
"update:dropdownValue": (
|
|
46
|
+
"update:dropdownValue": (payload: {
|
|
47
|
+
id: string;
|
|
48
|
+
value: string | number | boolean;
|
|
49
|
+
}) => any;
|
|
47
50
|
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
48
51
|
"onUpdate:modelValue"?: ((value?: string | undefined) => any) | undefined;
|
|
49
|
-
"onUpdate:dropdownValue"?: ((
|
|
52
|
+
"onUpdate:dropdownValue"?: ((payload: {
|
|
53
|
+
id: string;
|
|
54
|
+
value: string | number | boolean;
|
|
55
|
+
}) => any) | undefined;
|
|
50
56
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
51
57
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
52
58
|
export default _default;
|
|
@@ -115,6 +115,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
115
115
|
showNumberStepper: boolean;
|
|
116
116
|
}> | null;
|
|
117
117
|
countryDropdownRef: CreateComponentPublicInstanceWithMixins<Readonly< DropDownProps> & Readonly<{
|
|
118
|
+
onSearch?: ((value: string) => any) | undefined;
|
|
118
119
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
119
120
|
onChange?: ((value: string | number | boolean | (string | number | boolean)[] | undefined) => any) | undefined;
|
|
120
121
|
onClose?: (() => any) | undefined;
|
|
@@ -124,6 +125,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
124
125
|
"onUpdate:message"?: ((value: string) => any) | undefined;
|
|
125
126
|
onOpen?: (() => any) | undefined;
|
|
126
127
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
128
|
+
search: (value: string) => any;
|
|
127
129
|
blur: (event: FocusEvent) => any;
|
|
128
130
|
change: (value: string | number | boolean | (string | number | boolean)[] | undefined) => any;
|
|
129
131
|
close: () => any;
|
|
@@ -244,6 +246,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
244
246
|
M: {};
|
|
245
247
|
Defaults: {};
|
|
246
248
|
}, Readonly< DropDownProps> & Readonly<{
|
|
249
|
+
onSearch?: ((value: string) => any) | undefined;
|
|
247
250
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
248
251
|
onChange?: ((value: string | number | boolean | (string | number | boolean)[] | undefined) => any) | undefined;
|
|
249
252
|
onClose?: (() => any) | undefined;
|