@rocketui/vue 0.2.93-beta.1 → 0.2.94-alpha.1
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/dist/rocket-ui-vue.d.ts +11 -2
- package/dist/rocket-ui-vue.js +907 -895
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -1149,6 +1149,14 @@ declare interface IProps_6 {
|
|
|
1149
1149
|
}
|
|
1150
1150
|
|
|
1151
1151
|
declare interface IProps_7 {
|
|
1152
|
+
/**
|
|
1153
|
+
* ID of the tooltip
|
|
1154
|
+
* @type string
|
|
1155
|
+
* @default 'r-tooltip'
|
|
1156
|
+
* @example
|
|
1157
|
+
* <Tooltip id="r-tooltip" />
|
|
1158
|
+
*/
|
|
1159
|
+
id?: string;
|
|
1152
1160
|
/**
|
|
1153
1161
|
* Placement of the tooltip
|
|
1154
1162
|
* @type Placements
|
|
@@ -2259,7 +2267,7 @@ export declare const RAlert: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_Wit
|
|
|
2259
2267
|
id: string;
|
|
2260
2268
|
type: "success" | "error" | "warning" | "info";
|
|
2261
2269
|
title: string;
|
|
2262
|
-
variant: "ghost" | "
|
|
2270
|
+
variant: "ghost" | "outline" | "solid";
|
|
2263
2271
|
block: boolean;
|
|
2264
2272
|
description: string;
|
|
2265
2273
|
closable: boolean;
|
|
@@ -2293,9 +2301,9 @@ export declare const RAvatar: DefineComponent<__VLS_WithDefaults_3<__VLS_TypePro
|
|
|
2293
2301
|
id: string;
|
|
2294
2302
|
type: "image" | "text";
|
|
2295
2303
|
text: string;
|
|
2304
|
+
online: boolean;
|
|
2296
2305
|
src: string;
|
|
2297
2306
|
alt: string;
|
|
2298
|
-
online: boolean;
|
|
2299
2307
|
}, {}>;
|
|
2300
2308
|
|
|
2301
2309
|
export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<BadgeProps>, {
|
|
@@ -3270,6 +3278,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
|
|
|
3270
3278
|
onShow?: ((...args: any[]) => any) | undefined;
|
|
3271
3279
|
onHide?: ((...args: any[]) => any) | undefined;
|
|
3272
3280
|
}, {
|
|
3281
|
+
id: string;
|
|
3273
3282
|
type: string;
|
|
3274
3283
|
text: string;
|
|
3275
3284
|
disabled: boolean;
|