halov 0.25.822 → 0.25.909

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.
@@ -112,6 +112,7 @@ declare function __VLS_template(): {
112
112
  }[];
113
113
  loading: boolean;
114
114
  }): any;
115
+ default?(_: {}): any;
115
116
  bottom?(_: {
116
117
  formItems: {
117
118
  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
+ };
@@ -9710,6 +9710,7 @@ declare const _default: import('vue').DefineComponent<{}, {
9710
9710
  }[];
9711
9711
  loading: boolean;
9712
9712
  }): any;
9713
+ default?(_: {}): any;
9713
9714
  bottom?(_: {
9714
9715
  formItems: {
9715
9716
  name: string;