@amirjalili1374/ui-kit 1.10.1 → 1.10.2

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.
@@ -23,8 +23,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
23
23
  "onUpdate:textFieldHeight"?: (value: TextFieldHeight) => any;
24
24
  "onUpdate:textScale"?: (value: number) => any;
25
25
  }>, {
26
- textFieldBorderRadius: number;
27
26
  textFieldVariant: TextFieldVariant;
27
+ textFieldBorderRadius: number;
28
28
  textFieldHeight: TextFieldHeight;
29
29
  textScale: number;
30
30
  applyPreview: boolean;
@@ -1,5 +1,7 @@
1
1
  type OutputFormat = 'iso' | 'date-only';
2
2
  type PickerType = 'date' | 'datetime' | 'time' | 'year' | 'month';
3
+ type FieldVariant = 'outlined' | 'filled' | 'solo' | 'plain' | 'underlined';
4
+ type FieldDensity = 'compact' | 'default' | 'comfortable';
3
5
  interface Props {
4
6
  modelValue?: string | [string, string] | null;
5
7
  label?: string;
@@ -15,6 +17,10 @@ interface Props {
15
17
  format?: string;
16
18
  displayFormat?: string;
17
19
  disabledDates?: (date: string) => boolean;
20
+ /** Overrides the active Customizer field variant for this picker only. */
21
+ variant?: FieldVariant;
22
+ /** Overrides the active Customizer field density for this picker only. */
23
+ density?: FieldDensity;
18
24
  }
19
25
  declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
26
  "update:modelValue": (value: string | [string, string]) => any;