@deskhero/dh_ui 2.21.0 → 2.22.0
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/DropdownMenu.vue.d.ts +1 -1
- package/dist/components/FileUpload.vue.d.ts +1 -1
- package/dist/components/InputDropdown.vue.d.ts +1 -1
- package/dist/components/InputGroup.vue.d.ts +1 -1
- package/dist/components/InputList.vue.d.ts +2 -2
- package/dist/components/LineChart.vue.d.ts +9 -0
- package/dist/components/Modal.vue.d.ts +1 -1
- package/dist/components/Notification.vue.d.ts +2 -2
- package/dist/components/NumberRange.vue.d.ts +8 -8
- package/dist/components/TextEditor.vue.d.ts +1 -1
- package/dist/dh_ui.es.js +10966 -10305
- package/dist/dh_ui.umd.js +89 -89
- package/dist/index.d.ts +2 -1
- package/dist/style.css +2 -2
- package/package.json +2 -2
|
@@ -98,11 +98,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
98
98
|
}, {
|
|
99
99
|
width: string;
|
|
100
100
|
maxWidth: string;
|
|
101
|
-
minWidth: string;
|
|
102
101
|
zIndex: number;
|
|
103
102
|
textEllipsisStyle: string;
|
|
104
103
|
iconSize: number;
|
|
105
104
|
closeOnClickOutside: boolean;
|
|
106
105
|
closeOnItemSelected: boolean;
|
|
106
|
+
minWidth: string;
|
|
107
107
|
}, {}>;
|
|
108
108
|
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$props: {
|
|
3
|
-
readonly zIndex?: number | undefined;
|
|
4
3
|
readonly inline?: boolean | undefined;
|
|
5
4
|
readonly large?: boolean | undefined;
|
|
5
|
+
readonly zIndex?: number | undefined;
|
|
6
6
|
readonly fileList?: unknown[] | undefined;
|
|
7
7
|
readonly fileFormats?: unknown[] | undefined;
|
|
8
8
|
readonly uploadProgress?: unknown[] | undefined;
|
|
@@ -11,6 +11,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
11
11
|
readonly selectedOption?: Record<string, any> | undefined;
|
|
12
12
|
readonly isClearable?: boolean | undefined;
|
|
13
13
|
};
|
|
14
|
-
$emit: (event: "
|
|
14
|
+
$emit: (event: "update" | "clear", ...args: any[]) => void;
|
|
15
15
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
16
16
|
export default _default;
|
|
@@ -2,12 +2,12 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
2
2
|
$props: {
|
|
3
3
|
readonly iconName?: string | undefined;
|
|
4
4
|
readonly placeholder?: string | undefined;
|
|
5
|
-
readonly direction?: string | undefined;
|
|
6
5
|
readonly modelValue?: string | number | undefined;
|
|
7
6
|
readonly inputType?: string | undefined;
|
|
8
7
|
readonly sideContent?: string | undefined;
|
|
9
8
|
readonly widthProp?: string | undefined;
|
|
10
9
|
readonly heightProp?: string | undefined;
|
|
10
|
+
readonly direction?: string | undefined;
|
|
11
11
|
readonly e2e?: string | undefined;
|
|
12
12
|
};
|
|
13
13
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
@@ -2,15 +2,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
2
2
|
$props: {
|
|
3
3
|
readonly placeholder?: string | undefined;
|
|
4
4
|
readonly list?: unknown[] | undefined;
|
|
5
|
-
readonly maxHeight?: string | undefined;
|
|
6
5
|
readonly layout?: string | undefined;
|
|
7
6
|
readonly modelValue?: Record<string, any> | unknown[] | undefined;
|
|
7
|
+
readonly maxHeight?: string | undefined;
|
|
8
8
|
readonly labelProp?: string | undefined;
|
|
9
9
|
readonly valueProp?: string | undefined;
|
|
10
10
|
readonly canClear?: boolean | undefined;
|
|
11
11
|
readonly showAvatar?: boolean | undefined;
|
|
12
12
|
};
|
|
13
|
-
$emit: (event: "select" | "
|
|
13
|
+
$emit: (event: "select" | "update" | "clear" | "deselect", ...args: any[]) => void;
|
|
14
14
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
15
15
|
default?(_: {}): any;
|
|
16
16
|
}>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
$props: {
|
|
3
|
+
readonly title?: string | undefined;
|
|
4
|
+
readonly height?: number | undefined;
|
|
5
|
+
readonly width?: number | undefined;
|
|
6
|
+
readonly dataSets?: Record<string, any> | undefined;
|
|
7
|
+
};
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
9
|
+
export default _default;
|
|
@@ -102,7 +102,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
102
102
|
}>> & {
|
|
103
103
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
104
104
|
}, {
|
|
105
|
-
minHeight: string;
|
|
106
105
|
hasCloseButton: boolean;
|
|
107
106
|
hasSideBar: boolean;
|
|
108
107
|
hasSideBarButtonBottom: boolean;
|
|
@@ -114,5 +113,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
114
113
|
hasCloseConfirmation: boolean;
|
|
115
114
|
bodyClass: "" | "content-horizontally-centered";
|
|
116
115
|
fitContent: boolean;
|
|
116
|
+
minHeight: string;
|
|
117
117
|
}, {}>;
|
|
118
118
|
export default _default;
|
|
@@ -131,8 +131,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
131
131
|
onAction?: ((...args: any[]) => any) | undefined;
|
|
132
132
|
}, {
|
|
133
133
|
title: string;
|
|
134
|
-
|
|
134
|
+
show: boolean;
|
|
135
135
|
icon: string;
|
|
136
|
+
zIndex: number;
|
|
136
137
|
notificationType: string;
|
|
137
138
|
message: string;
|
|
138
139
|
dismissible: boolean;
|
|
@@ -140,7 +141,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
140
141
|
buttonActionE2e: string;
|
|
141
142
|
buttonDismiss: string;
|
|
142
143
|
buttonDismissE2e: string;
|
|
143
|
-
show: boolean;
|
|
144
144
|
animationEnter: string;
|
|
145
145
|
animationUp: string;
|
|
146
146
|
animationSpeed: string;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import "../../node_modules/multi-range-slider-vue/MultiRangeSliderBarOnly.css";
|
|
2
2
|
import { type PropType } from "vue";
|
|
3
|
-
import type { AnyObject } from "chart.js/types/basic";
|
|
4
3
|
declare const _default: import("vue").DefineComponent<{
|
|
5
4
|
numberRange: {
|
|
6
|
-
type: PropType<
|
|
5
|
+
type: PropType<any[]>;
|
|
7
6
|
default: () => {
|
|
8
7
|
key: number;
|
|
9
8
|
count: number;
|
|
@@ -92,12 +91,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
92
91
|
inactiveColor: string;
|
|
93
92
|
}, {
|
|
94
93
|
getRangeLength(): number;
|
|
95
|
-
getFirstKey():
|
|
96
|
-
getLastKey():
|
|
97
|
-
getMinKey():
|
|
94
|
+
getFirstKey(): any;
|
|
95
|
+
getLastKey(): any;
|
|
96
|
+
getMinKey(): any;
|
|
98
97
|
getMinCaption(): string;
|
|
99
98
|
getMaxCaption(): string;
|
|
100
|
-
getMaxKey():
|
|
99
|
+
getMaxKey(): any;
|
|
101
100
|
getLastIndex(): number;
|
|
102
101
|
}, {
|
|
103
102
|
updateRange(): void;
|
|
@@ -111,9 +110,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
111
110
|
key: number;
|
|
112
111
|
count: number;
|
|
113
112
|
}[]): void;
|
|
113
|
+
triggerChartDataUpdate(): void;
|
|
114
114
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update" | "update:model-value")[], "update" | "update:model-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
115
115
|
numberRange: {
|
|
116
|
-
type: PropType<
|
|
116
|
+
type: PropType<any[]>;
|
|
117
117
|
default: () => {
|
|
118
118
|
key: number;
|
|
119
119
|
count: number;
|
|
@@ -163,8 +163,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
163
163
|
height: number;
|
|
164
164
|
width: number;
|
|
165
165
|
datasetIdKey: string;
|
|
166
|
+
numberRange: any[];
|
|
166
167
|
chartId: string;
|
|
167
|
-
numberRange: AnyObject[];
|
|
168
168
|
includeForm: boolean;
|
|
169
169
|
isMatch: boolean;
|
|
170
170
|
isExclude: boolean;
|
|
@@ -8,9 +8,9 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
8
8
|
$props: {
|
|
9
9
|
readonly data?: string | Record<string, any> | undefined;
|
|
10
10
|
readonly placeholder?: string | undefined;
|
|
11
|
-
readonly minHeight?: number | undefined;
|
|
12
11
|
readonly focus?: boolean | undefined;
|
|
13
12
|
readonly readOnly?: boolean | undefined;
|
|
13
|
+
readonly minHeight?: number | undefined;
|
|
14
14
|
readonly featureSet?: string | undefined;
|
|
15
15
|
readonly firstBlock?: boolean | undefined;
|
|
16
16
|
readonly firstBlockText?: string | undefined;
|