@rocketui/vue 0.0.95 → 0.0.97
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 +14 -0
- package/dist/rocket-ui-vue.js +217 -212
- 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
|
@@ -2172,6 +2172,8 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2172
2172
|
dropdownClass: string;
|
|
2173
2173
|
optionsClass: string;
|
|
2174
2174
|
errorMsg: string;
|
|
2175
|
+
hideDetails: boolean;
|
|
2176
|
+
autocomplete: string;
|
|
2175
2177
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2176
2178
|
"update:modelValue": (...args: any[]) => void;
|
|
2177
2179
|
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_8<SelectProps>, {
|
|
@@ -2191,6 +2193,8 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2191
2193
|
dropdownClass: string;
|
|
2192
2194
|
optionsClass: string;
|
|
2193
2195
|
errorMsg: string;
|
|
2196
|
+
hideDetails: boolean;
|
|
2197
|
+
autocomplete: string;
|
|
2194
2198
|
}>>> & {
|
|
2195
2199
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2196
2200
|
}, {
|
|
@@ -2209,6 +2213,8 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2209
2213
|
dropdownClass: string;
|
|
2210
2214
|
optionsClass: string;
|
|
2211
2215
|
errorMsg: string;
|
|
2216
|
+
hideDetails: boolean;
|
|
2217
|
+
autocomplete: "on" | "off";
|
|
2212
2218
|
}, {}>, {
|
|
2213
2219
|
prepend?(_: {}): any;
|
|
2214
2220
|
tags?(_: {
|
|
@@ -2855,6 +2861,14 @@ declare interface SelectProps {
|
|
|
2855
2861
|
* <Dropdown hideDetails />
|
|
2856
2862
|
*/
|
|
2857
2863
|
hideDetails?: boolean;
|
|
2864
|
+
/**
|
|
2865
|
+
* Autocomplete of the Dropdown
|
|
2866
|
+
* @type {'on' | 'off'}
|
|
2867
|
+
* @default 'off'
|
|
2868
|
+
* @example
|
|
2869
|
+
* <Dropdown autocomplete="on" />
|
|
2870
|
+
*/
|
|
2871
|
+
autocomplete?: 'on' | 'off';
|
|
2858
2872
|
}
|
|
2859
2873
|
|
|
2860
2874
|
declare type Tab = {
|