@rocketui/vue 0.1.11 → 0.1.13
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 +18 -4
- package/dist/rocket-ui-vue.js +311 -303
- 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
|
@@ -1928,6 +1928,15 @@ declare interface Props_6 {
|
|
|
1928
1928
|
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#role
|
|
1929
1929
|
*/
|
|
1930
1930
|
role?: string;
|
|
1931
|
+
/**
|
|
1932
|
+
* Input readonly state
|
|
1933
|
+
* @type {boolean}
|
|
1934
|
+
* @default false
|
|
1935
|
+
* @example
|
|
1936
|
+
* <Textfield readonly />
|
|
1937
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#readonly
|
|
1938
|
+
*/
|
|
1939
|
+
readonly?: boolean;
|
|
1931
1940
|
}
|
|
1932
1941
|
|
|
1933
1942
|
export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_TypePropsToRuntimeProps<AccordionProps>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionProps>>>, {}, {}>, {
|
|
@@ -1984,9 +1993,9 @@ export declare const RAvatar: DefineComponent<__VLS_WithDefaults_2<__VLS_TypePro
|
|
|
1984
1993
|
size: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
|
|
1985
1994
|
type: "image" | "text";
|
|
1986
1995
|
text: string;
|
|
1996
|
+
online: boolean;
|
|
1987
1997
|
src: string;
|
|
1988
1998
|
alt: string;
|
|
1989
|
-
online: boolean;
|
|
1990
1999
|
}, {}>;
|
|
1991
2000
|
|
|
1992
2001
|
export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_4<BadgeProps>, {
|
|
@@ -2228,7 +2237,6 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2228
2237
|
/**
|
|
2229
2238
|
* @description - Removes an option from the selected options
|
|
2230
2239
|
* @param e option Option to remove
|
|
2231
|
-
* @returns void
|
|
2232
2240
|
*/
|
|
2233
2241
|
declare function removeOption(e: MouseEvent | KeyboardEvent, option: Option_2, updatePosition: any): void;
|
|
2234
2242
|
|
|
@@ -2584,12 +2592,14 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
|
|
|
2584
2592
|
loading: boolean;
|
|
2585
2593
|
clearable: boolean;
|
|
2586
2594
|
hideDetails: boolean;
|
|
2595
|
+
role: string;
|
|
2596
|
+
readonly: boolean;
|
|
2587
2597
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2588
2598
|
input: (...args: any[]) => void;
|
|
2589
|
-
"update:modelValue": (...args: any[]) => void;
|
|
2590
2599
|
blur: (...args: any[]) => void;
|
|
2591
|
-
"click:icon": (...args: any[]) => void;
|
|
2592
2600
|
focus: (...args: any[]) => void;
|
|
2601
|
+
"update:modelValue": (...args: any[]) => void;
|
|
2602
|
+
"click:icon": (...args: any[]) => void;
|
|
2593
2603
|
"click:clear": (...args: any[]) => void;
|
|
2594
2604
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_18<Props_6>, {
|
|
2595
2605
|
id: string;
|
|
@@ -2606,6 +2616,8 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
|
|
|
2606
2616
|
loading: boolean;
|
|
2607
2617
|
clearable: boolean;
|
|
2608
2618
|
hideDetails: boolean;
|
|
2619
|
+
role: string;
|
|
2620
|
+
readonly: boolean;
|
|
2609
2621
|
}>>> & {
|
|
2610
2622
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2611
2623
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -2621,11 +2633,13 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
|
|
|
2621
2633
|
prependIcon: string;
|
|
2622
2634
|
appendIcon: string;
|
|
2623
2635
|
id: string | undefined;
|
|
2636
|
+
role: string;
|
|
2624
2637
|
modelValue: any;
|
|
2625
2638
|
placeholder: string;
|
|
2626
2639
|
errorMsg: string;
|
|
2627
2640
|
hint: string;
|
|
2628
2641
|
hideDetails: boolean;
|
|
2642
|
+
readonly: boolean;
|
|
2629
2643
|
clearable: boolean;
|
|
2630
2644
|
}, {}>, {
|
|
2631
2645
|
prepend?(_: {}): any;
|