halov 0.25.821 → 0.25.903

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 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
 
@@ -79,6 +79,7 @@ declare function __VLS_template(): {
79
79
  neck?(_: {}): any;
80
80
  'search-tools'?(_: {}): any;
81
81
  grid?(_: {
82
+ style: {};
82
83
  data: any[];
83
84
  columns: {
84
85
  name: string;
@@ -1,47 +1,35 @@
1
- import { PropType } from 'vue';
2
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
- show: BooleanConstructor;
4
- title: {
5
- type: StringConstructor;
6
- default: string;
7
- };
8
- name: StringConstructor;
9
- action: StringConstructor;
10
- additionParams: PropType<Record<string, any>>;
11
- width: {
12
- type: StringConstructor;
13
- default: string;
14
- };
15
- }>, {
16
- t: (key: string) => string;
17
- print: () => void;
18
- copies: import('vue').Ref<number, number>;
19
- collateOptions: {
20
- label: string;
21
- value: string;
22
- }[];
23
- collate: import('vue').Ref<"Collated" | "Uncollated", "Collated" | "Uncollated">;
24
- printing: import('vue').Ref<boolean, boolean>;
25
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:show"[], "update:show", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
26
- show: BooleanConstructor;
27
- title: {
28
- type: StringConstructor;
29
- default: string;
30
- };
31
- name: StringConstructor;
32
- action: StringConstructor;
33
- additionParams: PropType<Record<string, any>>;
34
- width: {
35
- type: StringConstructor;
36
- default: string;
1
+ import { Func1, PrintModalArgs } from '../types/HaloTypes';
2
+ type __VLS_Props = {
3
+ show: boolean;
4
+ title?: string;
5
+ name?: string;
6
+ action?: string;
7
+ additionParams?: Record<string, any>;
8
+ width?: string;
9
+ disabled?: boolean;
10
+ beforePrint?: Func1<PrintModalArgs, boolean | undefined>;
11
+ };
12
+ declare function __VLS_template(): {
13
+ attrs: Partial<{}>;
14
+ slots: {
15
+ default?(_: {}): any;
37
16
  };
38
- }>> & 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, {
22
+ "update:show": (...args: any[]) => void;
23
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
39
24
  "onUpdate:show"?: ((...args: any[]) => any) | undefined;
40
25
  }>, {
41
26
  title: string;
42
27
  width: string;
43
- show: boolean;
44
- }, {}, {
45
- PrintIcon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
46
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
28
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
47
30
  export default _default;
31
+ type __VLS_WithTemplateSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };
@@ -9677,6 +9677,7 @@ declare const _default: import('vue').DefineComponent<{}, {
9677
9677
  neck?(_: {}): any;
9678
9678
  'search-tools'?(_: {}): any;
9679
9679
  grid?(_: {
9680
+ style: {};
9680
9681
  data: any[];
9681
9682
  columns: {
9682
9683
  name: string;