@up-packages/ui 0.17.0-qa → 0.18.0-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.
@@ -33,13 +33,13 @@ 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>;
36
+ item: any;
37
37
  index: number;
38
38
  }, __VLS_23: {
39
- item: import("vuetify/lib/composables/list-items.mjs").ListItem<any>;
39
+ item: any;
40
40
  props: Record<string, unknown>;
41
41
  }, __VLS_25: {
42
- item: import("vuetify/lib/composables/list-items.mjs").ListItem<any>;
42
+ item: any;
43
43
  props: Record<string, unknown>;
44
44
  }, __VLS_27: {};
45
45
  type __VLS_Slots = {} & {
@@ -55,12 +55,12 @@ 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;
58
+ install: (app: import("vue").App) => void;
59
59
  unmount: () => void;
60
60
  defaults: import("vue").Ref<import("vuetify").DefaultsInstance, import("vuetify").DefaultsInstance>;
61
61
  display: import("vuetify").DisplayInstance;
62
62
  theme: import("vuetify").ThemeInstance & {
63
- install: (app: import("vue").App<any>) => void;
63
+ install: (app: import("vue").App) => void;
64
64
  };
65
65
  icons: {
66
66
  defaultSet: string;
@@ -70,6 +70,7 @@ declare const vuetify: {
70
70
  locale: {
71
71
  name: string;
72
72
  decimalSeparator: import("vue").ShallowRef<string>;
73
+ numericGroupSeparator: import("vue").ShallowRef<string>;
73
74
  messages: import("vue").Ref<import("vuetify").LocaleMessages, import("vuetify").LocaleMessages>;
74
75
  current: import("vue").Ref<string, string>;
75
76
  fallback: import("vue").Ref<string, string>;
@@ -97,7 +98,7 @@ declare const vuetify: {
97
98
  toISO: (date: unknown) => string;
98
99
  startOfDay: (date: unknown) => unknown;
99
100
  endOfDay: (date: unknown) => unknown;
100
- startOfWeek: (date: unknown, firstDayOfWeek?: string | number | undefined) => unknown;
101
+ startOfWeek: (date: unknown, firstDayOfWeek?: number | string) => unknown;
101
102
  endOfWeek: (date: unknown) => unknown;
102
103
  startOfMonth: (date: unknown) => unknown;
103
104
  endOfMonth: (date: unknown) => unknown;
@@ -119,10 +120,10 @@ declare const vuetify: {
119
120
  addMonths: (date: unknown, amount: number) => unknown;
120
121
  getYear: (date: unknown) => number;
121
122
  setYear: (date: unknown, year: number) => unknown;
122
- 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;
123
+ getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
124
+ getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][];
125
+ getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: "long" | "short" | "narrow") => string[];
126
+ getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
126
127
  getMonth: (date: unknown) => number;
127
128
  setMonth: (date: unknown, month: number) => unknown;
128
129
  getDate: (date: unknown) => number;