@up-packages/ui 0.18.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.
- package/dist/components/UpxDataTable/types.d.ts +2 -2
- package/dist/components/UpxDrawer/UpxDrawer.vue.d.ts +1 -1
- package/dist/components/UpxPopover/UpxPopover.vue.d.ts +1 -1
- package/dist/components/UpxSelect/UpxSelect.vue.d.ts +3 -3
- package/dist/components/UpxTextField/UpxTextField.vue.d.ts +2 -2
- package/dist/components/UpxToast/UpxToast.vue.d.ts +1 -1
- package/dist/plugins/vuetify.d.ts +20 -25
- package/dist/up-ui.css +5 -1
- package/dist/uplexis-ui.js +15646 -17817
- package/dist/uplexis-ui.js.map +1 -1
- package/dist/uplexis-ui.umd.cjs +83 -85
- package/dist/uplexis-ui.umd.cjs.map +1 -1
- package/package.json +3 -3
- package/dist/components/UpxDataTable/UpxDataTable.vue.d.ts +0 -54
|
@@ -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
|
|
9
|
-
maxWidth?: string
|
|
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;
|
|
@@ -34,13 +34,13 @@ export interface UpxSelectProps {
|
|
|
34
34
|
}
|
|
35
35
|
declare var __VLS_13: {}, __VLS_15: {}, __VLS_17: {}, __VLS_19: {}, __VLS_21: {
|
|
36
36
|
item: any;
|
|
37
|
-
index:
|
|
37
|
+
index: any;
|
|
38
38
|
}, __VLS_23: {
|
|
39
39
|
item: any;
|
|
40
|
-
props:
|
|
40
|
+
props: any;
|
|
41
41
|
}, __VLS_25: {
|
|
42
42
|
item: any;
|
|
43
|
-
props:
|
|
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;
|
|
@@ -56,30 +56,23 @@ export declare const uplexisLight: ThemeDefinition;
|
|
|
56
56
|
export declare const uplexisDark: ThemeDefinition;
|
|
57
57
|
declare const vuetify: {
|
|
58
58
|
install: (app: import("vue").App) => void;
|
|
59
|
-
|
|
60
|
-
defaults: import("vue").Ref<import("vuetify").DefaultsInstance, import("vuetify").DefaultsInstance>;
|
|
59
|
+
defaults: import("vue").Ref<import("vuetify").DefaultsInstance>;
|
|
61
60
|
display: import("vuetify").DisplayInstance;
|
|
62
61
|
theme: import("vuetify").ThemeInstance & {
|
|
63
|
-
install: (app: import("vue").App) => void;
|
|
64
|
-
};
|
|
65
|
-
icons: {
|
|
66
|
-
defaultSet: string;
|
|
67
|
-
aliases: Partial<import("vuetify").IconAliases>;
|
|
68
|
-
sets: Record<string, import("vuetify").IconSet>;
|
|
62
|
+
install: (app: import("vue").App<any>) => void;
|
|
69
63
|
};
|
|
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
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
current: import("vue").Ref<string, string>;
|
|
76
|
-
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>;
|
|
77
73
|
t: (key: string, ...params: unknown[]) => string;
|
|
78
74
|
n: (value: number) => string;
|
|
79
75
|
provide: (props: import("vuetify").LocaleOptions) => import("vuetify").LocaleInstance;
|
|
80
|
-
isRtl: import("vue").Ref<boolean, boolean>;
|
|
81
|
-
rtl: import("vue").Ref<Record<string, boolean>, Record<string, boolean>>;
|
|
82
|
-
rtlClasses: import("vue").Ref<string, string>;
|
|
83
76
|
};
|
|
84
77
|
date: {
|
|
85
78
|
options: {
|
|
@@ -91,6 +84,7 @@ declare const vuetify: {
|
|
|
91
84
|
locale: Record<string, any>;
|
|
92
85
|
};
|
|
93
86
|
instance: {
|
|
87
|
+
locale?: any;
|
|
94
88
|
date: (value?: any) => unknown;
|
|
95
89
|
format: (date: unknown, formatString: string) => string;
|
|
96
90
|
toJsDate: (value: unknown) => Date;
|
|
@@ -98,17 +92,17 @@ declare const vuetify: {
|
|
|
98
92
|
toISO: (date: unknown) => string;
|
|
99
93
|
startOfDay: (date: unknown) => unknown;
|
|
100
94
|
endOfDay: (date: unknown) => unknown;
|
|
101
|
-
startOfWeek: (date: unknown
|
|
95
|
+
startOfWeek: (date: unknown) => unknown;
|
|
102
96
|
endOfWeek: (date: unknown) => unknown;
|
|
103
97
|
startOfMonth: (date: unknown) => unknown;
|
|
104
98
|
endOfMonth: (date: unknown) => unknown;
|
|
105
99
|
startOfYear: (date: unknown) => unknown;
|
|
106
100
|
endOfYear: (date: unknown) => unknown;
|
|
107
101
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
108
|
-
isAfterDay: (
|
|
102
|
+
isAfterDay: (value: unknown, comparing: unknown) => boolean;
|
|
109
103
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
110
104
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
111
|
-
isSameYear: (
|
|
105
|
+
isSameYear: (value: unknown, comparing: unknown) => boolean;
|
|
112
106
|
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
113
107
|
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
114
108
|
isValid: (date: any) => boolean;
|
|
@@ -120,10 +114,9 @@ declare const vuetify: {
|
|
|
120
114
|
addMonths: (date: unknown, amount: number) => unknown;
|
|
121
115
|
getYear: (date: unknown) => number;
|
|
122
116
|
setYear: (date: unknown, year: number) => unknown;
|
|
123
|
-
getDiff: (date: unknown, comparing: unknown, unit?: string) => number;
|
|
124
|
-
getWeekArray: (date: unknown
|
|
125
|
-
getWeekdays: (
|
|
126
|
-
getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number;
|
|
117
|
+
getDiff: (date: unknown, comparing: unknown, unit?: string | undefined) => number;
|
|
118
|
+
getWeekArray: (date: unknown) => unknown[][];
|
|
119
|
+
getWeekdays: () => string[];
|
|
127
120
|
getMonth: (date: unknown) => number;
|
|
128
121
|
setMonth: (date: unknown, month: number) => unknown;
|
|
129
122
|
getDate: (date: unknown) => number;
|
|
@@ -134,9 +127,11 @@ declare const vuetify: {
|
|
|
134
127
|
setHours: (date: unknown, hours: number) => unknown;
|
|
135
128
|
getMinutes: (date: unknown) => number;
|
|
136
129
|
setMinutes: (date: unknown, minutes: number) => unknown;
|
|
137
|
-
locale?: any;
|
|
138
130
|
};
|
|
139
131
|
};
|
|
140
|
-
goTo:
|
|
132
|
+
goTo: {
|
|
133
|
+
rtl: import("vue").Ref<boolean>;
|
|
134
|
+
options: Record<string, any>;
|
|
135
|
+
};
|
|
141
136
|
};
|
|
142
137
|
export default vuetify;
|