@ibiz-template/web-theme 1.1.28-alpha.4 → 3.0.0

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.
@@ -242,12 +242,9 @@ declare const _default: {
242
242
  actionType: string;
243
243
  buttonStyle: string;
244
244
  buttonType: string;
245
- uiactionId: string;
246
245
  renderMode: string;
247
246
  tooltip: string;
248
- capLanguageRes: {
249
- lanResTag: string;
250
- };
247
+ uiactionTarget: string;
251
248
  caption: string;
252
249
  itemStyle: string;
253
250
  itemType: string;
@@ -286,6 +283,15 @@ declare const _default: {
286
283
  controlType: string;
287
284
  logicName: string;
288
285
  appDataEntityId: string;
286
+ controlLogics: {
287
+ eventNames: string;
288
+ itemName: string;
289
+ logicTag: string;
290
+ logicType: string;
291
+ scriptCode: string;
292
+ triggerType: string;
293
+ id: string;
294
+ }[];
289
295
  controlParam: {};
290
296
  modelId: string;
291
297
  modelType: string;
@@ -295,15 +295,12 @@ var DEMEditView9 = {
295
295
  "actionGroupExtractMode": "ITEM",
296
296
  "panelItems": [
297
297
  {
298
- "actionType": "UIACTION",
298
+ "actionType": "NONE",
299
299
  "buttonStyle": "DEFAULT",
300
300
  "buttonType": "PANELBUTTON",
301
- "uiactionId": "gridview_newaction",
302
301
  "renderMode": "BUTTON",
303
302
  "tooltip": "\u6DFB\u52A0",
304
- "capLanguageRes": {
305
- "lanResTag": "TBB.TEXT.*.NEW"
306
- },
303
+ "uiactionTarget": "NONE",
307
304
  "caption": "\u6DFB\u52A0",
308
305
  "itemStyle": "DEFAULT",
309
306
  "itemType": "BUTTON",
@@ -361,6 +358,17 @@ var DEMEditView9 = {
361
358
  "controlType": "VIEWLAYOUTPANEL",
362
359
  "logicName": "\u5B9E\u4F53\u591A\u8868\u5355\u7F16\u8F91\u89C6\u56FE\uFF08\u90E8\u4EF6\u89C6\u56FE\uFF09\u5E03\u5C40\u9762\u677F(\u9884\u7F6E\u6A21\u578B)",
363
360
  "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
361
+ "controlLogics": [
362
+ {
363
+ "eventNames": "onClick",
364
+ "itemName": "BUTTON_CALLUILOGIC",
365
+ "logicTag": "layoutpanel",
366
+ "logicType": "SCRIPT",
367
+ "scriptCode": 'view.call("New");',
368
+ "triggerType": "CTRLEVENT",
369
+ "id": "logic"
370
+ }
371
+ ],
364
372
  "controlParam": {},
365
373
  "modelId": "8C599AC4-BDB7-450B-B60D-3A9EF2FC4622",
366
374
  "modelType": "PSSYSVIEWLAYOUTPANEL",
@@ -299,15 +299,12 @@ var DEMEditView9 = {
299
299
  "actionGroupExtractMode": "ITEM",
300
300
  "panelItems": [
301
301
  {
302
- "actionType": "UIACTION",
302
+ "actionType": "NONE",
303
303
  "buttonStyle": "DEFAULT",
304
304
  "buttonType": "PANELBUTTON",
305
- "uiactionId": "gridview_newaction",
306
305
  "renderMode": "BUTTON",
307
306
  "tooltip": "\u6DFB\u52A0",
308
- "capLanguageRes": {
309
- "lanResTag": "TBB.TEXT.*.NEW"
310
- },
307
+ "uiactionTarget": "NONE",
311
308
  "caption": "\u6DFB\u52A0",
312
309
  "itemStyle": "DEFAULT",
313
310
  "itemType": "BUTTON",
@@ -365,6 +362,17 @@ var DEMEditView9 = {
365
362
  "controlType": "VIEWLAYOUTPANEL",
366
363
  "logicName": "\u5B9E\u4F53\u591A\u8868\u5355\u7F16\u8F91\u89C6\u56FE\uFF08\u90E8\u4EF6\u89C6\u56FE\uFF09\u5E03\u5C40\u9762\u677F(\u9884\u7F6E\u6A21\u578B)",
367
364
  "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
365
+ "controlLogics": [
366
+ {
367
+ "eventNames": "onClick",
368
+ "itemName": "BUTTON_CALLUILOGIC",
369
+ "logicTag": "layoutpanel",
370
+ "logicType": "SCRIPT",
371
+ "scriptCode": 'view.call("New");',
372
+ "triggerType": "CTRLEVENT",
373
+ "id": "logic"
374
+ }
375
+ ],
368
376
  "controlParam": {},
369
377
  "modelId": "8C599AC4-BDB7-450B-B60D-3A9EF2FC4622",
370
378
  "modelType": "PSSYSVIEWLAYOUTPANEL",
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@ibiz-template/web-theme",
3
- "version": "1.1.28-alpha.4",
3
+ "version": "3.0.0",
4
+ "description": "web端主题样式库",
4
5
  "type": "module",
5
6
  "main": "lib/index.cjs",
6
7
  "types": "es/index.d.ts",
@@ -10,16 +11,12 @@
10
11
  "require": "./lib/index.cjs"
11
12
  }
12
13
  },
13
- "repository": {
14
- "type": "git",
15
- "url": "https://gitee.com/iBizModeling/ibiz-template-vue-theme.git"
16
- },
17
14
  "files": [
18
15
  "dist",
19
16
  "es",
20
17
  "lib",
21
18
  "src",
22
- "CHANGELOG.md"
19
+ "README.md"
23
20
  ],
24
21
  "scripts": {
25
22
  "dev": "ibiz-temp build -w",
@@ -31,12 +28,13 @@
31
28
  "publish:beta": "npm run build && npm publish --access public --tag=beta --registry=https://registry.npmjs.org/",
32
29
  "publish:npm": "npm run build && npm publish --access public --registry=https://registry.npmjs.org/"
33
30
  },
34
- "author": "chitanda",
31
+ "author": "iBiz",
35
32
  "license": "MIT",
36
33
  "devDependencies": {
37
34
  "@ibiz-template/theme": "^0.6.0"
38
35
  },
39
36
  "dependencies": {
40
37
  "@ibiz-template/runtime": "^0.6.0"
41
- }
38
+ },
39
+ "gitHead": "dacfca01d26c4e935350c1b650a7190ec4524fc4"
42
40
  }
@@ -294,15 +294,12 @@
294
294
  "actionGroupExtractMode": "ITEM",
295
295
  "panelItems": [
296
296
  {
297
- "actionType": "UIACTION",
297
+ "actionType": "NONE",
298
298
  "buttonStyle": "DEFAULT",
299
299
  "buttonType": "PANELBUTTON",
300
- "uiactionId": "gridview_newaction",
301
300
  "renderMode": "BUTTON",
302
301
  "tooltip": "添加",
303
- "capLanguageRes": {
304
- "lanResTag": "TBB.TEXT.*.NEW"
305
- },
302
+ "uiactionTarget": "NONE",
306
303
  "caption": "添加",
307
304
  "itemStyle": "DEFAULT",
308
305
  "itemType": "BUTTON",
@@ -360,6 +357,17 @@
360
357
  "controlType": "VIEWLAYOUTPANEL",
361
358
  "logicName": "实体多表单编辑视图(部件视图)布局面板(预置模型)",
362
359
  "appDataEntityId": "frontmodel.viewlayoutmodelrepository",
360
+ "controlLogics": [
361
+ {
362
+ "eventNames": "onClick",
363
+ "itemName": "BUTTON_CALLUILOGIC",
364
+ "logicTag": "layoutpanel",
365
+ "logicType": "SCRIPT",
366
+ "scriptCode": "view.call(\"New\");",
367
+ "triggerType": "CTRLEVENT",
368
+ "id": "logic"
369
+ }
370
+ ],
363
371
  "controlParam": {},
364
372
  "modelId": "8C599AC4-BDB7-450B-B60D-3A9EF2FC4622",
365
373
  "modelType": "PSSYSVIEWLAYOUTPANEL",