@rocketui/vue 0.0.63 → 0.0.65

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 (66) hide show
  1. package/dist/rocket-ui-vue.d.ts +1866 -0
  2. package/dist/rocket-ui-vue.js +9 -6
  3. package/dist/rocket-ui-vue.umd.cjs +1 -1
  4. package/dist/style.css +2 -2
  5. package/package.json +7 -7
  6. package/dist/src/components/Accordion/RAccordion.d.ts +0 -41
  7. package/dist/src/components/Accordion/RAccordion.d.ts.map +0 -1
  8. package/dist/src/components/Alert/RAlert.d.ts +0 -125
  9. package/dist/src/components/Alert/RAlert.d.ts.map +0 -1
  10. package/dist/src/components/Avatar/RAvatar.d.ts +0 -110
  11. package/dist/src/components/Avatar/RAvatar.d.ts.map +0 -1
  12. package/dist/src/components/Badge/RBadge.d.ts +0 -119
  13. package/dist/src/components/Badge/RBadge.d.ts.map +0 -1
  14. package/dist/src/components/Breadcrumb/RBreadcrumb.d.ts +0 -40
  15. package/dist/src/components/Breadcrumb/RBreadcrumb.d.ts.map +0 -1
  16. package/dist/src/components/Button/RButton.d.ts +0 -206
  17. package/dist/src/components/Button/RButton.d.ts.map +0 -1
  18. package/dist/src/components/Checkbox/RCheckbox.d.ts +0 -137
  19. package/dist/src/components/Checkbox/RCheckbox.d.ts.map +0 -1
  20. package/dist/src/components/Chips/RChip.d.ts +0 -140
  21. package/dist/src/components/Chips/RChip.d.ts.map +0 -1
  22. package/dist/src/components/Dropdown/RDropdown.d.ts +0 -228
  23. package/dist/src/components/Dropdown/RDropdown.d.ts.map +0 -1
  24. package/dist/src/components/Icon/RIcon.d.ts +0 -62
  25. package/dist/src/components/Icon/RIcon.d.ts.map +0 -1
  26. package/dist/src/components/ItemGroup/RItem.d.ts +0 -75
  27. package/dist/src/components/ItemGroup/RItem.d.ts.map +0 -1
  28. package/dist/src/components/ItemGroup/RItemGroup.d.ts +0 -145
  29. package/dist/src/components/ItemGroup/RItemGroup.d.ts.map +0 -1
  30. package/dist/src/components/Label/RLabel.d.ts +0 -75
  31. package/dist/src/components/Label/RLabel.d.ts.map +0 -1
  32. package/dist/src/components/Modal/RModal.d.ts +0 -166
  33. package/dist/src/components/Modal/RModal.d.ts.map +0 -1
  34. package/dist/src/components/Pagination/RPagination.d.ts +0 -84
  35. package/dist/src/components/Pagination/RPagination.d.ts.map +0 -1
  36. package/dist/src/components/ProgressBar/RProgressbar.d.ts +0 -30
  37. package/dist/src/components/ProgressBar/RProgressbar.d.ts.map +0 -1
  38. package/dist/src/components/Shared/Enums.d.ts +0 -2
  39. package/dist/src/components/Shared/Enums.d.ts.map +0 -1
  40. package/dist/src/components/Sidebar/RSidebar.d.ts +0 -53
  41. package/dist/src/components/Sidebar/RSidebar.d.ts.map +0 -1
  42. package/dist/src/components/Snackbar/RSnackbar.d.ts +0 -138
  43. package/dist/src/components/Snackbar/RSnackbar.d.ts.map +0 -1
  44. package/dist/src/components/Switch/RSwitch.d.ts +0 -136
  45. package/dist/src/components/Switch/RSwitch.d.ts.map +0 -1
  46. package/dist/src/components/TabItem/RTabItem.d.ts +0 -189
  47. package/dist/src/components/TabItem/RTabItem.d.ts.map +0 -1
  48. package/dist/src/components/TabItem/common.d.ts +0 -7
  49. package/dist/src/components/TabItem/common.d.ts.map +0 -1
  50. package/dist/src/components/Tabs/RTabs.d.ts +0 -87
  51. package/dist/src/components/Tabs/RTabs.d.ts.map +0 -1
  52. package/dist/src/components/Tabs/types.d.ts +0 -11
  53. package/dist/src/components/Tabs/types.d.ts.map +0 -1
  54. package/dist/src/components/TextArea/RTextArea.d.ts +0 -137
  55. package/dist/src/components/TextArea/RTextArea.d.ts.map +0 -1
  56. package/dist/src/components/Textfield/RTextfield.d.ts +0 -268
  57. package/dist/src/components/Textfield/RTextfield.d.ts.map +0 -1
  58. package/dist/src/components/Tooltip/RTooltip.d.ts +0 -278
  59. package/dist/src/components/Tooltip/RTooltip.d.ts.map +0 -1
  60. package/dist/src/components/Tooltip/common.d.ts +0 -24
  61. package/dist/src/components/Tooltip/common.d.ts.map +0 -1
  62. package/dist/src/directives/index.d.ts +0 -5
  63. package/dist/src/directives/index.d.ts.map +0 -1
  64. package/dist/src/main.d.ts +0 -1
  65. package/dist/src/main.d.ts.map +0 -1
  66. package/dist/src/shims.d.ts +0 -9
@@ -1,268 +0,0 @@
1
- import { type HTMLAttributes, type InputHTMLAttributes, type LabelHTMLAttributes } from 'vue';
2
- export interface Props {
3
- /**
4
- * id of the textfield
5
- * @type HTMLAttributes['id']
6
- * @default ''
7
- * @example
8
- * <Textfield id="textfield" />
9
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id
10
- */
11
- id: HTMLAttributes['id'];
12
- /**
13
- * Input type
14
- * @type 'text' | 'password' | 'email' | 'number' | 'tel' | 'url'
15
- * @default 'text'
16
- * @example
17
- * <Textfield type="password" />
18
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
19
- */
20
- type: 'text' | 'password' | 'email' | 'number' | 'tel' | 'url';
21
- /**
22
- * Input value
23
- * @type InputHTMLAttributes['value'];
24
- * @default ''
25
- * @example
26
- * <Textfield modelValue="Hello" />
27
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#value
28
- */
29
- modelValue?: InputHTMLAttributes['value'];
30
- /**
31
- * label of the textfield
32
- * @type LabelHTMLAttributes['label']
33
- * @default ''
34
- * @example
35
- * <Textfield label="Textfield" />
36
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
37
- */
38
- label?: LabelHTMLAttributes['for'];
39
- /**
40
- * Placeholder text
41
- * @type InputHTMLAttributes['placeholder'];
42
- * @default ''
43
- * @example
44
- * <Textfield placeholder="Placeholder" />
45
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#placeholder
46
- */
47
- placeholder?: InputHTMLAttributes['placeholder'];
48
- /**
49
- * Error message
50
- * @type string
51
- * @default ''
52
- * @example
53
- * <Textfield errorMsg="This is an error" />
54
- */
55
- errorMsg?: string;
56
- /**
57
- * Hint text
58
- * @type string
59
- * @default ''
60
- * @example
61
- * <Textfield hint="This is a hint" />
62
- */
63
- hint?: string;
64
- /**
65
- * Icon to prepend
66
- * @type string
67
- * @default ''
68
- * @example
69
- * <Textfield prependIcon="mdiLock" />
70
- */
71
- prependIcon?: string;
72
- /**
73
- * Icon to append
74
- * @type string
75
- * @default ''
76
- * @example
77
- * <Textfield appendIcon="mdiEyeOffOutline" />
78
- */
79
- appendIcon?: string;
80
- /**
81
- * Input disabled state
82
- * @type InputHTMLAttributes['disabled'] | boolean
83
- * @default false
84
- * @example
85
- * <Textfield disabled="true" />
86
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#disabled
87
- */
88
- disabled?: boolean;
89
- /**
90
- * Input loading state
91
- * @type boolean
92
- * @default false
93
- * @example
94
- * <Textfield loading="true" />
95
- */
96
- loading?: boolean;
97
- /**
98
- * Input clearable state
99
- * @type boolean
100
- * @default false
101
- * @example
102
- * <Textfield clearable="true" />
103
- */
104
- clearable?: boolean;
105
- /**
106
- * Input number min value
107
- * @type InputHTMLAttributes['min']
108
- * @default ''
109
- * @example
110
- * <Textfield min="0" />
111
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#min
112
- */
113
- min?: InputHTMLAttributes['min'];
114
- /**
115
- * Input number max value
116
- * @type InputHTMLAttributes['max']
117
- * @default ''
118
- * @example
119
- * <Textfield max="10" />
120
- * @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#max
121
- */
122
- max?: InputHTMLAttributes['max'];
123
- }
124
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
125
- type: {
126
- type: import("vue").PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
127
- required: true;
128
- default: string;
129
- };
130
- label: {
131
- type: import("vue").PropType<string>;
132
- default: string;
133
- };
134
- id: {
135
- type: import("vue").PropType<string | undefined>;
136
- required: true;
137
- default: string;
138
- };
139
- placeholder: {
140
- type: import("vue").PropType<string>;
141
- default: string;
142
- };
143
- max: {
144
- type: import("vue").PropType<string | number>;
145
- };
146
- min: {
147
- type: import("vue").PropType<string | number>;
148
- };
149
- disabled: {
150
- type: import("vue").PropType<boolean>;
151
- default: boolean;
152
- };
153
- loading: {
154
- type: import("vue").PropType<boolean>;
155
- default: boolean;
156
- };
157
- prependIcon: {
158
- type: import("vue").PropType<string>;
159
- default: string;
160
- };
161
- appendIcon: {
162
- type: import("vue").PropType<string>;
163
- default: string;
164
- };
165
- modelValue: {
166
- type: import("vue").PropType<any>;
167
- default: string;
168
- };
169
- hint: {
170
- type: import("vue").PropType<string>;
171
- default: string;
172
- };
173
- errorMsg: {
174
- type: import("vue").PropType<string>;
175
- default: string;
176
- };
177
- clearable: {
178
- type: import("vue").PropType<boolean>;
179
- default: boolean;
180
- };
181
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "input" | "blur" | "focus" | "click:icon" | "click:clear")[], "input" | "update:modelValue" | "blur" | "focus" | "click:icon" | "click:clear", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
182
- type: {
183
- type: import("vue").PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
184
- required: true;
185
- default: string;
186
- };
187
- label: {
188
- type: import("vue").PropType<string>;
189
- default: string;
190
- };
191
- id: {
192
- type: import("vue").PropType<string | undefined>;
193
- required: true;
194
- default: string;
195
- };
196
- placeholder: {
197
- type: import("vue").PropType<string>;
198
- default: string;
199
- };
200
- max: {
201
- type: import("vue").PropType<string | number>;
202
- };
203
- min: {
204
- type: import("vue").PropType<string | number>;
205
- };
206
- disabled: {
207
- type: import("vue").PropType<boolean>;
208
- default: boolean;
209
- };
210
- loading: {
211
- type: import("vue").PropType<boolean>;
212
- default: boolean;
213
- };
214
- prependIcon: {
215
- type: import("vue").PropType<string>;
216
- default: string;
217
- };
218
- appendIcon: {
219
- type: import("vue").PropType<string>;
220
- default: string;
221
- };
222
- modelValue: {
223
- type: import("vue").PropType<any>;
224
- default: string;
225
- };
226
- hint: {
227
- type: import("vue").PropType<string>;
228
- default: string;
229
- };
230
- errorMsg: {
231
- type: import("vue").PropType<string>;
232
- default: string;
233
- };
234
- clearable: {
235
- type: import("vue").PropType<boolean>;
236
- default: boolean;
237
- };
238
- }>> & {
239
- onFocus?: ((...args: any[]) => any) | undefined;
240
- onBlur?: ((...args: any[]) => any) | undefined;
241
- onInput?: ((...args: any[]) => any) | undefined;
242
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
243
- "onClick:icon"?: ((...args: any[]) => any) | undefined;
244
- "onClick:clear"?: ((...args: any[]) => any) | undefined;
245
- }, {
246
- type: "number" | "text" | "password" | "email" | "tel" | "url";
247
- label: string;
248
- id: string | undefined;
249
- placeholder: string;
250
- disabled: boolean;
251
- loading: boolean;
252
- prependIcon: string;
253
- appendIcon: string;
254
- modelValue: any;
255
- hint: string;
256
- errorMsg: string;
257
- clearable: boolean;
258
- }>, {
259
- prepend?(_: {}): any;
260
- append?(_: {}): any;
261
- }>;
262
- export default _default;
263
- declare type __VLS_WithTemplateSlots<T, S> = T & {
264
- new (): {
265
- $slots: S;
266
- };
267
- };
268
- //# sourceMappingURL=RTextfield.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RTextfield.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Textfield/RTextfield"],"names":[],"mappings":"AAEA,OAAO,EAKL,KAAK,cAAc,EACnB,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,EACzB,MAAM,KAAK,CAAC;AACb,OAAO,iBAAiB,CAAC;AAIzB,MAAM,WAAW,KAAK;IACpB;;;;;;;OAOG;IACH,EAAE,EAAE,cAAc,CAAC,IAAI,CAAC,CAAC;IACzB;;;;;;;OAOG;IACH,IAAI,EAAE,MAAM,GAAG,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,KAAK,CAAC;IAE/D;;;;;;;OAOG;IACH,UAAU,CAAC,EAAE,mBAAmB,CAAC,OAAO,CAAC,CAAC;IAE1C;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,mBAAmB,CAAC,KAAK,CAAC,CAAC;IAEnC;;;;;;;OAOG;IACH,WAAW,CAAC,EAAE,mBAAmB,CAAC,aAAa,CAAC,CAAC;IAEjD;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;;;;OAMG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;;OAOG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;;;;;OAOG;IACH,GAAG,CAAC,EAAE,mBAAmB,CAAC,KAAK,CAAC,CAAC;IAEjC;;;;;;;OAOG;IACH,GAAG,CAAC,EAAE,mBAAmB,CAAC,KAAK,CAAC,CAAC;CAClC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0YD,wBAA8G;AAU9G,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
@@ -1,278 +0,0 @@
1
- import { type Placements, type Triggers, Placement, Trigger } from './common';
2
- export interface IProps {
3
- /**
4
- * Placement of the tooltip
5
- * @type Placements
6
- * @default Placement.Top
7
- * @example
8
- * <Tooltip placement="top" />
9
- */
10
- placement?: Placements;
11
- /**
12
- * Text of the tooltip content
13
- * @type string
14
- * @default ''
15
- * @example
16
- * <Tooltip text="Tooltip" />
17
- */
18
- text?: string;
19
- /**
20
- * Dark theme of the tooltip deneme 1 2 3
21
- * @type boolean
22
- * @default true
23
- * @example
24
- * <Tooltip dark />
25
- */
26
- dark?: boolean;
27
- /**
28
- * Light theme of the tooltip
29
- * @type boolean
30
- * @default false
31
- * @example
32
- * <Tooltip light />
33
- */
34
- light?: boolean;
35
- /**
36
- * Triggers of the tooltip
37
- * @type Triggers
38
- * @default Trigger.Hover
39
- * @example
40
- * <Tooltip triggers="hover" />
41
- */
42
- triggers?: Triggers;
43
- /**
44
- * Auto hide of the tooltip
45
- * @type boolean
46
- * @default true
47
- * @example
48
- * <Tooltip autoHide />
49
- */
50
- autoHide?: boolean;
51
- /**
52
- * Hide delay of the tooltip
53
- * @type number
54
- * @default 3000
55
- * @example
56
- * <Tooltip hideDelay={3000} />
57
- */
58
- hideDelay?: number;
59
- /**
60
- * Show delay of the tooltip
61
- * @type number
62
- * @default 0
63
- * @example
64
- * <Tooltip showDelay={0} />
65
- */
66
- showDelay?: number;
67
- /**
68
- * Shown state of the tooltip
69
- * @type boolean
70
- * @default false
71
- * @example
72
- * <Tooltip shown />
73
- */
74
- shown?: boolean;
75
- /**
76
- * Disabled state of the tooltip
77
- * @type boolean
78
- * @default false
79
- * @example
80
- * <Tooltip disabled />
81
- */
82
- disabled?: boolean;
83
- /**
84
- * Offset of the tooltip
85
- * @type number
86
- * @default 0
87
- * @example
88
- * <Tooltip offset={0} />
89
- * @link https://floating-ui.com/docs/tutorial#offset-middleware
90
- */
91
- offset?: number;
92
- /**
93
- * Padding of the tooltip
94
- * @type number
95
- * @default 2
96
- * @example
97
- * <Tooltip padding={0} />
98
- * @link https://floating-ui.com/docs/tutorial#shift-middleware
99
- */
100
- padding?: number;
101
- /**
102
- * Outside click of the tooltip
103
- * @type boolean
104
- * @default false
105
- * @example
106
- * <Tooltip outsideClick />
107
- */
108
- outsideClick?: boolean;
109
- /**
110
- * Trigger content of the tooltip
111
- * @type string
112
- * @default ''
113
- * @example
114
- * <Tooltip triggerContent="Trigger" />
115
- */
116
- triggerContent?: string;
117
- /**
118
- * Resizable of the tooltip
119
- * @type boolean
120
- * @default true
121
- * @example
122
- * <Tooltip resizable />
123
- * @link https://developer.mozilla.org/en-US/docs/Web/API/Window/resize_event
124
- */
125
- resizable?: boolean;
126
- }
127
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
128
- text: {
129
- type: import("vue").PropType<string>;
130
- default: string;
131
- };
132
- offset: {
133
- type: import("vue").PropType<number>;
134
- default: number;
135
- };
136
- disabled: {
137
- type: import("vue").PropType<boolean>;
138
- default: boolean;
139
- };
140
- placement: {
141
- type: import("vue").PropType<Placements>;
142
- default: Placement;
143
- };
144
- padding: {
145
- type: import("vue").PropType<number>;
146
- default: number;
147
- };
148
- outsideClick: {
149
- type: import("vue").PropType<boolean>;
150
- default: boolean;
151
- };
152
- dark: {
153
- type: import("vue").PropType<boolean>;
154
- default: boolean;
155
- };
156
- light: {
157
- type: import("vue").PropType<boolean>;
158
- default: boolean;
159
- };
160
- triggers: {
161
- type: import("vue").PropType<Triggers>;
162
- default: Trigger;
163
- };
164
- autoHide: {
165
- type: import("vue").PropType<boolean>;
166
- default: boolean;
167
- };
168
- hideDelay: {
169
- type: import("vue").PropType<number>;
170
- default: number;
171
- };
172
- showDelay: {
173
- type: import("vue").PropType<number>;
174
- default: number;
175
- };
176
- shown: {
177
- type: import("vue").PropType<boolean>;
178
- default: boolean;
179
- };
180
- triggerContent: {
181
- type: import("vue").PropType<string>;
182
- default: string;
183
- };
184
- resizable: {
185
- type: import("vue").PropType<boolean>;
186
- default: boolean;
187
- };
188
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("show" | "hide")[], "show" | "hide", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
189
- text: {
190
- type: import("vue").PropType<string>;
191
- default: string;
192
- };
193
- offset: {
194
- type: import("vue").PropType<number>;
195
- default: number;
196
- };
197
- disabled: {
198
- type: import("vue").PropType<boolean>;
199
- default: boolean;
200
- };
201
- placement: {
202
- type: import("vue").PropType<Placements>;
203
- default: Placement;
204
- };
205
- padding: {
206
- type: import("vue").PropType<number>;
207
- default: number;
208
- };
209
- outsideClick: {
210
- type: import("vue").PropType<boolean>;
211
- default: boolean;
212
- };
213
- dark: {
214
- type: import("vue").PropType<boolean>;
215
- default: boolean;
216
- };
217
- light: {
218
- type: import("vue").PropType<boolean>;
219
- default: boolean;
220
- };
221
- triggers: {
222
- type: import("vue").PropType<Triggers>;
223
- default: Trigger;
224
- };
225
- autoHide: {
226
- type: import("vue").PropType<boolean>;
227
- default: boolean;
228
- };
229
- hideDelay: {
230
- type: import("vue").PropType<number>;
231
- default: number;
232
- };
233
- showDelay: {
234
- type: import("vue").PropType<number>;
235
- default: number;
236
- };
237
- shown: {
238
- type: import("vue").PropType<boolean>;
239
- default: boolean;
240
- };
241
- triggerContent: {
242
- type: import("vue").PropType<string>;
243
- default: string;
244
- };
245
- resizable: {
246
- type: import("vue").PropType<boolean>;
247
- default: boolean;
248
- };
249
- }>> & {
250
- onShow?: ((...args: any[]) => any) | undefined;
251
- onHide?: ((...args: any[]) => any) | undefined;
252
- }, {
253
- text: string;
254
- offset: number;
255
- disabled: boolean;
256
- placement: Placements;
257
- padding: number;
258
- outsideClick: boolean;
259
- dark: boolean;
260
- light: boolean;
261
- triggers: Triggers;
262
- autoHide: boolean;
263
- hideDelay: number;
264
- showDelay: number;
265
- shown: boolean;
266
- triggerContent: string;
267
- resizable: boolean;
268
- }>, {
269
- trigger?(_: {}): any;
270
- content?(_: {}): any;
271
- }>;
272
- export default _default;
273
- declare type __VLS_WithTemplateSlots<T, S> = T & {
274
- new (): {
275
- $slots: S;
276
- };
277
- };
278
- //# sourceMappingURL=RTooltip.vue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RTooltip.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Tooltip/RTooltip"],"names":[],"mappings":"AAEA,OAAO,eAAe,CAAC;AACvB,OAAO,EACL,KAAK,UAAU,EACf,KAAK,QAAQ,EACb,SAAS,EAET,OAAO,EACR,MAAM,UAAU,CAAC;AAGlB,MAAM,WAAW,MAAM;IACrB;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,UAAU,CAAC;IAEvB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;IAEf;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,QAAQ,CAAC;IAEpB;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;;;;;OAOG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;;;;;;OAOG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB;;;;;;OAMG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAySD,wBAA8G;AAU9G,aAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
@@ -1,24 +0,0 @@
1
- import type { Ref } from 'vue';
2
- export declare function update({ value: trigger }: Ref<HTMLDivElement>, { value: tooltip }: Ref<HTMLDivElement>, { value: arrowElement }: Ref<HTMLDivElement>, placement: Placements, offsetParam: number, padding: number): void;
3
- export declare type Placements = 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end';
4
- export declare enum Placement {
5
- Top = "top",
6
- Bottom = "bottom",
7
- Left = "left",
8
- Right = "right",
9
- TopStart = "top-start",
10
- TopEnd = "top-end",
11
- RightStart = "right-start",
12
- RightEnd = "right-end",
13
- BottomStart = "bottom-start",
14
- BottomEnd = "bottom-end",
15
- LeftStart = "left-start",
16
- LeftEnd = "left-end"
17
- }
18
- export declare type Triggers = 'click' | 'hover' | 'manual';
19
- export declare enum Trigger {
20
- Click = "click",
21
- Hover = "hover",
22
- Manual = "manual"
23
- }
24
- //# sourceMappingURL=common.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../src/components/Tooltip/common.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE/B,wBAAgB,MAAM,CACpB,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,CAAC,cAAc,CAAC,EACvC,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,CAAC,cAAc,CAAC,EACvC,EAAE,KAAK,EAAE,YAAY,EAAE,EAAE,GAAG,CAAC,cAAc,CAAC,EAC5C,SAAS,EAAE,UAAU,EACrB,WAAW,EAAE,MAAM,EACnB,OAAO,EAAE,MAAM,QAqChB;AAED,oBAAY,UAAU,GAClB,KAAK,GACL,QAAQ,GACR,MAAM,GACN,OAAO,GACP,WAAW,GACX,SAAS,GACT,aAAa,GACb,WAAW,GACX,cAAc,GACd,YAAY,GACZ,YAAY,GACZ,UAAU,CAAC;AAEf,oBAAY,SAAS;IACnB,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,KAAK,UAAU;IACf,QAAQ,cAAc;IACtB,MAAM,YAAY;IAClB,UAAU,gBAAgB;IAC1B,QAAQ,cAAc;IACtB,WAAW,iBAAiB;IAC5B,SAAS,eAAe;IACxB,SAAS,eAAe;IACxB,OAAO,aAAa;CACrB;AAED,oBAAY,QAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,QAAQ,CAAC;AAEpD,oBAAY,OAAO;IACjB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,MAAM,WAAW;CAClB"}
@@ -1,5 +0,0 @@
1
- import { type DirectiveBinding } from 'vue';
2
- export declare const vTooltip: {
3
- mounted(el: HTMLElement, binding: DirectiveBinding): void;
4
- };
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/directives/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+B,KAAK,gBAAgB,EAAE,MAAM,KAAK,CAAC;AAGzE,eAAO,MAAM,QAAQ;gBACP,WAAW,WAAW,gBAAgB;CAcnD,CAAC"}
@@ -1 +0,0 @@
1
- //# sourceMappingURL=main.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":"AAEA,OAAO,aAAa,CAAC"}
@@ -1,9 +0,0 @@
1
- declare module "*" {
2
- import type { DefineComponent } from 'vue';
3
- const component: DefineComponent<
4
- Record<string, unknown>,
5
- Record<string, unknown>,
6
- any
7
- >;
8
- export default component;
9
- }