halov 0.25.810 → 0.25.817
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/DetailPage.vue.d.ts +1 -1
- package/dist/components/HaloForm.vue.d.ts +2 -0
- package/dist/components/PropertyGrid.vue.d.ts +27 -50
- package/dist/components/SelectIconBox.vue.d.ts +3 -0
- package/dist/components/TabMenu.vue.d.ts +7 -0
- package/dist/halov.es.js +13456 -4644
- package/dist/halov.umd.js +10 -6
- package/dist/index.d.ts +2 -1
- package/dist/plugins/Utility.d.ts +3 -0
- package/dist/types/HaloTypes.d.ts +15 -0
- package/package.json +1 -1
|
@@ -67,6 +67,7 @@ declare function addBatch(config: BatchAddConfig): void;
|
|
|
67
67
|
declare function saveData(args: SaveEventArgs): Promise<void>;
|
|
68
68
|
declare function insertRow(rowData: Record<string, unknown>): void;
|
|
69
69
|
declare function updateRow(rowData: Record<string, unknown>): void;
|
|
70
|
+
declare function buildExportArgs(format: string, range: string, exportOptions?: Record<string, any>): Record<string, any>;
|
|
70
71
|
declare function appendRows(rows: Array<any>, selectIt: boolean): void;
|
|
71
72
|
declare function __VLS_template(): {
|
|
72
73
|
attrs: Partial<{}>;
|
|
@@ -9540,6 +9541,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9540
9541
|
insertRow: typeof insertRow;
|
|
9541
9542
|
updateRow: typeof updateRow;
|
|
9542
9543
|
appendRows: typeof appendRows;
|
|
9544
|
+
buildExportArgs: typeof buildExportArgs;
|
|
9543
9545
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9544
9546
|
itemChange: (...args: any[]) => void;
|
|
9545
9547
|
columnButtonClick: (...args: any[]) => void;
|
|
@@ -1,53 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
18
|
-
columns: {
|
|
19
|
-
type: NumberConstructor;
|
|
20
|
-
default: number;
|
|
1
|
+
import { PropertyGridItem } from '../types/HaloTypes';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
columns?: number;
|
|
4
|
+
hideEmpty?: boolean;
|
|
5
|
+
data?: Record<string, any>;
|
|
6
|
+
names?: Array<string | PropertyGridItem>;
|
|
7
|
+
justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between' | 'space-evenly';
|
|
8
|
+
};
|
|
9
|
+
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
11
|
+
slots: {
|
|
12
|
+
default?(_: {
|
|
13
|
+
label: string;
|
|
14
|
+
value: string;
|
|
15
|
+
}): any;
|
|
21
16
|
};
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}>, {
|
|
27
|
-
properties: import('vue').Ref<{
|
|
28
|
-
label: string;
|
|
29
|
-
value: string;
|
|
30
|
-
span?: number | undefined;
|
|
31
|
-
dataType?: string | undefined;
|
|
32
|
-
role?: (string | Array<string>) | undefined;
|
|
33
|
-
}[], PropertyItem[] | {
|
|
34
|
-
label: string;
|
|
35
|
-
value: string;
|
|
36
|
-
span?: number | undefined;
|
|
37
|
-
dataType?: string | undefined;
|
|
38
|
-
role?: (string | Array<string>) | undefined;
|
|
39
|
-
}[]>;
|
|
40
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
41
|
-
columns: {
|
|
42
|
-
type: NumberConstructor;
|
|
43
|
-
default: number;
|
|
44
|
-
};
|
|
45
|
-
hideEmpty: BooleanConstructor;
|
|
46
|
-
data: ObjectConstructor;
|
|
47
|
-
names: PropType<Array<string | PropertyGridItem>>;
|
|
48
|
-
justify: PropType<"start" | "end" | "center" | "space-around" | "space-between" | "space-evenly">;
|
|
49
|
-
}>> & Readonly<{}>, {
|
|
17
|
+
refs: {};
|
|
18
|
+
rootEl: any;
|
|
19
|
+
};
|
|
20
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
50
22
|
columns: number;
|
|
51
|
-
|
|
52
|
-
|
|
23
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
53
25
|
export default _default;
|
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -130,6 +130,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
130
130
|
insertRow: (rowData: Record<string, unknown>) => void;
|
|
131
131
|
updateRow: (rowData: Record<string, unknown>) => void;
|
|
132
132
|
appendRows: (rows: Array<any>, selectIt: boolean) => void;
|
|
133
|
+
buildExportArgs: (format: string, range: string, exportOptions?: Record<string, any>) => Record<string, any>;
|
|
133
134
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
134
135
|
itemChange: (...args: any[]) => void;
|
|
135
136
|
columnButtonClick: (...args: any[]) => void;
|
|
@@ -9537,6 +9538,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
9537
9538
|
insertRow: (rowData: Record<string, unknown>) => void;
|
|
9538
9539
|
updateRow: (rowData: Record<string, unknown>) => void;
|
|
9539
9540
|
appendRows: (rows: Array<any>, selectIt: boolean) => void;
|
|
9541
|
+
buildExportArgs: (format: string, range: string, exportOptions?: Record<string, any>) => Record<string, any>;
|
|
9540
9542
|
}, {}, {}, {}, {
|
|
9541
9543
|
keys: string | Array<string>;
|
|
9542
9544
|
disabled: boolean;
|
|
@@ -9638,6 +9640,7 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
9638
9640
|
insertRow: (rowData: Record<string, unknown>) => void;
|
|
9639
9641
|
updateRow: (rowData: Record<string, unknown>) => void;
|
|
9640
9642
|
appendRows: (rows: Array<any>, selectIt: boolean) => void;
|
|
9643
|
+
buildExportArgs: (format: string, range: string, exportOptions?: Record<string, any>) => Record<string, any>;
|
|
9641
9644
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9642
9645
|
itemChange: (...args: any[]) => void;
|
|
9643
9646
|
columnButtonClick: (...args: any[]) => void;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
type?: 'bar' | 'line' | 'card' | 'segment';
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
type: "bar" | "line" | "card" | "segment";
|
|
6
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|