star-horse-lowcode 2.7.39 → 2.7.41

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.
@@ -6186,7 +6186,7 @@ compUrl: {
6186
6186
  type: PropType<ApiUrls>;
6187
6187
  };
6188
6188
  fieldList: {
6189
- type: ObjectConstructor;
6189
+ type: PropType<any>;
6190
6190
  required: true;
6191
6191
  };
6192
6192
  defaultValues: {
@@ -6205,7 +6205,7 @@ type: NumberConstructor;
6205
6205
  default: number;
6206
6206
  };
6207
6207
  importInfo: {
6208
- type: ObjectConstructor;
6208
+ type: PropType<any>;
6209
6209
  };
6210
6210
  title: {
6211
6211
  type: StringConstructor;
@@ -6255,7 +6255,7 @@ compUrl: {
6255
6255
  type: PropType<ApiUrls>;
6256
6256
  };
6257
6257
  fieldList: {
6258
- type: ObjectConstructor;
6258
+ type: PropType<any>;
6259
6259
  required: true;
6260
6260
  };
6261
6261
  defaultValues: {
@@ -6274,7 +6274,7 @@ type: NumberConstructor;
6274
6274
  default: number;
6275
6275
  };
6276
6276
  importInfo: {
6277
- type: ObjectConstructor;
6277
+ type: PropType<any>;
6278
6278
  };
6279
6279
  title: {
6280
6280
  type: StringConstructor;
@@ -6609,6 +6609,22 @@ size: {
6609
6609
  type: StringConstructor;
6610
6610
  default: string;
6611
6611
  };
6612
+ width: {
6613
+ type: StringConstructor;
6614
+ default: string;
6615
+ };
6616
+ height: {
6617
+ type: StringConstructor;
6618
+ default: string;
6619
+ };
6620
+ marginLeft: {
6621
+ type: StringConstructor;
6622
+ default: string;
6623
+ };
6624
+ marginRight: {
6625
+ type: StringConstructor;
6626
+ default: string;
6627
+ };
6612
6628
  boxShow: {
6613
6629
  type: BooleanConstructor;
6614
6630
  default: boolean;
@@ -6641,6 +6657,22 @@ size: {
6641
6657
  type: StringConstructor;
6642
6658
  default: string;
6643
6659
  };
6660
+ width: {
6661
+ type: StringConstructor;
6662
+ default: string;
6663
+ };
6664
+ height: {
6665
+ type: StringConstructor;
6666
+ default: string;
6667
+ };
6668
+ marginLeft: {
6669
+ type: StringConstructor;
6670
+ default: string;
6671
+ };
6672
+ marginRight: {
6673
+ type: StringConstructor;
6674
+ default: string;
6675
+ };
6644
6676
  boxShow: {
6645
6677
  type: BooleanConstructor;
6646
6678
  default: boolean;
@@ -6660,8 +6692,12 @@ default: string;
6660
6692
  }>> & Readonly<{}>, {
6661
6693
  title: string;
6662
6694
  size: string;
6695
+ width: string;
6663
6696
  color: string;
6664
6697
  cursor: string;
6698
+ height: string;
6699
+ marginLeft: string;
6700
+ marginRight: string;
6665
6701
  boxShow: boolean;
6666
6702
  border: boolean;
6667
6703
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLElement>;
@@ -7116,8 +7152,8 @@ type: ArrayConstructor;
7116
7152
  };
7117
7153
  }>> & Readonly<{}>, {
7118
7154
  compSize: string;
7119
- dataFormat: Function;
7120
7155
  height: string;
7156
+ dataFormat: Function;
7121
7157
  dialogInput: boolean;
7122
7158
  expand: boolean;
7123
7159
  showBatchField: boolean;
@@ -7573,8 +7609,8 @@ required: false;
7573
7609
  }>> & Readonly<{
7574
7610
  onSelectItem?: (...args: any[]) => any;
7575
7611
  }>, {
7576
- dataFormat: Function;
7577
7612
  height: string;
7613
+ dataFormat: Function;
7578
7614
  dialogInput: boolean;
7579
7615
  expand: boolean;
7580
7616
  showBatchField: boolean;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "star-horse-lowcode",
3
3
  "private": false,
4
4
  "author": "l_1019@163.com",
5
- "version": "2.7.39",
5
+ "version": "2.7.41",
6
6
  "type": "module",
7
7
  "description": "星马低代码平台",
8
8
  "keywords": [
@@ -37,23 +37,18 @@
37
37
  "./*": "./dist/*"
38
38
  },
39
39
  "scripts": {
40
- "lint": "eslint .",
41
- "lint:fix": "eslint . --fix",
42
- "svgToFont": "node ./src/script/svgToFont.js",
43
40
  "serve": " vite --mode development",
44
- "build:dev": "cross-env NO_TYPE_CHECK=true NODE_OPTIONS=--max-old-space-size=8192 vite build --mode development",
45
- "build:prod": "cross-env NODE_OPTIONS=--max-old-space-size=16384 vite build --mode production",
46
41
  "build": "vite build --mode production",
47
- "clean": "rimraf node_modules/.vite && rimraf node_modules/.cache",
48
42
  "preview": "vite preview --mode production",
49
- "deploy": "vite build --mode production && node deploy.js",
50
- "testPublish": "node deploy.js",
43
+ "clean": "rimraf node_modules/.vite && rimraf node_modules/.cache",
44
+ "svgToFont": "node ./src/script/svgToFont.js",
51
45
  "createNodeImageList": "node ./script/createNodeImageList.js"
52
46
  },
53
47
  "dependencies": {
54
48
  "@element-plus/icons-vue": "^2.3.1",
55
49
  "@originjs/vite-plugin-commonjs": "^1.0.3",
56
50
  "@rollup/plugin-inject": "^5.0.5",
51
+ "@tailwindcss/vite": "^4.1.8",
57
52
  "@vitejs/plugin-vue-jsx": "^4.2.0",
58
53
  "@vueup/vue-quill": "^1.2.0",
59
54
  "axios": "^1.9.0",
@@ -62,9 +57,9 @@
62
57
  "jquery": "^3.7.1",
63
58
  "less": "^4.3.0",
64
59
  "less-loader": "^12.3.0",
65
- "md-editor-v3": "^5.6.0",
60
+ "md-editor-v3": "^5.6.1",
66
61
  "path": "^0.12.7",
67
- "pinia": "^3.0.2",
62
+ "pinia": "^3.0.3",
68
63
  "pinia-plugin-persistedstate": "^4.3.0",
69
64
  "pinyin-pro": "^3.26.0",
70
65
  "process": "^0.11.10",
@@ -73,15 +68,14 @@
73
68
  "smooth-signature": "^1.1.0",
74
69
  "sortablejs": "^1.15.6",
75
70
  "svgicons2svgfont": "^15.0.1",
76
- "tailwindcss": "^4.1.7",
71
+ "tailwindcss": "^4.1.8",
77
72
  "unplugin-auto-import": "^19.3.0",
78
73
  "unplugin-vue-components": "^28.7.0",
79
74
  "uuid": "^11.1.0",
80
75
  "vite-plugin-dts": "^4.5.4",
81
- "vue": "^3.5.15",
76
+ "vue": "^3.5.16",
82
77
  "vue-demi": "^0.14.10",
83
- "vue-eslint-parser": "^10.1.3",
84
- "vue-i18n": "^11.1.4",
78
+ "vue-i18n": "^11.1.5",
85
79
  "vue-m-message": "^4.0.2",
86
80
  "vue-router": "^4.5.1",
87
81
  "vue3-barcode": "^1.0.1",
@@ -94,7 +88,7 @@
94
88
  "@types/sortablejs": "^1.15.8",
95
89
  "@types/uuid": "^10.0.0",
96
90
  "@vitejs/plugin-vue": "^5.2.4",
97
- "sass-embedded": "^1.89.0",
91
+ "sass-embedded": "^1.89.1",
98
92
  "svg2ttf": "^6.0.3",
99
93
  "terser": "^5.40.0",
100
94
  "ttf2woff": "^3.0.0",