@weni/unnnic-system 3.11.3-alpha.3 → 3.12.1-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/components/AudioRecorder/AudioHandler.vue.d.ts +0 -17
- package/dist/components/AudioRecorder/AudioRecorder.vue.d.ts +0 -34
- package/dist/components/Card/Card.vue.d.ts +0 -17
- package/dist/components/Card/CardStatusesContainer.vue.d.ts +0 -17
- package/dist/components/Card/SimpleCard.vue.d.ts +0 -17
- package/dist/components/Card/TitleCard.vue.d.ts +0 -17
- package/dist/components/CardInformation/CardInformation.vue.d.ts +0 -17
- package/dist/components/ChartBar/ChartBar.vue.d.ts +0 -17
- package/dist/components/ChartLine/ChartLine.vue.d.ts +0 -17
- package/dist/components/ChatText/ChatText.vue.d.ts +0 -17
- package/dist/components/ChatsMessage/ChatsMessage.vue.d.ts +0 -17
- package/dist/components/DataArea/DataArea.vue.d.ts +0 -17
- package/dist/components/DateFilter/DateFilter.vue.d.ts +3 -3
- package/dist/components/FormElement/FormElement.vue.d.ts +2 -2
- package/dist/components/Input/Input.vue.d.ts +3 -3
- package/dist/components/Label/Label.vue.d.ts +1 -1
- package/dist/components/Label/Label.vue.d.ts.map +1 -1
- package/dist/components/ModalNext/ModalNext.vue.d.ts +3 -3
- package/dist/components/MoodRating/MoodRating.vue.d.ts +0 -17
- package/dist/components/Slider/Slider.vue.d.ts +0 -17
- package/dist/components/Switch/Switch.vue.d.ts +1 -1
- package/dist/components/Tab/Tab.vue.d.ts +0 -17
- package/dist/components/TextArea/TextArea.vue.d.ts +3 -3
- package/dist/components/Toast/Toast.vue.d.ts.map +1 -1
- package/dist/components/ToolTip/ToolTip.vue.d.ts +0 -17
- package/dist/components/ToolTip/ToolTip.vue.d.ts.map +1 -1
- package/dist/components/ui/dialog/DialogContent.vue.d.ts.map +1 -1
- package/dist/components/ui/drawer/DrawerContent.vue.d.ts +1 -0
- package/dist/components/ui/drawer/DrawerContent.vue.d.ts.map +1 -1
- package/dist/components/ui/popover/PopoverContent.vue.d.ts.map +1 -1
- package/dist/components/ui/popover/PopoverTrigger.vue.d.ts.map +1 -1
- package/dist/components/ui/tooltip/Tooltip.vue.d.ts.map +1 -1
- package/dist/components/ui/tooltip/TooltipContent.vue.d.ts.map +1 -1
- package/dist/components/ui/tooltip/TooltipTrigger.vue.d.ts.map +1 -1
- package/dist/components/ui/tooltip/index.d.ts +0 -1
- package/dist/components/ui/tooltip/index.d.ts.map +1 -1
- package/dist/{es-99b102dc.mjs → es-38bd0c9c.mjs} +1 -1
- package/dist/{index-c20fa852.mjs → index-561a4027.mjs} +6304 -6265
- package/dist/lib/layer-manager.d.ts +16 -0
- package/dist/lib/layer-manager.d.ts.map +1 -0
- package/dist/{pt-br-b17e69b4.mjs → pt-br-14a3c647.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +33 -33
- package/package.json +1 -1
- package/src/components/Alert/__tests__/__snapshots__/Alert.spec.js.snap +1 -1
- package/src/components/Toast/Toast.vue +4 -1
- package/src/components/ToolTip/ToolTip.vue +31 -36
- package/src/components/ToolTip/__tests__/ToolTip.spec.js +0 -6
- package/src/components/index.ts +19 -19
- package/src/components/ui/dialog/DialogContent.vue +6 -0
- package/src/components/ui/drawer/DrawerContent.vue +12 -2
- package/src/components/ui/popover/PopoverContent.vue +4 -0
- package/src/components/ui/popover/PopoverTrigger.vue +5 -1
- package/src/components/ui/tooltip/Tooltip.vue +9 -3
- package/src/components/ui/tooltip/TooltipContent.vue +3 -2
- package/src/components/ui/tooltip/TooltipTrigger.vue +4 -0
- package/src/components/ui/tooltip/index.ts +0 -1
- package/src/lib/layer-manager.ts +84 -0
- package/src/stories/DrawerNext.stories.js +1 -0
- package/src/stories/LayerManager.docs.mdx +40 -0
- package/src/stories/LayerManager.stories.js +364 -0
- package/dist/components/ui/tooltip/TooltipProvider.vue.d.ts +0 -19
- package/dist/components/ui/tooltip/TooltipProvider.vue.d.ts.map +0 -1
- package/src/components/ui/tooltip/TooltipProvider.vue +0 -15
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
# 3.12.0 (2025-12-03)
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **SegmentedControl Component**:
|
|
13
|
+
- Introduced a segmented-control built on top of the `reka-ui` tabs primitives, composed by `SegmentedControl`, `SegmentedControlList`, `SegmentedControlTrigger`, and `SegmentedControlContent`.
|
|
14
|
+
- Documented the component in Storybook under `Navigation/SegmentedControl`, covering default, disabled, adaptive-width, and small examples to guide adoption.
|
|
15
|
+
|
|
8
16
|
# 3.11.2 (2025-11-27)
|
|
9
17
|
|
|
10
18
|
### Added
|
|
@@ -126,23 +126,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
126
126
|
default?(_: {}): any;
|
|
127
127
|
};
|
|
128
128
|
});
|
|
129
|
-
TooltipProvider: {
|
|
130
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
131
|
-
P: {};
|
|
132
|
-
B: {};
|
|
133
|
-
D: {};
|
|
134
|
-
C: {};
|
|
135
|
-
M: {};
|
|
136
|
-
Defaults: {};
|
|
137
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
138
|
-
__isFragment?: never;
|
|
139
|
-
__isTeleport?: never;
|
|
140
|
-
__isSuspense?: never;
|
|
141
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
142
|
-
$slots: {
|
|
143
|
-
default?(_: {}): any;
|
|
144
|
-
};
|
|
145
|
-
});
|
|
146
129
|
TooltipTrigger: {
|
|
147
130
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
148
131
|
P: {};
|
|
@@ -229,23 +229,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
229
229
|
default?(_: {}): any;
|
|
230
230
|
};
|
|
231
231
|
});
|
|
232
|
-
TooltipProvider: {
|
|
233
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
234
|
-
P: {};
|
|
235
|
-
B: {};
|
|
236
|
-
D: {};
|
|
237
|
-
C: {};
|
|
238
|
-
M: {};
|
|
239
|
-
Defaults: {};
|
|
240
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
241
|
-
__isFragment?: never;
|
|
242
|
-
__isTeleport?: never;
|
|
243
|
-
__isSuspense?: never;
|
|
244
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
245
|
-
$slots: {
|
|
246
|
-
default?(_: {}): any;
|
|
247
|
-
};
|
|
248
|
-
});
|
|
249
232
|
TooltipTrigger: {
|
|
250
233
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
251
234
|
P: {};
|
|
@@ -504,23 +487,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
504
487
|
default?(_: {}): any;
|
|
505
488
|
};
|
|
506
489
|
});
|
|
507
|
-
TooltipProvider: {
|
|
508
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
509
|
-
P: {};
|
|
510
|
-
B: {};
|
|
511
|
-
D: {};
|
|
512
|
-
C: {};
|
|
513
|
-
M: {};
|
|
514
|
-
Defaults: {};
|
|
515
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
516
|
-
__isFragment?: never;
|
|
517
|
-
__isTeleport?: never;
|
|
518
|
-
__isSuspense?: never;
|
|
519
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
520
|
-
$slots: {
|
|
521
|
-
default?(_: {}): any;
|
|
522
|
-
};
|
|
523
|
-
});
|
|
524
490
|
TooltipTrigger: {
|
|
525
491
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
526
492
|
P: {};
|
|
@@ -391,23 +391,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
391
391
|
default?(_: {}): any;
|
|
392
392
|
};
|
|
393
393
|
});
|
|
394
|
-
TooltipProvider: {
|
|
395
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
396
|
-
P: {};
|
|
397
|
-
B: {};
|
|
398
|
-
D: {};
|
|
399
|
-
C: {};
|
|
400
|
-
M: {};
|
|
401
|
-
Defaults: {};
|
|
402
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
403
|
-
__isFragment?: never;
|
|
404
|
-
__isTeleport?: never;
|
|
405
|
-
__isSuspense?: never;
|
|
406
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
407
|
-
$slots: {
|
|
408
|
-
default?(_: {}): any;
|
|
409
|
-
};
|
|
410
|
-
});
|
|
411
394
|
TooltipTrigger: {
|
|
412
395
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
413
396
|
P: {};
|
|
@@ -227,23 +227,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
227
227
|
default?(_: {}): any;
|
|
228
228
|
};
|
|
229
229
|
});
|
|
230
|
-
TooltipProvider: {
|
|
231
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
232
|
-
P: {};
|
|
233
|
-
B: {};
|
|
234
|
-
D: {};
|
|
235
|
-
C: {};
|
|
236
|
-
M: {};
|
|
237
|
-
Defaults: {};
|
|
238
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
239
|
-
__isFragment?: never;
|
|
240
|
-
__isTeleport?: never;
|
|
241
|
-
__isSuspense?: never;
|
|
242
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
243
|
-
$slots: {
|
|
244
|
-
default?(_: {}): any;
|
|
245
|
-
};
|
|
246
|
-
});
|
|
247
230
|
TooltipTrigger: {
|
|
248
231
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
249
232
|
P: {};
|
|
@@ -136,23 +136,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
136
136
|
default?(_: {}): any;
|
|
137
137
|
};
|
|
138
138
|
});
|
|
139
|
-
TooltipProvider: {
|
|
140
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
141
|
-
P: {};
|
|
142
|
-
B: {};
|
|
143
|
-
D: {};
|
|
144
|
-
C: {};
|
|
145
|
-
M: {};
|
|
146
|
-
Defaults: {};
|
|
147
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
148
|
-
__isFragment?: never;
|
|
149
|
-
__isTeleport?: never;
|
|
150
|
-
__isSuspense?: never;
|
|
151
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
152
|
-
$slots: {
|
|
153
|
-
default?(_: {}): any;
|
|
154
|
-
};
|
|
155
|
-
});
|
|
156
139
|
TooltipTrigger: {
|
|
157
140
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
158
141
|
P: {};
|
|
@@ -152,23 +152,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
152
152
|
default?(_: {}): any;
|
|
153
153
|
};
|
|
154
154
|
});
|
|
155
|
-
TooltipProvider: {
|
|
156
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
157
|
-
P: {};
|
|
158
|
-
B: {};
|
|
159
|
-
D: {};
|
|
160
|
-
C: {};
|
|
161
|
-
M: {};
|
|
162
|
-
Defaults: {};
|
|
163
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
164
|
-
__isFragment?: never;
|
|
165
|
-
__isTeleport?: never;
|
|
166
|
-
__isSuspense?: never;
|
|
167
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
168
|
-
$slots: {
|
|
169
|
-
default?(_: {}): any;
|
|
170
|
-
};
|
|
171
|
-
});
|
|
172
155
|
TooltipTrigger: {
|
|
173
156
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
174
157
|
P: {};
|
|
@@ -284,23 +284,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
284
284
|
default?(_: {}): any;
|
|
285
285
|
};
|
|
286
286
|
});
|
|
287
|
-
TooltipProvider: {
|
|
288
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
289
|
-
P: {};
|
|
290
|
-
B: {};
|
|
291
|
-
D: {};
|
|
292
|
-
C: {};
|
|
293
|
-
M: {};
|
|
294
|
-
Defaults: {};
|
|
295
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
296
|
-
__isFragment?: never;
|
|
297
|
-
__isTeleport?: never;
|
|
298
|
-
__isSuspense?: never;
|
|
299
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
300
|
-
$slots: {
|
|
301
|
-
default?(_: {}): any;
|
|
302
|
-
};
|
|
303
|
-
});
|
|
304
287
|
TooltipTrigger: {
|
|
305
288
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
306
289
|
P: {};
|
|
@@ -183,23 +183,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
183
183
|
default?(_: {}): any;
|
|
184
184
|
};
|
|
185
185
|
});
|
|
186
|
-
TooltipProvider: {
|
|
187
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
188
|
-
P: {};
|
|
189
|
-
B: {};
|
|
190
|
-
D: {};
|
|
191
|
-
C: {};
|
|
192
|
-
M: {};
|
|
193
|
-
Defaults: {};
|
|
194
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
195
|
-
__isFragment?: never;
|
|
196
|
-
__isTeleport?: never;
|
|
197
|
-
__isSuspense?: never;
|
|
198
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
199
|
-
$slots: {
|
|
200
|
-
default?(_: {}): any;
|
|
201
|
-
};
|
|
202
|
-
});
|
|
203
186
|
TooltipTrigger: {
|
|
204
187
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
205
188
|
P: {};
|
|
@@ -106,23 +106,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
106
106
|
default?(_: {}): any;
|
|
107
107
|
};
|
|
108
108
|
});
|
|
109
|
-
TooltipProvider: {
|
|
110
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
111
|
-
P: {};
|
|
112
|
-
B: {};
|
|
113
|
-
D: {};
|
|
114
|
-
C: {};
|
|
115
|
-
M: {};
|
|
116
|
-
Defaults: {};
|
|
117
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
118
|
-
__isFragment?: never;
|
|
119
|
-
__isTeleport?: never;
|
|
120
|
-
__isSuspense?: never;
|
|
121
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
122
|
-
$slots: {
|
|
123
|
-
default?(_: {}): any;
|
|
124
|
-
};
|
|
125
|
-
});
|
|
126
109
|
TooltipTrigger: {
|
|
127
110
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
128
111
|
P: {};
|
|
@@ -121,23 +121,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
121
121
|
default?(_: {}): any;
|
|
122
122
|
};
|
|
123
123
|
});
|
|
124
|
-
TooltipProvider: {
|
|
125
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
126
|
-
P: {};
|
|
127
|
-
B: {};
|
|
128
|
-
D: {};
|
|
129
|
-
C: {};
|
|
130
|
-
M: {};
|
|
131
|
-
Defaults: {};
|
|
132
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
133
|
-
__isFragment?: never;
|
|
134
|
-
__isTeleport?: never;
|
|
135
|
-
__isSuspense?: never;
|
|
136
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
137
|
-
$slots: {
|
|
138
|
-
default?(_: {}): any;
|
|
139
|
-
};
|
|
140
|
-
});
|
|
141
124
|
TooltipTrigger: {
|
|
142
125
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
143
126
|
P: {};
|
|
@@ -403,23 +403,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
403
403
|
default?(_: {}): any;
|
|
404
404
|
};
|
|
405
405
|
});
|
|
406
|
-
TooltipProvider: {
|
|
407
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
408
|
-
P: {};
|
|
409
|
-
B: {};
|
|
410
|
-
D: {};
|
|
411
|
-
C: {};
|
|
412
|
-
M: {};
|
|
413
|
-
Defaults: {};
|
|
414
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
415
|
-
__isFragment?: never;
|
|
416
|
-
__isTeleport?: never;
|
|
417
|
-
__isSuspense?: never;
|
|
418
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
419
|
-
$slots: {
|
|
420
|
-
default?(_: {}): any;
|
|
421
|
-
};
|
|
422
|
-
});
|
|
423
406
|
TooltipTrigger: {
|
|
424
407
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
425
408
|
P: {};
|
|
@@ -125,23 +125,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
125
125
|
default?(_: {}): any;
|
|
126
126
|
};
|
|
127
127
|
});
|
|
128
|
-
TooltipProvider: {
|
|
129
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
130
|
-
P: {};
|
|
131
|
-
B: {};
|
|
132
|
-
D: {};
|
|
133
|
-
C: {};
|
|
134
|
-
M: {};
|
|
135
|
-
Defaults: {};
|
|
136
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
137
|
-
__isFragment?: never;
|
|
138
|
-
__isTeleport?: never;
|
|
139
|
-
__isSuspense?: never;
|
|
140
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
141
|
-
$slots: {
|
|
142
|
-
default?(_: {}): any;
|
|
143
|
-
};
|
|
144
|
-
});
|
|
145
128
|
TooltipTrigger: {
|
|
146
129
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
147
130
|
P: {};
|
|
@@ -230,10 +230,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
230
230
|
disabled: boolean;
|
|
231
231
|
type: string;
|
|
232
232
|
placeholder: string;
|
|
233
|
+
tooltip: string;
|
|
233
234
|
label: string;
|
|
234
235
|
size: string;
|
|
235
236
|
mask: string | unknown[];
|
|
236
|
-
tooltip: string;
|
|
237
237
|
message: string;
|
|
238
238
|
modelValue: string;
|
|
239
239
|
nativeType: string;
|
|
@@ -537,15 +537,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
537
537
|
}>> & Readonly<{}>, {
|
|
538
538
|
disabled: boolean;
|
|
539
539
|
error: string | boolean;
|
|
540
|
+
tooltip: string;
|
|
540
541
|
label: string;
|
|
541
542
|
size: string;
|
|
542
|
-
tooltip: string;
|
|
543
543
|
fixedLabel: boolean;
|
|
544
544
|
message: string;
|
|
545
545
|
}, {}, {
|
|
546
546
|
UnnnicLabel: import('vue').DefineComponent<import('../Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('../Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
547
|
-
label: string;
|
|
548
547
|
tooltip: string;
|
|
548
|
+
label: string;
|
|
549
549
|
useHtmlTooltip: boolean;
|
|
550
550
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
551
551
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -64,15 +64,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
64
64
|
}>> & Readonly<{}>, {
|
|
65
65
|
disabled: boolean;
|
|
66
66
|
error: string | boolean;
|
|
67
|
+
tooltip: string;
|
|
67
68
|
label: string;
|
|
68
69
|
size: string;
|
|
69
|
-
tooltip: string;
|
|
70
70
|
fixedLabel: boolean;
|
|
71
71
|
message: string;
|
|
72
72
|
}, {}, {
|
|
73
73
|
UnnnicLabel: import('vue').DefineComponent<import('../Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('../Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
74
|
-
label: string;
|
|
75
74
|
tooltip: string;
|
|
75
|
+
label: string;
|
|
76
76
|
useHtmlTooltip: boolean;
|
|
77
77
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
78
78
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -167,10 +167,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
167
167
|
disabled: boolean;
|
|
168
168
|
type: string;
|
|
169
169
|
placeholder: string;
|
|
170
|
+
tooltip: string;
|
|
170
171
|
label: string;
|
|
171
172
|
size: string;
|
|
172
173
|
mask: string | unknown[];
|
|
173
|
-
tooltip: string;
|
|
174
174
|
message: string;
|
|
175
175
|
modelValue: string;
|
|
176
176
|
nativeType: string;
|
|
@@ -474,15 +474,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
474
474
|
}>> & Readonly<{}>, {
|
|
475
475
|
disabled: boolean;
|
|
476
476
|
error: string | boolean;
|
|
477
|
+
tooltip: string;
|
|
477
478
|
label: string;
|
|
478
479
|
size: string;
|
|
479
|
-
tooltip: string;
|
|
480
480
|
fixedLabel: boolean;
|
|
481
481
|
message: string;
|
|
482
482
|
}, {}, {
|
|
483
483
|
UnnnicLabel: import('vue').DefineComponent<import('../Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('../Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
484
|
-
label: string;
|
|
485
484
|
tooltip: string;
|
|
485
|
+
label: string;
|
|
486
486
|
useHtmlTooltip: boolean;
|
|
487
487
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
488
488
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -4,8 +4,8 @@ export interface LabelProps {
|
|
|
4
4
|
useHtmlTooltip?: boolean;
|
|
5
5
|
}
|
|
6
6
|
declare const _default: import('vue').DefineComponent<LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
7
|
-
label: string;
|
|
8
7
|
tooltip: string;
|
|
8
|
+
label: string;
|
|
9
9
|
useHtmlTooltip: boolean;
|
|
10
10
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
11
11
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Label.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Label/Label.vue"],"names":[],"mappings":"AAiBA;AA4EA,MAAM,WAAW,UAAU;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;;
|
|
1
|
+
{"version":3,"file":"Label.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Label/Label.vue"],"names":[],"mappings":"AAiBA;AA4EA,MAAM,WAAW,UAAU;IACzB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;;aAFW,MAAM;WADR,MAAM;oBAEG,OAAO;;AA8F1B,wBAQG"}
|
|
@@ -241,10 +241,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
241
241
|
disabled: boolean;
|
|
242
242
|
type: string;
|
|
243
243
|
placeholder: string;
|
|
244
|
+
tooltip: string;
|
|
244
245
|
label: string;
|
|
245
246
|
size: string;
|
|
246
247
|
mask: string | unknown[];
|
|
247
|
-
tooltip: string;
|
|
248
248
|
message: string;
|
|
249
249
|
modelValue: string;
|
|
250
250
|
nativeType: string;
|
|
@@ -548,15 +548,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
548
548
|
}>> & Readonly<{}>, {
|
|
549
549
|
disabled: boolean;
|
|
550
550
|
error: string | boolean;
|
|
551
|
+
tooltip: string;
|
|
551
552
|
label: string;
|
|
552
553
|
size: string;
|
|
553
|
-
tooltip: string;
|
|
554
554
|
fixedLabel: boolean;
|
|
555
555
|
message: string;
|
|
556
556
|
}, {}, {
|
|
557
557
|
UnnnicLabel: import('vue').DefineComponent<import('../Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('../Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
558
|
-
label: string;
|
|
559
558
|
tooltip: string;
|
|
559
|
+
label: string;
|
|
560
560
|
useHtmlTooltip: boolean;
|
|
561
561
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
562
562
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -114,23 +114,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
114
114
|
default?(_: {}): any;
|
|
115
115
|
};
|
|
116
116
|
});
|
|
117
|
-
TooltipProvider: {
|
|
118
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
119
|
-
P: {};
|
|
120
|
-
B: {};
|
|
121
|
-
D: {};
|
|
122
|
-
C: {};
|
|
123
|
-
M: {};
|
|
124
|
-
Defaults: {};
|
|
125
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
126
|
-
__isFragment?: never;
|
|
127
|
-
__isTeleport?: never;
|
|
128
|
-
__isSuspense?: never;
|
|
129
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
130
|
-
$slots: {
|
|
131
|
-
default?(_: {}): any;
|
|
132
|
-
};
|
|
133
|
-
});
|
|
134
117
|
TooltipTrigger: {
|
|
135
118
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
136
119
|
P: {};
|
|
@@ -191,23 +191,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
191
191
|
default?(_: {}): any;
|
|
192
192
|
};
|
|
193
193
|
});
|
|
194
|
-
TooltipProvider: {
|
|
195
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
196
|
-
P: {};
|
|
197
|
-
B: {};
|
|
198
|
-
D: {};
|
|
199
|
-
C: {};
|
|
200
|
-
M: {};
|
|
201
|
-
Defaults: {};
|
|
202
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
203
|
-
__isFragment?: never;
|
|
204
|
-
__isTeleport?: never;
|
|
205
|
-
__isSuspense?: never;
|
|
206
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
207
|
-
$slots: {
|
|
208
|
-
default?(_: {}): any;
|
|
209
|
-
};
|
|
210
|
-
});
|
|
211
194
|
TooltipTrigger: {
|
|
212
195
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
213
196
|
P: {};
|
|
@@ -112,8 +112,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
112
112
|
useVModel: boolean;
|
|
113
113
|
}, {}, {
|
|
114
114
|
UnnnicLabel: import('vue').DefineComponent<import('../Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('../Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
115
|
-
label: string;
|
|
116
115
|
tooltip: string;
|
|
116
|
+
label: string;
|
|
117
117
|
useHtmlTooltip: boolean;
|
|
118
118
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
119
119
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -164,23 +164,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
164
164
|
default?(_: {}): any;
|
|
165
165
|
};
|
|
166
166
|
});
|
|
167
|
-
TooltipProvider: {
|
|
168
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
169
|
-
P: {};
|
|
170
|
-
B: {};
|
|
171
|
-
D: {};
|
|
172
|
-
C: {};
|
|
173
|
-
M: {};
|
|
174
|
-
Defaults: {};
|
|
175
|
-
}, Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
176
|
-
__isFragment?: never;
|
|
177
|
-
__isTeleport?: never;
|
|
178
|
-
__isSuspense?: never;
|
|
179
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('reka-ui').TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
180
|
-
$slots: {
|
|
181
|
-
default?(_: {}): any;
|
|
182
|
-
};
|
|
183
|
-
});
|
|
184
167
|
TooltipTrigger: {
|
|
185
168
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('reka-ui').TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
186
169
|
P: {};
|
|
@@ -94,8 +94,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
94
94
|
disabled: boolean;
|
|
95
95
|
resize: string;
|
|
96
96
|
type: string;
|
|
97
|
-
size: string;
|
|
98
97
|
tooltip: string;
|
|
98
|
+
size: string;
|
|
99
99
|
message: string;
|
|
100
100
|
errors: unknown[] | null;
|
|
101
101
|
}, {}, {
|
|
@@ -164,15 +164,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
164
164
|
}>> & Readonly<{}>, {
|
|
165
165
|
disabled: boolean;
|
|
166
166
|
error: string | boolean;
|
|
167
|
+
tooltip: string;
|
|
167
168
|
label: string;
|
|
168
169
|
size: string;
|
|
169
|
-
tooltip: string;
|
|
170
170
|
fixedLabel: boolean;
|
|
171
171
|
message: string;
|
|
172
172
|
}, {}, {
|
|
173
173
|
UnnnicLabel: import('vue').DefineComponent<import('../Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('../Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
174
|
-
label: string;
|
|
175
174
|
tooltip: string;
|
|
175
|
+
label: string;
|
|
176
176
|
useHtmlTooltip: boolean;
|
|
177
177
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
178
178
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Toast.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Toast/Toast.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Toast.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Toast/Toast.vue"],"names":[],"mappings":"AAuEA;AAqQA,OAAO,KAAK,EAAE,UAAU,EAAc,MAAM,SAAS,CAAC;;;;;;;;;;;;;;AA8QtD,wBASG"}
|