@kengic/vue 0.26.6-beta.68 → 0.26.6-beta.69

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,38 @@
1
- import { ExtractPropTypes } from 'vue';
1
+ import { ExtractPropTypes, PropType } from 'vue';
2
2
  import './KgCanvas.css';
3
- export declare const getProps: () => any;
3
+ export declare const getProps: () => {
4
+ /**
5
+ * 是否显示文本.
6
+ *
7
+ * @default false
8
+ */
9
+ kgIsShowText: {
10
+ type: PropType<boolean>;
11
+ default: boolean;
12
+ };
13
+ };
4
14
  export declare type KgCanvasToolbarFullscreenProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
5
- declare const _default: import("vue").DefineComponent<any, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
6
- [x: string]: any;
15
+ declare const _default: import("vue").DefineComponent<{
16
+ /**
17
+ * 是否显示文本.
18
+ *
19
+ * @default false
20
+ */
21
+ kgIsShowText: {
22
+ type: PropType<boolean>;
23
+ default: boolean;
24
+ };
25
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
26
+ /**
27
+ * 是否显示文本.
28
+ *
29
+ * @default false
30
+ */
31
+ kgIsShowText: {
32
+ type: PropType<boolean>;
33
+ default: boolean;
34
+ };
35
+ }>>, {
36
+ kgIsShowText: boolean;
7
37
  }>;
8
38
  export default _default;
@@ -10,6 +10,10 @@ declare const _default: {
10
10
  noApiUrl: string;
11
11
  noVarSubmitConfig: string;
12
12
  };
13
+ KgCanvas: {
14
+ enterFullscreen: string;
15
+ exitFullscreen: string;
16
+ };
13
17
  KgFormItem: {
14
18
  formValidationMessageForGT: string;
15
19
  formValidationMessageForGTE: string;
@@ -10,6 +10,10 @@ declare const _default: {
10
10
  noApiUrl: string;
11
11
  noVarSubmitConfig: string;
12
12
  };
13
+ KgCanvas: {
14
+ enterFullscreen: string;
15
+ exitFullscreen: string;
16
+ };
13
17
  KgFormItem: {
14
18
  formValidationMessageForGT: string;
15
19
  formValidationMessageForGTE: string;
@@ -10,6 +10,10 @@ declare const _default: {
10
10
  noApiUrl: string;
11
11
  noVarSubmitConfig: string;
12
12
  };
13
+ KgCanvas: {
14
+ enterFullscreen: string;
15
+ exitFullscreen: string;
16
+ };
13
17
  KgFormItem: {
14
18
  formValidationMessageForGT: string;
15
19
  formValidationMessageForGTE: string;
@@ -10,6 +10,10 @@ declare const _default: {
10
10
  noApiUrl: string;
11
11
  noVarSubmitConfig: string;
12
12
  };
13
+ KgCanvas: {
14
+ enterFullscreen: string;
15
+ exitFullscreen: string;
16
+ };
13
17
  KgFormItem: {
14
18
  formValidationMessageForGT: string;
15
19
  formValidationMessageForGTE: string;
@@ -10,6 +10,10 @@ declare const _default: {
10
10
  noApiUrl: string;
11
11
  noVarSubmitConfig: string;
12
12
  };
13
+ KgCanvas: {
14
+ enterFullscreen: string;
15
+ exitFullscreen: string;
16
+ };
13
17
  KgFormItem: {
14
18
  formValidationMessageForGT: string;
15
19
  formValidationMessageForGTE: string;
@@ -10,6 +10,10 @@ declare const _default: {
10
10
  noApiUrl: string;
11
11
  noVarSubmitConfig: string;
12
12
  };
13
+ KgCanvas: {
14
+ enterFullscreen: string;
15
+ exitFullscreen: string;
16
+ };
13
17
  KgFormItem: {
14
18
  formValidationMessageForGT: string;
15
19
  formValidationMessageForGTE: string;
@@ -10,6 +10,10 @@ declare const _default: {
10
10
  noApiUrl: string;
11
11
  noVarSubmitConfig: string;
12
12
  };
13
+ KgCanvas: {
14
+ enterFullscreen: string;
15
+ exitFullscreen: string;
16
+ };
13
17
  KgFormItem: {
14
18
  formValidationMessageForGT: string;
15
19
  formValidationMessageForGTE: string;
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.26.6-beta.68",
3
+ "version": "0.26.6-beta.69",
4
4
  "scripts": {
5
5
  "build": "npm run use-node && rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
7
7
  "--------------------------------------------------": "",
8
8
  "gen:apis:WMS": "npm run use-node && kengic-pont generate-apis --config kg.config.ts --origin WMS",
9
9
  "- ------------------------------------------------": "",
10
- "use-node": "nvm use 18.20.4 && corepack enable && corepack prepare pnpm@7.30.5 --activate && corepack use pnpm@7.30.5",
10
+ "use-node": "nvm use 18.20.4 && corepack enable && corepack use pnpm@7.30.5",
11
11
  "cnpm:sync": "npm run use-node && npx cnpm --yes sync @kengic/vue",
12
12
  "-- -----------------------------------------------": "",
13
13
  "publish:major": "npm run bump:major && tsx scripts/publish.ts",
@@ -22,7 +22,7 @@
22
22
  "---- ---------------------------------------------": "",
23
23
  "publish:npm": "npm run use-node && npmrc kengic && npm publish ./ --registry https://registry.npmjs.org/ --access public",
24
24
  "------- ------------------------------------------": "",
25
- "copy-to:luotao:smartfactory.product.wms.wms--dev-3.2": "npm run build:dev && tsx scripts/copy-to.luotao.smartfactory.product.wms.wms--dev-3.2.ts",
25
+ "copy-to:luotao:smartfactory.product.wms.wms--dev-3.2": "npm run use-node && npm run build:dev && tsx scripts/copy-to.luotao.smartfactory.product.wms.wms--dev-3.2.ts",
26
26
  "--- ----------------------------------------------": "",
27
27
  "bump-to:luotao:smartfactory.product.wms.wms--dev-3.2": "npm run use-node && tsx scripts/bump-to.luotao.smartfactory.product.wms.wms--dev-3.2.ts"
28
28
  },
@@ -39,7 +39,7 @@
39
39
  "@iconify-icons/mdi": "1.2.48",
40
40
  "@iconify-icons/ph": "1.2.5",
41
41
  "@iconify/vue": "4.1.1",
42
- "@kengic/core": "6.0.1-beta.79",
42
+ "@kengic/core": "6.0.1-beta.80",
43
43
  "@kengic/pont": "1.2.17-beta.1",
44
44
  "@rys-fe/vite-plugin-theme": "0.8.6",
45
45
  "@thymine/xunee": "0.4.9-beta.8",
@@ -108,10 +108,6 @@
108
108
  },
109
109
  "./dist/index.css": "./dist/index.css"
110
110
  },
111
- "engines": {
112
- "node": "18.20.4",
113
- "pnpm": "7.30.5"
114
- },
115
111
  "prettier": {
116
112
  "endOfLine": "auto",
117
113
  "overrides": [