@hotelinking/ui 8.40.5 → 8.40.6
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/types/components/Atoms/uiTag/uiTag.vue.d.ts +3 -0
- package/dist/types/types/index.d.ts +10 -1
- package/dist/ui.cjs +12 -12
- package/dist/ui.es.js +2076 -1965
- package/package.json +1 -1
|
@@ -5,14 +5,17 @@ declare function __VLS_template(): {
|
|
|
5
5
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<UiTagInterface>, {
|
|
6
6
|
color: string;
|
|
7
7
|
loading: boolean;
|
|
8
|
+
size: string;
|
|
8
9
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
10
|
tagEvent: (T: string) => void;
|
|
10
11
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<UiTagInterface>, {
|
|
11
12
|
color: string;
|
|
12
13
|
loading: boolean;
|
|
14
|
+
size: string;
|
|
13
15
|
}>>> & {
|
|
14
16
|
onTagEvent?: ((T: string) => any) | undefined;
|
|
15
17
|
}, {
|
|
18
|
+
size: "small" | "medium" | "big";
|
|
16
19
|
color: "primary" | "secondary" | "light" | "green" | "yellow" | "red" | "black" | "gray" | "white";
|
|
17
20
|
loading: boolean;
|
|
18
21
|
}, {}>;
|
|
@@ -99,6 +99,7 @@ export interface UiSelectInterface {
|
|
|
99
99
|
export interface UiTagInterface {
|
|
100
100
|
color?: AllColors;
|
|
101
101
|
loading?: boolean;
|
|
102
|
+
size?: Sizes;
|
|
102
103
|
event?: string;
|
|
103
104
|
name?: string;
|
|
104
105
|
text?: string;
|
|
@@ -215,7 +216,7 @@ export type chartOptionsType = {
|
|
|
215
216
|
stacked?: boolean;
|
|
216
217
|
type?: "area" | "line" | "bar" | "scatter";
|
|
217
218
|
};
|
|
218
|
-
colors:
|
|
219
|
+
colors: any;
|
|
219
220
|
stroke?: {
|
|
220
221
|
show: boolean;
|
|
221
222
|
curve: string;
|
|
@@ -265,8 +266,15 @@ export type chartOptionsType = {
|
|
|
265
266
|
};
|
|
266
267
|
export interface UiChartInterface {
|
|
267
268
|
title: string;
|
|
269
|
+
isNps?: boolean;
|
|
270
|
+
npsLiterals?: {
|
|
271
|
+
unhappy: string;
|
|
272
|
+
neutral: string;
|
|
273
|
+
happy: string;
|
|
274
|
+
};
|
|
268
275
|
id: string;
|
|
269
276
|
type?: "area" | "line" | "bar" | "scatter";
|
|
277
|
+
colors: any;
|
|
270
278
|
series: {
|
|
271
279
|
name: string;
|
|
272
280
|
type?: "area" | "line" | "bar" | "scatter";
|
|
@@ -275,6 +283,7 @@ export interface UiChartInterface {
|
|
|
275
283
|
options?: {
|
|
276
284
|
xaxis: {
|
|
277
285
|
type: string;
|
|
286
|
+
max?: number;
|
|
278
287
|
categories: string[];
|
|
279
288
|
};
|
|
280
289
|
};
|