@rocketui/vue 0.2.71-beta → 0.2.72

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 (57) hide show
  1. package/dist/rocket-ui-vue.d.ts +3337 -0
  2. package/dist/rocket-ui-vue.js +1388 -1681
  3. package/dist/rocket-ui-vue.umd.cjs +1 -1
  4. package/dist/style.css +1 -1
  5. package/package.json +2 -3
  6. package/dist/types/components/Accordion/RAccordion.vue.d.ts +0 -70
  7. package/dist/types/components/Accordion/RAccordion.vue.d.ts.map +0 -1
  8. package/dist/types/components/Alert/RAlert.vue.d.ts +0 -109
  9. package/dist/types/components/Alert/RAlert.vue.d.ts.map +0 -1
  10. package/dist/types/components/Avatar/RAvatar.vue.d.ts +0 -92
  11. package/dist/types/components/Avatar/RAvatar.vue.d.ts.map +0 -1
  12. package/dist/types/components/Badge/RBadge.vue.d.ts +0 -143
  13. package/dist/types/components/Badge/RBadge.vue.d.ts.map +0 -1
  14. package/dist/types/components/Breadcrumb/RBreadcrumb.vue.d.ts +0 -50
  15. package/dist/types/components/Breadcrumb/RBreadcrumb.vue.d.ts.map +0 -1
  16. package/dist/types/components/Button/RButton.vue.d.ts +0 -193
  17. package/dist/types/components/Button/RButton.vue.d.ts.map +0 -1
  18. package/dist/types/components/Checkbox/RCheckbox.vue.d.ts +0 -164
  19. package/dist/types/components/Checkbox/RCheckbox.vue.d.ts.map +0 -1
  20. package/dist/types/components/Chips/RChip.vue.d.ts +0 -132
  21. package/dist/types/components/Chips/RChip.vue.d.ts.map +0 -1
  22. package/dist/types/components/Dropdown/RDropdown.vue.d.ts +0 -442
  23. package/dist/types/components/Dropdown/RDropdown.vue.d.ts.map +0 -1
  24. package/dist/types/components/Icon/RIcon.vue.d.ts +0 -59
  25. package/dist/types/components/Icon/RIcon.vue.d.ts.map +0 -1
  26. package/dist/types/components/ItemGroup/RItem.vue.d.ts +0 -65
  27. package/dist/types/components/ItemGroup/RItem.vue.d.ts.map +0 -1
  28. package/dist/types/components/ItemGroup/RItemGroup.vue.d.ts +0 -123
  29. package/dist/types/components/ItemGroup/RItemGroup.vue.d.ts.map +0 -1
  30. package/dist/types/components/Label/RLabel.vue.d.ts +0 -68
  31. package/dist/types/components/Label/RLabel.vue.d.ts.map +0 -1
  32. package/dist/types/components/Modal/RModal.vue.d.ts +0 -208
  33. package/dist/types/components/Modal/RModal.vue.d.ts.map +0 -1
  34. package/dist/types/components/Pagination/RPagination.vue.d.ts +0 -110
  35. package/dist/types/components/Pagination/RPagination.vue.d.ts.map +0 -1
  36. package/dist/types/components/ProgressBar/RProgressbar.vue.d.ts +0 -34
  37. package/dist/types/components/ProgressBar/RProgressbar.vue.d.ts.map +0 -1
  38. package/dist/types/components/Radio/RRadio.vue.d.ts +0 -125
  39. package/dist/types/components/Radio/RRadio.vue.d.ts.map +0 -1
  40. package/dist/types/components/Sidebar/RSidebar.vue.d.ts +0 -53
  41. package/dist/types/components/Sidebar/RSidebar.vue.d.ts.map +0 -1
  42. package/dist/types/components/Snackbar/RSnackbar.vue.d.ts +0 -113
  43. package/dist/types/components/Snackbar/RSnackbar.vue.d.ts.map +0 -1
  44. package/dist/types/components/Switch/RSwitch.vue.d.ts +0 -214
  45. package/dist/types/components/Switch/RSwitch.vue.d.ts.map +0 -1
  46. package/dist/types/components/TabItem/RTabItem.vue.d.ts +0 -155
  47. package/dist/types/components/TabItem/RTabItem.vue.d.ts.map +0 -1
  48. package/dist/types/components/Tabs/RTabs.vue.d.ts +0 -95
  49. package/dist/types/components/Tabs/RTabs.vue.d.ts.map +0 -1
  50. package/dist/types/components/TextArea/RTextArea.vue.d.ts +0 -171
  51. package/dist/types/components/TextArea/RTextArea.vue.d.ts.map +0 -1
  52. package/dist/types/components/Textfield/RTextfield.vue.d.ts +0 -293
  53. package/dist/types/components/Textfield/RTextfield.vue.d.ts.map +0 -1
  54. package/dist/types/components/Tooltip/RTooltip.vue.d.ts +0 -253
  55. package/dist/types/components/Tooltip/RTooltip.vue.d.ts.map +0 -1
  56. package/dist/types/lib/main.d.ts +0 -26
  57. package/dist/types/lib/main.d.ts.map +0 -1
@@ -1,125 +0,0 @@
1
- import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
2
- export interface Props {
3
- /**
4
- * ID of the radio button
5
- * @type string
6
- * @default ''
7
- */
8
- id?: string;
9
- /**
10
- * Value of the radio button
11
- * @type any
12
- * @required
13
- */
14
- value: any;
15
- /**
16
- * Model value for v-model binding
17
- * @type any
18
- */
19
- modelValue?: any;
20
- /**
21
- * Label for the radio button
22
- * @type string
23
- * @default ''
24
- */
25
- label?: string;
26
- /**
27
- * Whether the radio button is disabled
28
- * @type boolean
29
- * @default false
30
- */
31
- disabled?: boolean;
32
- /**
33
- * Whether the radio button is required
34
- * @type boolean
35
- * @default false
36
- */
37
- required?: boolean;
38
- /**
39
- * Name attribute for the radio button
40
- * @type string
41
- * @default ''
42
- */
43
- name?: string;
44
- /**
45
- * Error message
46
- * @type string
47
- * @default ''
48
- */
49
- errorMsg?: string;
50
- /**
51
- * Hint text
52
- * @type string
53
- * @default ''
54
- */
55
- hint?: string;
56
- /**
57
- * Hide details (error and hint messages)
58
- * @type boolean
59
- * @default false
60
- */
61
- hideDetails?: boolean;
62
- /**
63
- * Aria label for the radio button
64
- * @type string
65
- * @default ''
66
- */
67
- ariaLabel?: string;
68
- }
69
- declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
70
- id: string;
71
- modelValue: undefined;
72
- label: string;
73
- disabled: boolean;
74
- required: boolean;
75
- name: string;
76
- errorMsg: string;
77
- hint: string;
78
- hideDetails: boolean;
79
- ariaLabel: string;
80
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
81
- "update:modelValue": (...args: any[]) => void;
82
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
83
- id: string;
84
- modelValue: undefined;
85
- label: string;
86
- disabled: boolean;
87
- required: boolean;
88
- name: string;
89
- errorMsg: string;
90
- hint: string;
91
- hideDetails: boolean;
92
- ariaLabel: string;
93
- }>>> & {
94
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
95
- }, {
96
- name: string;
97
- required: boolean;
98
- label: string;
99
- disabled: boolean;
100
- ariaLabel: string;
101
- id: string;
102
- modelValue: any;
103
- hint: string;
104
- errorMsg: string;
105
- hideDetails: boolean;
106
- }, {}>;
107
- export default _default;
108
- declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
109
- declare type __VLS_TypePropsToRuntimeProps<T> = {
110
- [K in keyof T]-?: {} extends Pick<T, K> ? {
111
- type: PropType<__VLS_NonUndefinedable<T[K]>>;
112
- } : {
113
- type: PropType<T[K]>;
114
- required: true;
115
- };
116
- };
117
- declare type __VLS_WithDefaults<P, D> = {
118
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
119
- default: D[K];
120
- }> : P[K];
121
- };
122
- declare type __VLS_Prettify<T> = {
123
- [K in keyof T]: T[K];
124
- } & {};
125
- //# sourceMappingURL=RRadio.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RRadio.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Radio/RRadio.vue"],"names":[],"mappings":"AAGA,OAAO,aAAa,CAAA;AAEpB,MAAM,WAAW,KAAK;IACpB;;;;OAIG;IACH,EAAE,CAAC,EAAE,MAAM,CAAA;IAEX;;;;OAIG;IACH,KAAK,EAAE,GAAG,CAAA;IAEV;;;OAGG;IACH,UAAU,CAAC,EAAE,GAAG,CAAA;IAEhB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEjB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IAErB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6MD,wBAOG;AACH,aAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,aAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,aAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,aAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -1,53 +0,0 @@
1
- import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
2
- export interface RSidebarProps {
3
- modelValue: boolean;
4
- showTrigger?: boolean;
5
- class?: string | string[];
6
- triggerClass?: string | string[];
7
- wrapperClass?: string | string[];
8
- }
9
- declare const _default: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RSidebarProps>, {
10
- modelValue: boolean;
11
- showTrigger: boolean;
12
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
13
- "update:modelValue": (...args: any[]) => void;
14
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<RSidebarProps>, {
15
- modelValue: boolean;
16
- showTrigger: boolean;
17
- }>>> & {
18
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
19
- }, {
20
- modelValue: boolean;
21
- showTrigger: boolean;
22
- }, {}>, {
23
- default?(_: {
24
- open: boolean;
25
- }): any;
26
- trigger?(_: {
27
- open: boolean;
28
- }): any;
29
- }>;
30
- export default _default;
31
- declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
32
- declare type __VLS_TypePropsToRuntimeProps<T> = {
33
- [K in keyof T]-?: {} extends Pick<T, K> ? {
34
- type: PropType<__VLS_NonUndefinedable<T[K]>>;
35
- } : {
36
- type: PropType<T[K]>;
37
- required: true;
38
- };
39
- };
40
- declare type __VLS_WithDefaults<P, D> = {
41
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
42
- default: D[K];
43
- }> : P[K];
44
- };
45
- declare type __VLS_Prettify<T> = {
46
- [K in keyof T]: T[K];
47
- } & {};
48
- declare type __VLS_WithTemplateSlots<T, S> = T & {
49
- new (): {
50
- $slots: S;
51
- };
52
- };
53
- //# sourceMappingURL=RSidebar.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Sidebar/RSidebar.vue"],"names":[],"mappings":"AAEA,OAAO,eAAe,CAAA;AAEtB,MAAM,WAAW,aAAa;IAC5B,UAAU,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IACzB,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAChC,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;CACjC;;;;;;;;;;;;;;;;;;;;;;AAuHD,wBAAwG;AACxG,aAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,aAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,aAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,aAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
@@ -1,113 +0,0 @@
1
- import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
2
- export interface IProps {
3
- /**
4
- * Show of the snackbar
5
- * @type boolean
6
- * @default false
7
- * @example
8
- * <Snackbar show />
9
- */
10
- modelValue: boolean;
11
- /**
12
- * Text of the snackbar
13
- * @type string
14
- * @default ''
15
- * @example
16
- * <Snackbar text="Snackbar" />
17
- */
18
- text: string;
19
- /**
20
- * Show close of the snackbar
21
- * @type boolean
22
- * @default false
23
- * @example
24
- * <Snackbar closable />
25
- */
26
- closable?: boolean;
27
- /**
28
- * Set the snackbar slide from left otherwise slide from right
29
- * @type boolean
30
- * @default false
31
- * @example
32
- * <Snackbar left />
33
- */
34
- left?: boolean;
35
- /**
36
- * Timeout of the snackbar. <br />
37
- * If timeout is 0, the snackbar will not close automatically
38
- * @type number
39
- * @default 0
40
- * @example
41
- * <Snackbar timeout="1000" />
42
- */
43
- timeout?: number;
44
- /**
45
- * Variant of the snackbar
46
- * @type 'success' | 'error' | 'warning' | 'info'
47
- * @default 'info'
48
- * @example
49
- * <Snackbar variant="success" />
50
- */
51
- variant?: 'success' | 'error' | 'warning' | 'info';
52
- /**
53
- * Set the snackbar slide on top otherwise slide on bottom
54
- * @type boolean
55
- * @default false
56
- * @example
57
- * <Snackbar top />
58
- */
59
- top?: boolean;
60
- }
61
- declare const _default: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
62
- text: string;
63
- closable: boolean;
64
- left: boolean;
65
- modelValue: boolean;
66
- timeout: number;
67
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
68
- "update:modelValue": (...args: any[]) => void;
69
- action: (...args: any[]) => void;
70
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
71
- text: string;
72
- closable: boolean;
73
- left: boolean;
74
- modelValue: boolean;
75
- timeout: number;
76
- }>>> & {
77
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
78
- onAction?: ((...args: any[]) => any) | undefined;
79
- }, {
80
- text: string;
81
- closable: boolean;
82
- left: boolean;
83
- modelValue: boolean;
84
- timeout: number;
85
- }, {}>, {
86
- icon?(_: {}): any;
87
- default?(_: {}): any;
88
- close?(_: {}): any;
89
- }>;
90
- export default _default;
91
- declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
92
- declare type __VLS_TypePropsToRuntimeProps<T> = {
93
- [K in keyof T]-?: {} extends Pick<T, K> ? {
94
- type: PropType<__VLS_NonUndefinedable<T[K]>>;
95
- } : {
96
- type: PropType<T[K]>;
97
- required: true;
98
- };
99
- };
100
- declare type __VLS_WithDefaults<P, D> = {
101
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
102
- default: D[K];
103
- }> : P[K];
104
- };
105
- declare type __VLS_Prettify<T> = {
106
- [K in keyof T]: T[K];
107
- } & {};
108
- declare type __VLS_WithTemplateSlots<T, S> = T & {
109
- new (): {
110
- $slots: S;
111
- };
112
- };
113
- //# sourceMappingURL=RSnackbar.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RSnackbar.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Snackbar/RSnackbar.vue"],"names":[],"mappings":"AAIA,OAAO,gBAAgB,CAAA;AAEvB,MAAM,WAAW,MAAM;IACrB;;;;;;OAMG;IACH,UAAU,EAAE,OAAO,CAAA;IACnB;;;;;;OAMG;IACH,IAAI,EAAE,MAAM,CAAA;IAEZ;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;;;;OAOG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAEhB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,CAAA;IAElD;;;;;;OAMG;IACH,GAAG,CAAC,EAAE,OAAO,CAAA;CACd;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgMD,wBAAwG;AACxG,aAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,aAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,aAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,aAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
@@ -1,214 +0,0 @@
1
- import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, type HTMLAttributes, type InputHTMLAttributes, type LabelHTMLAttributes } from 'vue';
2
- export interface Props {
3
- /**
4
- * id of the checkbox
5
- * @type {HTMLAttributes['id']}
6
- * @default ''
7
- * @example
8
- * <Checkbox id="checkbox" />
9
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id
10
- */
11
- id: HTMLAttributes['id'];
12
- /**
13
- * Input checked state
14
- * @type boolean
15
- * @default false
16
- * @example
17
- * <Checkbox modelValue="true" />
18
- */
19
- modelValue?: boolean;
20
- /**
21
- * Input disabled state
22
- * @type InputHTMLAttributes['disabled']
23
- * @default false
24
- * @example
25
- * <Checkbox disabled="true" />
26
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox#disabled
27
- */
28
- disabled?: InputHTMLAttributes['disabled'];
29
- /**
30
- * label of the checkbox
31
- * @type LabelHTMLAttributes['label']
32
- * @default ''
33
- * @example
34
- * <Checkbox label="Checkbox" />
35
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
36
- */
37
- label?: LabelHTMLAttributes['for'];
38
- /**
39
- * Hint text
40
- * @type string
41
- * @default ''
42
- * @example
43
- * <Checkbox hint="This is a hint" />
44
- */
45
- hint?: string;
46
- /**
47
- * Error message
48
- * @type string
49
- * @default ''
50
- * @example
51
- * <Checkbox errorMsg="This is an error" />
52
- */
53
- errorMsg?: string;
54
- /**
55
- * Size of the checkbox
56
- * @type 'small' | 'medium' | 'large'
57
- * @default 'medium'
58
- * @example
59
- * <Checkbox size="small" />
60
- */
61
- size?: 'small' | 'medium' | 'large';
62
- /**
63
- * Hide the hint and error message
64
- * @type {boolean}
65
- * @default false
66
- * @example
67
- * <Checkbox hideDetails />
68
- */
69
- hideDetails?: boolean;
70
- /**
71
- * Reverse the order of the checkbox and the label
72
- * @type {boolean}
73
- * @default false
74
- * @example
75
- * <Checkbox reverse />
76
- */
77
- reverse?: boolean;
78
- /**
79
- * Name of the checkbox
80
- * @type {string}
81
- * @default ''
82
- * @example
83
- * <Checkbox name="checkbox" />
84
- */
85
- name?: string;
86
- /**
87
- * Whether the switch is required
88
- * @type boolean
89
- * @default false
90
- * @example
91
- * <Switch required />
92
- */
93
- required?: boolean;
94
- /**
95
- * Aria label for the switch
96
- * @type string
97
- * @default ''
98
- * @example
99
- * <Switch aria-label="Enable notifications" />
100
- */
101
- ariaLabel?: string;
102
- /**
103
- * Text to display when switch is on
104
- * @type string
105
- * @default ''
106
- * @example
107
- * <Switch onText="Enabled" />
108
- */
109
- onText?: string;
110
- /**
111
- * Text to display when switch is off
112
- * @type string
113
- * @default ''
114
- * @example
115
- * <Switch offText="Disabled" />
116
- */
117
- offText?: string;
118
- /**
119
- * ID of the element this switch controls
120
- * @type string
121
- * @default ''
122
- * @example
123
- * <Switch aria-controls="content-1" />
124
- */
125
- ariaControls?: string;
126
- /**
127
- * Whether the controlled element is expanded
128
- * @type boolean
129
- * @default undefined
130
- * @example
131
- * <Switch :aria-expanded="isExpanded" />
132
- */
133
- ariaExpanded?: boolean;
134
- /**
135
- * Whether to use aria-pressed instead of aria-checked
136
- * @type boolean
137
- * @default false
138
- * @example
139
- * <Switch use-pressed-state />
140
- */
141
- usePressedState?: boolean;
142
- }
143
- declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
144
- id: string;
145
- modelValue: boolean;
146
- size: string;
147
- disabled: boolean;
148
- label: string;
149
- hint: string;
150
- errorMsg: string;
151
- required: boolean;
152
- ariaLabel: string;
153
- onText: string;
154
- offText: string;
155
- ariaControls: string;
156
- ariaExpanded: undefined;
157
- usePressedState: boolean;
158
- hideDetails: boolean;
159
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
160
- "update:modelValue": (...args: any[]) => void;
161
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
162
- id: string;
163
- modelValue: boolean;
164
- size: string;
165
- disabled: boolean;
166
- label: string;
167
- hint: string;
168
- errorMsg: string;
169
- required: boolean;
170
- ariaLabel: string;
171
- onText: string;
172
- offText: string;
173
- ariaControls: string;
174
- ariaExpanded: undefined;
175
- usePressedState: boolean;
176
- hideDetails: boolean;
177
- }>>> & {
178
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
179
- }, {
180
- size: "small" | "medium" | "large";
181
- required: boolean;
182
- label: string;
183
- disabled: boolean | "true" | "false";
184
- ariaLabel: string;
185
- ariaExpanded: boolean;
186
- ariaControls: string;
187
- id: string | undefined;
188
- modelValue: boolean;
189
- hint: string;
190
- errorMsg: string;
191
- hideDetails: boolean;
192
- onText: string;
193
- offText: string;
194
- usePressedState: boolean;
195
- }, {}>;
196
- export default _default;
197
- declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
198
- declare type __VLS_TypePropsToRuntimeProps<T> = {
199
- [K in keyof T]-?: {} extends Pick<T, K> ? {
200
- type: PropType<__VLS_NonUndefinedable<T[K]>>;
201
- } : {
202
- type: PropType<T[K]>;
203
- required: true;
204
- };
205
- };
206
- declare type __VLS_WithDefaults<P, D> = {
207
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
208
- default: D[K];
209
- }> : P[K];
210
- };
211
- declare type __VLS_Prettify<T> = {
212
- [K in keyof T]: T[K];
213
- } & {};
214
- //# sourceMappingURL=RSwitch.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RSwitch.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Switch/RSwitch.vue"],"names":[],"mappings":"AAEA,OAAO,EACL,KAAK,cAAc,EACnB,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,EAKzB,MAAM,KAAK,CAAA;AACZ,OAAO,cAAc,CAAA;AAErB,MAAM,WAAW,KAAK;IACpB;;;;;;;OAOG;IACH,EAAE,EAAE,cAAc,CAAC,IAAI,CAAC,CAAA;IAExB;;;;;;OAMG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;;;;;;OAOG;IACH,QAAQ,CAAC,EAAE,mBAAmB,CAAC,UAAU,CAAC,CAAA;IAE1C;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,mBAAmB,CAAC,KAAK,CAAC,CAAA;IAElC;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IAEjB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IAEnC;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IAErB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;;;;;OAMG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAEhB;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,MAAM,CAAA;IAErB;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,OAAO,CAAA;IAEtB;;;;;;OAMG;IACH,eAAe,CAAC,EAAE,OAAO,CAAA;CAC1B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+PD,wBAOG;AACH,aAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,aAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,aAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,aAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -1,155 +0,0 @@
1
- import { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType } from 'vue';
2
- import { type TabItemVariant, TabItemVariants } from './common';
3
- export interface IProps {
4
- /**
5
- * Id of the tab item
6
- * @type string | number
7
- * @default ''
8
- * @example
9
- * <TabItem id="1" />
10
- */
11
- id: string | number;
12
- /**
13
- * Variant of the tab item
14
- * @type TabItemVariant
15
- * @default TabItemVariants.DEFAULT
16
- * @example
17
- * <TabItem variant="default" />
18
- */
19
- variant?: TabItemVariant;
20
- /**
21
- * Label of the tab item
22
- * @type string
23
- * @default ''
24
- * @example
25
- * <TabItem label="Label" />
26
- */
27
- label?: string;
28
- /**
29
- * prependIcon of the tab item
30
- * @type string
31
- * @default ''
32
- * @example
33
- * <TabItem prependIcon="prependIcon" />
34
- */
35
- prependIcon?: string;
36
- /**
37
- * appendIcon of the tab item
38
- * @type string
39
- * @default ''
40
- * @example
41
- * <TabItem appendIcon="appendIcon" />
42
- */
43
- appendIcon?: string;
44
- /**
45
- * Disabled state of the tab item
46
- * @type ButtonHTMLAttributes['disabled']
47
- * @default false
48
- * @example
49
- * <TabItem disabled />
50
- */
51
- disabled?: boolean;
52
- /**
53
- * Model value of the tab item
54
- * @type string | number
55
- * @default ''
56
- * @example
57
- * <TabItem v-model="model" />
58
- */
59
- modelValue?: string | number;
60
- /**
61
- * Tile state of the tab item
62
- * @type boolean
63
- * @default false
64
- * @example
65
- * <TabItem tile />
66
- */
67
- tile?: boolean;
68
- /**
69
- * Block state of the tab item
70
- * @type boolean
71
- * @default false
72
- * @example
73
- * <TabItem block />
74
- */
75
- block?: boolean;
76
- /**
77
- * Color of the tab item
78
- * @type string
79
- * @default ''
80
- * @example
81
- * <TabItem color="" />
82
- */
83
- color?: string;
84
- }
85
- declare const _default: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
86
- label: string;
87
- variant: TabItemVariants;
88
- prependIcon: string;
89
- appendIcon: string;
90
- disabled: boolean;
91
- modelValue: string;
92
- tile: boolean;
93
- block: boolean;
94
- color: string;
95
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
96
- "update:modelValue": (...args: any[]) => void;
97
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
98
- label: string;
99
- variant: TabItemVariants;
100
- prependIcon: string;
101
- appendIcon: string;
102
- disabled: boolean;
103
- modelValue: string;
104
- tile: boolean;
105
- block: boolean;
106
- color: string;
107
- }>>> & {
108
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
109
- }, {
110
- label: string;
111
- disabled: boolean;
112
- variant: TabItemVariant;
113
- block: boolean;
114
- color: string;
115
- prependIcon: string;
116
- appendIcon: string;
117
- modelValue: string | number;
118
- tile: boolean;
119
- }, {}>, {
120
- prepend?(_: {
121
- active: boolean;
122
- disabled: boolean;
123
- }): any;
124
- default?(_: {
125
- label: string;
126
- }): any;
127
- append?(_: {
128
- active: boolean;
129
- disabled: boolean;
130
- }): any;
131
- }>;
132
- export default _default;
133
- declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
134
- declare type __VLS_TypePropsToRuntimeProps<T> = {
135
- [K in keyof T]-?: {} extends Pick<T, K> ? {
136
- type: PropType<__VLS_NonUndefinedable<T[K]>>;
137
- } : {
138
- type: PropType<T[K]>;
139
- required: true;
140
- };
141
- };
142
- declare type __VLS_WithDefaults<P, D> = {
143
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
144
- default: D[K];
145
- }> : P[K];
146
- };
147
- declare type __VLS_Prettify<T> = {
148
- [K in keyof T]: T[K];
149
- } & {};
150
- declare type __VLS_WithTemplateSlots<T, S> = T & {
151
- new (): {
152
- $slots: S;
153
- };
154
- };
155
- //# sourceMappingURL=RTabItem.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RTabItem.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/TabItem/RTabItem.vue"],"names":[],"mappings":"AAIA,OAAO,gBAAgB,CAAA;AACvB,OAAO,EAAE,KAAK,cAAc,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAE/D,MAAM,WAAW,MAAM;IACrB;;;;;;OAMG;IACH,EAAE,EAAE,MAAM,GAAG,MAAM,CAAA;IAEnB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,cAAc,CAAA;IAExB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;;;OAMG;IACH,UAAU,CAAC,EAAE,MAAM,CAAA;IAEnB;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;;;OAMG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAE5B;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuMD,wBAAwG;AACxG,aAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,aAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,aAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,aAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}