@kungal/ui-vue 1.4.2 → 1.6.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/Accordion.vue.d.ts +29 -0
- package/dist/components/Accordion.vue.d.ts.map +1 -0
- package/dist/components/AccordionItem.vue.d.ts +23 -0
- package/dist/components/AccordionItem.vue.d.ts.map +1 -0
- package/dist/components/Autocomplete.vue.d.ts +5 -5
- package/dist/components/Avatar.vue.d.ts +1 -1
- package/dist/components/Badge.vue.d.ts +3 -3
- package/dist/components/Badge.vue.d.ts.map +1 -1
- package/dist/components/Button.vue.d.ts +4 -4
- package/dist/components/Card.vue.d.ts +2 -2
- package/dist/components/Carousel.vue.d.ts +23 -0
- package/dist/components/Carousel.vue.d.ts.map +1 -0
- package/dist/components/CarouselItem.vue.d.ts +17 -0
- package/dist/components/CarouselItem.vue.d.ts.map +1 -0
- package/dist/components/CheckBox.vue.d.ts +7 -7
- package/dist/components/CheckBox.vue.d.ts.map +1 -1
- package/dist/components/Chip.vue.d.ts +3 -3
- package/dist/components/Copy.vue.d.ts +2 -2
- package/dist/components/DatePicker.vue.d.ts +3 -3
- package/dist/components/DatePicker.vue.d.ts.map +1 -1
- package/dist/components/Drawer.vue.d.ts +3 -3
- package/dist/components/Dropdown.vue.d.ts +2 -2
- package/dist/components/FileInput.vue.d.ts +3 -3
- package/dist/components/Icon.vue.d.ts +1 -1
- package/dist/components/Icon.vue.d.ts.map +1 -1
- package/dist/components/Info.vue.d.ts +3 -3
- package/dist/components/Info.vue.d.ts.map +1 -1
- package/dist/components/Input.vue.d.ts +5 -5
- package/dist/components/Link.vue.d.ts +1 -1
- package/dist/components/Modal.vue.d.ts +3 -3
- package/dist/components/NumberInput.vue.d.ts +6 -6
- package/dist/components/PinInput.vue.d.ts +4 -4
- package/dist/components/Progress.vue.d.ts +3 -3
- package/dist/components/Progress.vue.d.ts.map +1 -1
- package/dist/components/RadioGroup.vue.d.ts +1 -1
- package/dist/components/Rating.vue.d.ts +2 -2
- package/dist/components/Select.vue.d.ts +1 -1
- package/dist/components/Skeleton.vue.d.ts +23 -0
- package/dist/components/Skeleton.vue.d.ts.map +1 -0
- package/dist/components/Slider.vue.d.ts +3 -3
- package/dist/components/Steps.vue.d.ts +12 -0
- package/dist/components/Steps.vue.d.ts.map +1 -0
- package/dist/components/Switch.vue.d.ts +1 -1
- package/dist/components/Switch.vue.d.ts.map +1 -1
- package/dist/components/Tab.vue.d.ts +5 -5
- package/dist/components/Tab.vue.d.ts.map +1 -1
- package/dist/components/TagInput.vue.d.ts +6 -6
- package/dist/components/Textarea.vue.d.ts +5 -5
- package/dist/components/Timeline.vue.d.ts +17 -0
- package/dist/components/Timeline.vue.d.ts.map +1 -0
- package/dist/components/TimelineItem.vue.d.ts +25 -0
- package/dist/components/TimelineItem.vue.d.ts.map +1 -0
- package/dist/components/Tooltip.vue.d.ts +2 -2
- package/dist/components/Upload.vue.d.ts +1 -1
- package/dist/components/UserChip.vue.d.ts +1 -1
- package/dist/components/types.d.ts +76 -0
- package/dist/components/types.d.ts.map +1 -1
- package/dist/composables/accordionContext.d.ts +11 -0
- package/dist/composables/accordionContext.d.ts.map +1 -0
- package/dist/composables/carouselContext.d.ts +7 -0
- package/dist/composables/carouselContext.d.ts.map +1 -0
- package/dist/composables/useKunAlert.d.ts +2 -2
- package/dist/composables/useKunAlert.d.ts.map +1 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1156 -796
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { KunAccordionProps } from './types';
|
|
2
|
+
type __VLS_Props = KunAccordionProps;
|
|
3
|
+
type __VLS_ModelProps = {
|
|
4
|
+
modelValue?: string | string[] | undefined;
|
|
5
|
+
};
|
|
6
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
7
|
+
declare var __VLS_1: {};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
default?: (props: typeof __VLS_1) => any;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
"update:modelValue": (value: string | string[] | undefined) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
multiple: boolean;
|
|
17
|
+
variant: "light" | "bordered" | "splitted";
|
|
18
|
+
defaultValue: string | string[];
|
|
19
|
+
className: string;
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
22
|
+
declare const _default: typeof __VLS_export;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
//# sourceMappingURL=Accordion.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Accordion.vue.d.ts","sourceRoot":"","sources":["../../src/components/Accordion.vue"],"names":[],"mappings":"AA2EA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAQhD,KAAK,WAAW,GAAG,iBAAiB,CAAC;AAwDrC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS,CAAC;CAC1C,CAAC;AAWF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAyBxD,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU;;;;;;;;;6EAId,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { KunAccordionItemProps } from './types';
|
|
2
|
+
declare var __VLS_6: {}, __VLS_13: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
title?: (props: typeof __VLS_6) => any;
|
|
5
|
+
} & {
|
|
6
|
+
default?: (props: typeof __VLS_13) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_base: import("vue").DefineComponent<KunAccordionItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KunAccordionItemProps> & Readonly<{}>, {
|
|
9
|
+
name: string;
|
|
10
|
+
className: string;
|
|
11
|
+
title: string;
|
|
12
|
+
icon: string;
|
|
13
|
+
disabled: boolean;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=AccordionItem.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AccordionItem.vue.d.ts","sourceRoot":"","sources":["../../src/components/AccordionItem.vue"],"names":[],"mappings":"AA4GA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAyJpD,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAY,CAAE;AAC7C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKhD,QAAA,MAAM,UAAU;;;;;;6EAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -9,19 +9,19 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
9
9
|
blur: () => void | undefined;
|
|
10
10
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
11
|
search: (query: string) => any;
|
|
12
|
-
select: (option: KunAutocompleteOption) => any;
|
|
13
12
|
"update:modelValue": (value: string) => any;
|
|
13
|
+
select: (option: KunAutocompleteOption) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
15
|
onSearch?: ((query: string) => any) | undefined;
|
|
16
|
-
onSelect?: ((option: KunAutocompleteOption) => any) | undefined;
|
|
17
16
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
17
|
+
onSelect?: ((option: KunAutocompleteOption) => any) | undefined;
|
|
18
18
|
}>, {
|
|
19
|
-
size: import("@kungal/ui-core").KunUISize;
|
|
20
|
-
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
21
19
|
name: string;
|
|
22
20
|
label: string;
|
|
23
|
-
|
|
21
|
+
size: import("@kungal/ui-core").KunUISize;
|
|
22
|
+
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
24
23
|
disabled: boolean;
|
|
24
|
+
color: import("@kungal/ui-core").KunUIColor;
|
|
25
25
|
ariaLabel: string;
|
|
26
26
|
error: string;
|
|
27
27
|
placeholder: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { KunAvatarProps } from './types';
|
|
2
2
|
declare const __VLS_export: import("vue").DefineComponent<KunAvatarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KunAvatarProps> & Readonly<{}>, {
|
|
3
|
-
size: import("./types").KunAvatarSize;
|
|
4
3
|
className: string;
|
|
4
|
+
size: import("./types").KunAvatarSize;
|
|
5
5
|
imageClassName: string;
|
|
6
6
|
isNavigation: boolean;
|
|
7
7
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -4,11 +4,11 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_1) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_base: import("vue").DefineComponent<KunBadgeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KunBadgeProps> & Readonly<{}>, {
|
|
7
|
-
show: boolean;
|
|
8
|
-
size: "sm" | "md" | "lg";
|
|
9
|
-
className: string;
|
|
10
7
|
count: number;
|
|
11
8
|
variant: "dot" | "count";
|
|
9
|
+
className: string;
|
|
10
|
+
size: "sm" | "md" | "lg";
|
|
11
|
+
show: boolean;
|
|
12
12
|
color: import("@kungal/ui-core").KunUIColor;
|
|
13
13
|
placement: "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
14
14
|
max: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Badge.vue.d.ts","sourceRoot":"","sources":["../../src/components/Badge.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Badge.vue.d.ts","sourceRoot":"","sources":["../../src/components/Badge.vue"],"names":[],"mappings":"AAqGA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAqI5C,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU;;;;;;;;;;6EAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -12,16 +12,16 @@ declare const __VLS_base: import("vue").DefineComponent<KunButtonProps, {}, {},
|
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<KunButtonProps> & Readonly<{
|
|
13
13
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
|
+
variant: import("@kungal/ui-core").KunUIVariant;
|
|
16
|
+
className: string;
|
|
15
17
|
type: "button" | "submit" | "reset";
|
|
16
18
|
size: import("@kungal/ui-core").KunUISize;
|
|
17
|
-
|
|
18
|
-
variant: import("@kungal/ui-core").KunUIVariant;
|
|
19
|
-
color: import("@kungal/ui-core").KunUIColor;
|
|
19
|
+
icon: boolean;
|
|
20
20
|
disabled: boolean;
|
|
21
|
+
color: import("@kungal/ui-core").KunUIColor;
|
|
21
22
|
loading: boolean;
|
|
22
23
|
fullWidth: boolean;
|
|
23
24
|
isIconOnly: boolean;
|
|
24
|
-
icon: boolean;
|
|
25
25
|
iconPosition: "left" | "right";
|
|
26
26
|
href: string;
|
|
27
27
|
target: "_blank" | "_self" | "_parent" | "_top";
|
|
@@ -15,9 +15,9 @@ declare const __VLS_base: import("vue").DefineComponent<KunCardProps, {}, {}, {}
|
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<KunCardProps> & Readonly<{
|
|
16
16
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
-
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
19
|
-
className: string;
|
|
20
18
|
bordered: boolean;
|
|
19
|
+
className: string;
|
|
20
|
+
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
21
21
|
color: KunUIColor | "background";
|
|
22
22
|
href: string;
|
|
23
23
|
darkBorder: boolean;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { KunCarouselProps } from './types';
|
|
2
|
+
declare var __VLS_1: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_1) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<KunCarouselProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KunCarouselProps> & Readonly<{}>, {
|
|
7
|
+
className: string;
|
|
8
|
+
ariaLabel: string;
|
|
9
|
+
slidesPerView: number;
|
|
10
|
+
gap: string;
|
|
11
|
+
showArrows: boolean;
|
|
12
|
+
showIndicators: boolean;
|
|
13
|
+
autoplay: number;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=Carousel.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Carousel.vue.d.ts","sourceRoot":"","sources":["../../src/components/Carousel.vue"],"names":[],"mappings":"AAwMA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AA0R/C,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAO/C,QAAA,MAAM,UAAU;;;;;;;;6EAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { KunCarouselItemProps } from './types';
|
|
2
|
+
declare var __VLS_1: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_1) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<KunCarouselItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KunCarouselItemProps> & Readonly<{}>, {
|
|
7
|
+
className: string;
|
|
8
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
11
|
+
export default _default;
|
|
12
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
13
|
+
new (): {
|
|
14
|
+
$slots: S;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=CarouselItem.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CarouselItem.vue.d.ts","sourceRoot":"","sources":["../../src/components/CarouselItem.vue"],"names":[],"mappings":"AAoCA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAA;AA4CnD,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU;;6EAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -10,23 +10,23 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_6) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
-
change: (value: boolean) => any;
|
|
14
13
|
"update:modelValue": (value: boolean) => any;
|
|
14
|
+
change: (value: boolean) => any;
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
|
-
onChange?: ((value: boolean) => any) | undefined;
|
|
17
16
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
17
|
+
onChange?: ((value: boolean) => any) | undefined;
|
|
18
18
|
}>, {
|
|
19
|
-
type: "single" | "multiple";
|
|
20
|
-
size: KunUISize;
|
|
21
19
|
name: string;
|
|
22
20
|
className: string;
|
|
23
21
|
label: string;
|
|
24
|
-
|
|
22
|
+
type: "single" | "multiple";
|
|
23
|
+
size: KunUISize;
|
|
24
|
+
value: string | number | boolean;
|
|
25
25
|
disabled: boolean;
|
|
26
|
+
id: string;
|
|
27
|
+
color: KunUIColor;
|
|
26
28
|
error: string;
|
|
27
|
-
value: string | number | boolean;
|
|
28
29
|
description: string;
|
|
29
|
-
id: string;
|
|
30
30
|
indeterminate: boolean;
|
|
31
31
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
32
32
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CheckBox.vue.d.ts","sourceRoot":"","sources":["../../src/components/CheckBox.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CheckBox.vue.d.ts","sourceRoot":"","sources":["../../src/components/CheckBox.vue"],"names":[],"mappings":"AAwLA,OAAO,EAKL,KAAK,UAAU,EACf,KAAK,SAAS,EACf,MAAM,iBAAiB,CAAA;AAIxB,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAI/C,KAAK,WAAW,GAAG,gBAAgB,CAAC;AAyFpC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAmBF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAoIxD,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAO/C,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;6EAId,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -12,11 +12,11 @@ declare const __VLS_base: import("vue").DefineComponent<KunChipProps, {}, {}, {}
|
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<KunChipProps> & Readonly<{
|
|
13
13
|
onClose?: (() => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
|
-
size: import("@kungal/ui-core").KunUISize;
|
|
16
|
-
className: string;
|
|
17
15
|
variant: import("@kungal/ui-core").KunUIVariant;
|
|
18
|
-
|
|
16
|
+
className: string;
|
|
17
|
+
size: import("@kungal/ui-core").KunUISize;
|
|
19
18
|
disabled: boolean;
|
|
19
|
+
color: import("@kungal/ui-core").KunUIColor;
|
|
20
20
|
closable: boolean;
|
|
21
21
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
22
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { KunCopyProps } from './types';
|
|
2
2
|
declare const __VLS_export: import("vue").DefineComponent<KunCopyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KunCopyProps> & Readonly<{}>, {
|
|
3
|
-
size: import("@kungal/ui-core").KunUISize;
|
|
4
3
|
name: string;
|
|
5
|
-
className: string;
|
|
6
4
|
variant: import("@kungal/ui-core").KunUIVariant;
|
|
5
|
+
className: string;
|
|
6
|
+
size: import("@kungal/ui-core").KunUISize;
|
|
7
7
|
color: import("@kungal/ui-core").KunUIColor;
|
|
8
8
|
copiedText: string;
|
|
9
9
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -4,13 +4,13 @@ declare const __VLS_export: import("vue").DefineComponent<KunDatePickerProps, {}
|
|
|
4
4
|
}, string, import("vue").PublicProps, Readonly<KunDatePickerProps> & Readonly<{
|
|
5
5
|
"onUpdate:modelValue"?: ((value: string | [string | null, string | null] | null) => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
|
+
label: string;
|
|
8
|
+
modelValue: string | null | [string | null, string | null];
|
|
7
9
|
size: import("@kungal/ui-core").KunUISize;
|
|
8
10
|
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
9
|
-
label: string;
|
|
10
|
-
color: import("@kungal/ui-core").KunUIColor;
|
|
11
11
|
disabled: boolean;
|
|
12
|
+
color: import("@kungal/ui-core").KunUIColor;
|
|
12
13
|
error: string;
|
|
13
|
-
modelValue: string | null | [string | null, string | null];
|
|
14
14
|
mode: import("./types").KunDatePickerMode;
|
|
15
15
|
placeholder: string;
|
|
16
16
|
darkBorder: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../src/components/DatePicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DatePicker.vue.d.ts","sourceRoot":"","sources":["../../src/components/DatePicker.vue"],"names":[],"mappings":"AAgWA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAotBjD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;6EAIhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -15,16 +15,16 @@ type __VLS_Slots = {} & {
|
|
|
15
15
|
footer?: (props: typeof __VLS_32) => any;
|
|
16
16
|
};
|
|
17
17
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
-
close: () => any;
|
|
19
18
|
"update:modelValue": (value: boolean) => any;
|
|
19
|
+
close: () => any;
|
|
20
20
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
21
|
-
onClose?: (() => any) | undefined;
|
|
22
21
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
22
|
+
onClose?: (() => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
|
+
className: string;
|
|
24
25
|
title: string;
|
|
25
26
|
size: KunDrawerSize;
|
|
26
27
|
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
27
|
-
className: string;
|
|
28
28
|
innerClassName: string;
|
|
29
29
|
isDismissable: boolean;
|
|
30
30
|
isShowCloseButton: boolean;
|
|
@@ -18,12 +18,12 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
|
|
|
18
18
|
toggle: () => void;
|
|
19
19
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
20
20
|
select: (item: import("./types").KunContextMenuItem) => any;
|
|
21
|
-
close: () => any;
|
|
22
21
|
open: () => any;
|
|
22
|
+
close: () => any;
|
|
23
23
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
24
24
|
onSelect?: ((item: import("./types").KunContextMenuItem) => any) | undefined;
|
|
25
|
-
onClose?: (() => any) | undefined;
|
|
26
25
|
onOpen?: (() => any) | undefined;
|
|
26
|
+
onClose?: (() => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
28
|
disabled: boolean;
|
|
29
29
|
position: Placement;
|
|
@@ -14,18 +14,18 @@ type __VLS_Slots = {} & {
|
|
|
14
14
|
default?: (props: typeof __VLS_1) => any;
|
|
15
15
|
};
|
|
16
16
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
-
change: (picked: File[]) => any;
|
|
18
17
|
"update:modelValue": (value: File | null) => any;
|
|
18
|
+
change: (picked: File[]) => any;
|
|
19
19
|
errorPick: (message: string) => any;
|
|
20
20
|
"update:files": (value: File[]) => any;
|
|
21
21
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
-
onChange?: ((picked: File[]) => any) | undefined;
|
|
23
22
|
"onUpdate:modelValue"?: ((value: File | null) => any) | undefined;
|
|
23
|
+
onChange?: ((picked: File[]) => any) | undefined;
|
|
24
24
|
onErrorPick?: ((message: string) => any) | undefined;
|
|
25
25
|
"onUpdate:files"?: ((value: File[]) => any) | undefined;
|
|
26
26
|
}>, {
|
|
27
|
-
className: string;
|
|
28
27
|
multiple: boolean;
|
|
28
|
+
className: string;
|
|
29
29
|
disabled: boolean;
|
|
30
30
|
fullWidth: boolean;
|
|
31
31
|
error: string;
|
|
@@ -5,8 +5,8 @@ type __VLS_Props = {
|
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
7
7
|
name: string;
|
|
8
|
-
class: string;
|
|
9
8
|
className: string;
|
|
9
|
+
class: string;
|
|
10
10
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
11
|
declare const _default: typeof __VLS_export;
|
|
12
12
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../src/components/Icon.vue"],"names":[],"mappings":"AA4FA,KAAK,WAAW,GAAG;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB,CAAC;AA8EJ,QAAA,MAAM,YAAY;UAjFP,MAAM;
|
|
1
|
+
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../src/components/Icon.vue"],"names":[],"mappings":"AA4FA,KAAK,WAAW,GAAG;IACf,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB,CAAC;AA8EJ,QAAA,MAAM,YAAY;UAjFP,MAAM;eAED,MAAM;WADV,MAAM;6EAmFhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -7,12 +7,12 @@ type __VLS_Slots = {} & {
|
|
|
7
7
|
default?: (props: typeof __VLS_8) => any;
|
|
8
8
|
};
|
|
9
9
|
declare const __VLS_base: import("vue").DefineComponent<KunInfoProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KunInfoProps> & Readonly<{}>, {
|
|
10
|
+
variant: KunUIVariant;
|
|
11
|
+
className: string;
|
|
10
12
|
title: string;
|
|
11
13
|
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
12
|
-
className: string;
|
|
13
|
-
variant: KunUIVariant;
|
|
14
|
-
color: KunUIColor;
|
|
15
14
|
icon: string;
|
|
15
|
+
color: KunUIColor;
|
|
16
16
|
description: string;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Info.vue.d.ts","sourceRoot":"","sources":["../../src/components/Info.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Info.vue.d.ts","sourceRoot":"","sources":["../../src/components/Info.vue"],"names":[],"mappings":"AAiKA,OAAO,EAIL,KAAK,YAAY,EACjB,KAAK,UAAU,EAChB,MAAM,iBAAiB,CAAA;AAGxB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAwM3C,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAW,CAAE;AAC3C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU;;;;;;;;6EAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -17,24 +17,24 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
17
17
|
insertAtCaret: (text: string) => void;
|
|
18
18
|
inputRef: import("vue").Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
19
19
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
+
"update:modelValue": (value: string | number) => any;
|
|
20
21
|
clear: () => any;
|
|
21
22
|
blur: (event: FocusEvent) => any;
|
|
22
23
|
focus: (event: FocusEvent) => any;
|
|
23
|
-
"update:modelValue": (value: string | number) => any;
|
|
24
24
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
25
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
25
26
|
onClear?: (() => any) | undefined;
|
|
26
27
|
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
27
28
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
28
|
-
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
|
+
className: string;
|
|
31
|
+
label: string;
|
|
30
32
|
type: string;
|
|
31
33
|
size: import("@kungal/ui-core").KunUISize;
|
|
32
34
|
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
33
|
-
className: string;
|
|
34
|
-
label: string;
|
|
35
|
-
color: import("@kungal/ui-core").KunUIColor;
|
|
36
35
|
disabled: boolean;
|
|
37
36
|
required: boolean;
|
|
37
|
+
color: import("@kungal/ui-core").KunUIColor;
|
|
38
38
|
error: string;
|
|
39
39
|
placeholder: string;
|
|
40
40
|
description: string;
|
|
@@ -8,8 +8,8 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
suffix?: (props: typeof __VLS_17) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<KunLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KunLinkProps> & Readonly<{}>, {
|
|
11
|
-
size: import("@kungal/ui-core").KunUISize;
|
|
12
11
|
className: string;
|
|
12
|
+
size: import("@kungal/ui-core").KunUISize;
|
|
13
13
|
color: import("@kungal/ui-core").KunUIColor;
|
|
14
14
|
href: string;
|
|
15
15
|
target: "_blank" | "_self" | "_parent" | "_top";
|
|
@@ -11,15 +11,15 @@ type __VLS_Slots = {} & {
|
|
|
11
11
|
default?: (props: typeof __VLS_28) => any;
|
|
12
12
|
};
|
|
13
13
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
-
close: () => any;
|
|
15
14
|
"update:modelValue": (value: boolean) => any;
|
|
15
|
+
close: () => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
|
-
onClose?: (() => any) | undefined;
|
|
18
17
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18
|
+
onClose?: (() => any) | undefined;
|
|
19
19
|
}>, {
|
|
20
|
+
className: string;
|
|
20
21
|
size: KunModalSize;
|
|
21
22
|
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
22
|
-
className: string;
|
|
23
23
|
role: "dialog" | "alertdialog";
|
|
24
24
|
innerClassName: string;
|
|
25
25
|
isDismissable: boolean;
|
|
@@ -9,20 +9,20 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
9
9
|
focus: () => void | undefined;
|
|
10
10
|
blur: () => void | undefined;
|
|
11
11
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
change: (value: number | null) => any;
|
|
13
12
|
"update:modelValue": (value: number | null) => any;
|
|
13
|
+
change: (value: number | null) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
|
-
onChange?: ((value: number | null) => any) | undefined;
|
|
16
15
|
"onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
|
|
16
|
+
onChange?: ((value: number | null) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
|
-
size: KunUISize;
|
|
19
|
-
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
20
18
|
name: string;
|
|
21
19
|
label: string;
|
|
22
|
-
|
|
20
|
+
size: KunUISize;
|
|
21
|
+
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
23
22
|
disabled: boolean;
|
|
24
|
-
ariaLabel: string;
|
|
25
23
|
required: boolean;
|
|
24
|
+
color: import("@kungal/ui-core").KunUIColor;
|
|
25
|
+
ariaLabel: string;
|
|
26
26
|
error: string;
|
|
27
27
|
placeholder: string;
|
|
28
28
|
description: string;
|
|
@@ -12,14 +12,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
12
12
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
13
13
|
onComplete?: ((value: string) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
|
+
name: string;
|
|
16
|
+
length: number;
|
|
17
|
+
mask: boolean;
|
|
15
18
|
type: "numeric" | "text";
|
|
16
19
|
size: KunUISize;
|
|
17
20
|
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
18
|
-
length: number;
|
|
19
|
-
name: string;
|
|
20
|
-
mask: boolean;
|
|
21
|
-
color: import("@kungal/ui-core").KunUIColor;
|
|
22
21
|
disabled: boolean;
|
|
22
|
+
color: import("@kungal/ui-core").KunUIColor;
|
|
23
23
|
ariaLabel: string;
|
|
24
24
|
placeholder: string;
|
|
25
25
|
isInvalid: boolean;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { type KunUIColor } from '@kungal/ui-core';
|
|
2
2
|
import type { KunProgressProps } from './types';
|
|
3
3
|
declare const __VLS_export: import("vue").DefineComponent<KunProgressProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KunProgressProps> & Readonly<{}>, {
|
|
4
|
+
variant: import("@kungal/ui-core").KunUIVariant | "gradient" | "circle" | "striped";
|
|
5
|
+
className: string;
|
|
4
6
|
size: import("@kungal/ui-core").KunUISize;
|
|
5
7
|
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
6
|
-
|
|
7
|
-
variant: import("@kungal/ui-core").KunUIVariant | "gradient" | "circle" | "striped";
|
|
8
|
+
value: number;
|
|
8
9
|
color: KunUIColor;
|
|
9
10
|
ariaLabel: string;
|
|
10
|
-
value: number;
|
|
11
11
|
max: number;
|
|
12
12
|
indeterminate: boolean;
|
|
13
13
|
showLabel: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Progress.vue.d.ts","sourceRoot":"","sources":["../../src/components/Progress.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Progress.vue.d.ts","sourceRoot":"","sources":["../../src/components/Progress.vue"],"names":[],"mappings":"AAqNA,OAAO,EAKL,KAAK,UAAU,EAChB,MAAM,iBAAiB,CAAA;AAExB,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAyO/C,QAAA,MAAM,YAAY;;;;;;;;;;;6EAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -3,8 +3,8 @@ declare const __VLS_export: <T extends KunRadioValue = KunRadioValue>(__VLS_prop
|
|
|
3
3
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<(KunRadioGroupProps<T> & {
|
|
4
4
|
modelValue: T;
|
|
5
5
|
}) & {
|
|
6
|
-
onChange?: ((value: T, index: number) => any) | undefined;
|
|
7
6
|
"onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
7
|
+
onChange?: ((value: T, index: number) => any) | undefined;
|
|
8
8
|
}> & (typeof globalThis extends {
|
|
9
9
|
__VLS_PROPS_FALLBACK: infer P;
|
|
10
10
|
} ? P : {});
|
|
@@ -5,11 +5,11 @@ type __VLS_ModelProps = {
|
|
|
5
5
|
};
|
|
6
6
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
7
7
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
-
set: (value: number) => any;
|
|
9
8
|
"update:modelValue": (value: number) => any;
|
|
9
|
+
set: (value: number) => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
11
|
-
onSet?: ((value: number) => any) | undefined;
|
|
12
11
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
12
|
+
onSet?: ((value: number) => any) | undefined;
|
|
13
13
|
}>, {
|
|
14
14
|
size: "sm" | "md" | "lg";
|
|
15
15
|
disabled: boolean;
|
|
@@ -3,8 +3,8 @@ declare const __VLS_export: <T extends KunSelectValue = KunSelectValue>(__VLS_pr
|
|
|
3
3
|
props: import("vue").PublicProps & __VLS_PrettifyLocal<(KunSelectProps<T> & {
|
|
4
4
|
modelValue: T | T[] | null;
|
|
5
5
|
}) & {
|
|
6
|
-
onSet?: ((value: T, index: number) => any) | undefined;
|
|
7
6
|
"onUpdate:modelValue"?: ((value: T | T[] | null) => any) | undefined;
|
|
7
|
+
onSet?: ((value: T, index: number) => any) | undefined;
|
|
8
8
|
}> & (typeof globalThis extends {
|
|
9
9
|
__VLS_PROPS_FALLBACK: infer P;
|
|
10
10
|
} ? P : {});
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { KunSkeletonProps } from './types';
|
|
2
|
+
declare var __VLS_1: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_1) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<KunSkeletonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<KunSkeletonProps> & Readonly<{}>, {
|
|
7
|
+
variant: "rect" | "text" | "circle";
|
|
8
|
+
className: string;
|
|
9
|
+
rounded: import("@kungal/ui-core").KunUIRounded;
|
|
10
|
+
width: string;
|
|
11
|
+
height: string;
|
|
12
|
+
animation: "pulse" | "none";
|
|
13
|
+
loaded: boolean;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=Skeleton.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Skeleton.vue.d.ts","sourceRoot":"","sources":["../../src/components/Skeleton.vue"],"names":[],"mappings":"AAkEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAuF/C,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU;;;;;;;;6EAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -6,15 +6,15 @@ type __VLS_ModelProps = {
|
|
|
6
6
|
};
|
|
7
7
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
8
8
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
change: (value: number) => any;
|
|
10
9
|
"update:modelValue": (value: number) => any;
|
|
10
|
+
change: (value: number) => any;
|
|
11
11
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
12
|
-
onChange?: ((value: number) => any) | undefined;
|
|
13
12
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
13
|
+
onChange?: ((value: number) => any) | undefined;
|
|
14
14
|
}>, {
|
|
15
15
|
size: KunUISize;
|
|
16
|
-
color: KunUIColor;
|
|
17
16
|
disabled: boolean;
|
|
17
|
+
color: KunUIColor;
|
|
18
18
|
max: number;
|
|
19
19
|
step: number;
|
|
20
20
|
min: number;
|