@rocketui/vue 0.0.94 → 0.0.95
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 +22 -0
- package/dist/rocket-ui-vue.js +834 -814
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -703,6 +703,8 @@ declare function handleSelect(): void;
|
|
|
703
703
|
|
|
704
704
|
declare function handleToggle(): void;
|
|
705
705
|
|
|
706
|
+
declare function handleUpdate(): void;
|
|
707
|
+
|
|
706
708
|
declare function hideTooltip(): void;
|
|
707
709
|
|
|
708
710
|
declare interface IProps {
|
|
@@ -2209,10 +2211,28 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2209
2211
|
errorMsg: string;
|
|
2210
2212
|
}, {}>, {
|
|
2211
2213
|
prepend?(_: {}): any;
|
|
2214
|
+
tags?(_: {
|
|
2215
|
+
options: {
|
|
2216
|
+
value: string | number;
|
|
2217
|
+
label: string;
|
|
2218
|
+
prependIcon?: string | undefined;
|
|
2219
|
+
disabled?: boolean | undefined;
|
|
2220
|
+
}[];
|
|
2221
|
+
removeOption: typeof removeOption;
|
|
2222
|
+
updatePosition: () => void;
|
|
2223
|
+
}): any;
|
|
2212
2224
|
append?(_: {}): any;
|
|
2213
2225
|
"option-prepend"?(_: {}): any;
|
|
2226
|
+
"not-options"?(_: {}): any;
|
|
2214
2227
|
}>;
|
|
2215
2228
|
|
|
2229
|
+
/**
|
|
2230
|
+
* @description - Removes an option from the selected options
|
|
2231
|
+
* @param e option Option to remove
|
|
2232
|
+
* @returns void
|
|
2233
|
+
*/
|
|
2234
|
+
declare function removeOption(e: MouseEvent | KeyboardEvent, option: Option_2, updatePosition: any): void;
|
|
2235
|
+
|
|
2216
2236
|
export declare const RIcon: DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_9<IProps_2>, {
|
|
2217
2237
|
name: string;
|
|
2218
2238
|
size: number;
|
|
@@ -2684,9 +2704,11 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
|
|
|
2684
2704
|
mouseleave: typeof onMouseLeave;
|
|
2685
2705
|
mousemove: typeof onMouseMove;
|
|
2686
2706
|
};
|
|
2707
|
+
updatePosition: typeof handleUpdate;
|
|
2687
2708
|
}): any;
|
|
2688
2709
|
content?(_: {
|
|
2689
2710
|
hide: typeof hideTooltip;
|
|
2711
|
+
updatePosition: typeof handleUpdate;
|
|
2690
2712
|
}): any;
|
|
2691
2713
|
}>;
|
|
2692
2714
|
|