@steedos-widgets/amis-object 1.0.26 → 1.0.29
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.
- package/dist/amis/AmisRecordDetail.d.ts +11 -3
- package/dist/amis/AmisRecordDetailHeader.d.ts +1 -0
- package/dist/amis/AmisSteedosField.d.ts +1 -9
- package/dist/amis-object.cjs.css +27 -0
- package/dist/amis-object.cjs.js +1 -1
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +27 -0
- package/dist/amis-object.esm.js +1 -1
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +27 -0
- package/dist/amis-object.umd.js +1 -1
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets-dev.json +11 -11
- package/dist/assets.json +10 -10
- package/dist/meta.js +397 -349
- package/dist/pages/PageListView.d.ts +15 -1
- package/dist/pages/PageListView.meta.d.ts +2 -0
- package/dist/pages/PageRecordDetail.d.ts +15 -0
- package/dist/pages/PageRecordDetail.meta.d.ts +2 -0
- package/dist/pages/index.d.ts +1 -0
- package/package.json +3 -3
package/dist/meta.js
CHANGED
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
* @Author: baozhoutao@steedos.com
|
|
35
35
|
* @Date: 2022-08-31 16:32:35
|
|
36
36
|
* @LastEditors: baozhoutao@steedos.com
|
|
37
|
-
* @LastEditTime:
|
|
37
|
+
* @LastEditTime: 2023-03-06 14:30:38
|
|
38
38
|
* @Description:
|
|
39
39
|
*/
|
|
40
|
-
var config$
|
|
40
|
+
var config$q = {
|
|
41
41
|
componentType: 'amisSchema',
|
|
42
42
|
group: "华炎魔方",
|
|
43
43
|
componentName: "AmisObjectForm",
|
|
@@ -95,39 +95,39 @@
|
|
|
95
95
|
icon: "fa-fw fa fa-list-alt"
|
|
96
96
|
}
|
|
97
97
|
};
|
|
98
|
-
var AmisObjectForm = __assign(__assign({}, config$
|
|
98
|
+
var AmisObjectForm = __assign(__assign({}, config$q), { snippets: [
|
|
99
99
|
{
|
|
100
|
-
title: config$
|
|
100
|
+
title: config$q.title,
|
|
101
101
|
screenshot: "",
|
|
102
102
|
schema: {
|
|
103
|
-
componentName: config$
|
|
104
|
-
props: config$
|
|
103
|
+
componentName: config$q.componentName,
|
|
104
|
+
props: config$q.preview
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
], amis: {
|
|
108
108
|
render: {
|
|
109
|
-
type: config$
|
|
109
|
+
type: config$q.amis.name,
|
|
110
110
|
usage: "renderer",
|
|
111
111
|
weight: 1,
|
|
112
112
|
framework: "react"
|
|
113
113
|
},
|
|
114
114
|
plugin: {
|
|
115
|
-
rendererName: config$
|
|
115
|
+
rendererName: config$q.amis.name,
|
|
116
116
|
$schema: '/schemas/UnkownSchema.json',
|
|
117
|
-
name: config$
|
|
118
|
-
description: config$
|
|
119
|
-
tags: [config$
|
|
117
|
+
name: config$q.title,
|
|
118
|
+
description: config$q.title,
|
|
119
|
+
tags: [config$q.group],
|
|
120
120
|
order: -9999,
|
|
121
|
-
icon: config$
|
|
121
|
+
icon: config$q.amis.icon,
|
|
122
122
|
scaffold: {
|
|
123
|
-
type: config$
|
|
124
|
-
label: config$
|
|
123
|
+
type: config$q.amis.name,
|
|
124
|
+
label: config$q.title,
|
|
125
125
|
objectApiName: "${objectName}",
|
|
126
126
|
recordId: "${recordId}",
|
|
127
127
|
className: "sm:border sm:shadow sm:rounded sm:border-gray-300 bg-white p-4"
|
|
128
128
|
},
|
|
129
129
|
previewSchema: {
|
|
130
|
-
type: config$
|
|
130
|
+
type: config$q.amis.name,
|
|
131
131
|
objectApiName: 'space_users'
|
|
132
132
|
},
|
|
133
133
|
panelTitle: "设置",
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"method": "get",
|
|
143
143
|
"url": "/service/api/amis-design/objects",
|
|
144
144
|
"requestAdaptor": "\n api.url = Builder.settings.rootUrl + api.url; \n if(!api.headers){\n api.headers = {}\n };\n api.headers.Authorization='Bearer ' + Builder.settings.tenantId + ',' + Builder.settings.authToken ;\n return api;\n ",
|
|
145
|
-
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"
|
|
145
|
+
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"\u5F53\u524D\u5BF9\u8C61\",\n name: \"${objectName}\"\n });\n return payload;\n "
|
|
146
146
|
},
|
|
147
147
|
"labelField": "label",
|
|
148
148
|
"valueField": "name",
|
|
@@ -220,10 +220,10 @@
|
|
|
220
220
|
* @Author: baozhoutao@steedos.com
|
|
221
221
|
* @Date: 2022-08-31 16:32:35
|
|
222
222
|
* @LastEditors: baozhoutao@steedos.com
|
|
223
|
-
* @LastEditTime:
|
|
223
|
+
* @LastEditTime: 2023-03-06 14:30:43
|
|
224
224
|
* @Description:
|
|
225
225
|
*/
|
|
226
|
-
var config$
|
|
226
|
+
var config$p = {
|
|
227
227
|
componentType: 'amisSchema',
|
|
228
228
|
group: "华炎魔方",
|
|
229
229
|
componentName: "AmisObjectListView",
|
|
@@ -260,40 +260,40 @@
|
|
|
260
260
|
icon: "fa-fw fa fa-list-alt"
|
|
261
261
|
}
|
|
262
262
|
};
|
|
263
|
-
var AmisObjectListview = __assign(__assign({}, config$
|
|
263
|
+
var AmisObjectListview = __assign(__assign({}, config$p), { snippets: [
|
|
264
264
|
{
|
|
265
|
-
title: config$
|
|
265
|
+
title: config$p.title,
|
|
266
266
|
screenshot: "",
|
|
267
267
|
schema: {
|
|
268
|
-
componentName: config$
|
|
269
|
-
props: config$
|
|
268
|
+
componentName: config$p.componentName,
|
|
269
|
+
props: config$p.preview
|
|
270
270
|
}
|
|
271
271
|
}
|
|
272
272
|
], amis: {
|
|
273
273
|
render: {
|
|
274
|
-
type: config$
|
|
274
|
+
type: config$p.amis.name,
|
|
275
275
|
usage: "renderer",
|
|
276
276
|
weight: 1,
|
|
277
277
|
framework: "react"
|
|
278
278
|
},
|
|
279
279
|
plugin: {
|
|
280
|
-
rendererName: config$
|
|
280
|
+
rendererName: config$p.amis.name,
|
|
281
281
|
$schema: '/schemas/UnkownSchema.json',
|
|
282
|
-
name: config$
|
|
283
|
-
description: config$
|
|
284
|
-
tags: [config$
|
|
282
|
+
name: config$p.title,
|
|
283
|
+
description: config$p.description,
|
|
284
|
+
tags: [config$p.group],
|
|
285
285
|
order: -9999,
|
|
286
|
-
icon: config$
|
|
286
|
+
icon: config$p.amis.icon,
|
|
287
287
|
scaffold: {
|
|
288
|
-
type: config$
|
|
289
|
-
label: config$
|
|
288
|
+
type: config$p.amis.name,
|
|
289
|
+
label: config$p.title,
|
|
290
290
|
objectApiName: "${objectName}",
|
|
291
291
|
listName: "all",
|
|
292
292
|
showHeader: true,
|
|
293
293
|
className: "sm:border sm:shadow sm:rounded sm:border-gray-300 mb-4"
|
|
294
294
|
},
|
|
295
295
|
previewSchema: {
|
|
296
|
-
type: config$
|
|
296
|
+
type: config$p.amis.name,
|
|
297
297
|
objectApiName: 'space_users',
|
|
298
298
|
listName: "all",
|
|
299
299
|
showHeader: true,
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
"method": "get",
|
|
311
311
|
"url": "/service/api/amis-design/objects",
|
|
312
312
|
"requestAdaptor": "api.url = Builder.settings.rootUrl + api.url; if(!api.headers){api.headers = {}};api.headers.Authorization='Bearer ' + Builder.settings.tenantId + ',' + Builder.settings.authToken ;return api;",
|
|
313
|
-
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"
|
|
313
|
+
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"\u5F53\u524D\u5BF9\u8C61\",\n name: \"${objectName}\"\n });\n return payload;\n "
|
|
314
314
|
},
|
|
315
315
|
"labelField": "label",
|
|
316
316
|
"valueField": "name",
|
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
}
|
|
377
377
|
} });
|
|
378
378
|
|
|
379
|
-
var config$
|
|
379
|
+
var config$o = {
|
|
380
380
|
componentType: 'amisSchema',
|
|
381
381
|
group: "华炎魔方",
|
|
382
382
|
componentName: "AmisObjectCalendar",
|
|
@@ -432,38 +432,38 @@
|
|
|
432
432
|
icon: "fa-fw fa fa-list-alt"
|
|
433
433
|
}
|
|
434
434
|
};
|
|
435
|
-
var AmisObjectCalendar = __assign(__assign({}, config$
|
|
435
|
+
var AmisObjectCalendar = __assign(__assign({}, config$o), { snippets: [
|
|
436
436
|
{
|
|
437
|
-
title: config$
|
|
437
|
+
title: config$o.title,
|
|
438
438
|
screenshot: "",
|
|
439
439
|
schema: {
|
|
440
|
-
componentName: config$
|
|
441
|
-
props: config$
|
|
440
|
+
componentName: config$o.componentName,
|
|
441
|
+
props: config$o.preview
|
|
442
442
|
}
|
|
443
443
|
}
|
|
444
444
|
], amis: {
|
|
445
445
|
render: {
|
|
446
|
-
type: config$
|
|
446
|
+
type: config$o.amis.name,
|
|
447
447
|
usage: "renderer",
|
|
448
448
|
weight: 1,
|
|
449
449
|
framework: "react"
|
|
450
450
|
},
|
|
451
451
|
plugin: {
|
|
452
|
-
rendererName: config$
|
|
452
|
+
rendererName: config$o.amis.name,
|
|
453
453
|
$schema: '/schemas/UnkownSchema.json',
|
|
454
|
-
name: config$
|
|
455
|
-
description: config$
|
|
456
|
-
tags: [config$
|
|
454
|
+
name: config$o.title,
|
|
455
|
+
description: config$o.title,
|
|
456
|
+
tags: [config$o.group],
|
|
457
457
|
order: -9999,
|
|
458
|
-
icon: config$
|
|
458
|
+
icon: config$o.amis.icon,
|
|
459
459
|
scaffold: {
|
|
460
|
-
type: config$
|
|
461
|
-
label: config$
|
|
460
|
+
type: config$o.amis.name,
|
|
461
|
+
label: config$o.title,
|
|
462
462
|
objectApiName: "${objectName}",
|
|
463
463
|
currentView: "timeGridWeek"
|
|
464
464
|
},
|
|
465
465
|
previewSchema: {
|
|
466
|
-
type: config$
|
|
466
|
+
type: config$o.amis.name,
|
|
467
467
|
objectApiName: 'events',
|
|
468
468
|
currentView: "timeGridWeek"
|
|
469
469
|
},
|
|
@@ -479,7 +479,7 @@
|
|
|
479
479
|
"method": "get",
|
|
480
480
|
"url": "/service/api/amis-design/objects",
|
|
481
481
|
"requestAdaptor": "api.url = Builder.settings.rootUrl + api.url; if(!api.headers){api.headers = {}};api.headers.Authorization='Bearer ' + Builder.settings.tenantId + ',' + Builder.settings.authToken ;return api;",
|
|
482
|
-
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"
|
|
482
|
+
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"\u5F53\u524D\u5BF9\u8C61\",\n name: \"${objectName}\"\n });\n return payload;\n "
|
|
483
483
|
},
|
|
484
484
|
"labelField": "label",
|
|
485
485
|
"valueField": "name",
|
|
@@ -529,10 +529,10 @@
|
|
|
529
529
|
* @Author: baozhoutao@steedos.com
|
|
530
530
|
* @Date: 2022-08-31 16:32:35
|
|
531
531
|
* @LastEditors: baozhoutao@steedos.com
|
|
532
|
-
* @LastEditTime: 2023-
|
|
532
|
+
* @LastEditTime: 2023-03-06 14:30:51
|
|
533
533
|
* @Description:
|
|
534
534
|
*/
|
|
535
|
-
var config$
|
|
535
|
+
var config$n = {
|
|
536
536
|
componentType: 'amisSchema',
|
|
537
537
|
group: "华炎魔方",
|
|
538
538
|
componentName: "AmisObjectTable",
|
|
@@ -598,39 +598,39 @@
|
|
|
598
598
|
icon: "fa-fw fa fa-list-alt"
|
|
599
599
|
}
|
|
600
600
|
};
|
|
601
|
-
var AmisObjectTable = __assign(__assign({}, config$
|
|
601
|
+
var AmisObjectTable = __assign(__assign({}, config$n), { snippets: [
|
|
602
602
|
{
|
|
603
|
-
title: config$
|
|
603
|
+
title: config$n.title,
|
|
604
604
|
screenshot: "",
|
|
605
605
|
schema: {
|
|
606
|
-
componentName: config$
|
|
607
|
-
props: config$
|
|
606
|
+
componentName: config$n.componentName,
|
|
607
|
+
props: config$n.preview
|
|
608
608
|
}
|
|
609
609
|
}
|
|
610
610
|
], amis: {
|
|
611
611
|
render: {
|
|
612
|
-
type: config$
|
|
612
|
+
type: config$n.amis.name,
|
|
613
613
|
usage: "renderer",
|
|
614
614
|
weight: 1,
|
|
615
615
|
framework: "react"
|
|
616
616
|
},
|
|
617
617
|
plugin: {
|
|
618
|
-
rendererName: config$
|
|
618
|
+
rendererName: config$n.amis.name,
|
|
619
619
|
$schema: '/schemas/UnkownSchema.json',
|
|
620
|
-
name: config$
|
|
621
|
-
description: config$
|
|
622
|
-
tags: [config$
|
|
620
|
+
name: config$n.title,
|
|
621
|
+
description: config$n.title,
|
|
622
|
+
tags: [config$n.group],
|
|
623
623
|
order: -9999,
|
|
624
|
-
icon: config$
|
|
624
|
+
icon: config$n.amis.icon,
|
|
625
625
|
scaffold: {
|
|
626
|
-
type: config$
|
|
627
|
-
label: config$
|
|
626
|
+
type: config$n.amis.name,
|
|
627
|
+
label: config$n.title,
|
|
628
628
|
objectApiName: "${objectName}",
|
|
629
629
|
columns: [{ "field": "name" }],
|
|
630
630
|
className: "sm:border sm:shadow sm:rounded sm:border-gray-300"
|
|
631
631
|
},
|
|
632
632
|
previewSchema: {
|
|
633
|
-
type: config$
|
|
633
|
+
type: config$n.amis.name,
|
|
634
634
|
objectApiName: 'space_users',
|
|
635
635
|
columns: [{ "field": "name" }]
|
|
636
636
|
},
|
|
@@ -646,7 +646,7 @@
|
|
|
646
646
|
"method": "get",
|
|
647
647
|
"url": "/service/api/amis-design/objects",
|
|
648
648
|
"requestAdaptor": "api.url = Builder.settings.rootUrl + api.url; if(!api.headers){api.headers = {}};api.headers.Authorization='Bearer ' + Builder.settings.tenantId + ',' + Builder.settings.authToken ;return api;",
|
|
649
|
-
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"
|
|
649
|
+
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"\u5F53\u524D\u5BF9\u8C61\",\n name: \"${objectName}\"\n });\n return payload;\n "
|
|
650
650
|
},
|
|
651
651
|
"labelField": "label",
|
|
652
652
|
"valueField": "name",
|
|
@@ -762,10 +762,10 @@
|
|
|
762
762
|
* @Author: baozhoutao@steedos.com
|
|
763
763
|
* @Date: 2022-08-31 16:32:35
|
|
764
764
|
* @LastEditors: baozhoutao@steedos.com
|
|
765
|
-
* @LastEditTime:
|
|
765
|
+
* @LastEditTime: 2023-03-06 14:31:08
|
|
766
766
|
* @Description:
|
|
767
767
|
*/
|
|
768
|
-
var config$
|
|
768
|
+
var config$m = {
|
|
769
769
|
componentType: 'amisSchema',
|
|
770
770
|
group: "华炎魔方",
|
|
771
771
|
componentName: "AmisRecordDetailHeader",
|
|
@@ -802,38 +802,38 @@
|
|
|
802
802
|
icon: "fa-fw fa fa-list-alt"
|
|
803
803
|
}
|
|
804
804
|
};
|
|
805
|
-
var AmisRecordDetailHeader = __assign(__assign({}, config$
|
|
805
|
+
var AmisRecordDetailHeader = __assign(__assign({}, config$m), { snippets: [
|
|
806
806
|
{
|
|
807
|
-
title: config$
|
|
807
|
+
title: config$m.title,
|
|
808
808
|
screenshot: "",
|
|
809
809
|
schema: {
|
|
810
|
-
componentName: config$
|
|
811
|
-
props: config$
|
|
810
|
+
componentName: config$m.componentName,
|
|
811
|
+
props: config$m.preview
|
|
812
812
|
}
|
|
813
813
|
}
|
|
814
814
|
], amis: {
|
|
815
815
|
render: {
|
|
816
|
-
type: config$
|
|
816
|
+
type: config$m.amis.name,
|
|
817
817
|
usage: "renderer",
|
|
818
818
|
weight: 1,
|
|
819
819
|
framework: "react"
|
|
820
820
|
},
|
|
821
821
|
plugin: {
|
|
822
|
-
rendererName: config$
|
|
822
|
+
rendererName: config$m.amis.name,
|
|
823
823
|
$schema: '/schemas/UnkownSchema.json',
|
|
824
|
-
name: config$
|
|
825
|
-
description: config$
|
|
826
|
-
tags: [config$
|
|
824
|
+
name: config$m.title,
|
|
825
|
+
description: config$m.description,
|
|
826
|
+
tags: [config$m.group],
|
|
827
827
|
order: -9999,
|
|
828
|
-
icon: config$
|
|
828
|
+
icon: config$m.amis.icon,
|
|
829
829
|
scaffold: {
|
|
830
|
-
type: config$
|
|
831
|
-
label: config$
|
|
830
|
+
type: config$m.amis.name,
|
|
831
|
+
label: config$m.title,
|
|
832
832
|
objectApiName: "${objectName}",
|
|
833
833
|
recordId: "${recordId}"
|
|
834
834
|
},
|
|
835
835
|
previewSchema: {
|
|
836
|
-
type: config$
|
|
836
|
+
type: config$m.amis.name,
|
|
837
837
|
objectApiName: 'space_users'
|
|
838
838
|
},
|
|
839
839
|
panelTitle: "设置",
|
|
@@ -848,7 +848,7 @@
|
|
|
848
848
|
"method": "get",
|
|
849
849
|
"url": "/service/api/amis-design/objects",
|
|
850
850
|
"requestAdaptor": "api.url = Builder.settings.rootUrl + api.url; if(!api.headers){api.headers = {}};api.headers.Authorization='Bearer ' + Builder.settings.tenantId + ',' + Builder.settings.authToken ;return api;",
|
|
851
|
-
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"
|
|
851
|
+
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"\u5F53\u524D\u5BF9\u8C61\",\n name: \"${objectName}\"\n });\n return payload;\n "
|
|
852
852
|
},
|
|
853
853
|
"labelField": "label",
|
|
854
854
|
"valueField": "name",
|
|
@@ -873,10 +873,10 @@
|
|
|
873
873
|
* @Author: baozhoutao@steedos.com
|
|
874
874
|
* @Date: 2022-08-31 16:32:35
|
|
875
875
|
* @LastEditors: baozhoutao@steedos.com
|
|
876
|
-
* @LastEditTime:
|
|
876
|
+
* @LastEditTime: 2023-03-06 14:31:03
|
|
877
877
|
* @Description:
|
|
878
878
|
*/
|
|
879
|
-
var config$
|
|
879
|
+
var config$l = {
|
|
880
880
|
componentType: 'amisSchema',
|
|
881
881
|
group: "华炎魔方",
|
|
882
882
|
componentName: "AmisRecordDetail",
|
|
@@ -912,38 +912,38 @@
|
|
|
912
912
|
icon: "fa-fw fa fa-list-alt"
|
|
913
913
|
}
|
|
914
914
|
};
|
|
915
|
-
var AmisRecordDetail = __assign(__assign({}, config$
|
|
915
|
+
var AmisRecordDetail = __assign(__assign({}, config$l), { snippets: [
|
|
916
916
|
{
|
|
917
|
-
title: config$
|
|
917
|
+
title: config$l.title,
|
|
918
918
|
screenshot: "",
|
|
919
919
|
schema: {
|
|
920
|
-
componentName: config$
|
|
921
|
-
props: config$
|
|
920
|
+
componentName: config$l.componentName,
|
|
921
|
+
props: config$l.preview
|
|
922
922
|
}
|
|
923
923
|
}
|
|
924
924
|
], amis: {
|
|
925
925
|
render: {
|
|
926
|
-
type: config$
|
|
926
|
+
type: config$l.amis.name,
|
|
927
927
|
usage: "renderer",
|
|
928
928
|
weight: 1,
|
|
929
929
|
framework: "react"
|
|
930
930
|
},
|
|
931
931
|
plugin_disabled: {
|
|
932
|
-
rendererName: config$
|
|
932
|
+
rendererName: config$l.amis.name,
|
|
933
933
|
$schema: '/schemas/UnkownSchema.json',
|
|
934
|
-
name: config$
|
|
935
|
-
description: config$
|
|
936
|
-
tags: [config$
|
|
934
|
+
name: config$l.title,
|
|
935
|
+
description: config$l.title,
|
|
936
|
+
tags: [config$l.group],
|
|
937
937
|
order: -9999,
|
|
938
|
-
icon: config$
|
|
938
|
+
icon: config$l.amis.icon,
|
|
939
939
|
scaffold: {
|
|
940
|
-
type: config$
|
|
941
|
-
label: config$
|
|
940
|
+
type: config$l.amis.name,
|
|
941
|
+
label: config$l.title,
|
|
942
942
|
objectApiName: "${objectName}",
|
|
943
943
|
recordId: "${recordId}"
|
|
944
944
|
},
|
|
945
945
|
previewSchema: {
|
|
946
|
-
type: config$
|
|
946
|
+
type: config$l.amis.name,
|
|
947
947
|
objectApiName: 'space_users'
|
|
948
948
|
},
|
|
949
949
|
panelTitle: "设置",
|
|
@@ -958,7 +958,7 @@
|
|
|
958
958
|
"method": "get",
|
|
959
959
|
"url": "/service/api/amis-design/objects",
|
|
960
960
|
"requestAdaptor": "api.url = Builder.settings.rootUrl + api.url; if(!api.headers){api.headers = {}};api.headers.Authorization='Bearer ' + Builder.settings.tenantId + ',' + Builder.settings.authToken ;return api;",
|
|
961
|
-
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"
|
|
961
|
+
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"\u5F53\u524D\u5BF9\u8C61\",\n name: \"${objectName}\"\n });\n return payload;\n "
|
|
962
962
|
},
|
|
963
963
|
"labelField": "label",
|
|
964
964
|
"valueField": "name",
|
|
@@ -973,7 +973,7 @@
|
|
|
973
973
|
}
|
|
974
974
|
} });
|
|
975
975
|
|
|
976
|
-
var config$
|
|
976
|
+
var config$k = {
|
|
977
977
|
componentType: 'amisSchema',
|
|
978
978
|
group: "华炎魔方-界面",
|
|
979
979
|
componentName: "AmisSelectUser",
|
|
@@ -1019,37 +1019,37 @@
|
|
|
1019
1019
|
icon: "fa-fw fa fa-list-alt"
|
|
1020
1020
|
}
|
|
1021
1021
|
};
|
|
1022
|
-
var AmisSelectUser = __assign(__assign({}, config$
|
|
1022
|
+
var AmisSelectUser = __assign(__assign({}, config$k), { snippets: [
|
|
1023
1023
|
{
|
|
1024
|
-
title: config$
|
|
1024
|
+
title: config$k.title,
|
|
1025
1025
|
screenshot: "",
|
|
1026
1026
|
schema: {
|
|
1027
|
-
componentName: config$
|
|
1028
|
-
props: config$
|
|
1027
|
+
componentName: config$k.componentName,
|
|
1028
|
+
props: config$k.preview
|
|
1029
1029
|
}
|
|
1030
1030
|
}
|
|
1031
1031
|
], amis: {
|
|
1032
1032
|
render: {
|
|
1033
|
-
type: config$
|
|
1033
|
+
type: config$k.amis.name,
|
|
1034
1034
|
usage: "renderer",
|
|
1035
1035
|
weight: 1,
|
|
1036
1036
|
framework: "react"
|
|
1037
1037
|
},
|
|
1038
1038
|
plugin_disabled: {
|
|
1039
|
-
rendererName: config$
|
|
1039
|
+
rendererName: config$k.amis.name,
|
|
1040
1040
|
$schema: '/schemas/UnkownSchema.json',
|
|
1041
|
-
name: config$
|
|
1042
|
-
description: config$
|
|
1043
|
-
tags: [config$
|
|
1041
|
+
name: config$k.title,
|
|
1042
|
+
description: config$k.title,
|
|
1043
|
+
tags: [config$k.group],
|
|
1044
1044
|
order: -9999,
|
|
1045
|
-
icon: config$
|
|
1045
|
+
icon: config$k.amis.icon,
|
|
1046
1046
|
scaffold: {
|
|
1047
|
-
type: config$
|
|
1048
|
-
label: config$
|
|
1047
|
+
type: config$k.amis.name,
|
|
1048
|
+
label: config$k.title,
|
|
1049
1049
|
name: ""
|
|
1050
1050
|
},
|
|
1051
1051
|
previewSchema: {
|
|
1052
|
-
type: config$
|
|
1052
|
+
type: config$k.amis.name,
|
|
1053
1053
|
},
|
|
1054
1054
|
panelTitle: "设置",
|
|
1055
1055
|
panelControls: [
|
|
@@ -1077,10 +1077,10 @@
|
|
|
1077
1077
|
* @Author: baozhoutao@steedos.com
|
|
1078
1078
|
* @Date: 2022-08-31 16:32:35
|
|
1079
1079
|
* @LastEditors: baozhoutao@steedos.com
|
|
1080
|
-
* @LastEditTime:
|
|
1080
|
+
* @LastEditTime: 2023-03-06 14:31:14
|
|
1081
1081
|
* @Description:
|
|
1082
1082
|
*/
|
|
1083
|
-
var config$
|
|
1083
|
+
var config$j = {
|
|
1084
1084
|
componentType: 'amisSchema',
|
|
1085
1085
|
group: "华炎魔方",
|
|
1086
1086
|
componentName: "AmisRecordDetailRelatedList",
|
|
@@ -1122,38 +1122,38 @@
|
|
|
1122
1122
|
icon: "fa-fw fa fa-list-alt"
|
|
1123
1123
|
}
|
|
1124
1124
|
};
|
|
1125
|
-
var AmisRecordDetailRelatedList = __assign(__assign({}, config$
|
|
1125
|
+
var AmisRecordDetailRelatedList = __assign(__assign({}, config$j), { snippets: [
|
|
1126
1126
|
{
|
|
1127
|
-
title: config$
|
|
1127
|
+
title: config$j.title,
|
|
1128
1128
|
screenshot: "",
|
|
1129
1129
|
schema: {
|
|
1130
|
-
componentName: config$
|
|
1131
|
-
props: config$
|
|
1130
|
+
componentName: config$j.componentName,
|
|
1131
|
+
props: config$j.preview
|
|
1132
1132
|
}
|
|
1133
1133
|
}
|
|
1134
1134
|
], amis: {
|
|
1135
1135
|
render: {
|
|
1136
|
-
type: config$
|
|
1136
|
+
type: config$j.amis.name,
|
|
1137
1137
|
usage: "renderer",
|
|
1138
1138
|
weight: 1,
|
|
1139
1139
|
framework: "react"
|
|
1140
1140
|
},
|
|
1141
1141
|
plugin: {
|
|
1142
|
-
rendererName: config$
|
|
1142
|
+
rendererName: config$j.amis.name,
|
|
1143
1143
|
$schema: '/schemas/UnkownSchema.json',
|
|
1144
|
-
name: config$
|
|
1145
|
-
description: config$
|
|
1146
|
-
tags: [config$
|
|
1144
|
+
name: config$j.title,
|
|
1145
|
+
description: config$j.description,
|
|
1146
|
+
tags: [config$j.group],
|
|
1147
1147
|
order: -9999,
|
|
1148
|
-
icon: config$
|
|
1148
|
+
icon: config$j.amis.icon,
|
|
1149
1149
|
scaffold: {
|
|
1150
|
-
type: config$
|
|
1151
|
-
label: config$
|
|
1150
|
+
type: config$j.amis.name,
|
|
1151
|
+
label: config$j.title,
|
|
1152
1152
|
objectApiName: "${objectName}",
|
|
1153
1153
|
recordId: "${recordId}"
|
|
1154
1154
|
},
|
|
1155
1155
|
previewSchema: {
|
|
1156
|
-
type: config$
|
|
1156
|
+
type: config$j.amis.name,
|
|
1157
1157
|
objectApiName: "accounts"
|
|
1158
1158
|
},
|
|
1159
1159
|
panelTitle: "设置",
|
|
@@ -1168,7 +1168,7 @@
|
|
|
1168
1168
|
"method": "get",
|
|
1169
1169
|
"url": "/service/api/amis-design/objects",
|
|
1170
1170
|
"requestAdaptor": "api.url = Builder.settings.rootUrl + api.url; if(!api.headers){api.headers = {}};api.headers.Authorization='Bearer ' + Builder.settings.tenantId + ',' + Builder.settings.authToken ;return api;",
|
|
1171
|
-
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"
|
|
1171
|
+
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"\u5F53\u524D\u5BF9\u8C61\",\n name: \"${objectName}\"\n });\n return payload;\n "
|
|
1172
1172
|
},
|
|
1173
1173
|
"labelField": "label",
|
|
1174
1174
|
"valueField": "name",
|
|
@@ -1220,7 +1220,7 @@
|
|
|
1220
1220
|
* @LastEditTime: 2022-12-01 16:08:49
|
|
1221
1221
|
* @Description:
|
|
1222
1222
|
*/
|
|
1223
|
-
var config$
|
|
1223
|
+
var config$i = {
|
|
1224
1224
|
componentType: 'amisSchema',
|
|
1225
1225
|
group: "华炎魔方",
|
|
1226
1226
|
componentName: "AmisRecordDetailRelatedLists",
|
|
@@ -1257,38 +1257,38 @@
|
|
|
1257
1257
|
icon: "fa-fw fa fa-list-alt"
|
|
1258
1258
|
}
|
|
1259
1259
|
};
|
|
1260
|
-
var AmisRecordDetailRelatedLists = __assign(__assign({}, config$
|
|
1260
|
+
var AmisRecordDetailRelatedLists = __assign(__assign({}, config$i), { snippets: [
|
|
1261
1261
|
{
|
|
1262
|
-
title: config$
|
|
1262
|
+
title: config$i.title,
|
|
1263
1263
|
screenshot: "",
|
|
1264
1264
|
schema: {
|
|
1265
|
-
componentName: config$
|
|
1266
|
-
props: config$
|
|
1265
|
+
componentName: config$i.componentName,
|
|
1266
|
+
props: config$i.preview
|
|
1267
1267
|
}
|
|
1268
1268
|
}
|
|
1269
1269
|
], amis: {
|
|
1270
1270
|
render: {
|
|
1271
|
-
type: config$
|
|
1271
|
+
type: config$i.amis.name,
|
|
1272
1272
|
usage: "renderer",
|
|
1273
1273
|
weight: 1,
|
|
1274
1274
|
framework: "react"
|
|
1275
1275
|
},
|
|
1276
1276
|
plugin: {
|
|
1277
|
-
rendererName: config$
|
|
1277
|
+
rendererName: config$i.amis.name,
|
|
1278
1278
|
$schema: '/schemas/UnkownSchema.json',
|
|
1279
|
-
name: config$
|
|
1280
|
-
description: config$
|
|
1281
|
-
tags: [config$
|
|
1279
|
+
name: config$i.title,
|
|
1280
|
+
description: config$i.description,
|
|
1281
|
+
tags: [config$i.group],
|
|
1282
1282
|
order: -9999,
|
|
1283
|
-
icon: config$
|
|
1283
|
+
icon: config$i.amis.icon,
|
|
1284
1284
|
scaffold: {
|
|
1285
|
-
type: config$
|
|
1286
|
-
label: config$
|
|
1285
|
+
type: config$i.amis.name,
|
|
1286
|
+
label: config$i.title,
|
|
1287
1287
|
objectApiName: "${objectName}",
|
|
1288
1288
|
recordId: "${recordId}",
|
|
1289
1289
|
},
|
|
1290
1290
|
previewSchema: {
|
|
1291
|
-
type: config$
|
|
1291
|
+
type: config$i.amis.name,
|
|
1292
1292
|
objectApiName: "accounts",
|
|
1293
1293
|
},
|
|
1294
1294
|
panelTitle: "设置",
|
|
@@ -1303,7 +1303,7 @@
|
|
|
1303
1303
|
"method": "get",
|
|
1304
1304
|
"url": "/service/api/amis-design/objects",
|
|
1305
1305
|
"requestAdaptor": "console.log('api', api);api.url = Builder.settings.rootUrl + api.url; if(!api.headers){api.headers = {}};api.headers.Authorization='Bearer ' + Builder.settings.tenantId + ',' + Builder.settings.authToken ;return api;",
|
|
1306
|
-
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"
|
|
1306
|
+
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"\u5F53\u524D\u5BF9\u8C61\",\n name: \"${objectName}\"\n });\n return payload;\n "
|
|
1307
1307
|
},
|
|
1308
1308
|
"labelField": "label",
|
|
1309
1309
|
"valueField": "name",
|
|
@@ -1325,7 +1325,7 @@
|
|
|
1325
1325
|
* @LastEditTime: 2022-09-02 09:04:33
|
|
1326
1326
|
* @Description:
|
|
1327
1327
|
*/
|
|
1328
|
-
var config$
|
|
1328
|
+
var config$h = {
|
|
1329
1329
|
componentType: 'amisSchema',
|
|
1330
1330
|
group: "华炎魔方",
|
|
1331
1331
|
componentName: "AmisProvider",
|
|
@@ -1350,33 +1350,33 @@
|
|
|
1350
1350
|
icon: "fa-fw fa fa-list-alt"
|
|
1351
1351
|
}
|
|
1352
1352
|
};
|
|
1353
|
-
var AmisProvider = __assign(__assign({}, config$
|
|
1353
|
+
var AmisProvider = __assign(__assign({}, config$h), { snippets: [
|
|
1354
1354
|
{
|
|
1355
|
-
title: config$
|
|
1355
|
+
title: config$h.title,
|
|
1356
1356
|
screenshot: "",
|
|
1357
1357
|
schema: {
|
|
1358
|
-
componentName: config$
|
|
1359
|
-
props: config$
|
|
1358
|
+
componentName: config$h.componentName,
|
|
1359
|
+
props: config$h.preview
|
|
1360
1360
|
}
|
|
1361
1361
|
}
|
|
1362
1362
|
], amis: {
|
|
1363
1363
|
render: {
|
|
1364
|
-
type: config$
|
|
1364
|
+
type: config$h.amis.name,
|
|
1365
1365
|
usage: "renderer",
|
|
1366
1366
|
weight: 1,
|
|
1367
1367
|
framework: "react"
|
|
1368
1368
|
},
|
|
1369
1369
|
plugin_disabled: {
|
|
1370
|
-
rendererName: config$
|
|
1370
|
+
rendererName: config$h.amis.name,
|
|
1371
1371
|
$schema: '/schemas/UnkownSchema.json',
|
|
1372
|
-
name: config$
|
|
1373
|
-
description: config$
|
|
1374
|
-
tags: [config$
|
|
1372
|
+
name: config$h.title,
|
|
1373
|
+
description: config$h.title,
|
|
1374
|
+
tags: [config$h.group],
|
|
1375
1375
|
order: -9999,
|
|
1376
|
-
icon: config$
|
|
1376
|
+
icon: config$h.amis.icon,
|
|
1377
1377
|
scaffold: {
|
|
1378
|
-
type: config$
|
|
1379
|
-
label: config$
|
|
1378
|
+
type: config$h.amis.name,
|
|
1379
|
+
label: config$h.title,
|
|
1380
1380
|
body: [], // 容器类字段
|
|
1381
1381
|
},
|
|
1382
1382
|
// 容器类组件必需字段
|
|
@@ -1387,7 +1387,7 @@
|
|
|
1387
1387
|
},
|
|
1388
1388
|
],
|
|
1389
1389
|
previewSchema: {
|
|
1390
|
-
type: config$
|
|
1390
|
+
type: config$h.amis.name,
|
|
1391
1391
|
},
|
|
1392
1392
|
panelTitle: "设置",
|
|
1393
1393
|
panelControls: []
|
|
@@ -1401,7 +1401,7 @@
|
|
|
1401
1401
|
* @LastEditTime: 2022-12-26 11:26:17
|
|
1402
1402
|
* @Description:
|
|
1403
1403
|
*/
|
|
1404
|
-
var config$
|
|
1404
|
+
var config$g = {
|
|
1405
1405
|
// componentType: 'amisSchema',
|
|
1406
1406
|
group: "华炎魔方",
|
|
1407
1407
|
componentName: "AmisObjectFieldLookup",
|
|
@@ -1425,18 +1425,18 @@
|
|
|
1425
1425
|
icon: "fa-fw fa fa-list-alt"
|
|
1426
1426
|
}
|
|
1427
1427
|
};
|
|
1428
|
-
var AmisObjectFieldLookup = __assign(__assign({}, config$
|
|
1428
|
+
var AmisObjectFieldLookup = __assign(__assign({}, config$g), { snippets: [
|
|
1429
1429
|
{
|
|
1430
|
-
title: config$
|
|
1430
|
+
title: config$g.title,
|
|
1431
1431
|
screenshot: "",
|
|
1432
1432
|
schema: {
|
|
1433
|
-
componentName: config$
|
|
1434
|
-
props: config$
|
|
1433
|
+
componentName: config$g.componentName,
|
|
1434
|
+
props: config$g.preview
|
|
1435
1435
|
}
|
|
1436
1436
|
}
|
|
1437
1437
|
], amis: {
|
|
1438
1438
|
render: {
|
|
1439
|
-
type: config$
|
|
1439
|
+
type: config$g.amis.name,
|
|
1440
1440
|
usage: "formitem",
|
|
1441
1441
|
weight: 1,
|
|
1442
1442
|
framework: "react"
|
|
@@ -1472,7 +1472,7 @@
|
|
|
1472
1472
|
* @LastEditTime: 2023-02-04 12:04:41
|
|
1473
1473
|
* @Description:
|
|
1474
1474
|
*/
|
|
1475
|
-
var config$
|
|
1475
|
+
var config$f = {
|
|
1476
1476
|
// componentType: 'amisSchema',
|
|
1477
1477
|
group: "华炎魔方",
|
|
1478
1478
|
componentName: "AmisObjectButton",
|
|
@@ -1496,18 +1496,18 @@
|
|
|
1496
1496
|
icon: "fa-fw fa fa-list-alt"
|
|
1497
1497
|
}
|
|
1498
1498
|
};
|
|
1499
|
-
var AmisObjectButton = __assign(__assign({}, config$
|
|
1499
|
+
var AmisObjectButton = __assign(__assign({}, config$f), { snippets: [
|
|
1500
1500
|
{
|
|
1501
|
-
title: config$
|
|
1501
|
+
title: config$f.title,
|
|
1502
1502
|
screenshot: "",
|
|
1503
1503
|
schema: {
|
|
1504
|
-
componentName: config$
|
|
1505
|
-
props: config$
|
|
1504
|
+
componentName: config$f.componentName,
|
|
1505
|
+
props: config$f.preview
|
|
1506
1506
|
}
|
|
1507
1507
|
}
|
|
1508
1508
|
], amis: {
|
|
1509
1509
|
render: {
|
|
1510
|
-
type: config$
|
|
1510
|
+
type: config$f.amis.name,
|
|
1511
1511
|
usage: "renderer",
|
|
1512
1512
|
weight: 1,
|
|
1513
1513
|
framework: "react"
|
|
@@ -1543,7 +1543,7 @@
|
|
|
1543
1543
|
* @LastEditTime: 2022-11-14 10:09:25
|
|
1544
1544
|
* @Description:
|
|
1545
1545
|
*/
|
|
1546
|
-
var config$
|
|
1546
|
+
var config$e = {
|
|
1547
1547
|
// componentType: 'amisSchema',
|
|
1548
1548
|
group: "华炎魔方",
|
|
1549
1549
|
componentName: "SteedosDropdownButton",
|
|
@@ -1567,18 +1567,18 @@
|
|
|
1567
1567
|
icon: "fa-fw fa fa-list-alt"
|
|
1568
1568
|
}
|
|
1569
1569
|
};
|
|
1570
|
-
var SteedosDropdownButton = __assign(__assign({}, config$
|
|
1570
|
+
var SteedosDropdownButton = __assign(__assign({}, config$e), { snippets: [
|
|
1571
1571
|
{
|
|
1572
|
-
title: config$
|
|
1572
|
+
title: config$e.title,
|
|
1573
1573
|
screenshot: "",
|
|
1574
1574
|
schema: {
|
|
1575
|
-
componentName: config$
|
|
1576
|
-
props: config$
|
|
1577
|
-
}
|
|
1575
|
+
componentName: config$e.componentName,
|
|
1576
|
+
props: config$e.preview
|
|
1577
|
+
}
|
|
1578
1578
|
}
|
|
1579
1579
|
], amis: {
|
|
1580
1580
|
render: {
|
|
1581
|
-
type: config$
|
|
1581
|
+
type: config$e.amis.name,
|
|
1582
1582
|
usage: "renderer",
|
|
1583
1583
|
weight: 1,
|
|
1584
1584
|
framework: "react"
|
|
@@ -1614,7 +1614,7 @@
|
|
|
1614
1614
|
* @LastEditTime: 2022-12-13 12:04:13
|
|
1615
1615
|
* @Description:
|
|
1616
1616
|
*/
|
|
1617
|
-
var config$
|
|
1617
|
+
var config$d = {
|
|
1618
1618
|
componentType: 'amisSchema',
|
|
1619
1619
|
group: "华炎魔方",
|
|
1620
1620
|
componentName: "AmisAppLauncher",
|
|
@@ -1638,39 +1638,39 @@
|
|
|
1638
1638
|
icon: "fa-fw fa fa-list-alt"
|
|
1639
1639
|
}
|
|
1640
1640
|
};
|
|
1641
|
-
var AmisAppLauncher = __assign(__assign({}, config$
|
|
1641
|
+
var AmisAppLauncher = __assign(__assign({}, config$d), { snippets: [
|
|
1642
1642
|
{
|
|
1643
|
-
title: config$
|
|
1643
|
+
title: config$d.title,
|
|
1644
1644
|
screenshot: "",
|
|
1645
1645
|
schema: {
|
|
1646
|
-
componentName: config$
|
|
1647
|
-
props: config$
|
|
1646
|
+
componentName: config$d.componentName,
|
|
1647
|
+
props: config$d.preview
|
|
1648
1648
|
}
|
|
1649
1649
|
}
|
|
1650
1650
|
], amis: {
|
|
1651
1651
|
render: {
|
|
1652
|
-
type: config$
|
|
1652
|
+
type: config$d.amis.name,
|
|
1653
1653
|
usage: "renderer",
|
|
1654
1654
|
weight: 1,
|
|
1655
1655
|
framework: "react"
|
|
1656
1656
|
},
|
|
1657
1657
|
plugin_disabled: {
|
|
1658
|
-
rendererName: config$
|
|
1658
|
+
rendererName: config$d.amis.name,
|
|
1659
1659
|
$schema: '/schemas/UnkownSchema.json',
|
|
1660
|
-
name: config$
|
|
1661
|
-
description: config$
|
|
1662
|
-
tags: [config$
|
|
1660
|
+
name: config$d.title,
|
|
1661
|
+
description: config$d.title,
|
|
1662
|
+
tags: [config$d.group],
|
|
1663
1663
|
order: -9999,
|
|
1664
|
-
icon: config$
|
|
1664
|
+
icon: config$d.amis.icon,
|
|
1665
1665
|
scaffold: {
|
|
1666
|
-
type: config$
|
|
1667
|
-
label: config$
|
|
1666
|
+
type: config$d.amis.name,
|
|
1667
|
+
label: config$d.title,
|
|
1668
1668
|
name: 'board',
|
|
1669
1669
|
columns: 1,
|
|
1670
1670
|
vertical: false
|
|
1671
1671
|
},
|
|
1672
1672
|
previewSchema: {
|
|
1673
|
-
type: config$
|
|
1673
|
+
type: config$d.amis.name,
|
|
1674
1674
|
},
|
|
1675
1675
|
panelTitle: "设置",
|
|
1676
1676
|
panelControls: []
|
|
@@ -1684,7 +1684,7 @@
|
|
|
1684
1684
|
* @LastEditTime: 2022-12-13 12:08:37
|
|
1685
1685
|
* @Description:
|
|
1686
1686
|
*/
|
|
1687
|
-
var config$
|
|
1687
|
+
var config$c = {
|
|
1688
1688
|
componentType: 'amisSchema',
|
|
1689
1689
|
group: "华炎魔方",
|
|
1690
1690
|
componentName: "AmisLogo",
|
|
@@ -1708,39 +1708,39 @@
|
|
|
1708
1708
|
icon: "fa-fw fa fa-list-alt"
|
|
1709
1709
|
}
|
|
1710
1710
|
};
|
|
1711
|
-
var AmisLogo = __assign(__assign({}, config$
|
|
1711
|
+
var AmisLogo = __assign(__assign({}, config$c), { snippets: [
|
|
1712
1712
|
{
|
|
1713
|
-
title: config$
|
|
1713
|
+
title: config$c.title,
|
|
1714
1714
|
screenshot: "",
|
|
1715
1715
|
schema: {
|
|
1716
|
-
componentName: config$
|
|
1717
|
-
props: config$
|
|
1716
|
+
componentName: config$c.componentName,
|
|
1717
|
+
props: config$c.preview
|
|
1718
1718
|
}
|
|
1719
1719
|
}
|
|
1720
1720
|
], amis: {
|
|
1721
1721
|
render: {
|
|
1722
|
-
type: config$
|
|
1722
|
+
type: config$c.amis.name,
|
|
1723
1723
|
usage: "renderer",
|
|
1724
1724
|
weight: 1,
|
|
1725
1725
|
framework: "react"
|
|
1726
1726
|
},
|
|
1727
1727
|
plugin_disabled: {
|
|
1728
|
-
rendererName: config$
|
|
1728
|
+
rendererName: config$c.amis.name,
|
|
1729
1729
|
$schema: '/schemas/UnkownSchema.json',
|
|
1730
|
-
name: config$
|
|
1731
|
-
description: config$
|
|
1732
|
-
tags: [config$
|
|
1730
|
+
name: config$c.title,
|
|
1731
|
+
description: config$c.title,
|
|
1732
|
+
tags: [config$c.group],
|
|
1733
1733
|
order: -9999,
|
|
1734
|
-
icon: config$
|
|
1734
|
+
icon: config$c.amis.icon,
|
|
1735
1735
|
scaffold: {
|
|
1736
|
-
type: config$
|
|
1737
|
-
label: config$
|
|
1736
|
+
type: config$c.amis.name,
|
|
1737
|
+
label: config$c.title,
|
|
1738
1738
|
name: 'board',
|
|
1739
1739
|
columns: 1,
|
|
1740
1740
|
vertical: false
|
|
1741
1741
|
},
|
|
1742
1742
|
previewSchema: {
|
|
1743
|
-
type: config$
|
|
1743
|
+
type: config$c.amis.name,
|
|
1744
1744
|
},
|
|
1745
1745
|
panelTitle: "设置",
|
|
1746
1746
|
panelControls: []
|
|
@@ -1754,7 +1754,7 @@
|
|
|
1754
1754
|
* @LastEditTime: 2022-12-16 14:17:37
|
|
1755
1755
|
* @Description:
|
|
1756
1756
|
*/
|
|
1757
|
-
var config$
|
|
1757
|
+
var config$b = {
|
|
1758
1758
|
componentType: 'amisSchema',
|
|
1759
1759
|
group: "华炎魔方",
|
|
1760
1760
|
componentName: "AmisAppMenu",
|
|
@@ -1785,39 +1785,39 @@
|
|
|
1785
1785
|
icon: "fa-fw fa fa-list-alt"
|
|
1786
1786
|
}
|
|
1787
1787
|
};
|
|
1788
|
-
var AmisAppMenu = __assign(__assign({}, config$
|
|
1788
|
+
var AmisAppMenu = __assign(__assign({}, config$b), { snippets: [
|
|
1789
1789
|
{
|
|
1790
|
-
title: config$
|
|
1790
|
+
title: config$b.title,
|
|
1791
1791
|
screenshot: "",
|
|
1792
1792
|
schema: {
|
|
1793
|
-
componentName: config$
|
|
1794
|
-
props: config$
|
|
1793
|
+
componentName: config$b.componentName,
|
|
1794
|
+
props: config$b.preview
|
|
1795
1795
|
}
|
|
1796
1796
|
}
|
|
1797
1797
|
], amis: {
|
|
1798
1798
|
render: {
|
|
1799
|
-
type: config$
|
|
1799
|
+
type: config$b.amis.name,
|
|
1800
1800
|
usage: "renderer",
|
|
1801
1801
|
weight: 1,
|
|
1802
1802
|
framework: "react"
|
|
1803
1803
|
},
|
|
1804
1804
|
plugin_disabled: {
|
|
1805
|
-
rendererName: config$
|
|
1805
|
+
rendererName: config$b.amis.name,
|
|
1806
1806
|
$schema: '/schemas/UnkownSchema.json',
|
|
1807
|
-
name: config$
|
|
1808
|
-
description: config$
|
|
1809
|
-
tags: [config$
|
|
1807
|
+
name: config$b.title,
|
|
1808
|
+
description: config$b.title,
|
|
1809
|
+
tags: [config$b.group],
|
|
1810
1810
|
order: -9999,
|
|
1811
|
-
icon: config$
|
|
1811
|
+
icon: config$b.amis.icon,
|
|
1812
1812
|
scaffold: {
|
|
1813
|
-
type: config$
|
|
1814
|
-
label: config$
|
|
1813
|
+
type: config$b.amis.name,
|
|
1814
|
+
label: config$b.title,
|
|
1815
1815
|
columns: 1,
|
|
1816
1816
|
vertical: false,
|
|
1817
1817
|
showIcon: true
|
|
1818
1818
|
},
|
|
1819
1819
|
previewSchema: {
|
|
1820
|
-
type: config$
|
|
1820
|
+
type: config$b.amis.name,
|
|
1821
1821
|
},
|
|
1822
1822
|
panelTitle: "设置",
|
|
1823
1823
|
panelControls: [
|
|
@@ -1842,7 +1842,7 @@
|
|
|
1842
1842
|
* @LastEditTime: 2022-12-16 11:10:03
|
|
1843
1843
|
* @Description:
|
|
1844
1844
|
*/
|
|
1845
|
-
var config$
|
|
1845
|
+
var config$a = {
|
|
1846
1846
|
// componentType: 'amisSchema',
|
|
1847
1847
|
group: "华炎魔方-界面",
|
|
1848
1848
|
componentName: "SteedosIcon",
|
|
@@ -1866,39 +1866,39 @@
|
|
|
1866
1866
|
icon: "fa-fw fa fa-list-alt"
|
|
1867
1867
|
}
|
|
1868
1868
|
};
|
|
1869
|
-
var SteedosIcon = __assign(__assign({}, config$
|
|
1869
|
+
var SteedosIcon = __assign(__assign({}, config$a), { snippets: [
|
|
1870
1870
|
{
|
|
1871
|
-
title: config$
|
|
1871
|
+
title: config$a.title,
|
|
1872
1872
|
screenshot: "",
|
|
1873
1873
|
schema: {
|
|
1874
|
-
componentName: config$
|
|
1875
|
-
props: config$
|
|
1874
|
+
componentName: config$a.componentName,
|
|
1875
|
+
props: config$a.preview
|
|
1876
1876
|
}
|
|
1877
1877
|
}
|
|
1878
1878
|
], amis: {
|
|
1879
1879
|
render: {
|
|
1880
|
-
type: config$
|
|
1880
|
+
type: config$a.amis.name,
|
|
1881
1881
|
usage: "renderer",
|
|
1882
1882
|
weight: 1,
|
|
1883
1883
|
framework: "react"
|
|
1884
1884
|
},
|
|
1885
1885
|
plugin_disabled: {
|
|
1886
|
-
rendererName: config$
|
|
1886
|
+
rendererName: config$a.amis.name,
|
|
1887
1887
|
$schema: '/schemas/UnkownSchema.json',
|
|
1888
|
-
name: config$
|
|
1889
|
-
description: config$
|
|
1890
|
-
tags: [config$
|
|
1888
|
+
name: config$a.title,
|
|
1889
|
+
description: config$a.title,
|
|
1890
|
+
tags: [config$a.group],
|
|
1891
1891
|
order: -9999,
|
|
1892
|
-
icon: config$
|
|
1892
|
+
icon: config$a.amis.icon,
|
|
1893
1893
|
scaffold: {
|
|
1894
|
-
type: config$
|
|
1894
|
+
type: config$a.amis.name,
|
|
1895
1895
|
category: 'standard',
|
|
1896
1896
|
name: 'account',
|
|
1897
1897
|
colorVariant: 'default',
|
|
1898
1898
|
size: 'medium'
|
|
1899
1899
|
},
|
|
1900
1900
|
previewSchema: {
|
|
1901
|
-
type: config$
|
|
1901
|
+
type: config$a.amis.name,
|
|
1902
1902
|
},
|
|
1903
1903
|
panelTitle: "设置",
|
|
1904
1904
|
panelControls: [
|
|
@@ -1993,7 +1993,7 @@
|
|
|
1993
1993
|
* @LastEditTime: 2022-12-16 11:11:32
|
|
1994
1994
|
* @Description:
|
|
1995
1995
|
*/
|
|
1996
|
-
var config$
|
|
1996
|
+
var config$9 = {
|
|
1997
1997
|
// componentType: 'amisSchema',
|
|
1998
1998
|
group: "华炎魔方",
|
|
1999
1999
|
componentName: "SteedosDropdown",
|
|
@@ -2017,32 +2017,32 @@
|
|
|
2017
2017
|
icon: "fa-fw fa fa-list-alt"
|
|
2018
2018
|
}
|
|
2019
2019
|
};
|
|
2020
|
-
var SteedosDropdown = __assign(__assign({}, config$
|
|
2020
|
+
var SteedosDropdown = __assign(__assign({}, config$9), { snippets: [
|
|
2021
2021
|
{
|
|
2022
|
-
title: config$
|
|
2022
|
+
title: config$9.title,
|
|
2023
2023
|
screenshot: "",
|
|
2024
2024
|
schema: {
|
|
2025
|
-
componentName: config$
|
|
2026
|
-
props: config$
|
|
2025
|
+
componentName: config$9.componentName,
|
|
2026
|
+
props: config$9.preview
|
|
2027
2027
|
}
|
|
2028
2028
|
}
|
|
2029
2029
|
], amis: {
|
|
2030
2030
|
render: {
|
|
2031
|
-
type: config$
|
|
2031
|
+
type: config$9.amis.name,
|
|
2032
2032
|
usage: "renderer",
|
|
2033
2033
|
weight: 1,
|
|
2034
2034
|
framework: "react"
|
|
2035
2035
|
},
|
|
2036
2036
|
plugin_disabled: {
|
|
2037
|
-
rendererName: config$
|
|
2037
|
+
rendererName: config$9.amis.name,
|
|
2038
2038
|
$schema: '/schemas/UnkownSchema.json',
|
|
2039
|
-
name: config$
|
|
2040
|
-
description: config$
|
|
2041
|
-
tags: [config$
|
|
2039
|
+
name: config$9.title,
|
|
2040
|
+
description: config$9.title,
|
|
2041
|
+
tags: [config$9.group],
|
|
2042
2042
|
order: -9999,
|
|
2043
|
-
icon: config$
|
|
2043
|
+
icon: config$9.amis.icon,
|
|
2044
2044
|
scaffold: {
|
|
2045
|
-
type: config$
|
|
2045
|
+
type: config$9.amis.name,
|
|
2046
2046
|
placement: 'bottomLeft',
|
|
2047
2047
|
trigger: ['click'],
|
|
2048
2048
|
body: [],
|
|
@@ -2059,7 +2059,7 @@
|
|
|
2059
2059
|
},
|
|
2060
2060
|
],
|
|
2061
2061
|
previewSchema: {
|
|
2062
|
-
type: config$
|
|
2062
|
+
type: config$9.amis.name,
|
|
2063
2063
|
},
|
|
2064
2064
|
panelTitle: "设置",
|
|
2065
2065
|
panelControls: [
|
|
@@ -2107,7 +2107,7 @@
|
|
|
2107
2107
|
* @LastEditTime: 2022-12-16 11:10:51
|
|
2108
2108
|
* @Description:
|
|
2109
2109
|
*/
|
|
2110
|
-
var config$
|
|
2110
|
+
var config$8 = {
|
|
2111
2111
|
// componentType: 'amisSchema',
|
|
2112
2112
|
group: "华炎魔方",
|
|
2113
2113
|
componentName: "FromNow",
|
|
@@ -2131,18 +2131,18 @@
|
|
|
2131
2131
|
icon: "fa-fw fa fa-list-alt"
|
|
2132
2132
|
}
|
|
2133
2133
|
};
|
|
2134
|
-
var FromNow = __assign(__assign({}, config$
|
|
2134
|
+
var FromNow = __assign(__assign({}, config$8), { snippets: [
|
|
2135
2135
|
{
|
|
2136
|
-
title: config$
|
|
2136
|
+
title: config$8.title,
|
|
2137
2137
|
screenshot: "",
|
|
2138
2138
|
schema: {
|
|
2139
|
-
componentName: config$
|
|
2140
|
-
props: config$
|
|
2139
|
+
componentName: config$8.componentName,
|
|
2140
|
+
props: config$8.preview
|
|
2141
2141
|
}
|
|
2142
2142
|
}
|
|
2143
2143
|
], amis: {
|
|
2144
2144
|
render: {
|
|
2145
|
-
type: config$
|
|
2145
|
+
type: config$8.amis.name,
|
|
2146
2146
|
usage: "renderer",
|
|
2147
2147
|
weight: 1,
|
|
2148
2148
|
framework: "react"
|
|
@@ -2180,7 +2180,7 @@
|
|
|
2180
2180
|
* @LastEditTime: 2022-12-14 13:38:52
|
|
2181
2181
|
* @Description:
|
|
2182
2182
|
*/
|
|
2183
|
-
var config$
|
|
2183
|
+
var config$7 = {
|
|
2184
2184
|
componentType: 'amisSchema',
|
|
2185
2185
|
group: "华炎魔方",
|
|
2186
2186
|
componentName: "AmisGlobalHeader",
|
|
@@ -2205,38 +2205,38 @@
|
|
|
2205
2205
|
icon: "fa-fw fa fa-list-alt"
|
|
2206
2206
|
}
|
|
2207
2207
|
};
|
|
2208
|
-
var AmisGlobalHeader = __assign(__assign({}, config$
|
|
2208
|
+
var AmisGlobalHeader = __assign(__assign({}, config$7), { snippets: [
|
|
2209
2209
|
{
|
|
2210
|
-
title: config$
|
|
2210
|
+
title: config$7.title,
|
|
2211
2211
|
screenshot: "",
|
|
2212
2212
|
schema: {
|
|
2213
|
-
componentName: config$
|
|
2214
|
-
props: config$
|
|
2213
|
+
componentName: config$7.componentName,
|
|
2214
|
+
props: config$7.preview
|
|
2215
2215
|
}
|
|
2216
2216
|
}
|
|
2217
2217
|
], amis: {
|
|
2218
2218
|
render: {
|
|
2219
|
-
type: config$
|
|
2219
|
+
type: config$7.amis.name,
|
|
2220
2220
|
usage: "renderer",
|
|
2221
2221
|
weight: 1,
|
|
2222
2222
|
framework: "react"
|
|
2223
2223
|
},
|
|
2224
2224
|
plugin_disabled: {
|
|
2225
|
-
rendererName: config$
|
|
2225
|
+
rendererName: config$7.amis.name,
|
|
2226
2226
|
$schema: '/schemas/UnkownSchema.json',
|
|
2227
|
-
name: config$
|
|
2228
|
-
description: config$
|
|
2229
|
-
tags: [config$
|
|
2227
|
+
name: config$7.title,
|
|
2228
|
+
description: config$7.title,
|
|
2229
|
+
tags: [config$7.group],
|
|
2230
2230
|
order: -9999,
|
|
2231
|
-
icon: config$
|
|
2231
|
+
icon: config$7.amis.icon,
|
|
2232
2232
|
scaffold: {
|
|
2233
|
-
type: config$
|
|
2234
|
-
label: config$
|
|
2233
|
+
type: config$7.amis.name,
|
|
2234
|
+
label: config$7.title,
|
|
2235
2235
|
columns: 1,
|
|
2236
2236
|
vertical: false
|
|
2237
2237
|
},
|
|
2238
2238
|
previewSchema: {
|
|
2239
|
-
type: config$
|
|
2239
|
+
type: config$7.amis.name,
|
|
2240
2240
|
},
|
|
2241
2241
|
panelTitle: "设置",
|
|
2242
2242
|
panelControls: []
|
|
@@ -2250,7 +2250,7 @@
|
|
|
2250
2250
|
* @LastEditTime: 2022-12-16 10:15:58
|
|
2251
2251
|
* @Description:
|
|
2252
2252
|
*/
|
|
2253
|
-
var config$
|
|
2253
|
+
var config$6 = {
|
|
2254
2254
|
group: "华炎魔方",
|
|
2255
2255
|
componentName: "SteedosLoading",
|
|
2256
2256
|
title: "加载中",
|
|
@@ -2273,18 +2273,18 @@
|
|
|
2273
2273
|
icon: "fa-fw fa fa-list-alt"
|
|
2274
2274
|
}
|
|
2275
2275
|
};
|
|
2276
|
-
var SteedosLoading = __assign(__assign({}, config$
|
|
2276
|
+
var SteedosLoading = __assign(__assign({}, config$6), { snippets: [
|
|
2277
2277
|
{
|
|
2278
|
-
title: config$
|
|
2278
|
+
title: config$6.title,
|
|
2279
2279
|
screenshot: "",
|
|
2280
2280
|
schema: {
|
|
2281
|
-
componentName: config$
|
|
2282
|
-
props: config$
|
|
2281
|
+
componentName: config$6.componentName,
|
|
2282
|
+
props: config$6.preview
|
|
2283
2283
|
}
|
|
2284
2284
|
}
|
|
2285
2285
|
], amis: {
|
|
2286
2286
|
render: {
|
|
2287
|
-
type: config$
|
|
2287
|
+
type: config$6.amis.name,
|
|
2288
2288
|
usage: "renderer",
|
|
2289
2289
|
weight: 1,
|
|
2290
2290
|
framework: "react"
|
|
@@ -2298,7 +2298,7 @@
|
|
|
2298
2298
|
* @LastEditTime: 2022-12-16 10:15:58
|
|
2299
2299
|
* @Description:
|
|
2300
2300
|
*/
|
|
2301
|
-
var config$
|
|
2301
|
+
var config$5 = {
|
|
2302
2302
|
// componentType: 'amisSchema',
|
|
2303
2303
|
group: "华炎魔方",
|
|
2304
2304
|
componentName: "SteedosBadge",
|
|
@@ -2322,32 +2322,32 @@
|
|
|
2322
2322
|
icon: "fa-fw fa fa-list-alt"
|
|
2323
2323
|
}
|
|
2324
2324
|
};
|
|
2325
|
-
var SteedosBadge = __assign(__assign({}, config$
|
|
2325
|
+
var SteedosBadge = __assign(__assign({}, config$5), { snippets: [
|
|
2326
2326
|
{
|
|
2327
|
-
title: config$
|
|
2327
|
+
title: config$5.title,
|
|
2328
2328
|
screenshot: "",
|
|
2329
2329
|
schema: {
|
|
2330
|
-
componentName: config$
|
|
2331
|
-
props: config$
|
|
2330
|
+
componentName: config$5.componentName,
|
|
2331
|
+
props: config$5.preview
|
|
2332
2332
|
}
|
|
2333
2333
|
}
|
|
2334
2334
|
], amis: {
|
|
2335
2335
|
render: {
|
|
2336
|
-
type: config$
|
|
2336
|
+
type: config$5.amis.name,
|
|
2337
2337
|
usage: "renderer",
|
|
2338
2338
|
weight: 1,
|
|
2339
2339
|
framework: "react"
|
|
2340
2340
|
},
|
|
2341
2341
|
plugin_disabled: {
|
|
2342
|
-
rendererName: config$
|
|
2342
|
+
rendererName: config$5.amis.name,
|
|
2343
2343
|
$schema: '/schemas/UnkownSchema.json',
|
|
2344
|
-
name: config$
|
|
2345
|
-
description: config$
|
|
2346
|
-
tags: [config$
|
|
2344
|
+
name: config$5.title,
|
|
2345
|
+
description: config$5.title,
|
|
2346
|
+
tags: [config$5.group],
|
|
2347
2347
|
order: -9999,
|
|
2348
|
-
icon: config$
|
|
2348
|
+
icon: config$5.amis.icon,
|
|
2349
2349
|
scaffold: {
|
|
2350
|
-
type: config$
|
|
2350
|
+
type: config$5.amis.name,
|
|
2351
2351
|
count: 100,
|
|
2352
2352
|
body: [], // 容器类字段
|
|
2353
2353
|
},
|
|
@@ -2358,7 +2358,7 @@
|
|
|
2358
2358
|
}
|
|
2359
2359
|
],
|
|
2360
2360
|
previewSchema: {
|
|
2361
|
-
type: config$
|
|
2361
|
+
type: config$5.amis.name,
|
|
2362
2362
|
},
|
|
2363
2363
|
panelTitle: "设置",
|
|
2364
2364
|
panelControls: [
|
|
@@ -2434,7 +2434,7 @@
|
|
|
2434
2434
|
* @LastEditTime: 2022-12-16 10:12:33
|
|
2435
2435
|
* @Description:
|
|
2436
2436
|
*/
|
|
2437
|
-
var config$
|
|
2437
|
+
var config$4 = {
|
|
2438
2438
|
// componentType: 'amisSchema',
|
|
2439
2439
|
group: "华炎魔方",
|
|
2440
2440
|
componentName: "SteedosBadgeRibbon",
|
|
@@ -2458,32 +2458,32 @@
|
|
|
2458
2458
|
icon: "fa-fw fa fa-list-alt"
|
|
2459
2459
|
}
|
|
2460
2460
|
};
|
|
2461
|
-
var SteedosBadgeRibbon = __assign(__assign({}, config$
|
|
2461
|
+
var SteedosBadgeRibbon = __assign(__assign({}, config$4), { snippets: [
|
|
2462
2462
|
{
|
|
2463
|
-
title: config$
|
|
2463
|
+
title: config$4.title,
|
|
2464
2464
|
screenshot: "",
|
|
2465
2465
|
schema: {
|
|
2466
|
-
componentName: config$
|
|
2467
|
-
props: config$
|
|
2466
|
+
componentName: config$4.componentName,
|
|
2467
|
+
props: config$4.preview
|
|
2468
2468
|
}
|
|
2469
2469
|
}
|
|
2470
2470
|
], amis: {
|
|
2471
2471
|
render: {
|
|
2472
|
-
type: config$
|
|
2472
|
+
type: config$4.amis.name,
|
|
2473
2473
|
usage: "renderer",
|
|
2474
2474
|
weight: 1,
|
|
2475
2475
|
framework: "react"
|
|
2476
2476
|
},
|
|
2477
2477
|
plugin_disabled: {
|
|
2478
|
-
rendererName: config$
|
|
2478
|
+
rendererName: config$4.amis.name,
|
|
2479
2479
|
$schema: '/schemas/UnkownSchema.json',
|
|
2480
|
-
name: config$
|
|
2481
|
-
description: config$
|
|
2482
|
-
tags: [config$
|
|
2480
|
+
name: config$4.title,
|
|
2481
|
+
description: config$4.title,
|
|
2482
|
+
tags: [config$4.group],
|
|
2483
2483
|
order: -9999,
|
|
2484
|
-
icon: config$
|
|
2484
|
+
icon: config$4.amis.icon,
|
|
2485
2485
|
scaffold: {
|
|
2486
|
-
type: config$
|
|
2486
|
+
type: config$4.amis.name,
|
|
2487
2487
|
body: [], // 容器类字段
|
|
2488
2488
|
},
|
|
2489
2489
|
regions: [
|
|
@@ -2493,7 +2493,7 @@
|
|
|
2493
2493
|
}
|
|
2494
2494
|
],
|
|
2495
2495
|
previewSchema: {
|
|
2496
|
-
type: config$
|
|
2496
|
+
type: config$4.amis.name,
|
|
2497
2497
|
},
|
|
2498
2498
|
panelTitle: "设置",
|
|
2499
2499
|
panelControls: [
|
|
@@ -2524,14 +2524,14 @@
|
|
|
2524
2524
|
* @Author: baozhoutao@steedos.com
|
|
2525
2525
|
* @Date: 2022-10-11 09:39:38
|
|
2526
2526
|
* @LastEditors: baozhoutao@steedos.com
|
|
2527
|
-
* @LastEditTime: 2023-
|
|
2527
|
+
* @LastEditTime: 2023-03-06 18:29:59
|
|
2528
2528
|
* @Description:
|
|
2529
2529
|
*/
|
|
2530
|
-
var config$
|
|
2530
|
+
var config$3 = {
|
|
2531
2531
|
componentType: 'amisSchema',
|
|
2532
|
-
group: "
|
|
2532
|
+
group: "华炎魔方-原子组件",
|
|
2533
2533
|
componentName: "AmisSteedosField",
|
|
2534
|
-
title: "
|
|
2534
|
+
title: "字段",
|
|
2535
2535
|
docUrl: "",
|
|
2536
2536
|
screenshot: "",
|
|
2537
2537
|
npm: {
|
|
@@ -2551,56 +2551,54 @@
|
|
|
2551
2551
|
icon: "fa-fw fa fa-list-alt"
|
|
2552
2552
|
}
|
|
2553
2553
|
};
|
|
2554
|
-
var AmisSteedosField = __assign(__assign({}, config$
|
|
2554
|
+
var AmisSteedosField = __assign(__assign({}, config$3), { snippets: [
|
|
2555
2555
|
{
|
|
2556
|
-
title: config$
|
|
2556
|
+
title: config$3.title,
|
|
2557
2557
|
screenshot: "",
|
|
2558
2558
|
schema: {
|
|
2559
|
-
componentName: config$
|
|
2560
|
-
props: config$
|
|
2559
|
+
componentName: config$3.componentName,
|
|
2560
|
+
props: config$3.preview
|
|
2561
2561
|
}
|
|
2562
2562
|
}
|
|
2563
2563
|
], amis: {
|
|
2564
2564
|
render: {
|
|
2565
|
-
type: config$
|
|
2565
|
+
type: config$3.amis.name,
|
|
2566
2566
|
usage: "renderer",
|
|
2567
2567
|
weight: 1,
|
|
2568
2568
|
framework: "react"
|
|
2569
2569
|
},
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
// ]
|
|
2603
|
-
// }
|
|
2570
|
+
plugin: {
|
|
2571
|
+
rendererName: config$3.amis.name,
|
|
2572
|
+
$schema: '/schemas/UnkownSchema.json',
|
|
2573
|
+
name: config$3.title,
|
|
2574
|
+
description: config$3.title,
|
|
2575
|
+
tags: [config$3.group],
|
|
2576
|
+
order: -9999,
|
|
2577
|
+
icon: config$3.amis.icon,
|
|
2578
|
+
scaffold: {
|
|
2579
|
+
type: config$3.amis.name,
|
|
2580
|
+
config: {
|
|
2581
|
+
"type": "text",
|
|
2582
|
+
"label": "字段1"
|
|
2583
|
+
}
|
|
2584
|
+
},
|
|
2585
|
+
previewSchema: {
|
|
2586
|
+
type: config$3.amis.name,
|
|
2587
|
+
config: {
|
|
2588
|
+
"type": "text",
|
|
2589
|
+
"label": "字段1"
|
|
2590
|
+
}
|
|
2591
|
+
},
|
|
2592
|
+
panelTitle: "设置",
|
|
2593
|
+
panelControls: [
|
|
2594
|
+
{
|
|
2595
|
+
type: "editor",
|
|
2596
|
+
name: "config",
|
|
2597
|
+
label: "字段定义",
|
|
2598
|
+
language: "json"
|
|
2599
|
+
}
|
|
2600
|
+
]
|
|
2601
|
+
}
|
|
2604
2602
|
} });
|
|
2605
2603
|
|
|
2606
2604
|
/*
|
|
@@ -2610,7 +2608,7 @@
|
|
|
2610
2608
|
* @LastEditTime: 2023-01-14 16:51:23
|
|
2611
2609
|
* @Description:
|
|
2612
2610
|
*/
|
|
2613
|
-
var config$
|
|
2611
|
+
var config$2 = {
|
|
2614
2612
|
componentType: 'amisSchema',
|
|
2615
2613
|
group: "华炎魔方",
|
|
2616
2614
|
componentName: "AmisSelectFlow",
|
|
@@ -2634,18 +2632,18 @@
|
|
|
2634
2632
|
icon: "fa-fw fa fa-list-alt"
|
|
2635
2633
|
}
|
|
2636
2634
|
};
|
|
2637
|
-
var AmisSelectFlow = __assign(__assign({}, config$
|
|
2635
|
+
var AmisSelectFlow = __assign(__assign({}, config$2), { snippets: [
|
|
2638
2636
|
{
|
|
2639
|
-
title: config$
|
|
2637
|
+
title: config$2.title,
|
|
2640
2638
|
screenshot: "",
|
|
2641
2639
|
schema: {
|
|
2642
|
-
componentName: config$
|
|
2643
|
-
props: config$
|
|
2640
|
+
componentName: config$2.componentName,
|
|
2641
|
+
props: config$2.preview
|
|
2644
2642
|
}
|
|
2645
2643
|
}
|
|
2646
2644
|
], amis: {
|
|
2647
2645
|
render: {
|
|
2648
|
-
type: config$
|
|
2646
|
+
type: config$2.amis.name,
|
|
2649
2647
|
usage: "renderer",
|
|
2650
2648
|
weight: 1,
|
|
2651
2649
|
framework: "react"
|
|
@@ -2683,7 +2681,7 @@
|
|
|
2683
2681
|
* @LastEditTime: 2023-02-09 16:48:59
|
|
2684
2682
|
* @Description:
|
|
2685
2683
|
*/
|
|
2686
|
-
var config = {
|
|
2684
|
+
var config$1 = {
|
|
2687
2685
|
componentType: 'amisSchema',
|
|
2688
2686
|
group: "华炎魔方",
|
|
2689
2687
|
componentName: "AmisInstanceDetail",
|
|
@@ -2707,18 +2705,18 @@
|
|
|
2707
2705
|
icon: "fa-fw fa fa-list-alt"
|
|
2708
2706
|
}
|
|
2709
2707
|
};
|
|
2710
|
-
var AmisInstanceDetail = __assign(__assign({}, config), { snippets: [
|
|
2708
|
+
var AmisInstanceDetail = __assign(__assign({}, config$1), { snippets: [
|
|
2711
2709
|
{
|
|
2712
|
-
title: config.title,
|
|
2710
|
+
title: config$1.title,
|
|
2713
2711
|
screenshot: "",
|
|
2714
2712
|
schema: {
|
|
2715
|
-
componentName: config.componentName,
|
|
2716
|
-
props: config.preview
|
|
2713
|
+
componentName: config$1.componentName,
|
|
2714
|
+
props: config$1.preview
|
|
2717
2715
|
}
|
|
2718
2716
|
}
|
|
2719
2717
|
], amis: {
|
|
2720
2718
|
render: {
|
|
2721
|
-
type: config.amis.name,
|
|
2719
|
+
type: config$1.amis.name,
|
|
2722
2720
|
usage: "renderer",
|
|
2723
2721
|
weight: 1,
|
|
2724
2722
|
framework: "react"
|
|
@@ -2747,6 +2745,55 @@
|
|
|
2747
2745
|
// }
|
|
2748
2746
|
} });
|
|
2749
2747
|
|
|
2748
|
+
/*
|
|
2749
|
+
* @Author: baozhoutao@steedos.com
|
|
2750
|
+
* @Date: 2022-08-31 16:32:35
|
|
2751
|
+
* @LastEditors: baozhoutao@steedos.com
|
|
2752
|
+
* @LastEditTime: 2022-12-08 10:37:45
|
|
2753
|
+
* @Description:
|
|
2754
|
+
*/
|
|
2755
|
+
var config = {
|
|
2756
|
+
componentType: 'amisSchema',
|
|
2757
|
+
group: "华炎魔方",
|
|
2758
|
+
componentName: "PageListView",
|
|
2759
|
+
title: "列表页",
|
|
2760
|
+
docUrl: "",
|
|
2761
|
+
screenshot: "",
|
|
2762
|
+
npm: {
|
|
2763
|
+
package: "@steedos-widgets/amis-object",
|
|
2764
|
+
version: "{{version}}",
|
|
2765
|
+
exportName: "PageListView",
|
|
2766
|
+
main: "",
|
|
2767
|
+
destructuring: true,
|
|
2768
|
+
subName: ""
|
|
2769
|
+
},
|
|
2770
|
+
preview: {},
|
|
2771
|
+
targets: ["steedos__RecordPage", "steedos__AppPage", "steedos__HomePage"],
|
|
2772
|
+
engines: ["amis"],
|
|
2773
|
+
// settings for amis.
|
|
2774
|
+
amis: {
|
|
2775
|
+
name: 'steedos-page-listview',
|
|
2776
|
+
icon: "fa-fw fa fa-list-alt"
|
|
2777
|
+
}
|
|
2778
|
+
};
|
|
2779
|
+
var PageListViewMeta = __assign(__assign({}, config), { snippets: [
|
|
2780
|
+
{
|
|
2781
|
+
title: config.title,
|
|
2782
|
+
screenshot: "",
|
|
2783
|
+
schema: {
|
|
2784
|
+
componentName: config.componentName,
|
|
2785
|
+
props: config.preview
|
|
2786
|
+
}
|
|
2787
|
+
}
|
|
2788
|
+
], amis: {
|
|
2789
|
+
render: {
|
|
2790
|
+
type: config.amis.name,
|
|
2791
|
+
usage: "renderer",
|
|
2792
|
+
weight: 1,
|
|
2793
|
+
framework: "react"
|
|
2794
|
+
},
|
|
2795
|
+
} });
|
|
2796
|
+
|
|
2750
2797
|
/*
|
|
2751
2798
|
* @Author: baozhoutao@steedos.com
|
|
2752
2799
|
* @Date: 2022-08-31 16:32:35
|
|
@@ -2780,7 +2827,8 @@
|
|
|
2780
2827
|
AmisSteedosField,
|
|
2781
2828
|
AmisSelectFlow,
|
|
2782
2829
|
AmisInstanceDetail,
|
|
2783
|
-
SteedosLoading
|
|
2830
|
+
SteedosLoading,
|
|
2831
|
+
PageListViewMeta,
|
|
2784
2832
|
];
|
|
2785
2833
|
var componentList = [
|
|
2786
2834
|
{
|