@rocketui/vue 0.1.11 → 0.1.12
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 +15 -0
- package/dist/rocket-ui-vue.js +4 -2
- 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>>>, {}, {}>, {
|
|
@@ -2584,6 +2593,8 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
|
|
|
2584
2593
|
loading: boolean;
|
|
2585
2594
|
clearable: boolean;
|
|
2586
2595
|
hideDetails: boolean;
|
|
2596
|
+
role: string;
|
|
2597
|
+
readonly: boolean;
|
|
2587
2598
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2588
2599
|
input: (...args: any[]) => void;
|
|
2589
2600
|
"update:modelValue": (...args: any[]) => void;
|
|
@@ -2606,6 +2617,8 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
|
|
|
2606
2617
|
loading: boolean;
|
|
2607
2618
|
clearable: boolean;
|
|
2608
2619
|
hideDetails: boolean;
|
|
2620
|
+
role: string;
|
|
2621
|
+
readonly: boolean;
|
|
2609
2622
|
}>>> & {
|
|
2610
2623
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2611
2624
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -2621,11 +2634,13 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
|
|
|
2621
2634
|
prependIcon: string;
|
|
2622
2635
|
appendIcon: string;
|
|
2623
2636
|
id: string | undefined;
|
|
2637
|
+
role: string;
|
|
2624
2638
|
modelValue: any;
|
|
2625
2639
|
placeholder: string;
|
|
2626
2640
|
errorMsg: string;
|
|
2627
2641
|
hint: string;
|
|
2628
2642
|
hideDetails: boolean;
|
|
2643
|
+
readonly: boolean;
|
|
2629
2644
|
clearable: boolean;
|
|
2630
2645
|
}, {}>, {
|
|
2631
2646
|
prepend?(_: {}): any;
|
package/dist/rocket-ui-vue.js
CHANGED
|
@@ -9525,7 +9525,7 @@ const u3 = ["aria-disabled", "aria-selected", "disabled"], S3 = {
|
|
|
9525
9525
|
]))
|
|
9526
9526
|
]));
|
|
9527
9527
|
}
|
|
9528
|
-
}), g3 = { class: "r-textfield__wrapper" }, k3 = { class: "input-wrapper" }, B3 = ["id", "disabled", "max", "min", "placeholder", "role", "type", "value"], b3 = {
|
|
9528
|
+
}), g3 = { class: "r-textfield__wrapper" }, k3 = { class: "input-wrapper" }, B3 = ["id", "disabled", "max", "min", "placeholder", "readonly", "role", "type", "value"], b3 = {
|
|
9529
9529
|
key: 0,
|
|
9530
9530
|
class: "r-textfield__details"
|
|
9531
9531
|
}, w3 = {
|
|
@@ -9552,7 +9552,8 @@ const u3 = ["aria-disabled", "aria-selected", "disabled"], S3 = {
|
|
|
9552
9552
|
min: {},
|
|
9553
9553
|
max: {},
|
|
9554
9554
|
hideDetails: { type: Boolean, default: !1 },
|
|
9555
|
-
role: {}
|
|
9555
|
+
role: { default: "" },
|
|
9556
|
+
readonly: { type: Boolean, default: !1 }
|
|
9556
9557
|
},
|
|
9557
9558
|
emits: [
|
|
9558
9559
|
"update:modelValue",
|
|
@@ -9673,6 +9674,7 @@ const u3 = ["aria-disabled", "aria-selected", "disabled"], S3 = {
|
|
|
9673
9674
|
max: C.max,
|
|
9674
9675
|
min: C.min,
|
|
9675
9676
|
placeholder: C.placeholder,
|
|
9677
|
+
readonly: C.readonly,
|
|
9676
9678
|
role: C.role,
|
|
9677
9679
|
type: i.value,
|
|
9678
9680
|
value: L.value,
|