@club-employes/utopia 4.382.0 → 4.384.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/DropDown/DropDown.d.ts +1 -0
- package/dist/components/molecules/DropDown/types.d.ts +1 -0
- package/dist/components/molecules/GrantSelect/GrantSelect.d.ts +2 -18
- package/dist/components/molecules/GrantSelect/GrantSelectTree.d.ts +0 -9
- package/dist/components/molecules/GrantSelect/types.d.ts +1 -1
- package/dist/components/molecules/InputPhone/InputPhone.d.ts +2 -0
- package/dist/components/organisms/Accordion/AccordionItem.d.ts +1 -0
- package/dist/components/organisms/Accordion/types.d.ts +1 -0
- package/dist/index.js +5581 -5494
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -27,6 +27,7 @@ declare const _default: DefineComponent<DropDownProps, {}, {}, {}, {}, Component
|
|
|
27
27
|
message: string;
|
|
28
28
|
size: "extra-small" | "small" | "medium" | "large";
|
|
29
29
|
disabled: boolean;
|
|
30
|
+
loading: boolean;
|
|
30
31
|
modelValue: string | number | boolean | (string | number | boolean)[] | null;
|
|
31
32
|
options: DropDownOption[];
|
|
32
33
|
placeholder: string;
|
|
@@ -1,20 +1,9 @@
|
|
|
1
1
|
import { GrantSelectItemProps, GrantSelectOption } from './types';
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
-
declare
|
|
4
|
-
attrs: Partial<{}>;
|
|
5
|
-
slots: {
|
|
6
|
-
'progress-prefix'?(_: {}): any;
|
|
7
|
-
};
|
|
8
|
-
refs: {};
|
|
9
|
-
rootEl: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: DefineComponent<GrantSelectItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3
|
+
declare const _default: DefineComponent<GrantSelectItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13
4
|
"update:modelValue": (value: string | number | boolean | undefined) => any;
|
|
14
|
-
"update:dropdownValue": (value: string | number | boolean | undefined) => any;
|
|
15
5
|
}, string, PublicProps, Readonly<GrantSelectItemProps> & Readonly<{
|
|
16
6
|
"onUpdate:modelValue"?: ((value: string | number | boolean | undefined) => any) | undefined;
|
|
17
|
-
"onUpdate:dropdownValue"?: ((value: string | number | boolean | undefined) => any) | undefined;
|
|
18
7
|
}>, {
|
|
19
8
|
disabled: boolean;
|
|
20
9
|
options: GrantSelectOption[];
|
|
@@ -25,12 +14,7 @@ declare const __VLS_component: DefineComponent<GrantSelectItemProps, {}, {}, {},
|
|
|
25
14
|
categoryLabel: string;
|
|
26
15
|
categoryValue: string;
|
|
27
16
|
remainingAmountLabel: string;
|
|
17
|
+
progressCurrencyIcon: string;
|
|
28
18
|
useSwitch: boolean;
|
|
29
19
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
30
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
31
20
|
export default _default;
|
|
32
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
33
|
-
new (): {
|
|
34
|
-
$slots: S;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
@@ -25,7 +25,6 @@ interface GrantTreeNode {
|
|
|
25
25
|
formattedTotalAmount?: string;
|
|
26
26
|
progressBarFillPercentage?: number;
|
|
27
27
|
}>;
|
|
28
|
-
dropdownModelValue?: string | number | boolean;
|
|
29
28
|
}
|
|
30
29
|
type __VLS_Props = {
|
|
31
30
|
modelValue?: string | undefined;
|
|
@@ -43,16 +42,8 @@ declare function __VLS_template(): {
|
|
|
43
42
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
44
43
|
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
45
44
|
"update:modelValue": (value?: string | undefined) => any;
|
|
46
|
-
"update:dropdownValue": (payload: {
|
|
47
|
-
id: string;
|
|
48
|
-
value: string | number | boolean;
|
|
49
|
-
}) => any;
|
|
50
45
|
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
51
46
|
"onUpdate:modelValue"?: ((value?: string | undefined) => any) | undefined;
|
|
52
|
-
"onUpdate:dropdownValue"?: ((payload: {
|
|
53
|
-
id: string;
|
|
54
|
-
value: string | number | boolean;
|
|
55
|
-
}) => any) | undefined;
|
|
56
47
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
57
48
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
58
49
|
export default _default;
|
|
@@ -13,7 +13,6 @@ export interface GrantSelectItemProps {
|
|
|
13
13
|
value: string | number | boolean;
|
|
14
14
|
label: string;
|
|
15
15
|
options?: GrantSelectOption[];
|
|
16
|
-
dropdownModelValue?: string | number | boolean;
|
|
17
16
|
dropdownPlaceholder?: string;
|
|
18
17
|
disabled?: boolean;
|
|
19
18
|
subtitle?: string;
|
|
@@ -26,6 +25,7 @@ export interface GrantSelectItemProps {
|
|
|
26
25
|
formattedRemainingAmount?: string;
|
|
27
26
|
formattedTotalAmount?: string;
|
|
28
27
|
progressBarFillPercentage?: number;
|
|
28
|
+
progressCurrencyIcon?: string;
|
|
29
29
|
empty?: boolean;
|
|
30
30
|
availableUntilLabel?: string;
|
|
31
31
|
availableUntil?: string;
|
|
@@ -140,6 +140,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
140
140
|
message: string;
|
|
141
141
|
size: "extra-small" | "small" | "medium" | "large";
|
|
142
142
|
disabled: boolean;
|
|
143
|
+
loading: boolean;
|
|
143
144
|
modelValue: string | number | boolean | (string | number | boolean)[] | null;
|
|
144
145
|
options: DropDownOption[];
|
|
145
146
|
placeholder: string;
|
|
@@ -261,6 +262,7 @@ declare const _default: DefineComponent<InputPhoneProps, {}, {}, {}, {}, Compone
|
|
|
261
262
|
message: string;
|
|
262
263
|
size: "extra-small" | "small" | "medium" | "large";
|
|
263
264
|
disabled: boolean;
|
|
265
|
+
loading: boolean;
|
|
264
266
|
modelValue: string | number | boolean | (string | number | boolean)[] | null;
|
|
265
267
|
options: DropDownOption[];
|
|
266
268
|
placeholder: string;
|
|
@@ -26,6 +26,7 @@ declare const __VLS_component: DefineComponent<AccordionItemProps, {}, {}, {}, {
|
|
|
26
26
|
iconStrokeWidth: number | string;
|
|
27
27
|
open: boolean;
|
|
28
28
|
collapsible: boolean;
|
|
29
|
+
chevronSize: IconSize;
|
|
29
30
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
30
31
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
31
32
|
export default _default;
|