@wikicasa-dev/components 1.9.32 → 1.9.33

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.
Files changed (54) hide show
  1. package/dist/UIKit/AccessibleSelect.vue.d.ts +16 -47
  2. package/dist/UIKit/Accordion/BaseAccordion.vue.d.ts +18 -35
  3. package/dist/UIKit/Accordion/BaseAccordionBtn.vue.d.ts +19 -39
  4. package/dist/UIKit/Accordion/BaseAccordionContent.vue.d.ts +15 -19
  5. package/dist/UIKit/Accordion/BaseAccordionItem.vue.d.ts +32 -53
  6. package/dist/UIKit/BaseAlert.vue.d.ts +11 -28
  7. package/dist/UIKit/BaseAutocomplete.vue.d.ts +180 -108
  8. package/dist/UIKit/BaseBadge.vue.d.ts +11 -27
  9. package/dist/UIKit/BaseBreadcrumb.vue.d.ts +13 -18
  10. package/dist/UIKit/BaseButton.vue.d.ts +20 -57
  11. package/dist/UIKit/BaseCard.vue.d.ts +14 -37
  12. package/dist/UIKit/BaseComplexToggle.vue.d.ts +26 -64
  13. package/dist/UIKit/BaseDropDown.vue.d.ts +28 -67
  14. package/dist/UIKit/BaseFloatingLabel.vue.d.ts +6 -32
  15. package/dist/UIKit/BaseInput.vue.d.ts +41 -75
  16. package/dist/UIKit/BaseModal.vue.d.ts +29 -69
  17. package/dist/UIKit/BaseNavItem.vue.d.ts +1 -1
  18. package/dist/UIKit/BasePagination.vue.d.ts +19 -71
  19. package/dist/UIKit/BaseSelect/SelectItem.vue.d.ts +21 -37
  20. package/dist/UIKit/BaseSlider.vue.d.ts +60 -104
  21. package/dist/UIKit/BaseSnackbar.vue.d.ts +6 -32
  22. package/dist/UIKit/BaseTextarea.vue.d.ts +19 -43
  23. package/dist/UIKit/BaseToggle.vue.d.ts +21 -25
  24. package/dist/UIKit/BaseTooltip.vue.d.ts +12 -43
  25. package/dist/UIKit/BaseUploadFile.vue.d.ts +17 -44
  26. package/dist/UIKit/Checkbox/CheckboxBtn.vue.d.ts +29 -65
  27. package/dist/UIKit/Checkbox/CheckboxGroup.vue.d.ts +24 -55
  28. package/dist/UIKit/Radio/RadioButton.vue.d.ts +6 -27
  29. package/dist/UIKit/Radio/RadioGroup.vue.d.ts +33 -50
  30. package/dist/UIKit/ShimmerLoader/BaseShimmerLoader.vue.d.ts +10 -15
  31. package/dist/UIKit/ShimmerLoader/ShimmerMultiLine.vue.d.ts +4 -30
  32. package/dist/UIKit/StaticSpinner.vue.d.ts +4 -27
  33. package/dist/UIKit/Tab/BaseTab.vue.d.ts +10 -15
  34. package/dist/UIKit/Tab/BaseTabList.vue.d.ts +6 -28
  35. package/dist/UIKit/Tab/BaseTabPanel.vue.d.ts +11 -27
  36. package/dist/UIKit/Tab/BaseTabView.vue.d.ts +14 -33
  37. package/dist/UIKit/types.d.ts +0 -1
  38. package/dist/assets/BaseAlert.css +1 -1
  39. package/dist/assets/BaseBadge.css +1 -1
  40. package/dist/assets/BaseFloatingLabel.css +1 -1
  41. package/dist/assets/BaseNavItem.css +1 -1
  42. package/dist/assets/BaseTextarea.css +1 -1
  43. package/dist/assets/index.css +1 -1
  44. package/dist/chart/DoughnutChart.vue.d.ts +3 -13
  45. package/dist/chart/LineChart.vue.d.ts +3 -13
  46. package/dist/chart/composables/useChartjsModules.d.ts +0 -1
  47. package/dist/components/IntersectionObserver/IntersectionObservable.vue.d.ts +14 -29
  48. package/dist/components/IntersectionObserver/IntersectionObserver.vue.d.ts +36 -42
  49. package/dist/components/carousel/SwiperCarousel.vue.d.ts +17 -35
  50. package/dist/components/carousel/SwiperSlide.vue.d.ts +7 -2
  51. package/dist/composables/useFloatingLabel.d.ts +0 -1
  52. package/dist/composables/useValidator.d.ts +0 -1
  53. package/dist/index.d.ts +0 -1
  54. package/package.json +14 -15
@@ -1,9 +1,15 @@
1
1
  import { AccessibleSelectOptions } from './types';
2
-
3
2
  declare function __VLS_template(): {
4
- lefticon?(_: {}): any;
3
+ slots: {
4
+ lefticon?(_: {}): any;
5
+ };
6
+ refs: {
7
+ btnEl: HTMLButtonElement;
8
+ };
9
+ attrs: Partial<{}>;
5
10
  };
6
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: import('vue').DefineComponent<{
7
13
  label?: string;
8
14
  dropdownPosition?: "top" | "bottom";
9
15
  namespace: string;
@@ -19,19 +25,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
19
25
  */
20
26
  closeOnBodyPressed?: boolean;
21
27
  border?: boolean;
22
- }>, {
23
- modelValue: () => {
24
- id: string;
25
- label: string;
26
- };
27
- label: string;
28
- dropdownPosition: string;
29
- isValid: null;
30
- closeOnBodyPressed: boolean;
31
- border: boolean;
32
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
33
- "update:modelValue": (args_0: AccessibleSelectOptions) => void;
34
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
28
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
29
+ "update:modelValue": (args_0: AccessibleSelectOptions) => any;
30
+ }, string, import('vue').PublicProps, Readonly<{
35
31
  label?: string;
36
32
  dropdownPosition?: "top" | "bottom";
37
33
  namespace: string;
@@ -47,45 +43,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
47
43
  */
48
44
  closeOnBodyPressed?: boolean;
49
45
  border?: boolean;
50
- }>, {
51
- modelValue: () => {
52
- id: string;
53
- label: string;
54
- };
55
- label: string;
56
- dropdownPosition: string;
57
- isValid: null;
58
- closeOnBodyPressed: boolean;
59
- border: boolean;
60
- }>>> & Readonly<{
46
+ }> & Readonly<{
61
47
  "onUpdate:modelValue"?: ((args_0: AccessibleSelectOptions) => any) | undefined;
62
48
  }>, {
63
49
  label: string;
64
- border: boolean;
65
50
  isValid: boolean | null;
66
51
  modelValue: AccessibleSelectOptions;
67
52
  dropdownPosition: "top" | "bottom";
68
53
  closeOnBodyPressed: boolean;
69
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
70
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
54
+ border: boolean;
55
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
56
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
71
57
  export default _default;
72
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
73
- type __VLS_TypePropsToRuntimeProps<T> = {
74
- [K in keyof T]-?: {} extends Pick<T, K> ? {
75
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
76
- } : {
77
- type: import('vue').PropType<T[K]>;
78
- required: true;
79
- };
80
- };
81
- type __VLS_WithDefaults<P, D> = {
82
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
83
- default: D[K];
84
- }> : P[K];
85
- };
86
- type __VLS_Prettify<T> = {
87
- [K in keyof T]: T[K];
88
- } & {};
89
58
  type __VLS_WithTemplateSlots<T, S> = T & {
90
59
  new (): {
91
60
  $slots: S;
@@ -1,46 +1,29 @@
1
1
  import { AccordionItem } from '@wikicasa-dev/types';
2
-
3
2
  type AccordionItemDecorated<T> = Record<string | number, T & Partial<AccordionItem>>;
4
3
  declare function __VLS_template(): {
5
- default?(_: {
6
- updatePrev: <T>(a: AccordionItem, _accordionItems: AccordionItemDecorated<T>) => void;
7
- prev: {
8
- title?: string | undefined;
9
- id: string | number;
10
- active?: boolean | undefined;
11
- } | null;
12
- }): any;
4
+ slots: {
5
+ default?(_: {
6
+ updatePrev: <T>(a: AccordionItem, _accordionItems: AccordionItemDecorated<T>) => void;
7
+ prev: {
8
+ title?: string | undefined;
9
+ id: string | number;
10
+ active?: boolean | undefined;
11
+ } | null;
12
+ }): any;
13
+ };
14
+ refs: {};
15
+ attrs: Partial<{}>;
13
16
  };
14
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
17
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
18
+ declare const __VLS_component: import('vue').DefineComponent<{
15
19
  autoClose?: boolean;
16
- }>, {
17
- autoClose: boolean;
18
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
20
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
19
21
  autoClose?: boolean;
20
- }>, {
21
- autoClose: boolean;
22
- }>>> & Readonly<{}>, {
22
+ }> & Readonly<{}>, {
23
23
  autoClose: boolean;
24
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
25
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
24
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
26
26
  export default _default;
27
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
- type __VLS_TypePropsToRuntimeProps<T> = {
29
- [K in keyof T]-?: {} extends Pick<T, K> ? {
30
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
- } : {
32
- type: import('vue').PropType<T[K]>;
33
- required: true;
34
- };
35
- };
36
- type __VLS_WithDefaults<P, D> = {
37
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
38
- default: D[K];
39
- }> : P[K];
40
- };
41
- type __VLS_Prettify<T> = {
42
- [K in keyof T]: T[K];
43
- } & {};
44
27
  type __VLS_WithTemplateSlots<T, S> = T & {
45
28
  new (): {
46
29
  $slots: S;
@@ -1,59 +1,39 @@
1
1
  declare function __VLS_template(): {
2
- custom_content?(_: {}): any;
3
- custom_btn?(_: {
4
- btnId: string;
5
- isOpen: boolean;
6
- toggleAccordion: () => void;
7
- }): any;
2
+ slots: {
3
+ custom_content?(_: {}): any;
4
+ custom_btn?(_: {
5
+ btnId: string;
6
+ isOpen: boolean;
7
+ toggleAccordion: () => void;
8
+ }): any;
9
+ };
10
+ refs: {};
11
+ attrs: Partial<{}>;
8
12
  };
9
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
+ declare const __VLS_component: import('vue').DefineComponent<{
10
15
  id: string | number;
11
16
  arrowWidth?: number;
12
17
  onContainerClickExpand?: boolean;
13
18
  accordionOpen?: boolean;
14
19
  toggleAccordion: () => void;
15
- }>, {
16
- accordionOpen: boolean;
17
- arrowWidth: number;
18
- onContainerClickExpand: boolean;
19
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
- click: () => void;
21
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
20
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
21
+ click: () => any;
22
+ }, string, import('vue').PublicProps, Readonly<{
22
23
  id: string | number;
23
24
  arrowWidth?: number;
24
25
  onContainerClickExpand?: boolean;
25
26
  accordionOpen?: boolean;
26
27
  toggleAccordion: () => void;
27
- }>, {
28
- accordionOpen: boolean;
29
- arrowWidth: number;
30
- onContainerClickExpand: boolean;
31
- }>>> & Readonly<{
28
+ }> & Readonly<{
32
29
  onClick?: (() => any) | undefined;
33
30
  }>, {
34
31
  arrowWidth: number;
35
- accordionOpen: boolean;
36
32
  onContainerClickExpand: boolean;
37
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
38
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
33
+ accordionOpen: boolean;
34
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
35
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
39
36
  export default _default;
40
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
41
- type __VLS_TypePropsToRuntimeProps<T> = {
42
- [K in keyof T]-?: {} extends Pick<T, K> ? {
43
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
44
- } : {
45
- type: import('vue').PropType<T[K]>;
46
- required: true;
47
- };
48
- };
49
- type __VLS_WithDefaults<P, D> = {
50
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
51
- default: D[K];
52
- }> : P[K];
53
- };
54
- type __VLS_Prettify<T> = {
55
- [K in keyof T]: T[K];
56
- } & {};
57
37
  type __VLS_WithTemplateSlots<T, S> = T & {
58
38
  new (): {
59
39
  $slots: S;
@@ -1,29 +1,25 @@
1
1
  declare function __VLS_template(): {
2
- custom_accordion_content?(_: {
3
- isOpen: boolean;
4
- }): any;
5
- default?(_: {
6
- isOpen: boolean;
7
- }): any;
2
+ slots: {
3
+ custom_accordion_content?(_: {
4
+ isOpen: boolean;
5
+ }): any;
6
+ default?(_: {
7
+ isOpen: boolean;
8
+ }): any;
9
+ };
10
+ refs: {};
11
+ attrs: Partial<{}>;
8
12
  };
9
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
13
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
+ declare const __VLS_component: import('vue').DefineComponent<{
10
15
  id: string | number;
11
16
  accordionOpen: boolean;
12
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
17
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
13
18
  id: string | number;
14
19
  accordionOpen: boolean;
15
- }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
16
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
20
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
21
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
22
  export default _default;
18
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
19
- type __VLS_TypePropsToRuntimeProps<T> = {
20
- [K in keyof T]-?: {} extends Pick<T, K> ? {
21
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
22
- } : {
23
- type: import('vue').PropType<T[K]>;
24
- required: true;
25
- };
26
- };
27
23
  type __VLS_WithTemplateSlots<T, S> = T & {
28
24
  new (): {
29
25
  $slots: S;
@@ -1,44 +1,40 @@
1
1
  import { AccordionItem } from '@wikicasa-dev/types';
2
-
3
2
  declare function __VLS_template(): {
4
- custom_content?(_: {}): any;
5
- custom_btn?(_: {
6
- btnId: string;
7
- isOpen: boolean;
8
- toggleAccordion: () => void;
9
- }): any;
10
- custom_accordion?(_: {
11
- id: string | number;
12
- isOpen: boolean;
13
- toggleAccordion: () => void;
14
- }): any;
15
- custom_accordion_content?(_: {
16
- isOpen: boolean;
17
- }): any;
18
- default?(_: {
19
- isOpen: boolean;
20
- }): any;
3
+ slots: {
4
+ custom_content?(_: {}): any;
5
+ custom_btn?(_: {
6
+ btnId: string;
7
+ isOpen: boolean;
8
+ toggleAccordion: () => void;
9
+ }): any;
10
+ custom_accordion?(_: {
11
+ id: string | number;
12
+ isOpen: boolean;
13
+ toggleAccordion: () => void;
14
+ }): any;
15
+ custom_accordion_content?(_: {
16
+ isOpen: boolean;
17
+ }): any;
18
+ default?(_: {
19
+ isOpen: boolean;
20
+ }): any;
21
+ };
22
+ refs: {};
23
+ attrs: Partial<{}>;
21
24
  };
22
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AccordionItem & {
25
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
26
+ declare const __VLS_component: import('vue').DefineComponent<AccordionItem & {
23
27
  arrowWidth?: number;
24
28
  onContainerClickExpand?: boolean;
25
- }>, {
26
- active: boolean;
27
- arrowWidth: number;
28
- onContainerClickExpand: boolean;
29
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
30
- click: () => void;
31
- accordionOpened: (a: AccordionItem) => void;
32
- accordionClosed: (a: AccordionItem) => void;
33
- "update:accordionState": (args_0: boolean) => void;
34
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AccordionItem & {
29
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
30
+ click: () => any;
31
+ accordionOpened: (a: AccordionItem) => any;
32
+ accordionClosed: (a: AccordionItem) => any;
33
+ "update:accordionState": (args_0: boolean) => any;
34
+ }, string, import('vue').PublicProps, Readonly<AccordionItem & {
35
35
  arrowWidth?: number;
36
36
  onContainerClickExpand?: boolean;
37
- }>, {
38
- active: boolean;
39
- arrowWidth: number;
40
- onContainerClickExpand: boolean;
41
- }>>> & Readonly<{
37
+ }> & Readonly<{
42
38
  onClick?: (() => any) | undefined;
43
39
  onAccordionOpened?: ((a: AccordionItem) => any) | undefined;
44
40
  onAccordionClosed?: ((a: AccordionItem) => any) | undefined;
@@ -47,26 +43,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
47
43
  active: boolean;
48
44
  arrowWidth: number;
49
45
  onContainerClickExpand: boolean;
50
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
51
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
46
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
47
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
52
48
  export default _default;
53
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
54
- type __VLS_TypePropsToRuntimeProps<T> = {
55
- [K in keyof T]-?: {} extends Pick<T, K> ? {
56
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
57
- } : {
58
- type: import('vue').PropType<T[K]>;
59
- required: true;
60
- };
61
- };
62
- type __VLS_WithDefaults<P, D> = {
63
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
64
- default: D[K];
65
- }> : P[K];
66
- };
67
- type __VLS_Prettify<T> = {
68
- [K in keyof T]: T[K];
69
- } & {};
70
49
  type __VLS_WithTemplateSlots<T, S> = T & {
71
50
  new (): {
72
51
  $slots: S;
@@ -1,41 +1,24 @@
1
1
  import { TwPrefix } from 'lib/types';
2
-
3
2
  type AlertClassPrefix = "alert-";
4
3
  type AlertColors = "w-primary" | "w-danger";
5
4
  type AlertClass = `${TwPrefix}${AlertClassPrefix}${AlertColors}` | "";
6
5
  declare function __VLS_template(): {
7
- default?(_: {}): any;
6
+ slots: {
7
+ default?(_: {}): any;
8
+ };
9
+ refs: {};
10
+ attrs: Partial<{}>;
8
11
  };
9
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
+ declare const __VLS_component: import('vue').DefineComponent<{
10
14
  alertClass?: AlertClass;
11
- }>, {
12
- alertClass: string;
13
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
15
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
14
16
  alertClass?: AlertClass;
15
- }>, {
16
- alertClass: string;
17
- }>>> & Readonly<{}>, {
17
+ }> & Readonly<{}>, {
18
18
  alertClass: AlertClass;
19
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
20
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
21
21
  export default _default;
22
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
23
- type __VLS_TypePropsToRuntimeProps<T> = {
24
- [K in keyof T]-?: {} extends Pick<T, K> ? {
25
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
26
- } : {
27
- type: import('vue').PropType<T[K]>;
28
- required: true;
29
- };
30
- };
31
- type __VLS_WithDefaults<P, D> = {
32
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
33
- default: D[K];
34
- }> : P[K];
35
- };
36
- type __VLS_Prettify<T> = {
37
- [K in keyof T]: T[K];
38
- } & {};
39
22
  type __VLS_WithTemplateSlots<T, S> = T & {
40
23
  new (): {
41
24
  $slots: S;