@rocketui/vue 0.1.0 → 0.1.1

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.
@@ -2109,8 +2109,8 @@ export declare const RCheckbox: DefineComponent<__VLS_WithDefaults_5<__VLS_TypeP
2109
2109
  id: string | undefined;
2110
2110
  modelValue: any[] | Set<any> | (boolean | "true" | "false");
2111
2111
  errorMsg: string;
2112
- indeterminate: boolean;
2113
2112
  hint: string;
2113
+ indeterminate: boolean;
2114
2114
  }, {}>;
2115
2115
 
2116
2116
  export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_7<Props_4>, {
@@ -2624,8 +2624,8 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
2624
2624
  modelValue: any;
2625
2625
  placeholder: string;
2626
2626
  errorMsg: string;
2627
- hideDetails: boolean;
2628
2627
  hint: string;
2628
+ hideDetails: boolean;
2629
2629
  clearable: boolean;
2630
2630
  }, {}>, {
2631
2631
  prepend?(_: {}): any;
@@ -2846,6 +2846,14 @@ declare interface SelectProps {
2846
2846
  * <Dropdown errorMsg="Error message" />
2847
2847
  */
2848
2848
  errorMsg?: string;
2849
+ /**
2850
+ * Hint message for the Dropdown
2851
+ * @type {string}
2852
+ * @default ''
2853
+ * @example
2854
+ * <Dropdown hint="Hint message" />
2855
+ */
2856
+ hint?: string;
2849
2857
  /**
2850
2858
  * Hide the hint and error message
2851
2859
  * @type {boolean}