@rocketui/vue 0.0.101 → 0.1.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/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -1919,6 +1919,15 @@ declare interface Props_6 {
|
|
|
1919
1919
|
* <Textfield hideDetails />
|
|
1920
1920
|
*/
|
|
1921
1921
|
hideDetails?: boolean;
|
|
1922
|
+
/**
|
|
1923
|
+
* Input role
|
|
1924
|
+
* @type {string}
|
|
1925
|
+
* @default ''
|
|
1926
|
+
* @example
|
|
1927
|
+
* <Textfield role="search" />
|
|
1928
|
+
* @link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#role
|
|
1929
|
+
*/
|
|
1930
|
+
role?: string;
|
|
1922
1931
|
}
|
|
1923
1932
|
|
|
1924
1933
|
export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_TypePropsToRuntimeProps<AccordionProps>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionProps>>>, {}, {}>, {
|
package/dist/rocket-ui-vue.js
CHANGED
|
@@ -9516,7 +9516,7 @@ const Z3 = ["aria-disabled", "aria-selected", "disabled"], u3 = {
|
|
|
9516
9516
|
]))
|
|
9517
9517
|
]));
|
|
9518
9518
|
}
|
|
9519
|
-
}), h3 = { class: "r-textfield__wrapper" }, g3 = { class: "input-wrapper" }, k3 = ["id", "disabled", "max", "min", "placeholder", "type", "value"], B3 = {
|
|
9519
|
+
}), h3 = { class: "r-textfield__wrapper" }, g3 = { class: "input-wrapper" }, k3 = ["id", "disabled", "max", "min", "placeholder", "role", "type", "value"], B3 = {
|
|
9520
9520
|
key: 0,
|
|
9521
9521
|
class: "r-textfield__details"
|
|
9522
9522
|
}, b3 = {
|
|
@@ -9542,7 +9542,8 @@ const Z3 = ["aria-disabled", "aria-selected", "disabled"], u3 = {
|
|
|
9542
9542
|
clearable: { type: Boolean, default: !1 },
|
|
9543
9543
|
min: {},
|
|
9544
9544
|
max: {},
|
|
9545
|
-
hideDetails: { type: Boolean, default: !1 }
|
|
9545
|
+
hideDetails: { type: Boolean, default: !1 },
|
|
9546
|
+
role: {}
|
|
9546
9547
|
},
|
|
9547
9548
|
emits: [
|
|
9548
9549
|
"update:modelValue",
|
|
@@ -9663,6 +9664,7 @@ const Z3 = ["aria-disabled", "aria-selected", "disabled"], u3 = {
|
|
|
9663
9664
|
max: C.max,
|
|
9664
9665
|
min: C.min,
|
|
9665
9666
|
placeholder: C.placeholder,
|
|
9667
|
+
role: C.role,
|
|
9666
9668
|
type: i.value,
|
|
9667
9669
|
value: L.value,
|
|
9668
9670
|
onBlur: T,
|