halov 0.25.1028 → 0.25.1122
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/README.md +8 -8
- package/dist/components/EmptyDetailView.vue.d.ts +7 -0
- package/dist/components/HaloForm.vue.d.ts +2 -2
- package/dist/components/SelectIconBox.vue.d.ts +6 -6
- package/dist/halov.es.js +30360 -4812
- package/dist/halov.umd.cjs +16 -4
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# halov library document
|
|
2
|
-
|
|
3
|
-
## Prerequisites
|
|
4
|
-
|
|
5
|
-
- Install `naive-ui`:
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install naive-ui
|
|
1
|
+
# halov library document
|
|
2
|
+
|
|
3
|
+
## Prerequisites
|
|
4
|
+
|
|
5
|
+
- Install `naive-ui`:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install naive-ui
|
|
9
9
|
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
message?: string;
|
|
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
|
+
message: string;
|
|
6
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
7
|
+
export default _default;
|
|
@@ -52,8 +52,8 @@ type __VLS_Props = {
|
|
|
52
52
|
extendedMenus?: Array<string | ExtendedAction>;
|
|
53
53
|
additionKeys?: Record<string, unknown>;
|
|
54
54
|
searchGroupOptions?: Array<string | SelectOption>;
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
defaultSortBy?: string;
|
|
56
|
+
defaultSortDirection?: 'Asc' | 'Desc';
|
|
57
57
|
};
|
|
58
58
|
declare function reloadPage(pageIndex?: number): void;
|
|
59
59
|
declare function doQuickSearch(_?: string): void;
|
|
@@ -100,8 +100,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
100
100
|
extendedMenus?: Array<string | import('..').ExtendedAction>;
|
|
101
101
|
additionKeys?: Record<string, unknown>;
|
|
102
102
|
searchGroupOptions?: Array<string | import('..').SelectOption>;
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
defaultSortBy?: string;
|
|
104
|
+
defaultSortDirection?: "Asc" | "Desc";
|
|
105
105
|
}> & Readonly<{
|
|
106
106
|
onItemChange?: ((...args: any[]) => any) | undefined;
|
|
107
107
|
onColumnButtonClick?: ((...args: any[]) => any) | undefined;
|
|
@@ -9510,8 +9510,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
9510
9510
|
extendedMenus?: Array<string | import('..').ExtendedAction>;
|
|
9511
9511
|
additionKeys?: Record<string, unknown>;
|
|
9512
9512
|
searchGroupOptions?: Array<string | import('..').SelectOption>;
|
|
9513
|
-
|
|
9514
|
-
|
|
9513
|
+
defaultSortBy?: string;
|
|
9514
|
+
defaultSortDirection?: "Asc" | "Desc";
|
|
9515
9515
|
}> & Readonly<{
|
|
9516
9516
|
onItemChange?: ((...args: any[]) => any) | undefined;
|
|
9517
9517
|
onColumnButtonClick?: ((...args: any[]) => any) | undefined;
|
|
@@ -9614,8 +9614,8 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
9614
9614
|
extendedMenus?: Array<string | import('..').ExtendedAction>;
|
|
9615
9615
|
additionKeys?: Record<string, unknown>;
|
|
9616
9616
|
searchGroupOptions?: Array<string | import('..').SelectOption>;
|
|
9617
|
-
|
|
9618
|
-
|
|
9617
|
+
defaultSortBy?: string;
|
|
9618
|
+
defaultSortDirection?: "Asc" | "Desc";
|
|
9619
9619
|
}> & Readonly<{
|
|
9620
9620
|
onItemChange?: ((...args: any[]) => any) | undefined;
|
|
9621
9621
|
onColumnButtonClick?: ((...args: any[]) => any) | undefined;
|