cosey 0.4.11 → 0.4.12

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.
@@ -40,6 +40,10 @@ export declare const formDialogProps: {
40
40
  type: BooleanConstructor;
41
41
  default: boolean;
42
42
  };
43
+ closeOnPressEscape: {
44
+ type: BooleanConstructor;
45
+ default: boolean;
46
+ };
43
47
  confirmText: {
44
48
  type: StringConstructor;
45
49
  default: string;
@@ -76,14 +80,6 @@ export declare const formDialogProps: {
76
80
  __epPropKey: true;
77
81
  };
78
82
  destroyOnClose: BooleanConstructor;
79
- closeOnPressEscape: {
80
- readonly type: PropType<boolean>;
81
- readonly required: false;
82
- readonly validator: ((val: unknown) => boolean) | undefined;
83
- __epPropKey: true;
84
- } & {
85
- readonly default: true;
86
- };
87
83
  lockScroll: {
88
84
  readonly type: PropType<boolean>;
89
85
  readonly required: false;
@@ -38,6 +38,10 @@ const formDialogProps = {
38
38
  closeOnClickModal: {
39
39
  type: Boolean,
40
40
  default: false
41
+ },
42
+ closeOnPressEscape: {
43
+ type: Boolean,
44
+ default: false
41
45
  }
42
46
  };
43
47
  const elFormDialogExposeKeys = ["resetPosition", "handleClose"];
@@ -27,6 +27,10 @@ export declare const tableExportProps: {
27
27
  type: BooleanConstructor;
28
28
  default: boolean;
29
29
  };
30
+ closeOnPressEscape: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
30
34
  confirmText: {
31
35
  type: StringConstructor;
32
36
  default: string;
@@ -63,14 +67,6 @@ export declare const tableExportProps: {
63
67
  __epPropKey: true;
64
68
  };
65
69
  destroyOnClose: BooleanConstructor;
66
- closeOnPressEscape: {
67
- readonly type: PropType<boolean>;
68
- readonly required: false;
69
- readonly validator: ((val: unknown) => boolean) | undefined;
70
- __epPropKey: true;
71
- } & {
72
- readonly default: true;
73
- };
74
70
  lockScroll: {
75
71
  readonly type: PropType<boolean>;
76
72
  readonly required: false;
@@ -25,6 +25,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
25
25
  type: BooleanConstructor;
26
26
  default: boolean;
27
27
  };
28
+ closeOnPressEscape: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
28
32
  confirmText: {
29
33
  type: StringConstructor;
30
34
  default: string;
@@ -61,14 +65,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
61
65
  __epPropKey: true;
62
66
  };
63
67
  destroyOnClose: BooleanConstructor;
64
- closeOnPressEscape: {
65
- readonly type: import("vue").PropType<boolean>;
66
- readonly required: false;
67
- readonly validator: ((val: unknown) => boolean) | undefined;
68
- __epPropKey: true;
69
- } & {
70
- readonly default: true;
71
- };
72
68
  lockScroll: {
73
69
  readonly type: import("vue").PropType<boolean>;
74
70
  readonly required: false;
@@ -196,6 +192,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
196
192
  type: BooleanConstructor;
197
193
  default: boolean;
198
194
  };
195
+ closeOnPressEscape: {
196
+ type: BooleanConstructor;
197
+ default: boolean;
198
+ };
199
199
  confirmText: {
200
200
  type: StringConstructor;
201
201
  default: string;
@@ -232,14 +232,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
232
232
  __epPropKey: true;
233
233
  };
234
234
  destroyOnClose: BooleanConstructor;
235
- closeOnPressEscape: {
236
- readonly type: import("vue").PropType<boolean>;
237
- readonly required: false;
238
- readonly validator: ((val: unknown) => boolean) | undefined;
239
- __epPropKey: true;
240
- } & {
241
- readonly default: true;
242
- };
243
235
  lockScroll: {
244
236
  readonly type: import("vue").PropType<boolean>;
245
237
  readonly required: false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cosey",
3
- "version": "0.4.11",
3
+ "version": "0.4.12",
4
4
  "description": "基于 Vue3 + vite 的后台管理系统框架",
5
5
  "type": "module",
6
6
  "main": "index.js",