@zyui/components 1.0.45 → 1.0.47

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.
@@ -37,6 +37,11 @@ export declare const processTableLayout: (doc: Document) => void;
37
37
  * @param doc
38
38
  */
39
39
  export declare const processTdWidth: (doc: Document) => void;
40
+ /**
41
+ * 去除p标签上的负边距(如 margin-left:-40px 等)
42
+ * @param doc
43
+ */
44
+ export declare const processRemoveNegativeMargin: (doc: Document) => void;
40
45
  /**
41
46
  * 处理table的边框
42
47
  * @param doc
@@ -1,3 +1,5 @@
1
+ import { ModelValue } from '../type';
2
+
1
3
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
4
  displayType: {
3
5
  type: StringConstructor;
@@ -11,7 +13,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
11
13
  type: ObjectConstructor;
12
14
  default: () => {};
13
15
  };
14
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
16
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
+ "update:value": (value: ModelValue) => void;
18
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
15
19
  displayType: {
16
20
  type: StringConstructor;
17
21
  default: string;
@@ -24,7 +28,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
24
28
  type: ObjectConstructor;
25
29
  default: () => {};
26
30
  };
27
- }>> & Readonly<{}>, {
31
+ }>> & Readonly<{
32
+ "onUpdate:value"?: ((value: ModelValue) => any) | undefined;
33
+ }>, {
28
34
  value: Record<string, any>;
29
35
  queryParams: Record<string, any>;
30
36
  displayType: string;
@@ -37,6 +37,11 @@ export declare const processTableLayout: (doc: Document) => void;
37
37
  * @param doc
38
38
  */
39
39
  export declare const processTdWidth: (doc: Document) => void;
40
+ /**
41
+ * 去除p标签上的负边距(如 margin-left:-40px 等)
42
+ * @param doc
43
+ */
44
+ export declare const processRemoveNegativeMargin: (doc: Document) => void;
40
45
  /**
41
46
  * 处理table的边框
42
47
  * @param doc
@@ -1,3 +1,5 @@
1
+ import { ModelValue } from '../type';
2
+
1
3
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
4
  displayType: {
3
5
  type: StringConstructor;
@@ -11,7 +13,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
11
13
  type: ObjectConstructor;
12
14
  default: () => {};
13
15
  };
14
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
16
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
+ "update:value": (value: ModelValue) => void;
18
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
15
19
  displayType: {
16
20
  type: StringConstructor;
17
21
  default: string;
@@ -24,7 +28,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
24
28
  type: ObjectConstructor;
25
29
  default: () => {};
26
30
  };
27
- }>> & Readonly<{}>, {
31
+ }>> & Readonly<{
32
+ "onUpdate:value"?: ((value: ModelValue) => any) | undefined;
33
+ }>, {
28
34
  value: Record<string, any>;
29
35
  queryParams: Record<string, any>;
30
36
  displayType: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyui/components",
3
- "version": "1.0.45",
3
+ "version": "1.0.47",
4
4
  "main": "./lib/index.js",
5
5
  "module": "./es/index.mjs",
6
6
  "types": "./es/index.d.ts",
@@ -46,8 +46,8 @@
46
46
  "vue-hooks-plus": "^2.2.1",
47
47
  "xmldom": "^0.6.0",
48
48
  "xpath": "^0.0.34",
49
- "@zyui/utils": "0.0.9",
50
- "@zyui/hooks": "0.0.5"
49
+ "@zyui/hooks": "0.0.5",
50
+ "@zyui/utils": "0.0.9"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/lodash-es": "^4.17.12"