pukaad-ui-lib 1.26.0 → 1.27.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/module.json +1 -1
- package/dist/runtime/components/collapse/collapse-multiple.d.vue.ts +0 -6
- package/dist/runtime/components/collapse/collapse-multiple.vue +8 -16
- package/dist/runtime/components/collapse/collapse-multiple.vue.d.ts +0 -6
- package/dist/runtime/components/input/input-autocomplete.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-autocomplete.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-file.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-file.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-password.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-password.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-slider.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-slider.vue.d.ts +1 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -11,17 +11,11 @@ declare var __VLS_6: {
|
|
|
11
11
|
item: TypeItem;
|
|
12
12
|
}, __VLS_8: {
|
|
13
13
|
items: TypeItem;
|
|
14
|
-
dividerClass: string;
|
|
15
|
-
}, __VLS_10: {
|
|
16
|
-
label: string;
|
|
17
|
-
item: TypeItem;
|
|
18
14
|
};
|
|
19
15
|
type __VLS_Slots = {} & {
|
|
20
16
|
title?: (props: typeof __VLS_6) => any;
|
|
21
17
|
} & {
|
|
22
18
|
children?: (props: typeof __VLS_8) => any;
|
|
23
|
-
} & {
|
|
24
|
-
'children-item'?: (props: typeof __VLS_10) => any;
|
|
25
19
|
};
|
|
26
20
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
27
21
|
items: TypeItem[];
|
|
@@ -35,23 +35,15 @@
|
|
|
35
35
|
</div>
|
|
36
36
|
<div
|
|
37
37
|
v-if="arrShow.includes(i_item)"
|
|
38
|
-
class="
|
|
38
|
+
:class="[
|
|
39
|
+
'flex flex-col gap-[16px] mt-[16px] pl-[24px]',
|
|
40
|
+
'[&>*]:ml-[-24px] [&>*]:pl-[24px]',
|
|
41
|
+
divider ? '[&>*]:border-b [&>*]:border-silver' : ''
|
|
42
|
+
]"
|
|
39
43
|
>
|
|
40
|
-
<slot
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
:divider-class="
|
|
44
|
-
divider ? 'border-b border-silver ml-[-24px] pl-[24px]' : ''
|
|
45
|
-
"
|
|
46
|
-
>
|
|
47
|
-
<div
|
|
48
|
-
v-for="(cill, i_child) in item.children"
|
|
49
|
-
:key="i_child"
|
|
50
|
-
:class="
|
|
51
|
-
divider ? 'border-b border-silver ml-[-24px] pl-[24px]' : ''
|
|
52
|
-
"
|
|
53
|
-
>
|
|
54
|
-
<slot name="children-item" :label="cill.label" :item="cill" />
|
|
44
|
+
<slot name="children" :items="item">
|
|
45
|
+
<div v-for="(cill, i_child) in item.children" :key="i_child">
|
|
46
|
+
{{ cill.label }}
|
|
55
47
|
</div>
|
|
56
48
|
</slot>
|
|
57
49
|
</div>
|
|
@@ -11,17 +11,11 @@ declare var __VLS_6: {
|
|
|
11
11
|
item: TypeItem;
|
|
12
12
|
}, __VLS_8: {
|
|
13
13
|
items: TypeItem;
|
|
14
|
-
dividerClass: string;
|
|
15
|
-
}, __VLS_10: {
|
|
16
|
-
label: string;
|
|
17
|
-
item: TypeItem;
|
|
18
14
|
};
|
|
19
15
|
type __VLS_Slots = {} & {
|
|
20
16
|
title?: (props: typeof __VLS_6) => any;
|
|
21
17
|
} & {
|
|
22
18
|
children?: (props: typeof __VLS_8) => any;
|
|
23
|
-
} & {
|
|
24
|
-
'children-item'?: (props: typeof __VLS_10) => any;
|
|
25
19
|
};
|
|
26
20
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
27
21
|
items: TypeItem[];
|
|
@@ -37,8 +37,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
37
37
|
name: string;
|
|
38
38
|
placeholder: string;
|
|
39
39
|
description: string;
|
|
40
|
-
limit: number;
|
|
41
40
|
options: AutocompleteOption[] | string[] | number[];
|
|
41
|
+
limit: number;
|
|
42
42
|
disabledErrorMessage: boolean;
|
|
43
43
|
disabledBorder: boolean;
|
|
44
44
|
showCounter: boolean;
|
|
@@ -37,8 +37,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
37
37
|
name: string;
|
|
38
38
|
placeholder: string;
|
|
39
39
|
description: string;
|
|
40
|
-
limit: number;
|
|
41
40
|
options: AutocompleteOption[] | string[] | number[];
|
|
41
|
+
limit: number;
|
|
42
42
|
disabledErrorMessage: boolean;
|
|
43
43
|
disabledBorder: boolean;
|
|
44
44
|
showCounter: boolean;
|
|
@@ -27,8 +27,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
27
27
|
label: string;
|
|
28
28
|
name: string;
|
|
29
29
|
limit: number;
|
|
30
|
-
accept: string;
|
|
31
30
|
disabledErrorMessage: boolean;
|
|
31
|
+
accept: string;
|
|
32
32
|
labelIcon: string;
|
|
33
33
|
disabledDrop: boolean;
|
|
34
34
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -27,8 +27,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
27
27
|
label: string;
|
|
28
28
|
name: string;
|
|
29
29
|
limit: number;
|
|
30
|
-
accept: string;
|
|
31
30
|
disabledErrorMessage: boolean;
|
|
31
|
+
accept: string;
|
|
32
32
|
labelIcon: string;
|
|
33
33
|
disabledDrop: boolean;
|
|
34
34
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -18,8 +18,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
18
18
|
}>, {
|
|
19
19
|
id: string;
|
|
20
20
|
name: string;
|
|
21
|
-
disabledForgotPassword: boolean;
|
|
22
21
|
new: boolean;
|
|
22
|
+
disabledForgotPassword: boolean;
|
|
23
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
24
|
declare const _default: typeof __VLS_export;
|
|
25
25
|
export default _default;
|
|
@@ -18,8 +18,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
18
18
|
}>, {
|
|
19
19
|
id: string;
|
|
20
20
|
name: string;
|
|
21
|
-
disabledForgotPassword: boolean;
|
|
22
21
|
new: boolean;
|
|
22
|
+
disabledForgotPassword: boolean;
|
|
23
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
24
|
declare const _default: typeof __VLS_export;
|
|
25
25
|
export default _default;
|
|
@@ -12,9 +12,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
12
12
|
color: InputSliderColor;
|
|
13
13
|
fullWidth: boolean;
|
|
14
14
|
label: string;
|
|
15
|
-
step: number;
|
|
16
15
|
min: number;
|
|
17
16
|
max: number;
|
|
17
|
+
step: number;
|
|
18
18
|
lineHeight: number | string;
|
|
19
19
|
appearance: boolean;
|
|
20
20
|
thumbSize: number | string;
|
|
@@ -12,9 +12,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
12
12
|
color: InputSliderColor;
|
|
13
13
|
fullWidth: boolean;
|
|
14
14
|
label: string;
|
|
15
|
-
step: number;
|
|
16
15
|
min: number;
|
|
17
16
|
max: number;
|
|
17
|
+
step: number;
|
|
18
18
|
lineHeight: number | string;
|
|
19
19
|
appearance: boolean;
|
|
20
20
|
thumbSize: number | string;
|