@wikicasa-dev/components 1.2.2 → 1.2.4

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 (60) hide show
  1. package/dist/components.js +135 -31
  2. package/dist/components.umd.cjs +1 -32
  3. package/dist/src/index.d.ts +2 -0
  4. package/dist/src/main.d.ts +0 -30
  5. package/dist/style.css +1 -1
  6. package/package.json +6 -6
  7. package/dist/BaseSnackbar-DD3Nk99e.js +0 -78
  8. package/dist/main-vLlAmyQg.js +0 -8196
  9. package/dist/src/App.vue.d.ts +0 -2
  10. package/dist/src/UIKit/AccessibleSelect.vue.d.ts +0 -74
  11. package/dist/src/UIKit/Accordion/BaseAccordion.vue.d.ts +0 -45
  12. package/dist/src/UIKit/Accordion/BaseAccordionBtn.vue.d.ts +0 -59
  13. package/dist/src/UIKit/Accordion/BaseAccordionContent.vue.d.ts +0 -29
  14. package/dist/src/UIKit/Accordion/BaseAccordionItem.vue.d.ts +0 -71
  15. package/dist/src/UIKit/BaseAlert.vue.d.ts +0 -41
  16. package/dist/src/UIKit/BaseAutocomplete.vue.d.ts +0 -109
  17. package/dist/src/UIKit/BaseBadge.vue.d.ts +0 -36
  18. package/dist/src/UIKit/BaseBtModal.vue.d.ts +0 -172
  19. package/dist/src/UIKit/BaseCard.vue.d.ts +0 -41
  20. package/dist/src/UIKit/BaseComplexToggle.vue.d.ts +0 -83
  21. package/dist/src/UIKit/BaseDropDown.vue.d.ts +0 -123
  22. package/dist/src/UIKit/BaseFloatingLabel.vue.d.ts +0 -44
  23. package/dist/src/UIKit/BaseInput.vue.d.ts +0 -143
  24. package/dist/src/UIKit/BaseNavItem.vue.d.ts +0 -43
  25. package/dist/src/UIKit/BasePagination.vue.d.ts +0 -65
  26. package/dist/src/UIKit/BasePaper.vue.d.ts +0 -2
  27. package/dist/src/UIKit/BaseSelect/SelectItem.vue.d.ts +0 -54
  28. package/dist/src/UIKit/BaseSlider.vue.d.ts +0 -42
  29. package/dist/src/UIKit/BaseSnackbar.vue.d.ts +0 -56
  30. package/dist/src/UIKit/BaseTab.vue.d.ts +0 -60
  31. package/dist/src/UIKit/BaseTextarea.vue.d.ts +0 -82
  32. package/dist/src/UIKit/BaseToggle.vue.d.ts +0 -36
  33. package/dist/src/UIKit/BaseTooltip.vue.d.ts +0 -56
  34. package/dist/src/UIKit/BaseUploadFile.vue.d.ts +0 -37
  35. package/dist/src/UIKit/Checkbox/CheckboxBtn.vue.d.ts +0 -92
  36. package/dist/src/UIKit/Checkbox/CheckboxGroup.vue.d.ts +0 -78
  37. package/dist/src/UIKit/Radio/RadioButton.vue.d.ts +0 -26
  38. package/dist/src/UIKit/Radio/RadioGroup.vue.d.ts +0 -37
  39. package/dist/src/Views/AccordionSection.vue.d.ts +0 -2
  40. package/dist/src/Views/AlertSection.vue.d.ts +0 -2
  41. package/dist/src/Views/AutocompleteSection.vue.d.ts +0 -2
  42. package/dist/src/Views/BadgeSection.vue.d.ts +0 -2
  43. package/dist/src/Views/ButtonsSection.vue.d.ts +0 -2
  44. package/dist/src/Views/CardSection.vue.d.ts +0 -2
  45. package/dist/src/Views/CheckboxSection.vue.d.ts +0 -6
  46. package/dist/src/Views/DropdownSection.vue.d.ts +0 -35
  47. package/dist/src/Views/ModalSection.vue.d.ts +0 -4
  48. package/dist/src/Views/PaginationSection.vue.d.ts +0 -2
  49. package/dist/src/Views/PaperSection.vue.d.ts +0 -2
  50. package/dist/src/Views/RadioSection.vue.d.ts +0 -9
  51. package/dist/src/Views/SliderSection.vue.d.ts +0 -9
  52. package/dist/src/Views/SnackbarSection.vue.d.ts +0 -2
  53. package/dist/src/Views/TabSection.vue.d.ts +0 -2
  54. package/dist/src/Views/TextInputSection.vue.d.ts +0 -2
  55. package/dist/src/Views/TextareaSection.vue.d.ts +0 -6
  56. package/dist/src/Views/ToggleSection.vue.d.ts +0 -2
  57. package/dist/src/Views/TooltipSection.vue.d.ts +0 -2
  58. package/dist/src/Views/UiKitSidebar.vue.d.ts +0 -18
  59. package/dist/src/Views/UploadBtnSection.vue.d.ts +0 -2
  60. package/dist/src/Views/WikicasaUiKit.vue.d.ts +0 -19
@@ -1,60 +0,0 @@
1
- import { PropType } from "vue";
2
- interface ITab {
3
- id: string;
4
- label: string;
5
- iconName?: string;
6
- }
7
- declare const _default: import("vue").DefineComponent<{
8
- navTabsCustomClass: {
9
- type: StringConstructor;
10
- };
11
- firstLabel: {
12
- type: StringConstructor;
13
- default: string;
14
- };
15
- firstIconName: {
16
- type: StringConstructor;
17
- };
18
- secondLabel: {
19
- type: StringConstructor;
20
- default: string;
21
- };
22
- secondIconName: {
23
- type: StringConstructor;
24
- };
25
- tabs: {
26
- type: PropType<ITab[]>;
27
- };
28
- }, unknown, {
29
- selectedId: string;
30
- }, {}, {
31
- handleClick(id: string): void;
32
- clickTab(id: string): void;
33
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clickedTab"[], "clickedTab", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
34
- navTabsCustomClass: {
35
- type: StringConstructor;
36
- };
37
- firstLabel: {
38
- type: StringConstructor;
39
- default: string;
40
- };
41
- firstIconName: {
42
- type: StringConstructor;
43
- };
44
- secondLabel: {
45
- type: StringConstructor;
46
- default: string;
47
- };
48
- secondIconName: {
49
- type: StringConstructor;
50
- };
51
- tabs: {
52
- type: PropType<ITab[]>;
53
- };
54
- }>> & {
55
- onClickedTab?: ((...args: any[]) => any) | undefined;
56
- }, {
57
- firstLabel: string;
58
- secondLabel: string;
59
- }, {}>;
60
- export default _default;
@@ -1,82 +0,0 @@
1
- import type { FeedbackLabels, Nullable } from "@wikicasa-dev/types";
2
- declare const _default: import("vue").DefineComponent<{
3
- labelText: {
4
- type: StringConstructor;
5
- default: string;
6
- };
7
- modelValue: {
8
- type: (StringConstructor | NumberConstructor)[];
9
- };
10
- feedback: {
11
- type: () => FeedbackLabels;
12
- };
13
- isValid: {
14
- type: () => Nullable<boolean>;
15
- default: null;
16
- };
17
- textAreaStyle: {
18
- type: StringConstructor;
19
- default: string;
20
- };
21
- isDisabled: {
22
- type: BooleanConstructor;
23
- default: boolean;
24
- };
25
- resize: {
26
- type: BooleanConstructor;
27
- default: boolean;
28
- };
29
- }, {
30
- labelState: import("vue").Ref<import("@wikicasa-dev/types").LabelState>;
31
- setInitialLabelState: <T>(value: T) => void;
32
- handleFocusIn: (autoFloating?: boolean | undefined) => void;
33
- handleFocusOut: <T_1>(value: T_1, manual?: boolean | undefined, auto?: boolean | undefined) => void;
34
- }, {
35
- value: string;
36
- }, {
37
- textareaElem(): HTMLTextAreaElement;
38
- }, {
39
- handleOnChange({ target }: Event): void;
40
- handleFloatingLabelClick(): void;
41
- disableTextarea(): void;
42
- clearTextareaElem(): void;
43
- disableAndFocusTextarea(): void;
44
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focusin" | "focusout" | "update:modelValue")[], "focusin" | "focusout" | "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
45
- labelText: {
46
- type: StringConstructor;
47
- default: string;
48
- };
49
- modelValue: {
50
- type: (StringConstructor | NumberConstructor)[];
51
- };
52
- feedback: {
53
- type: () => FeedbackLabels;
54
- };
55
- isValid: {
56
- type: () => Nullable<boolean>;
57
- default: null;
58
- };
59
- textAreaStyle: {
60
- type: StringConstructor;
61
- default: string;
62
- };
63
- isDisabled: {
64
- type: BooleanConstructor;
65
- default: boolean;
66
- };
67
- resize: {
68
- type: BooleanConstructor;
69
- default: boolean;
70
- };
71
- }>> & {
72
- onFocusin?: ((...args: any[]) => any) | undefined;
73
- onFocusout?: ((...args: any[]) => any) | undefined;
74
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
75
- }, {
76
- resize: boolean;
77
- isValid: Nullable<boolean>;
78
- labelText: string;
79
- textAreaStyle: string;
80
- isDisabled: boolean;
81
- }, {}>;
82
- export default _default;
@@ -1,36 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- withRightLabel: {
3
- type: BooleanConstructor;
4
- default: boolean;
5
- };
6
- label: {
7
- type: StringConstructor;
8
- default: string;
9
- };
10
- modelValue: {
11
- type: BooleanConstructor;
12
- default: boolean;
13
- };
14
- }, unknown, unknown, {}, {
15
- handleToggle({ target }: Event): void;
16
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
17
- withRightLabel: {
18
- type: BooleanConstructor;
19
- default: boolean;
20
- };
21
- label: {
22
- type: StringConstructor;
23
- default: string;
24
- };
25
- modelValue: {
26
- type: BooleanConstructor;
27
- default: boolean;
28
- };
29
- }>> & {
30
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
31
- }, {
32
- label: string;
33
- modelValue: boolean;
34
- withRightLabel: boolean;
35
- }, {}>;
36
- export default _default;
@@ -1,56 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- theme: {
3
- type: () => {
4
- color: "blue" | "white";
5
- size: "sm" | "md" | "lg";
6
- };
7
- default(): {
8
- color: string;
9
- size: string;
10
- };
11
- };
12
- direction: {
13
- type: () => "top" | "bottom" | "left" | "right" | "top-center" | "bottom-center";
14
- default: string;
15
- };
16
- customTooltipClass: {
17
- type: () => "mail-alert";
18
- default: string;
19
- };
20
- showTooltipContentManually: {
21
- type: BooleanConstructor;
22
- default: boolean;
23
- };
24
- }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
25
- theme: {
26
- type: () => {
27
- color: "blue" | "white";
28
- size: "sm" | "md" | "lg";
29
- };
30
- default(): {
31
- color: string;
32
- size: string;
33
- };
34
- };
35
- direction: {
36
- type: () => "top" | "bottom" | "left" | "right" | "top-center" | "bottom-center";
37
- default: string;
38
- };
39
- customTooltipClass: {
40
- type: () => "mail-alert";
41
- default: string;
42
- };
43
- showTooltipContentManually: {
44
- type: BooleanConstructor;
45
- default: boolean;
46
- };
47
- }>>, {
48
- direction: "top" | "bottom" | "left" | "right" | "top-center" | "bottom-center";
49
- theme: {
50
- color: "blue" | "white";
51
- size: "sm" | "md" | "lg";
52
- };
53
- customTooltipClass: "mail-alert";
54
- showTooltipContentManually: boolean;
55
- }, {}>;
56
- export default _default;
@@ -1,37 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- withMargin: {
3
- type: BooleanConstructor;
4
- default: boolean;
5
- };
6
- labelText: {
7
- type: StringConstructor;
8
- default: string;
9
- };
10
- clear: {
11
- type: BooleanConstructor;
12
- default: boolean;
13
- };
14
- }, unknown, any, {}, {
15
- handleInput({ target }: InputEvent): void;
16
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cleared" | "uploaded")[], "cleared" | "uploaded", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
17
- withMargin: {
18
- type: BooleanConstructor;
19
- default: boolean;
20
- };
21
- labelText: {
22
- type: StringConstructor;
23
- default: string;
24
- };
25
- clear: {
26
- type: BooleanConstructor;
27
- default: boolean;
28
- };
29
- }>> & {
30
- onCleared?: ((...args: any[]) => any) | undefined;
31
- onUploaded?: ((...args: any[]) => any) | undefined;
32
- }, {
33
- labelText: string;
34
- clear: boolean;
35
- withMargin: boolean;
36
- }, {}>;
37
- export default _default;
@@ -1,92 +0,0 @@
1
- import { Nullable } from "@wikicasa-dev/types";
2
- type EventPayload = {
3
- id: string | number;
4
- label: string | number;
5
- checked: boolean;
6
- };
7
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
8
- id: string | number;
9
- inputClass?: string | undefined;
10
- inline?: boolean | undefined;
11
- label?: string | number | undefined;
12
- labelClass?: string | undefined;
13
- isValid?: Nullable<boolean> | undefined;
14
- modelValue?: boolean | undefined;
15
- containerId?: string | undefined;
16
- containerClass?: string | undefined;
17
- handleLabelClick?: boolean | undefined;
18
- }>, {
19
- inputClass: string;
20
- inline: boolean;
21
- label: string;
22
- labelClass: string;
23
- isValid: null;
24
- modelValue: boolean;
25
- containerId: string;
26
- containerClass: string;
27
- handleLabelClick: boolean;
28
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
29
- change: (args_0: EventPayload) => void;
30
- click: () => void;
31
- "update:modelValue": (args_0: boolean) => void;
32
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
33
- id: string | number;
34
- inputClass?: string | undefined;
35
- inline?: boolean | undefined;
36
- label?: string | number | undefined;
37
- labelClass?: string | undefined;
38
- isValid?: Nullable<boolean> | undefined;
39
- modelValue?: boolean | undefined;
40
- containerId?: string | undefined;
41
- containerClass?: string | undefined;
42
- handleLabelClick?: boolean | undefined;
43
- }>, {
44
- inputClass: string;
45
- inline: boolean;
46
- label: string;
47
- labelClass: string;
48
- isValid: null;
49
- modelValue: boolean;
50
- containerId: string;
51
- containerClass: string;
52
- handleLabelClick: boolean;
53
- }>>> & {
54
- onChange?: ((args_0: EventPayload) => any) | undefined;
55
- onClick?: (() => any) | undefined;
56
- "onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
57
- }, {
58
- label: string | number;
59
- modelValue: boolean;
60
- isValid: Nullable<boolean>;
61
- inputClass: string;
62
- inline: boolean;
63
- labelClass: string;
64
- containerId: string;
65
- containerClass: string;
66
- handleLabelClick: boolean;
67
- }, {}>, {
68
- label?(_: {}): any;
69
- }>;
70
- export default _default;
71
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
72
- type __VLS_TypePropsToRuntimeProps<T> = {
73
- [K in keyof T]-?: {} extends Pick<T, K> ? {
74
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
75
- } : {
76
- type: import('vue').PropType<T[K]>;
77
- required: true;
78
- };
79
- };
80
- type __VLS_WithDefaults<P, D> = {
81
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
82
- default: D[K];
83
- }> : P[K];
84
- };
85
- type __VLS_Prettify<T> = {
86
- [K in keyof T]: T[K];
87
- } & {};
88
- type __VLS_WithTemplateSlots<T, S> = T & {
89
- new (): {
90
- $slots: S;
91
- };
92
- };
@@ -1,78 +0,0 @@
1
- import { CheckboxButtonType, GetterIdType } from "@wikicasa-dev/types";
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
- valuesObj?: Record<string, CheckboxButtonType> | undefined;
4
- formCheckInline?: boolean | undefined;
5
- customClass?: string | undefined;
6
- reset?: boolean | undefined;
7
- autoCheckResetAll?: boolean | undefined;
8
- autoCheckResetEmpty?: boolean | undefined;
9
- getKey?: GetterIdType | undefined;
10
- }>, {
11
- valuesObj(): {};
12
- formCheckInline: boolean;
13
- customClass: string;
14
- reset: boolean;
15
- autoCheckResetAll: boolean;
16
- autoCheckResetEmpty: boolean;
17
- getKey(): (checkBtn: CheckboxButtonType) => string | number;
18
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
- "update:modelValue": (args_0: CheckboxButtonType[]) => void;
20
- resetted: () => void;
21
- checkedGroup: (args_0: string) => void;
22
- }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
23
- valuesObj?: Record<string, CheckboxButtonType> | undefined;
24
- formCheckInline?: boolean | undefined;
25
- customClass?: string | undefined;
26
- reset?: boolean | undefined;
27
- autoCheckResetAll?: boolean | undefined;
28
- autoCheckResetEmpty?: boolean | undefined;
29
- getKey?: GetterIdType | undefined;
30
- }>, {
31
- valuesObj(): {};
32
- formCheckInline: boolean;
33
- customClass: string;
34
- reset: boolean;
35
- autoCheckResetAll: boolean;
36
- autoCheckResetEmpty: boolean;
37
- getKey(): (checkBtn: CheckboxButtonType) => string | number;
38
- }>>> & {
39
- "onUpdate:modelValue"?: ((args_0: CheckboxButtonType[]) => any) | undefined;
40
- onResetted?: (() => any) | undefined;
41
- onCheckedGroup?: ((args_0: string) => any) | undefined;
42
- }, {
43
- reset: boolean;
44
- valuesObj: Record<string, CheckboxButtonType>;
45
- formCheckInline: boolean;
46
- customClass: string;
47
- autoCheckResetAll: boolean;
48
- autoCheckResetEmpty: boolean;
49
- getKey: GetterIdType;
50
- }, {}>, {
51
- checkboxElement?(_: {
52
- isActive: (elem: CheckboxButtonType) => boolean;
53
- handleChange: (checkboxValue: CheckboxButtonType) => void;
54
- }): any;
55
- }>;
56
- export default _default;
57
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
58
- type __VLS_TypePropsToRuntimeProps<T> = {
59
- [K in keyof T]-?: {} extends Pick<T, K> ? {
60
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
61
- } : {
62
- type: import('vue').PropType<T[K]>;
63
- required: true;
64
- };
65
- };
66
- type __VLS_WithDefaults<P, D> = {
67
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
68
- default: D[K];
69
- }> : P[K];
70
- };
71
- type __VLS_Prettify<T> = {
72
- [K in keyof T]: T[K];
73
- } & {};
74
- type __VLS_WithTemplateSlots<T, S> = T & {
75
- new (): {
76
- $slots: S;
77
- };
78
- };
@@ -1,26 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- label: {
3
- type: (BooleanConstructor | StringConstructor)[];
4
- required: true;
5
- };
6
- isChecked: {
7
- type: BooleanConstructor;
8
- };
9
- }, unknown, unknown, {}, {
10
- emitChange(): void;
11
- handleClick(): void;
12
- handleOnInput(): void;
13
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
14
- label: {
15
- type: (BooleanConstructor | StringConstructor)[];
16
- required: true;
17
- };
18
- isChecked: {
19
- type: BooleanConstructor;
20
- };
21
- }>> & {
22
- onChange?: ((...args: any[]) => any) | undefined;
23
- }, {
24
- isChecked: boolean;
25
- }, {}>;
26
- export default _default;
@@ -1,37 +0,0 @@
1
- import { RadioButtonType } from "@wikicasa-dev/types";
2
- import { Nullable } from "@wikicasa-dev/types";
3
- declare const _default: import("vue").DefineComponent<{
4
- initialValue: {
5
- type: () => RadioButtonType;
6
- };
7
- radioValues: {
8
- type: () => RadioButtonType[];
9
- };
10
- resetRadio: {
11
- type: BooleanConstructor;
12
- default: boolean;
13
- };
14
- }, unknown, {
15
- selectedValue: Nullable<RadioButtonType>;
16
- }, {}, {
17
- handleChange(elem: RadioButtonType): void;
18
- reset(): void;
19
- isActive(elem: RadioButtonType): boolean;
20
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "resetted")[], "update:modelValue" | "resetted", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
21
- initialValue: {
22
- type: () => RadioButtonType;
23
- };
24
- radioValues: {
25
- type: () => RadioButtonType[];
26
- };
27
- resetRadio: {
28
- type: BooleanConstructor;
29
- default: boolean;
30
- };
31
- }>> & {
32
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
33
- onResetted?: ((...args: any[]) => any) | undefined;
34
- }, {
35
- resetRadio: boolean;
36
- }, {}>;
37
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,6 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {
2
- firstCheckboxValue: never[];
3
- singleCheckbox: boolean;
4
- singleCheckbox2: boolean;
5
- }, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
6
- export default _default;
@@ -1,35 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {
2
- firstSelectValue: {
3
- id: number;
4
- label: string;
5
- };
6
- secondSelectValue: {
7
- id: number;
8
- label: string;
9
- };
10
- thirdSelectValue: {
11
- id: number;
12
- label: string;
13
- };
14
- fourthSelectValue: {
15
- id: number;
16
- label: string;
17
- };
18
- fifthSelectValue: {
19
- id: number;
20
- label: string;
21
- };
22
- accessibleSelectValue: {
23
- id: number;
24
- label: string;
25
- };
26
- accessibleSelectValue2: {
27
- id: number;
28
- label: string;
29
- };
30
- accessibleSelectValue3: {
31
- id: number;
32
- label: string;
33
- };
34
- }, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
35
- export default _default;
@@ -1,4 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {
2
- show: boolean;
3
- }, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
4
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,9 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {
2
- radioGroupValue: string;
3
- radioSlotValue: {};
4
- elems: {
5
- id: string;
6
- label: string;
7
- }[];
8
- }, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
- export default _default;
@@ -1,9 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {
2
- sliderMinValue: number;
3
- sliderMaxValue: number;
4
- sliderMinValue1: number;
5
- sliderMaxValue1: number;
6
- sliderMinValue2: number;
7
- sliderMaxValue2: number;
8
- }, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
9
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,6 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {
2
- firstBtInput: string;
3
- secondBtInput: string;
4
- thirdBtInput: string;
5
- }, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
6
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
- export default _default;
@@ -1,18 +0,0 @@
1
- interface SidebarItem {
2
- id: string;
3
- label: string;
4
- }
5
- interface SidebarItems {
6
- items: SidebarItem[];
7
- }
8
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<SidebarItems>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SidebarItems>>>, {}, {}>;
9
- export default _default;
10
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11
- type __VLS_TypePropsToRuntimeProps<T> = {
12
- [K in keyof T]-?: {} extends Pick<T, K> ? {
13
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14
- } : {
15
- type: import('vue').PropType<T[K]>;
16
- required: true;
17
- };
18
- };