@up-packages/ui 0.16.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.
- package/dist/apexcharts.ssr.esm-fe46cd2d-B--fQ2HV.js +19677 -0
- package/dist/apexcharts.ssr.esm-fe46cd2d-B--fQ2HV.js.map +1 -0
- package/dist/components/UpxSelect/UpxSelect.vue.d.ts +5 -3
- package/dist/components/index.d.ts +1 -0
- package/dist/plugins/vuetify.d.ts +8 -7
- package/dist/up-ui.css +1 -5
- package/dist/uplexis-ui.js +40016 -12699
- package/dist/uplexis-ui.js.map +1 -1
- package/dist/uplexis-ui.umd.cjs +2051 -4
- package/dist/uplexis-ui.umd.cjs.map +1 -1
- package/package.json +3 -3
|
@@ -30,15 +30,16 @@ export interface UpxSelectProps {
|
|
|
30
30
|
customFilter?: (itemTitle: string, queryText: string, item: any) => boolean;
|
|
31
31
|
autoSelectFirst?: boolean | "exact";
|
|
32
32
|
hideDetails?: boolean | "auto";
|
|
33
|
+
size?: "default" | "micro";
|
|
33
34
|
}
|
|
34
35
|
declare var __VLS_13: {}, __VLS_15: {}, __VLS_17: {}, __VLS_19: {}, __VLS_21: {
|
|
35
|
-
item:
|
|
36
|
+
item: any;
|
|
36
37
|
index: number;
|
|
37
38
|
}, __VLS_23: {
|
|
38
|
-
item:
|
|
39
|
+
item: any;
|
|
39
40
|
props: Record<string, unknown>;
|
|
40
41
|
}, __VLS_25: {
|
|
41
|
-
item:
|
|
42
|
+
item: any;
|
|
42
43
|
props: Record<string, unknown>;
|
|
43
44
|
}, __VLS_27: {};
|
|
44
45
|
type __VLS_Slots = {} & {
|
|
@@ -75,6 +76,7 @@ declare const __VLS_component: import("vue").DefineComponent<UpxSelectProps, {},
|
|
|
75
76
|
variant: "outlined" | "filled" | "underlined" | "solo" | "solo-inverted" | "solo-filled" | "plain";
|
|
76
77
|
density: "default" | "comfortable" | "compact";
|
|
77
78
|
color: string;
|
|
79
|
+
size: "default" | "micro";
|
|
78
80
|
loading: boolean;
|
|
79
81
|
disabled: boolean;
|
|
80
82
|
readonly: boolean;
|
|
@@ -5,6 +5,7 @@ export { UpxSelect } from "./UpxSelect";
|
|
|
5
5
|
export { UpxRadio } from "./UpxRadio";
|
|
6
6
|
export { UpxSwitch } from "./UpxSwitch";
|
|
7
7
|
export { UpxCalendar } from "./UpxCalendar";
|
|
8
|
+
export { UpxChart } from "./UpxChart";
|
|
8
9
|
export { UpxDatePicker } from "./UpxDatePicker";
|
|
9
10
|
export { UpxToast } from "./UpxToast";
|
|
10
11
|
export { UpxNotification } from "./UpxNotification";
|
|
@@ -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
|
|
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
|
|
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?:
|
|
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
|
|
123
|
-
getWeekArray: (date: unknown, firstDayOfWeek?:
|
|
124
|
-
getWeekdays: (firstDayOfWeek?:
|
|
125
|
-
getWeek: (date: unknown, firstDayOfWeek?:
|
|
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;
|