@up-packages/ui 0.17.0-qa → 0.18.1-qa

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.
@@ -5,8 +5,8 @@ export interface UpxDataTableHeader {
5
5
  align?: 'start' | 'center' | 'end';
6
6
  sortable?: boolean;
7
7
  width?: string | number;
8
- minWidth?: string | number;
9
- maxWidth?: string | number;
8
+ minWidth?: string;
9
+ maxWidth?: string;
10
10
  }
11
11
  export interface UpxDataTableClasses {
12
12
  table?: string;
@@ -17,8 +17,8 @@ declare const __VLS_component: import("vue").DefineComponent<UpxDrawerProps, {},
17
17
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
18
18
  }>, {
19
19
  modelValue: boolean;
20
- width: number | string;
21
20
  location: UpxDrawerLocation;
21
+ width: number | string;
22
22
  persistent: boolean;
23
23
  scrim: boolean;
24
24
  temporary: boolean;
@@ -23,8 +23,8 @@ declare const __VLS_component: import("vue").DefineComponent<UpxPopoverProps, {}
23
23
  }>, {
24
24
  modelValue: boolean;
25
25
  location: UpxPopoverLocation;
26
- closeOnContentClick: boolean;
27
26
  openOnHover: boolean;
27
+ closeOnContentClick: boolean;
28
28
  offset: number | string;
29
29
  closeDelay: number;
30
30
  openDelay: number;
@@ -33,14 +33,14 @@ export interface UpxSelectProps {
33
33
  size?: "default" | "micro";
34
34
  }
35
35
  declare var __VLS_13: {}, __VLS_15: {}, __VLS_17: {}, __VLS_19: {}, __VLS_21: {
36
- item: import("vuetify/lib/composables/list-items.mjs").ListItem<any>;
37
- index: number;
36
+ item: any;
37
+ index: any;
38
38
  }, __VLS_23: {
39
- item: import("vuetify/lib/composables/list-items.mjs").ListItem<any>;
40
- props: Record<string, unknown>;
39
+ item: any;
40
+ props: any;
41
41
  }, __VLS_25: {
42
- item: import("vuetify/lib/composables/list-items.mjs").ListItem<any>;
43
- props: Record<string, unknown>;
42
+ item: any;
43
+ props: any;
44
44
  }, __VLS_27: {};
45
45
  type __VLS_Slots = {} & {
46
46
  prepend?: (props: typeof __VLS_13) => any;
@@ -41,17 +41,17 @@ type __VLS_Slots = {} & {
41
41
  'append-inner'?: (props: typeof __VLS_22) => any;
42
42
  };
43
43
  declare const __VLS_component: import("vue").DefineComponent<UpxTextFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
44
- enter: () => any;
45
44
  "update:modelValue": (value: string | number) => any;
46
45
  click: () => any;
47
46
  focus: (event: FocusEvent) => any;
48
47
  blur: (event: FocusEvent) => any;
48
+ enter: () => any;
49
49
  }, string, import("vue").PublicProps, Readonly<UpxTextFieldProps> & Readonly<{
50
- onEnter?: (() => any) | undefined;
51
50
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
52
51
  onClick?: (() => any) | undefined;
53
52
  onFocus?: ((event: FocusEvent) => any) | undefined;
54
53
  onBlur?: ((event: FocusEvent) => any) | undefined;
54
+ onEnter?: (() => any) | undefined;
55
55
  }>, {
56
56
  rounded: string | number | boolean;
57
57
  variant: "outlined" | "filled" | "underlined" | "solo" | "solo-inverted" | "solo-filled" | "plain";
@@ -28,8 +28,8 @@ declare const __VLS_component: import("vue").DefineComponent<UpxToastProps, {},
28
28
  modelValue: boolean;
29
29
  type: "success" | "info" | "warning" | "error" | "default";
30
30
  duration: number;
31
- maxWidth: string | number;
32
31
  position: "top" | "top-right" | "top-left" | "bottom" | "bottom-right" | "bottom-left";
32
+ maxWidth: string | number;
33
33
  closable: boolean;
34
34
  closeIcon: string;
35
35
  requireClose: boolean;
@@ -55,30 +55,24 @@ export declare const uplexisColors: {
55
55
  export declare const uplexisLight: ThemeDefinition;
56
56
  export declare const uplexisDark: ThemeDefinition;
57
57
  declare const vuetify: {
58
- install: (app: import("vue").App<any>) => void;
59
- unmount: () => void;
60
- defaults: import("vue").Ref<import("vuetify").DefaultsInstance, import("vuetify").DefaultsInstance>;
58
+ install: (app: import("vue").App) => void;
59
+ defaults: import("vue").Ref<import("vuetify").DefaultsInstance>;
61
60
  display: import("vuetify").DisplayInstance;
62
61
  theme: import("vuetify").ThemeInstance & {
63
62
  install: (app: import("vue").App<any>) => void;
64
63
  };
65
- icons: {
66
- defaultSet: string;
67
- aliases: Partial<import("vuetify").IconAliases>;
68
- sets: Record<string, import("vuetify").IconSet>;
69
- };
64
+ icons: Record<string, any>;
70
65
  locale: {
66
+ isRtl: import("vue").Ref<boolean>;
67
+ rtl: import("vue").Ref<Record<string, boolean>>;
68
+ rtlClasses: import("vue").Ref<string>;
71
69
  name: string;
72
- decimalSeparator: import("vue").ShallowRef<string>;
73
- messages: import("vue").Ref<import("vuetify").LocaleMessages, import("vuetify").LocaleMessages>;
74
- current: import("vue").Ref<string, string>;
75
- fallback: import("vue").Ref<string, string>;
70
+ messages: import("vue").Ref<import("vuetify").LocaleMessages>;
71
+ current: import("vue").Ref<string>;
72
+ fallback: import("vue").Ref<string>;
76
73
  t: (key: string, ...params: unknown[]) => string;
77
74
  n: (value: number) => string;
78
75
  provide: (props: import("vuetify").LocaleOptions) => import("vuetify").LocaleInstance;
79
- isRtl: import("vue").Ref<boolean, boolean>;
80
- rtl: import("vue").Ref<Record<string, boolean>, Record<string, boolean>>;
81
- rtlClasses: import("vue").Ref<string, string>;
82
76
  };
83
77
  date: {
84
78
  options: {
@@ -90,6 +84,7 @@ declare const vuetify: {
90
84
  locale: Record<string, any>;
91
85
  };
92
86
  instance: {
87
+ locale?: any;
93
88
  date: (value?: any) => unknown;
94
89
  format: (date: unknown, formatString: string) => string;
95
90
  toJsDate: (value: unknown) => Date;
@@ -97,17 +92,17 @@ declare const vuetify: {
97
92
  toISO: (date: unknown) => string;
98
93
  startOfDay: (date: unknown) => unknown;
99
94
  endOfDay: (date: unknown) => unknown;
100
- startOfWeek: (date: unknown, firstDayOfWeek?: string | number | undefined) => unknown;
95
+ startOfWeek: (date: unknown) => unknown;
101
96
  endOfWeek: (date: unknown) => unknown;
102
97
  startOfMonth: (date: unknown) => unknown;
103
98
  endOfMonth: (date: unknown) => unknown;
104
99
  startOfYear: (date: unknown) => unknown;
105
100
  endOfYear: (date: unknown) => unknown;
106
101
  isAfter: (date: unknown, comparing: unknown) => boolean;
107
- isAfterDay: (date: unknown, comparing: unknown) => boolean;
102
+ isAfterDay: (value: unknown, comparing: unknown) => boolean;
108
103
  isSameDay: (date: unknown, comparing: unknown) => boolean;
109
104
  isSameMonth: (date: unknown, comparing: unknown) => boolean;
110
- isSameYear: (date: unknown, comparing: unknown) => boolean;
105
+ isSameYear: (value: unknown, comparing: unknown) => boolean;
111
106
  isBefore: (date: unknown, comparing: unknown) => boolean;
112
107
  isEqual: (date: unknown, comparing: unknown) => boolean;
113
108
  isValid: (date: any) => boolean;
@@ -120,9 +115,8 @@ declare const vuetify: {
120
115
  getYear: (date: unknown) => number;
121
116
  setYear: (date: unknown, year: number) => unknown;
122
117
  getDiff: (date: unknown, comparing: unknown, unit?: string | undefined) => number;
123
- getWeekArray: (date: unknown, firstDayOfWeek?: string | number | undefined) => unknown[][];
124
- getWeekdays: (firstDayOfWeek?: string | number | undefined, weekdayFormat?: "long" | "narrow" | "short" | undefined) => string[];
125
- getWeek: (date: unknown, firstDayOfWeek?: string | number | undefined, firstDayOfYear?: string | number | undefined) => number;
118
+ getWeekArray: (date: unknown) => unknown[][];
119
+ getWeekdays: () => string[];
126
120
  getMonth: (date: unknown) => number;
127
121
  setMonth: (date: unknown, month: number) => unknown;
128
122
  getDate: (date: unknown) => number;
@@ -133,9 +127,11 @@ declare const vuetify: {
133
127
  setHours: (date: unknown, hours: number) => unknown;
134
128
  getMinutes: (date: unknown) => number;
135
129
  setMinutes: (date: unknown, minutes: number) => unknown;
136
- locale?: any;
137
130
  };
138
131
  };
139
- goTo: import("vuetify").GoToInstance;
132
+ goTo: {
133
+ rtl: import("vue").Ref<boolean>;
134
+ options: Record<string, any>;
135
+ };
140
136
  };
141
137
  export default vuetify;