@steedos-widgets/amis-object 1.2.0 → 1.2.2
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/AmisRecordService.d.ts +10 -0
- package/dist/amis/index.d.ts +1 -0
- package/dist/amis-object.cjs.css +6 -0
- package/dist/amis-object.cjs.js +666 -44
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +6 -0
- package/dist/amis-object.esm.js +666 -46
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +6 -0
- package/dist/amis-object.umd.js +666 -44
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +11 -11
- package/dist/components/SteedosSkeleton.d.ts +2 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/meta.js +515 -316
- package/dist/metas/AmisRecordService.d.ts +2 -0
- package/dist/metas/SteedosSkeleton.d.ts +2 -0
- package/dist/pages/PageListView.d.ts +1 -1
- package/package.json +3 -3
package/dist/meta.js
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
* @LastEditTime: 2023-03-31 23:36:11
|
|
38
38
|
* @Description:
|
|
39
39
|
*/
|
|
40
|
-
var config$
|
|
40
|
+
var config$t = {
|
|
41
41
|
componentType: 'amisSchema',
|
|
42
42
|
group: "华炎魔方",
|
|
43
43
|
componentName: "AmisObjectForm",
|
|
@@ -115,39 +115,39 @@
|
|
|
115
115
|
icon: "fa-fw fa fa-list-alt"
|
|
116
116
|
}
|
|
117
117
|
};
|
|
118
|
-
var AmisObjectForm = __assign(__assign({}, config$
|
|
118
|
+
var AmisObjectForm = __assign(__assign({}, config$t), { snippets: [
|
|
119
119
|
{
|
|
120
|
-
title: config$
|
|
120
|
+
title: config$t.title,
|
|
121
121
|
screenshot: "",
|
|
122
122
|
schema: {
|
|
123
|
-
componentName: config$
|
|
124
|
-
props: config$
|
|
123
|
+
componentName: config$t.componentName,
|
|
124
|
+
props: config$t.preview
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
], amis: {
|
|
128
128
|
render: {
|
|
129
|
-
type: config$
|
|
129
|
+
type: config$t.amis.name,
|
|
130
130
|
usage: "renderer",
|
|
131
131
|
weight: 1,
|
|
132
132
|
framework: "react"
|
|
133
133
|
},
|
|
134
134
|
plugin: {
|
|
135
|
-
rendererName: config$
|
|
135
|
+
rendererName: config$t.amis.name,
|
|
136
136
|
$schema: '/schemas/UnkownSchema.json',
|
|
137
|
-
name: config$
|
|
138
|
-
description: config$
|
|
139
|
-
tags: [config$
|
|
137
|
+
name: config$t.title,
|
|
138
|
+
description: config$t.title,
|
|
139
|
+
tags: [config$t.group],
|
|
140
140
|
order: -9999,
|
|
141
|
-
icon: config$
|
|
141
|
+
icon: config$t.amis.icon,
|
|
142
142
|
scaffold: {
|
|
143
|
-
type: config$
|
|
144
|
-
label: config$
|
|
143
|
+
type: config$t.amis.name,
|
|
144
|
+
label: config$t.title,
|
|
145
145
|
objectApiName: "${objectName}",
|
|
146
146
|
recordId: "${recordId}",
|
|
147
147
|
className: "sm:border sm:shadow sm:rounded sm:border-gray-300 bg-white p-4"
|
|
148
148
|
},
|
|
149
149
|
previewSchema: {
|
|
150
|
-
type: config$
|
|
150
|
+
type: config$t.amis.name,
|
|
151
151
|
objectApiName: 'space_users'
|
|
152
152
|
},
|
|
153
153
|
panelTitle: "设置",
|
|
@@ -499,7 +499,7 @@
|
|
|
499
499
|
* @LastEditTime: 2023-03-06 14:30:43
|
|
500
500
|
* @Description:
|
|
501
501
|
*/
|
|
502
|
-
var config$
|
|
502
|
+
var config$s = {
|
|
503
503
|
componentType: 'amisSchema',
|
|
504
504
|
group: "华炎魔方",
|
|
505
505
|
componentName: "AmisObjectListView",
|
|
@@ -536,40 +536,40 @@
|
|
|
536
536
|
icon: "fa-fw fa fa-list-alt"
|
|
537
537
|
}
|
|
538
538
|
};
|
|
539
|
-
var AmisObjectListview = __assign(__assign({}, config$
|
|
539
|
+
var AmisObjectListview = __assign(__assign({}, config$s), { snippets: [
|
|
540
540
|
{
|
|
541
|
-
title: config$
|
|
541
|
+
title: config$s.title,
|
|
542
542
|
screenshot: "",
|
|
543
543
|
schema: {
|
|
544
|
-
componentName: config$
|
|
545
|
-
props: config$
|
|
544
|
+
componentName: config$s.componentName,
|
|
545
|
+
props: config$s.preview
|
|
546
546
|
}
|
|
547
547
|
}
|
|
548
548
|
], amis: {
|
|
549
549
|
render: {
|
|
550
|
-
type: config$
|
|
550
|
+
type: config$s.amis.name,
|
|
551
551
|
usage: "renderer",
|
|
552
552
|
weight: 1,
|
|
553
553
|
framework: "react"
|
|
554
554
|
},
|
|
555
555
|
plugin: {
|
|
556
|
-
rendererName: config$
|
|
556
|
+
rendererName: config$s.amis.name,
|
|
557
557
|
$schema: '/schemas/UnkownSchema.json',
|
|
558
|
-
name: config$
|
|
559
|
-
description: config$
|
|
560
|
-
tags: [config$
|
|
558
|
+
name: config$s.title,
|
|
559
|
+
description: config$s.description,
|
|
560
|
+
tags: [config$s.group],
|
|
561
561
|
order: -9999,
|
|
562
|
-
icon: config$
|
|
562
|
+
icon: config$s.amis.icon,
|
|
563
563
|
scaffold: {
|
|
564
|
-
type: config$
|
|
565
|
-
label: config$
|
|
564
|
+
type: config$s.amis.name,
|
|
565
|
+
label: config$s.title,
|
|
566
566
|
objectApiName: "${objectName}",
|
|
567
567
|
listName: "all",
|
|
568
568
|
showHeader: true,
|
|
569
569
|
className: "sm:border sm:shadow sm:rounded sm:border-gray-300 mb-4"
|
|
570
570
|
},
|
|
571
571
|
previewSchema: {
|
|
572
|
-
type: config$
|
|
572
|
+
type: config$s.amis.name,
|
|
573
573
|
objectApiName: 'space_users',
|
|
574
574
|
listName: "all",
|
|
575
575
|
showHeader: true,
|
|
@@ -652,7 +652,7 @@
|
|
|
652
652
|
}
|
|
653
653
|
} });
|
|
654
654
|
|
|
655
|
-
var config$
|
|
655
|
+
var config$r = {
|
|
656
656
|
componentType: 'amisSchema',
|
|
657
657
|
group: "华炎魔方",
|
|
658
658
|
componentName: "AmisObjectCalendar",
|
|
@@ -708,38 +708,38 @@
|
|
|
708
708
|
icon: "fa-fw fa fa-list-alt"
|
|
709
709
|
}
|
|
710
710
|
};
|
|
711
|
-
var AmisObjectCalendar = __assign(__assign({}, config$
|
|
711
|
+
var AmisObjectCalendar = __assign(__assign({}, config$r), { snippets: [
|
|
712
712
|
{
|
|
713
|
-
title: config$
|
|
713
|
+
title: config$r.title,
|
|
714
714
|
screenshot: "",
|
|
715
715
|
schema: {
|
|
716
|
-
componentName: config$
|
|
717
|
-
props: config$
|
|
716
|
+
componentName: config$r.componentName,
|
|
717
|
+
props: config$r.preview
|
|
718
718
|
}
|
|
719
719
|
}
|
|
720
720
|
], amis: {
|
|
721
721
|
render: {
|
|
722
|
-
type: config$
|
|
722
|
+
type: config$r.amis.name,
|
|
723
723
|
usage: "renderer",
|
|
724
724
|
weight: 1,
|
|
725
725
|
framework: "react"
|
|
726
726
|
},
|
|
727
727
|
plugin: {
|
|
728
|
-
rendererName: config$
|
|
728
|
+
rendererName: config$r.amis.name,
|
|
729
729
|
$schema: '/schemas/UnkownSchema.json',
|
|
730
|
-
name: config$
|
|
731
|
-
description: config$
|
|
732
|
-
tags: [config$
|
|
730
|
+
name: config$r.title,
|
|
731
|
+
description: config$r.title,
|
|
732
|
+
tags: [config$r.group],
|
|
733
733
|
order: -9999,
|
|
734
|
-
icon: config$
|
|
734
|
+
icon: config$r.amis.icon,
|
|
735
735
|
scaffold: {
|
|
736
|
-
type: config$
|
|
737
|
-
label: config$
|
|
736
|
+
type: config$r.amis.name,
|
|
737
|
+
label: config$r.title,
|
|
738
738
|
objectApiName: "${objectName}",
|
|
739
739
|
currentView: "timeGridWeek"
|
|
740
740
|
},
|
|
741
741
|
previewSchema: {
|
|
742
|
-
type: config$
|
|
742
|
+
type: config$r.amis.name,
|
|
743
743
|
objectApiName: 'events',
|
|
744
744
|
currentView: "timeGridWeek"
|
|
745
745
|
},
|
|
@@ -811,7 +811,7 @@
|
|
|
811
811
|
* @LastEditTime: 2023-03-11 16:46:21
|
|
812
812
|
* @Description:
|
|
813
813
|
*/
|
|
814
|
-
var config$
|
|
814
|
+
var config$q = {
|
|
815
815
|
componentType: 'amisSchema',
|
|
816
816
|
group: "华炎魔方",
|
|
817
817
|
componentName: "AmisObjectTable",
|
|
@@ -877,39 +877,39 @@
|
|
|
877
877
|
icon: "fa-fw fa fa-list-alt"
|
|
878
878
|
}
|
|
879
879
|
};
|
|
880
|
-
var AmisObjectTable = __assign(__assign({}, config$
|
|
880
|
+
var AmisObjectTable = __assign(__assign({}, config$q), { snippets: [
|
|
881
881
|
{
|
|
882
|
-
title: config$
|
|
882
|
+
title: config$q.title,
|
|
883
883
|
screenshot: "",
|
|
884
884
|
schema: {
|
|
885
|
-
componentName: config$
|
|
886
|
-
props: config$
|
|
885
|
+
componentName: config$q.componentName,
|
|
886
|
+
props: config$q.preview
|
|
887
887
|
}
|
|
888
888
|
}
|
|
889
889
|
], amis: {
|
|
890
890
|
render: {
|
|
891
|
-
type: config$
|
|
891
|
+
type: config$q.amis.name,
|
|
892
892
|
usage: "renderer",
|
|
893
893
|
weight: 1,
|
|
894
894
|
framework: "react"
|
|
895
895
|
},
|
|
896
896
|
plugin: {
|
|
897
|
-
rendererName: config$
|
|
897
|
+
rendererName: config$q.amis.name,
|
|
898
898
|
$schema: '/schemas/UnkownSchema.json',
|
|
899
|
-
name: config$
|
|
900
|
-
description: config$
|
|
901
|
-
tags: [config$
|
|
899
|
+
name: config$q.title,
|
|
900
|
+
description: config$q.title,
|
|
901
|
+
tags: [config$q.group],
|
|
902
902
|
order: -9999,
|
|
903
|
-
icon: config$
|
|
903
|
+
icon: config$q.amis.icon,
|
|
904
904
|
scaffold: {
|
|
905
|
-
type: config$
|
|
906
|
-
label: config$
|
|
905
|
+
type: config$q.amis.name,
|
|
906
|
+
label: config$q.title,
|
|
907
907
|
objectApiName: "${objectName}",
|
|
908
908
|
fields: ["name"],
|
|
909
909
|
className: "sm:border sm:shadow sm:rounded sm:border-gray-300"
|
|
910
910
|
},
|
|
911
911
|
previewSchema: {
|
|
912
|
-
type: config$
|
|
912
|
+
type: config$q.amis.name,
|
|
913
913
|
objectApiName: 'space_users',
|
|
914
914
|
fields: ["name"]
|
|
915
915
|
},
|
|
@@ -1154,7 +1154,7 @@
|
|
|
1154
1154
|
* @LastEditTime: 2023-03-06 14:31:08
|
|
1155
1155
|
* @Description:
|
|
1156
1156
|
*/
|
|
1157
|
-
var config$
|
|
1157
|
+
var config$p = {
|
|
1158
1158
|
componentType: 'amisSchema',
|
|
1159
1159
|
group: "华炎魔方",
|
|
1160
1160
|
componentName: "AmisRecordDetailHeader",
|
|
@@ -1191,38 +1191,38 @@
|
|
|
1191
1191
|
icon: "fa-fw fa fa-list-alt"
|
|
1192
1192
|
}
|
|
1193
1193
|
};
|
|
1194
|
-
var AmisRecordDetailHeader = __assign(__assign({}, config$
|
|
1194
|
+
var AmisRecordDetailHeader = __assign(__assign({}, config$p), { snippets: [
|
|
1195
1195
|
{
|
|
1196
|
-
title: config$
|
|
1196
|
+
title: config$p.title,
|
|
1197
1197
|
screenshot: "",
|
|
1198
1198
|
schema: {
|
|
1199
|
-
componentName: config$
|
|
1200
|
-
props: config$
|
|
1199
|
+
componentName: config$p.componentName,
|
|
1200
|
+
props: config$p.preview
|
|
1201
1201
|
}
|
|
1202
1202
|
}
|
|
1203
1203
|
], amis: {
|
|
1204
1204
|
render: {
|
|
1205
|
-
type: config$
|
|
1205
|
+
type: config$p.amis.name,
|
|
1206
1206
|
usage: "renderer",
|
|
1207
1207
|
weight: 1,
|
|
1208
1208
|
framework: "react"
|
|
1209
1209
|
},
|
|
1210
1210
|
plugin: {
|
|
1211
|
-
rendererName: config$
|
|
1211
|
+
rendererName: config$p.amis.name,
|
|
1212
1212
|
$schema: '/schemas/UnkownSchema.json',
|
|
1213
|
-
name: config$
|
|
1214
|
-
description: config$
|
|
1215
|
-
tags: [config$
|
|
1213
|
+
name: config$p.title,
|
|
1214
|
+
description: config$p.description,
|
|
1215
|
+
tags: [config$p.group],
|
|
1216
1216
|
order: -9999,
|
|
1217
|
-
icon: config$
|
|
1217
|
+
icon: config$p.amis.icon,
|
|
1218
1218
|
scaffold: {
|
|
1219
|
-
type: config$
|
|
1220
|
-
label: config$
|
|
1219
|
+
type: config$p.amis.name,
|
|
1220
|
+
label: config$p.title,
|
|
1221
1221
|
objectApiName: "${objectName}",
|
|
1222
1222
|
recordId: "${recordId}"
|
|
1223
1223
|
},
|
|
1224
1224
|
previewSchema: {
|
|
1225
|
-
type: config$
|
|
1225
|
+
type: config$p.amis.name,
|
|
1226
1226
|
objectApiName: 'space_users'
|
|
1227
1227
|
},
|
|
1228
1228
|
panelTitle: "设置",
|
|
@@ -1262,10 +1262,10 @@
|
|
|
1262
1262
|
* @Author: baozhoutao@steedos.com
|
|
1263
1263
|
* @Date: 2022-08-31 16:32:35
|
|
1264
1264
|
* @LastEditors: 殷亮辉 yinlianghui@hotoa.com
|
|
1265
|
-
* @LastEditTime: 2023-04-
|
|
1265
|
+
* @LastEditTime: 2023-04-12 23:29:24
|
|
1266
1266
|
* @Description:
|
|
1267
1267
|
*/
|
|
1268
|
-
var config$
|
|
1268
|
+
var config$o = {
|
|
1269
1269
|
componentType: 'amisSchema',
|
|
1270
1270
|
group: "华炎魔方",
|
|
1271
1271
|
componentName: "AmisRecordDetail",
|
|
@@ -1301,34 +1301,34 @@
|
|
|
1301
1301
|
icon: "fa-fw fa fa-list-alt"
|
|
1302
1302
|
}
|
|
1303
1303
|
};
|
|
1304
|
-
var AmisRecordDetail = __assign(__assign({}, config$
|
|
1304
|
+
var AmisRecordDetail = __assign(__assign({}, config$o), { snippets: [
|
|
1305
1305
|
{
|
|
1306
|
-
title: config$
|
|
1306
|
+
title: config$o.title,
|
|
1307
1307
|
screenshot: "",
|
|
1308
1308
|
schema: {
|
|
1309
|
-
componentName: config$
|
|
1310
|
-
props: config$
|
|
1309
|
+
componentName: config$o.componentName,
|
|
1310
|
+
props: config$o.preview
|
|
1311
1311
|
}
|
|
1312
1312
|
}
|
|
1313
1313
|
], amis: {
|
|
1314
1314
|
render: {
|
|
1315
|
-
type: config$
|
|
1315
|
+
type: config$o.amis.name,
|
|
1316
1316
|
usage: "renderer",
|
|
1317
1317
|
weight: 1,
|
|
1318
1318
|
framework: "react"
|
|
1319
1319
|
},
|
|
1320
|
-
|
|
1321
|
-
rendererName: config$
|
|
1320
|
+
plugin__disable: {
|
|
1321
|
+
rendererName: config$o.amis.name,
|
|
1322
1322
|
$schema: '/schemas/UnkownSchema.json',
|
|
1323
|
-
name: config$
|
|
1324
|
-
description: config$
|
|
1325
|
-
tags: [config$
|
|
1323
|
+
name: config$o.title,
|
|
1324
|
+
description: config$o.title,
|
|
1325
|
+
tags: [config$o.group],
|
|
1326
1326
|
order: -9999,
|
|
1327
|
-
icon: config$
|
|
1327
|
+
icon: config$o.amis.icon,
|
|
1328
1328
|
scaffold: {
|
|
1329
|
-
type: config$
|
|
1329
|
+
type: config$o.amis.name,
|
|
1330
1330
|
body: [],
|
|
1331
|
-
label: config$
|
|
1331
|
+
label: config$o.title,
|
|
1332
1332
|
objectApiName: "${objectName}",
|
|
1333
1333
|
recordId: "${recordId}"
|
|
1334
1334
|
},
|
|
@@ -1339,7 +1339,7 @@
|
|
|
1339
1339
|
}
|
|
1340
1340
|
],
|
|
1341
1341
|
previewSchema: {
|
|
1342
|
-
type: config$
|
|
1342
|
+
type: config$o.amis.name,
|
|
1343
1343
|
objectApiName: 'space_users'
|
|
1344
1344
|
},
|
|
1345
1345
|
panelTitle: "设置",
|
|
@@ -1369,7 +1369,111 @@
|
|
|
1369
1369
|
}
|
|
1370
1370
|
} });
|
|
1371
1371
|
|
|
1372
|
-
var config$
|
|
1372
|
+
var config$n = {
|
|
1373
|
+
componentType: 'amisSchema',
|
|
1374
|
+
group: "华炎魔方",
|
|
1375
|
+
componentName: "AmisRecordService",
|
|
1376
|
+
title: "记录服务",
|
|
1377
|
+
docUrl: "",
|
|
1378
|
+
screenshot: "",
|
|
1379
|
+
npm: {
|
|
1380
|
+
package: "@steedos-widgets/amis-object",
|
|
1381
|
+
version: "{{version}}",
|
|
1382
|
+
exportName: "AmisRecordService",
|
|
1383
|
+
main: "",
|
|
1384
|
+
destructuring: true,
|
|
1385
|
+
subName: ""
|
|
1386
|
+
},
|
|
1387
|
+
props: [
|
|
1388
|
+
{
|
|
1389
|
+
name: "objectApiName",
|
|
1390
|
+
propType: "string",
|
|
1391
|
+
description: '对象名称',
|
|
1392
|
+
},
|
|
1393
|
+
{
|
|
1394
|
+
name: "recordId",
|
|
1395
|
+
propType: "string",
|
|
1396
|
+
description: '记录Id',
|
|
1397
|
+
}
|
|
1398
|
+
],
|
|
1399
|
+
preview: {},
|
|
1400
|
+
targets: ["steedos__RecordPage", "steedos__AppPage", "steedos__HomePage"],
|
|
1401
|
+
engines: ["amis"],
|
|
1402
|
+
// settings for amis.
|
|
1403
|
+
amis: {
|
|
1404
|
+
name: 'steedos-record-service',
|
|
1405
|
+
icon: "fa-fw fa fa-list-alt"
|
|
1406
|
+
}
|
|
1407
|
+
};
|
|
1408
|
+
var AmisRecordService = __assign(__assign({}, config$n), { snippets: [
|
|
1409
|
+
{
|
|
1410
|
+
title: config$n.title,
|
|
1411
|
+
screenshot: "",
|
|
1412
|
+
schema: {
|
|
1413
|
+
componentName: config$n.componentName,
|
|
1414
|
+
props: config$n.preview
|
|
1415
|
+
}
|
|
1416
|
+
}
|
|
1417
|
+
], amis: {
|
|
1418
|
+
render: {
|
|
1419
|
+
type: config$n.amis.name,
|
|
1420
|
+
usage: "renderer",
|
|
1421
|
+
weight: 1,
|
|
1422
|
+
framework: "react"
|
|
1423
|
+
},
|
|
1424
|
+
plugin: {
|
|
1425
|
+
rendererName: config$n.amis.name,
|
|
1426
|
+
$schema: '/schemas/UnkownSchema.json',
|
|
1427
|
+
name: config$n.title,
|
|
1428
|
+
description: config$n.title,
|
|
1429
|
+
tags: [config$n.group],
|
|
1430
|
+
order: -9999,
|
|
1431
|
+
icon: config$n.amis.icon,
|
|
1432
|
+
scaffold: {
|
|
1433
|
+
type: config$n.amis.name,
|
|
1434
|
+
body: [],
|
|
1435
|
+
label: config$n.title,
|
|
1436
|
+
objectApiName: "${objectName}",
|
|
1437
|
+
recordId: "${recordId}"
|
|
1438
|
+
},
|
|
1439
|
+
regions: [
|
|
1440
|
+
{
|
|
1441
|
+
key: 'body',
|
|
1442
|
+
label: '内容区'
|
|
1443
|
+
}
|
|
1444
|
+
],
|
|
1445
|
+
previewSchema: {
|
|
1446
|
+
type: config$n.amis.name,
|
|
1447
|
+
objectApiName: 'space_users'
|
|
1448
|
+
},
|
|
1449
|
+
panelTitle: "设置",
|
|
1450
|
+
panelControls: [
|
|
1451
|
+
{
|
|
1452
|
+
"type": "select",
|
|
1453
|
+
"label": "对象",
|
|
1454
|
+
"name": "objectApiName",
|
|
1455
|
+
"searchable": true,
|
|
1456
|
+
"multiple": false,
|
|
1457
|
+
"source": {
|
|
1458
|
+
"method": "get",
|
|
1459
|
+
"url": "/service/api/amis-design/objects",
|
|
1460
|
+
"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;",
|
|
1461
|
+
"adaptor": "\n let data = payload.data;\n payload.unshift({\n label: \"\u5F53\u524D\u5BF9\u8C61\",\n name: \"${objectName}\"\n });\n return payload;\n "
|
|
1462
|
+
},
|
|
1463
|
+
"labelField": "label",
|
|
1464
|
+
"valueField": "name",
|
|
1465
|
+
"menuTpl": ""
|
|
1466
|
+
},
|
|
1467
|
+
// {
|
|
1468
|
+
// type: "text",
|
|
1469
|
+
// name: "recordId",
|
|
1470
|
+
// label: "记录ID"
|
|
1471
|
+
// }
|
|
1472
|
+
]
|
|
1473
|
+
}
|
|
1474
|
+
} });
|
|
1475
|
+
|
|
1476
|
+
var config$m = {
|
|
1373
1477
|
componentType: 'amisSchema',
|
|
1374
1478
|
group: "华炎魔方-界面",
|
|
1375
1479
|
componentName: "AmisSelectUser",
|
|
@@ -1415,37 +1519,37 @@
|
|
|
1415
1519
|
icon: "fa-fw fa fa-list-alt"
|
|
1416
1520
|
}
|
|
1417
1521
|
};
|
|
1418
|
-
var AmisSelectUser = __assign(__assign({}, config$
|
|
1522
|
+
var AmisSelectUser = __assign(__assign({}, config$m), { snippets: [
|
|
1419
1523
|
{
|
|
1420
|
-
title: config$
|
|
1524
|
+
title: config$m.title,
|
|
1421
1525
|
screenshot: "",
|
|
1422
1526
|
schema: {
|
|
1423
|
-
componentName: config$
|
|
1424
|
-
props: config$
|
|
1527
|
+
componentName: config$m.componentName,
|
|
1528
|
+
props: config$m.preview
|
|
1425
1529
|
}
|
|
1426
1530
|
}
|
|
1427
1531
|
], amis: {
|
|
1428
1532
|
render: {
|
|
1429
|
-
type: config$
|
|
1533
|
+
type: config$m.amis.name,
|
|
1430
1534
|
usage: "renderer",
|
|
1431
1535
|
weight: 1,
|
|
1432
1536
|
framework: "react"
|
|
1433
1537
|
},
|
|
1434
1538
|
plugin_disabled: {
|
|
1435
|
-
rendererName: config$
|
|
1539
|
+
rendererName: config$m.amis.name,
|
|
1436
1540
|
$schema: '/schemas/UnkownSchema.json',
|
|
1437
|
-
name: config$
|
|
1438
|
-
description: config$
|
|
1439
|
-
tags: [config$
|
|
1541
|
+
name: config$m.title,
|
|
1542
|
+
description: config$m.title,
|
|
1543
|
+
tags: [config$m.group],
|
|
1440
1544
|
order: -9999,
|
|
1441
|
-
icon: config$
|
|
1545
|
+
icon: config$m.amis.icon,
|
|
1442
1546
|
scaffold: {
|
|
1443
|
-
type: config$
|
|
1444
|
-
label: config$
|
|
1547
|
+
type: config$m.amis.name,
|
|
1548
|
+
label: config$m.title,
|
|
1445
1549
|
name: ""
|
|
1446
1550
|
},
|
|
1447
1551
|
previewSchema: {
|
|
1448
|
-
type: config$
|
|
1552
|
+
type: config$m.amis.name,
|
|
1449
1553
|
},
|
|
1450
1554
|
panelTitle: "设置",
|
|
1451
1555
|
panelControls: [
|
|
@@ -1476,7 +1580,7 @@
|
|
|
1476
1580
|
* @LastEditTime: 2023-03-06 14:31:14
|
|
1477
1581
|
* @Description:
|
|
1478
1582
|
*/
|
|
1479
|
-
var config$
|
|
1583
|
+
var config$l = {
|
|
1480
1584
|
componentType: 'amisSchema',
|
|
1481
1585
|
group: "华炎魔方",
|
|
1482
1586
|
componentName: "AmisRecordDetailRelatedList",
|
|
@@ -1518,38 +1622,38 @@
|
|
|
1518
1622
|
icon: "fa-fw fa fa-list-alt"
|
|
1519
1623
|
}
|
|
1520
1624
|
};
|
|
1521
|
-
var AmisRecordDetailRelatedList = __assign(__assign({}, config$
|
|
1625
|
+
var AmisRecordDetailRelatedList = __assign(__assign({}, config$l), { snippets: [
|
|
1522
1626
|
{
|
|
1523
|
-
title: config$
|
|
1627
|
+
title: config$l.title,
|
|
1524
1628
|
screenshot: "",
|
|
1525
1629
|
schema: {
|
|
1526
|
-
componentName: config$
|
|
1527
|
-
props: config$
|
|
1630
|
+
componentName: config$l.componentName,
|
|
1631
|
+
props: config$l.preview
|
|
1528
1632
|
}
|
|
1529
1633
|
}
|
|
1530
1634
|
], amis: {
|
|
1531
1635
|
render: {
|
|
1532
|
-
type: config$
|
|
1636
|
+
type: config$l.amis.name,
|
|
1533
1637
|
usage: "renderer",
|
|
1534
1638
|
weight: 1,
|
|
1535
1639
|
framework: "react"
|
|
1536
1640
|
},
|
|
1537
1641
|
plugin: {
|
|
1538
|
-
rendererName: config$
|
|
1642
|
+
rendererName: config$l.amis.name,
|
|
1539
1643
|
$schema: '/schemas/UnkownSchema.json',
|
|
1540
|
-
name: config$
|
|
1541
|
-
description: config$
|
|
1542
|
-
tags: [config$
|
|
1644
|
+
name: config$l.title,
|
|
1645
|
+
description: config$l.description,
|
|
1646
|
+
tags: [config$l.group],
|
|
1543
1647
|
order: -9999,
|
|
1544
|
-
icon: config$
|
|
1648
|
+
icon: config$l.amis.icon,
|
|
1545
1649
|
scaffold: {
|
|
1546
|
-
type: config$
|
|
1547
|
-
label: config$
|
|
1650
|
+
type: config$l.amis.name,
|
|
1651
|
+
label: config$l.title,
|
|
1548
1652
|
objectApiName: "${objectName}",
|
|
1549
1653
|
recordId: "${recordId}"
|
|
1550
1654
|
},
|
|
1551
1655
|
previewSchema: {
|
|
1552
|
-
type: config$
|
|
1656
|
+
type: config$l.amis.name,
|
|
1553
1657
|
objectApiName: "accounts"
|
|
1554
1658
|
},
|
|
1555
1659
|
panelTitle: "设置",
|
|
@@ -1616,7 +1720,7 @@
|
|
|
1616
1720
|
* @LastEditTime: 2022-12-01 16:08:49
|
|
1617
1721
|
* @Description:
|
|
1618
1722
|
*/
|
|
1619
|
-
var config$
|
|
1723
|
+
var config$k = {
|
|
1620
1724
|
componentType: 'amisSchema',
|
|
1621
1725
|
group: "华炎魔方",
|
|
1622
1726
|
componentName: "AmisRecordDetailRelatedLists",
|
|
@@ -1653,38 +1757,38 @@
|
|
|
1653
1757
|
icon: "fa-fw fa fa-list-alt"
|
|
1654
1758
|
}
|
|
1655
1759
|
};
|
|
1656
|
-
var AmisRecordDetailRelatedLists = __assign(__assign({}, config$
|
|
1760
|
+
var AmisRecordDetailRelatedLists = __assign(__assign({}, config$k), { snippets: [
|
|
1657
1761
|
{
|
|
1658
|
-
title: config$
|
|
1762
|
+
title: config$k.title,
|
|
1659
1763
|
screenshot: "",
|
|
1660
1764
|
schema: {
|
|
1661
|
-
componentName: config$
|
|
1662
|
-
props: config$
|
|
1765
|
+
componentName: config$k.componentName,
|
|
1766
|
+
props: config$k.preview
|
|
1663
1767
|
}
|
|
1664
1768
|
}
|
|
1665
1769
|
], amis: {
|
|
1666
1770
|
render: {
|
|
1667
|
-
type: config$
|
|
1771
|
+
type: config$k.amis.name,
|
|
1668
1772
|
usage: "renderer",
|
|
1669
1773
|
weight: 1,
|
|
1670
1774
|
framework: "react"
|
|
1671
1775
|
},
|
|
1672
1776
|
plugin: {
|
|
1673
|
-
rendererName: config$
|
|
1777
|
+
rendererName: config$k.amis.name,
|
|
1674
1778
|
$schema: '/schemas/UnkownSchema.json',
|
|
1675
|
-
name: config$
|
|
1676
|
-
description: config$
|
|
1677
|
-
tags: [config$
|
|
1779
|
+
name: config$k.title,
|
|
1780
|
+
description: config$k.description,
|
|
1781
|
+
tags: [config$k.group],
|
|
1678
1782
|
order: -9999,
|
|
1679
|
-
icon: config$
|
|
1783
|
+
icon: config$k.amis.icon,
|
|
1680
1784
|
scaffold: {
|
|
1681
|
-
type: config$
|
|
1682
|
-
label: config$
|
|
1785
|
+
type: config$k.amis.name,
|
|
1786
|
+
label: config$k.title,
|
|
1683
1787
|
objectApiName: "${objectName}",
|
|
1684
1788
|
recordId: "${recordId}",
|
|
1685
1789
|
},
|
|
1686
1790
|
previewSchema: {
|
|
1687
|
-
type: config$
|
|
1791
|
+
type: config$k.amis.name,
|
|
1688
1792
|
objectApiName: "accounts",
|
|
1689
1793
|
},
|
|
1690
1794
|
panelTitle: "设置",
|
|
@@ -1721,7 +1825,7 @@
|
|
|
1721
1825
|
* @LastEditTime: 2022-09-02 09:04:33
|
|
1722
1826
|
* @Description:
|
|
1723
1827
|
*/
|
|
1724
|
-
var config$
|
|
1828
|
+
var config$j = {
|
|
1725
1829
|
componentType: 'amisSchema',
|
|
1726
1830
|
group: "华炎魔方",
|
|
1727
1831
|
componentName: "AmisProvider",
|
|
@@ -1746,33 +1850,33 @@
|
|
|
1746
1850
|
icon: "fa-fw fa fa-list-alt"
|
|
1747
1851
|
}
|
|
1748
1852
|
};
|
|
1749
|
-
var AmisProvider = __assign(__assign({}, config$
|
|
1853
|
+
var AmisProvider = __assign(__assign({}, config$j), { snippets: [
|
|
1750
1854
|
{
|
|
1751
|
-
title: config$
|
|
1855
|
+
title: config$j.title,
|
|
1752
1856
|
screenshot: "",
|
|
1753
1857
|
schema: {
|
|
1754
|
-
componentName: config$
|
|
1755
|
-
props: config$
|
|
1858
|
+
componentName: config$j.componentName,
|
|
1859
|
+
props: config$j.preview
|
|
1756
1860
|
}
|
|
1757
1861
|
}
|
|
1758
1862
|
], amis: {
|
|
1759
1863
|
render: {
|
|
1760
|
-
type: config$
|
|
1864
|
+
type: config$j.amis.name,
|
|
1761
1865
|
usage: "renderer",
|
|
1762
1866
|
weight: 1,
|
|
1763
1867
|
framework: "react"
|
|
1764
1868
|
},
|
|
1765
1869
|
plugin_disabled: {
|
|
1766
|
-
rendererName: config$
|
|
1870
|
+
rendererName: config$j.amis.name,
|
|
1767
1871
|
$schema: '/schemas/UnkownSchema.json',
|
|
1768
|
-
name: config$
|
|
1769
|
-
description: config$
|
|
1770
|
-
tags: [config$
|
|
1872
|
+
name: config$j.title,
|
|
1873
|
+
description: config$j.title,
|
|
1874
|
+
tags: [config$j.group],
|
|
1771
1875
|
order: -9999,
|
|
1772
|
-
icon: config$
|
|
1876
|
+
icon: config$j.amis.icon,
|
|
1773
1877
|
scaffold: {
|
|
1774
|
-
type: config$
|
|
1775
|
-
label: config$
|
|
1878
|
+
type: config$j.amis.name,
|
|
1879
|
+
label: config$j.title,
|
|
1776
1880
|
body: [], // 容器类字段
|
|
1777
1881
|
},
|
|
1778
1882
|
// 容器类组件必需字段
|
|
@@ -1783,7 +1887,7 @@
|
|
|
1783
1887
|
},
|
|
1784
1888
|
],
|
|
1785
1889
|
previewSchema: {
|
|
1786
|
-
type: config$
|
|
1890
|
+
type: config$j.amis.name,
|
|
1787
1891
|
},
|
|
1788
1892
|
panelTitle: "设置",
|
|
1789
1893
|
panelControls: []
|
|
@@ -1797,7 +1901,7 @@
|
|
|
1797
1901
|
* @LastEditTime: 2022-12-26 11:26:17
|
|
1798
1902
|
* @Description:
|
|
1799
1903
|
*/
|
|
1800
|
-
var config$
|
|
1904
|
+
var config$i = {
|
|
1801
1905
|
// componentType: 'amisSchema',
|
|
1802
1906
|
group: "华炎魔方",
|
|
1803
1907
|
componentName: "AmisObjectFieldLookup",
|
|
@@ -1821,18 +1925,18 @@
|
|
|
1821
1925
|
icon: "fa-fw fa fa-list-alt"
|
|
1822
1926
|
}
|
|
1823
1927
|
};
|
|
1824
|
-
var AmisObjectFieldLookup = __assign(__assign({}, config$
|
|
1928
|
+
var AmisObjectFieldLookup = __assign(__assign({}, config$i), { snippets: [
|
|
1825
1929
|
{
|
|
1826
|
-
title: config$
|
|
1930
|
+
title: config$i.title,
|
|
1827
1931
|
screenshot: "",
|
|
1828
1932
|
schema: {
|
|
1829
|
-
componentName: config$
|
|
1830
|
-
props: config$
|
|
1933
|
+
componentName: config$i.componentName,
|
|
1934
|
+
props: config$i.preview
|
|
1831
1935
|
}
|
|
1832
1936
|
}
|
|
1833
1937
|
], amis: {
|
|
1834
1938
|
render: {
|
|
1835
|
-
type: config$
|
|
1939
|
+
type: config$i.amis.name,
|
|
1836
1940
|
usage: "formitem",
|
|
1837
1941
|
weight: 1,
|
|
1838
1942
|
framework: "react"
|
|
@@ -1868,7 +1972,7 @@
|
|
|
1868
1972
|
* @LastEditTime: 2023-02-04 12:04:41
|
|
1869
1973
|
* @Description:
|
|
1870
1974
|
*/
|
|
1871
|
-
var config$
|
|
1975
|
+
var config$h = {
|
|
1872
1976
|
// componentType: 'amisSchema',
|
|
1873
1977
|
group: "华炎魔方",
|
|
1874
1978
|
componentName: "AmisObjectButton",
|
|
@@ -1892,18 +1996,18 @@
|
|
|
1892
1996
|
icon: "fa-fw fa fa-list-alt"
|
|
1893
1997
|
}
|
|
1894
1998
|
};
|
|
1895
|
-
var AmisObjectButton = __assign(__assign({}, config$
|
|
1999
|
+
var AmisObjectButton = __assign(__assign({}, config$h), { snippets: [
|
|
1896
2000
|
{
|
|
1897
|
-
title: config$
|
|
2001
|
+
title: config$h.title,
|
|
1898
2002
|
screenshot: "",
|
|
1899
2003
|
schema: {
|
|
1900
|
-
componentName: config$
|
|
1901
|
-
props: config$
|
|
2004
|
+
componentName: config$h.componentName,
|
|
2005
|
+
props: config$h.preview
|
|
1902
2006
|
}
|
|
1903
2007
|
}
|
|
1904
2008
|
], amis: {
|
|
1905
2009
|
render: {
|
|
1906
|
-
type: config$
|
|
2010
|
+
type: config$h.amis.name,
|
|
1907
2011
|
usage: "renderer",
|
|
1908
2012
|
weight: 1,
|
|
1909
2013
|
framework: "react"
|
|
@@ -1939,7 +2043,7 @@
|
|
|
1939
2043
|
* @LastEditTime: 2022-11-14 10:09:25
|
|
1940
2044
|
* @Description:
|
|
1941
2045
|
*/
|
|
1942
|
-
var config$
|
|
2046
|
+
var config$g = {
|
|
1943
2047
|
// componentType: 'amisSchema',
|
|
1944
2048
|
group: "华炎魔方",
|
|
1945
2049
|
componentName: "SteedosDropdownButton",
|
|
@@ -1963,18 +2067,18 @@
|
|
|
1963
2067
|
icon: "fa-fw fa fa-list-alt"
|
|
1964
2068
|
}
|
|
1965
2069
|
};
|
|
1966
|
-
var SteedosDropdownButton = __assign(__assign({}, config$
|
|
2070
|
+
var SteedosDropdownButton = __assign(__assign({}, config$g), { snippets: [
|
|
1967
2071
|
{
|
|
1968
|
-
title: config$
|
|
2072
|
+
title: config$g.title,
|
|
1969
2073
|
screenshot: "",
|
|
1970
2074
|
schema: {
|
|
1971
|
-
componentName: config$
|
|
1972
|
-
props: config$
|
|
2075
|
+
componentName: config$g.componentName,
|
|
2076
|
+
props: config$g.preview
|
|
1973
2077
|
}
|
|
1974
2078
|
}
|
|
1975
2079
|
], amis: {
|
|
1976
2080
|
render: {
|
|
1977
|
-
type: config$
|
|
2081
|
+
type: config$g.amis.name,
|
|
1978
2082
|
usage: "renderer",
|
|
1979
2083
|
weight: 1,
|
|
1980
2084
|
framework: "react"
|
|
@@ -2010,7 +2114,7 @@
|
|
|
2010
2114
|
* @LastEditTime: 2022-12-13 12:04:13
|
|
2011
2115
|
* @Description:
|
|
2012
2116
|
*/
|
|
2013
|
-
var config$
|
|
2117
|
+
var config$f = {
|
|
2014
2118
|
componentType: 'amisSchema',
|
|
2015
2119
|
group: "华炎魔方",
|
|
2016
2120
|
componentName: "AmisAppLauncher",
|
|
@@ -2034,39 +2138,39 @@
|
|
|
2034
2138
|
icon: "fa-fw fa fa-list-alt"
|
|
2035
2139
|
}
|
|
2036
2140
|
};
|
|
2037
|
-
var AmisAppLauncher = __assign(__assign({}, config$
|
|
2141
|
+
var AmisAppLauncher = __assign(__assign({}, config$f), { snippets: [
|
|
2038
2142
|
{
|
|
2039
|
-
title: config$
|
|
2143
|
+
title: config$f.title,
|
|
2040
2144
|
screenshot: "",
|
|
2041
2145
|
schema: {
|
|
2042
|
-
componentName: config$
|
|
2043
|
-
props: config$
|
|
2146
|
+
componentName: config$f.componentName,
|
|
2147
|
+
props: config$f.preview
|
|
2044
2148
|
}
|
|
2045
2149
|
}
|
|
2046
2150
|
], amis: {
|
|
2047
2151
|
render: {
|
|
2048
|
-
type: config$
|
|
2152
|
+
type: config$f.amis.name,
|
|
2049
2153
|
usage: "renderer",
|
|
2050
2154
|
weight: 1,
|
|
2051
2155
|
framework: "react"
|
|
2052
2156
|
},
|
|
2053
2157
|
plugin_disabled: {
|
|
2054
|
-
rendererName: config$
|
|
2158
|
+
rendererName: config$f.amis.name,
|
|
2055
2159
|
$schema: '/schemas/UnkownSchema.json',
|
|
2056
|
-
name: config$
|
|
2057
|
-
description: config$
|
|
2058
|
-
tags: [config$
|
|
2160
|
+
name: config$f.title,
|
|
2161
|
+
description: config$f.title,
|
|
2162
|
+
tags: [config$f.group],
|
|
2059
2163
|
order: -9999,
|
|
2060
|
-
icon: config$
|
|
2164
|
+
icon: config$f.amis.icon,
|
|
2061
2165
|
scaffold: {
|
|
2062
|
-
type: config$
|
|
2063
|
-
label: config$
|
|
2166
|
+
type: config$f.amis.name,
|
|
2167
|
+
label: config$f.title,
|
|
2064
2168
|
name: 'board',
|
|
2065
2169
|
columns: 1,
|
|
2066
2170
|
vertical: false
|
|
2067
2171
|
},
|
|
2068
2172
|
previewSchema: {
|
|
2069
|
-
type: config$
|
|
2173
|
+
type: config$f.amis.name,
|
|
2070
2174
|
},
|
|
2071
2175
|
panelTitle: "设置",
|
|
2072
2176
|
panelControls: []
|
|
@@ -2080,7 +2184,7 @@
|
|
|
2080
2184
|
* @LastEditTime: 2022-12-13 12:08:37
|
|
2081
2185
|
* @Description:
|
|
2082
2186
|
*/
|
|
2083
|
-
var config$
|
|
2187
|
+
var config$e = {
|
|
2084
2188
|
componentType: 'amisSchema',
|
|
2085
2189
|
group: "华炎魔方",
|
|
2086
2190
|
componentName: "AmisLogo",
|
|
@@ -2104,39 +2208,39 @@
|
|
|
2104
2208
|
icon: "fa-fw fa fa-list-alt"
|
|
2105
2209
|
}
|
|
2106
2210
|
};
|
|
2107
|
-
var AmisLogo = __assign(__assign({}, config$
|
|
2211
|
+
var AmisLogo = __assign(__assign({}, config$e), { snippets: [
|
|
2108
2212
|
{
|
|
2109
|
-
title: config$
|
|
2213
|
+
title: config$e.title,
|
|
2110
2214
|
screenshot: "",
|
|
2111
2215
|
schema: {
|
|
2112
|
-
componentName: config$
|
|
2113
|
-
props: config$
|
|
2216
|
+
componentName: config$e.componentName,
|
|
2217
|
+
props: config$e.preview
|
|
2114
2218
|
}
|
|
2115
2219
|
}
|
|
2116
2220
|
], amis: {
|
|
2117
2221
|
render: {
|
|
2118
|
-
type: config$
|
|
2222
|
+
type: config$e.amis.name,
|
|
2119
2223
|
usage: "renderer",
|
|
2120
2224
|
weight: 1,
|
|
2121
2225
|
framework: "react"
|
|
2122
2226
|
},
|
|
2123
2227
|
plugin_disabled: {
|
|
2124
|
-
rendererName: config$
|
|
2228
|
+
rendererName: config$e.amis.name,
|
|
2125
2229
|
$schema: '/schemas/UnkownSchema.json',
|
|
2126
|
-
name: config$
|
|
2127
|
-
description: config$
|
|
2128
|
-
tags: [config$
|
|
2230
|
+
name: config$e.title,
|
|
2231
|
+
description: config$e.title,
|
|
2232
|
+
tags: [config$e.group],
|
|
2129
2233
|
order: -9999,
|
|
2130
|
-
icon: config$
|
|
2234
|
+
icon: config$e.amis.icon,
|
|
2131
2235
|
scaffold: {
|
|
2132
|
-
type: config$
|
|
2133
|
-
label: config$
|
|
2236
|
+
type: config$e.amis.name,
|
|
2237
|
+
label: config$e.title,
|
|
2134
2238
|
name: 'board',
|
|
2135
2239
|
columns: 1,
|
|
2136
2240
|
vertical: false
|
|
2137
2241
|
},
|
|
2138
2242
|
previewSchema: {
|
|
2139
|
-
type: config$
|
|
2243
|
+
type: config$e.amis.name,
|
|
2140
2244
|
},
|
|
2141
2245
|
panelTitle: "设置",
|
|
2142
2246
|
panelControls: []
|
|
@@ -2150,7 +2254,7 @@
|
|
|
2150
2254
|
* @LastEditTime: 2022-12-16 14:17:37
|
|
2151
2255
|
* @Description:
|
|
2152
2256
|
*/
|
|
2153
|
-
var config$
|
|
2257
|
+
var config$d = {
|
|
2154
2258
|
componentType: 'amisSchema',
|
|
2155
2259
|
group: "华炎魔方",
|
|
2156
2260
|
componentName: "AmisAppMenu",
|
|
@@ -2181,39 +2285,39 @@
|
|
|
2181
2285
|
icon: "fa-fw fa fa-list-alt"
|
|
2182
2286
|
}
|
|
2183
2287
|
};
|
|
2184
|
-
var AmisAppMenu = __assign(__assign({}, config$
|
|
2288
|
+
var AmisAppMenu = __assign(__assign({}, config$d), { snippets: [
|
|
2185
2289
|
{
|
|
2186
|
-
title: config$
|
|
2290
|
+
title: config$d.title,
|
|
2187
2291
|
screenshot: "",
|
|
2188
2292
|
schema: {
|
|
2189
|
-
componentName: config$
|
|
2190
|
-
props: config$
|
|
2293
|
+
componentName: config$d.componentName,
|
|
2294
|
+
props: config$d.preview
|
|
2191
2295
|
}
|
|
2192
2296
|
}
|
|
2193
2297
|
], amis: {
|
|
2194
2298
|
render: {
|
|
2195
|
-
type: config$
|
|
2299
|
+
type: config$d.amis.name,
|
|
2196
2300
|
usage: "renderer",
|
|
2197
2301
|
weight: 1,
|
|
2198
2302
|
framework: "react"
|
|
2199
2303
|
},
|
|
2200
2304
|
plugin_disabled: {
|
|
2201
|
-
rendererName: config$
|
|
2305
|
+
rendererName: config$d.amis.name,
|
|
2202
2306
|
$schema: '/schemas/UnkownSchema.json',
|
|
2203
|
-
name: config$
|
|
2204
|
-
description: config$
|
|
2205
|
-
tags: [config$
|
|
2307
|
+
name: config$d.title,
|
|
2308
|
+
description: config$d.title,
|
|
2309
|
+
tags: [config$d.group],
|
|
2206
2310
|
order: -9999,
|
|
2207
|
-
icon: config$
|
|
2311
|
+
icon: config$d.amis.icon,
|
|
2208
2312
|
scaffold: {
|
|
2209
|
-
type: config$
|
|
2210
|
-
label: config$
|
|
2313
|
+
type: config$d.amis.name,
|
|
2314
|
+
label: config$d.title,
|
|
2211
2315
|
columns: 1,
|
|
2212
2316
|
vertical: false,
|
|
2213
2317
|
showIcon: true
|
|
2214
2318
|
},
|
|
2215
2319
|
previewSchema: {
|
|
2216
|
-
type: config$
|
|
2320
|
+
type: config$d.amis.name,
|
|
2217
2321
|
},
|
|
2218
2322
|
panelTitle: "设置",
|
|
2219
2323
|
panelControls: [
|
|
@@ -2238,7 +2342,7 @@
|
|
|
2238
2342
|
* @LastEditTime: 2023-03-09 19:01:32
|
|
2239
2343
|
* @Description:
|
|
2240
2344
|
*/
|
|
2241
|
-
var config$
|
|
2345
|
+
var config$c = {
|
|
2242
2346
|
// componentType: 'amisSchema',
|
|
2243
2347
|
group: "华炎魔方-原子组件",
|
|
2244
2348
|
componentName: "SteedosIcon",
|
|
@@ -2262,39 +2366,39 @@
|
|
|
2262
2366
|
icon: "fa-fw fa fa-list-alt"
|
|
2263
2367
|
}
|
|
2264
2368
|
};
|
|
2265
|
-
var SteedosIcon = __assign(__assign({}, config$
|
|
2369
|
+
var SteedosIcon = __assign(__assign({}, config$c), { snippets: [
|
|
2266
2370
|
{
|
|
2267
|
-
title: config$
|
|
2371
|
+
title: config$c.title,
|
|
2268
2372
|
screenshot: "",
|
|
2269
2373
|
schema: {
|
|
2270
|
-
componentName: config$
|
|
2271
|
-
props: config$
|
|
2374
|
+
componentName: config$c.componentName,
|
|
2375
|
+
props: config$c.preview
|
|
2272
2376
|
}
|
|
2273
2377
|
}
|
|
2274
2378
|
], amis: {
|
|
2275
2379
|
render: {
|
|
2276
|
-
type: config$
|
|
2380
|
+
type: config$c.amis.name,
|
|
2277
2381
|
usage: "renderer",
|
|
2278
2382
|
weight: 1,
|
|
2279
2383
|
framework: "react"
|
|
2280
2384
|
},
|
|
2281
2385
|
plugin: {
|
|
2282
|
-
rendererName: config$
|
|
2386
|
+
rendererName: config$c.amis.name,
|
|
2283
2387
|
$schema: '/schemas/UnkownSchema.json',
|
|
2284
|
-
name: config$
|
|
2285
|
-
description: config$
|
|
2286
|
-
tags: [config$
|
|
2388
|
+
name: config$c.title,
|
|
2389
|
+
description: config$c.title,
|
|
2390
|
+
tags: [config$c.group],
|
|
2287
2391
|
order: -9999,
|
|
2288
|
-
icon: config$
|
|
2392
|
+
icon: config$c.amis.icon,
|
|
2289
2393
|
scaffold: {
|
|
2290
|
-
type: config$
|
|
2394
|
+
type: config$c.amis.name,
|
|
2291
2395
|
category: 'standard',
|
|
2292
2396
|
name: 'account',
|
|
2293
2397
|
colorVariant: 'default',
|
|
2294
2398
|
size: 'medium'
|
|
2295
2399
|
},
|
|
2296
2400
|
previewSchema: {
|
|
2297
|
-
type: config$
|
|
2401
|
+
type: config$c.amis.name,
|
|
2298
2402
|
},
|
|
2299
2403
|
panelTitle: "设置",
|
|
2300
2404
|
panelControls: [
|
|
@@ -2389,7 +2493,7 @@
|
|
|
2389
2493
|
* @LastEditTime: 2022-12-16 11:11:32
|
|
2390
2494
|
* @Description:
|
|
2391
2495
|
*/
|
|
2392
|
-
var config$
|
|
2496
|
+
var config$b = {
|
|
2393
2497
|
// componentType: 'amisSchema',
|
|
2394
2498
|
group: "华炎魔方",
|
|
2395
2499
|
componentName: "SteedosDropdown",
|
|
@@ -2413,32 +2517,32 @@
|
|
|
2413
2517
|
icon: "fa-fw fa fa-list-alt"
|
|
2414
2518
|
}
|
|
2415
2519
|
};
|
|
2416
|
-
var SteedosDropdown = __assign(__assign({}, config$
|
|
2520
|
+
var SteedosDropdown = __assign(__assign({}, config$b), { snippets: [
|
|
2417
2521
|
{
|
|
2418
|
-
title: config$
|
|
2522
|
+
title: config$b.title,
|
|
2419
2523
|
screenshot: "",
|
|
2420
2524
|
schema: {
|
|
2421
|
-
componentName: config$
|
|
2422
|
-
props: config$
|
|
2525
|
+
componentName: config$b.componentName,
|
|
2526
|
+
props: config$b.preview
|
|
2423
2527
|
}
|
|
2424
2528
|
}
|
|
2425
2529
|
], amis: {
|
|
2426
2530
|
render: {
|
|
2427
|
-
type: config$
|
|
2531
|
+
type: config$b.amis.name,
|
|
2428
2532
|
usage: "renderer",
|
|
2429
2533
|
weight: 1,
|
|
2430
2534
|
framework: "react"
|
|
2431
2535
|
},
|
|
2432
2536
|
plugin_disabled: {
|
|
2433
|
-
rendererName: config$
|
|
2537
|
+
rendererName: config$b.amis.name,
|
|
2434
2538
|
$schema: '/schemas/UnkownSchema.json',
|
|
2435
|
-
name: config$
|
|
2436
|
-
description: config$
|
|
2437
|
-
tags: [config$
|
|
2539
|
+
name: config$b.title,
|
|
2540
|
+
description: config$b.title,
|
|
2541
|
+
tags: [config$b.group],
|
|
2438
2542
|
order: -9999,
|
|
2439
|
-
icon: config$
|
|
2543
|
+
icon: config$b.amis.icon,
|
|
2440
2544
|
scaffold: {
|
|
2441
|
-
type: config$
|
|
2545
|
+
type: config$b.amis.name,
|
|
2442
2546
|
placement: 'bottomLeft',
|
|
2443
2547
|
trigger: ['click'],
|
|
2444
2548
|
body: [],
|
|
@@ -2455,7 +2559,7 @@
|
|
|
2455
2559
|
},
|
|
2456
2560
|
],
|
|
2457
2561
|
previewSchema: {
|
|
2458
|
-
type: config$
|
|
2562
|
+
type: config$b.amis.name,
|
|
2459
2563
|
},
|
|
2460
2564
|
panelTitle: "设置",
|
|
2461
2565
|
panelControls: [
|
|
@@ -2503,7 +2607,7 @@
|
|
|
2503
2607
|
* @LastEditTime: 2022-12-16 11:10:51
|
|
2504
2608
|
* @Description:
|
|
2505
2609
|
*/
|
|
2506
|
-
var config$
|
|
2610
|
+
var config$a = {
|
|
2507
2611
|
// componentType: 'amisSchema',
|
|
2508
2612
|
group: "华炎魔方",
|
|
2509
2613
|
componentName: "FromNow",
|
|
@@ -2527,18 +2631,18 @@
|
|
|
2527
2631
|
icon: "fa-fw fa fa-list-alt"
|
|
2528
2632
|
}
|
|
2529
2633
|
};
|
|
2530
|
-
var FromNow = __assign(__assign({}, config$
|
|
2634
|
+
var FromNow = __assign(__assign({}, config$a), { snippets: [
|
|
2531
2635
|
{
|
|
2532
|
-
title: config$
|
|
2636
|
+
title: config$a.title,
|
|
2533
2637
|
screenshot: "",
|
|
2534
2638
|
schema: {
|
|
2535
|
-
componentName: config$
|
|
2536
|
-
props: config$
|
|
2639
|
+
componentName: config$a.componentName,
|
|
2640
|
+
props: config$a.preview
|
|
2537
2641
|
}
|
|
2538
2642
|
}
|
|
2539
2643
|
], amis: {
|
|
2540
2644
|
render: {
|
|
2541
|
-
type: config$
|
|
2645
|
+
type: config$a.amis.name,
|
|
2542
2646
|
usage: "renderer",
|
|
2543
2647
|
weight: 1,
|
|
2544
2648
|
framework: "react"
|
|
@@ -2576,7 +2680,7 @@
|
|
|
2576
2680
|
* @LastEditTime: 2022-12-14 13:38:52
|
|
2577
2681
|
* @Description:
|
|
2578
2682
|
*/
|
|
2579
|
-
var config$
|
|
2683
|
+
var config$9 = {
|
|
2580
2684
|
componentType: 'amisSchema',
|
|
2581
2685
|
group: "华炎魔方",
|
|
2582
2686
|
componentName: "AmisGlobalHeader",
|
|
@@ -2601,38 +2705,38 @@
|
|
|
2601
2705
|
icon: "fa-fw fa fa-list-alt"
|
|
2602
2706
|
}
|
|
2603
2707
|
};
|
|
2604
|
-
var AmisGlobalHeader = __assign(__assign({}, config$
|
|
2708
|
+
var AmisGlobalHeader = __assign(__assign({}, config$9), { snippets: [
|
|
2605
2709
|
{
|
|
2606
|
-
title: config$
|
|
2710
|
+
title: config$9.title,
|
|
2607
2711
|
screenshot: "",
|
|
2608
2712
|
schema: {
|
|
2609
|
-
componentName: config$
|
|
2610
|
-
props: config$
|
|
2713
|
+
componentName: config$9.componentName,
|
|
2714
|
+
props: config$9.preview
|
|
2611
2715
|
}
|
|
2612
2716
|
}
|
|
2613
2717
|
], amis: {
|
|
2614
2718
|
render: {
|
|
2615
|
-
type: config$
|
|
2719
|
+
type: config$9.amis.name,
|
|
2616
2720
|
usage: "renderer",
|
|
2617
2721
|
weight: 1,
|
|
2618
2722
|
framework: "react"
|
|
2619
2723
|
},
|
|
2620
2724
|
plugin_disabled: {
|
|
2621
|
-
rendererName: config$
|
|
2725
|
+
rendererName: config$9.amis.name,
|
|
2622
2726
|
$schema: '/schemas/UnkownSchema.json',
|
|
2623
|
-
name: config$
|
|
2624
|
-
description: config$
|
|
2625
|
-
tags: [config$
|
|
2727
|
+
name: config$9.title,
|
|
2728
|
+
description: config$9.title,
|
|
2729
|
+
tags: [config$9.group],
|
|
2626
2730
|
order: -9999,
|
|
2627
|
-
icon: config$
|
|
2731
|
+
icon: config$9.amis.icon,
|
|
2628
2732
|
scaffold: {
|
|
2629
|
-
type: config$
|
|
2630
|
-
label: config$
|
|
2733
|
+
type: config$9.amis.name,
|
|
2734
|
+
label: config$9.title,
|
|
2631
2735
|
columns: 1,
|
|
2632
2736
|
vertical: false
|
|
2633
2737
|
},
|
|
2634
2738
|
previewSchema: {
|
|
2635
|
-
type: config$
|
|
2739
|
+
type: config$9.amis.name,
|
|
2636
2740
|
},
|
|
2637
2741
|
panelTitle: "设置",
|
|
2638
2742
|
panelControls: []
|
|
@@ -2646,7 +2750,7 @@
|
|
|
2646
2750
|
* @LastEditTime: 2022-12-16 10:15:58
|
|
2647
2751
|
* @Description:
|
|
2648
2752
|
*/
|
|
2649
|
-
var config$
|
|
2753
|
+
var config$8 = {
|
|
2650
2754
|
group: "华炎魔方",
|
|
2651
2755
|
componentName: "SteedosLoading",
|
|
2652
2756
|
title: "加载中",
|
|
@@ -2669,18 +2773,18 @@
|
|
|
2669
2773
|
icon: "fa-fw fa fa-list-alt"
|
|
2670
2774
|
}
|
|
2671
2775
|
};
|
|
2672
|
-
var SteedosLoading = __assign(__assign({}, config$
|
|
2776
|
+
var SteedosLoading = __assign(__assign({}, config$8), { snippets: [
|
|
2673
2777
|
{
|
|
2674
|
-
title: config$
|
|
2778
|
+
title: config$8.title,
|
|
2675
2779
|
screenshot: "",
|
|
2676
2780
|
schema: {
|
|
2677
|
-
componentName: config$
|
|
2678
|
-
props: config$
|
|
2781
|
+
componentName: config$8.componentName,
|
|
2782
|
+
props: config$8.preview
|
|
2679
2783
|
}
|
|
2680
2784
|
}
|
|
2681
2785
|
], amis: {
|
|
2682
2786
|
render: {
|
|
2683
|
-
type: config$
|
|
2787
|
+
type: config$8.amis.name,
|
|
2684
2788
|
usage: "renderer",
|
|
2685
2789
|
weight: 1,
|
|
2686
2790
|
framework: "react"
|
|
@@ -2691,10 +2795,10 @@
|
|
|
2691
2795
|
* @Author: baozhoutao@steedos.com
|
|
2692
2796
|
* @Date: 2022-10-11 09:39:38
|
|
2693
2797
|
* @LastEditors: baozhoutao@steedos.com
|
|
2694
|
-
* @LastEditTime: 2023-
|
|
2798
|
+
* @LastEditTime: 2023-04-07 18:31:37
|
|
2695
2799
|
* @Description:
|
|
2696
2800
|
*/
|
|
2697
|
-
var config$
|
|
2801
|
+
var config$7 = {
|
|
2698
2802
|
// componentType: 'amisSchema',
|
|
2699
2803
|
group: "华炎魔方-原子组件",
|
|
2700
2804
|
componentName: "SteedosBadge",
|
|
@@ -2718,32 +2822,32 @@
|
|
|
2718
2822
|
icon: "fa-fw fa fa-list-alt"
|
|
2719
2823
|
}
|
|
2720
2824
|
};
|
|
2721
|
-
var SteedosBadge = __assign(__assign({}, config$
|
|
2825
|
+
var SteedosBadge = __assign(__assign({}, config$7), { snippets: [
|
|
2722
2826
|
{
|
|
2723
|
-
title: config$
|
|
2827
|
+
title: config$7.title,
|
|
2724
2828
|
screenshot: "",
|
|
2725
2829
|
schema: {
|
|
2726
|
-
componentName: config$
|
|
2727
|
-
props: config$
|
|
2830
|
+
componentName: config$7.componentName,
|
|
2831
|
+
props: config$7.preview
|
|
2728
2832
|
}
|
|
2729
2833
|
}
|
|
2730
2834
|
], amis: {
|
|
2731
2835
|
render: {
|
|
2732
|
-
type: config$
|
|
2836
|
+
type: config$7.amis.name,
|
|
2733
2837
|
usage: "renderer",
|
|
2734
2838
|
weight: 1,
|
|
2735
2839
|
framework: "react"
|
|
2736
2840
|
},
|
|
2737
2841
|
plugin: {
|
|
2738
|
-
rendererName: config$
|
|
2842
|
+
rendererName: config$7.amis.name,
|
|
2739
2843
|
$schema: '/schemas/UnkownSchema.json',
|
|
2740
|
-
name: config$
|
|
2741
|
-
description: config$
|
|
2742
|
-
tags: [config$
|
|
2844
|
+
name: config$7.title,
|
|
2845
|
+
description: config$7.title,
|
|
2846
|
+
tags: [config$7.group],
|
|
2743
2847
|
order: -9999,
|
|
2744
|
-
icon: config$
|
|
2848
|
+
icon: config$7.amis.icon,
|
|
2745
2849
|
scaffold: {
|
|
2746
|
-
type: config$
|
|
2850
|
+
type: config$7.amis.name,
|
|
2747
2851
|
count: 100,
|
|
2748
2852
|
body: [], // 容器类字段
|
|
2749
2853
|
},
|
|
@@ -2754,7 +2858,7 @@
|
|
|
2754
2858
|
}
|
|
2755
2859
|
],
|
|
2756
2860
|
previewSchema: {
|
|
2757
|
-
type: config$
|
|
2861
|
+
type: config$7.amis.name,
|
|
2758
2862
|
},
|
|
2759
2863
|
panelTitle: "设置",
|
|
2760
2864
|
panelControls: [
|
|
@@ -2830,7 +2934,7 @@
|
|
|
2830
2934
|
* @LastEditTime: 2023-03-09 19:00:03
|
|
2831
2935
|
* @Description:
|
|
2832
2936
|
*/
|
|
2833
|
-
var config$
|
|
2937
|
+
var config$6 = {
|
|
2834
2938
|
// componentType: 'amisSchema',
|
|
2835
2939
|
group: "华炎魔方-原子组件",
|
|
2836
2940
|
componentName: "SteedosBadgeRibbon",
|
|
@@ -2854,32 +2958,32 @@
|
|
|
2854
2958
|
icon: "fa-fw fa fa-list-alt"
|
|
2855
2959
|
}
|
|
2856
2960
|
};
|
|
2857
|
-
var SteedosBadgeRibbon = __assign(__assign({}, config$
|
|
2961
|
+
var SteedosBadgeRibbon = __assign(__assign({}, config$6), { snippets: [
|
|
2858
2962
|
{
|
|
2859
|
-
title: config$
|
|
2963
|
+
title: config$6.title,
|
|
2860
2964
|
screenshot: "",
|
|
2861
2965
|
schema: {
|
|
2862
|
-
componentName: config$
|
|
2863
|
-
props: config$
|
|
2966
|
+
componentName: config$6.componentName,
|
|
2967
|
+
props: config$6.preview
|
|
2864
2968
|
}
|
|
2865
2969
|
}
|
|
2866
2970
|
], amis: {
|
|
2867
2971
|
render: {
|
|
2868
|
-
type: config$
|
|
2972
|
+
type: config$6.amis.name,
|
|
2869
2973
|
usage: "renderer",
|
|
2870
2974
|
weight: 1,
|
|
2871
2975
|
framework: "react"
|
|
2872
2976
|
},
|
|
2873
2977
|
plugin: {
|
|
2874
|
-
rendererName: config$
|
|
2978
|
+
rendererName: config$6.amis.name,
|
|
2875
2979
|
$schema: '/schemas/UnkownSchema.json',
|
|
2876
|
-
name: config$
|
|
2877
|
-
description: config$
|
|
2878
|
-
tags: [config$
|
|
2980
|
+
name: config$6.title,
|
|
2981
|
+
description: config$6.title,
|
|
2982
|
+
tags: [config$6.group],
|
|
2879
2983
|
order: -9999,
|
|
2880
|
-
icon: config$
|
|
2984
|
+
icon: config$6.amis.icon,
|
|
2881
2985
|
scaffold: {
|
|
2882
|
-
type: config$
|
|
2986
|
+
type: config$6.amis.name,
|
|
2883
2987
|
body: [], // 容器类字段
|
|
2884
2988
|
},
|
|
2885
2989
|
regions: [
|
|
@@ -2889,7 +2993,7 @@
|
|
|
2889
2993
|
}
|
|
2890
2994
|
],
|
|
2891
2995
|
previewSchema: {
|
|
2892
|
-
type: config$
|
|
2996
|
+
type: config$6.amis.name,
|
|
2893
2997
|
},
|
|
2894
2998
|
panelTitle: "设置",
|
|
2895
2999
|
panelControls: [
|
|
@@ -2923,7 +3027,7 @@
|
|
|
2923
3027
|
* @LastEditTime: 2023-03-06 18:29:59
|
|
2924
3028
|
* @Description:
|
|
2925
3029
|
*/
|
|
2926
|
-
var config$
|
|
3030
|
+
var config$5 = {
|
|
2927
3031
|
componentType: 'amisSchema',
|
|
2928
3032
|
group: "华炎魔方-原子组件",
|
|
2929
3033
|
componentName: "AmisSteedosField",
|
|
@@ -2947,39 +3051,39 @@
|
|
|
2947
3051
|
icon: "fa-fw fa fa-list-alt"
|
|
2948
3052
|
}
|
|
2949
3053
|
};
|
|
2950
|
-
var AmisSteedosField = __assign(__assign({}, config$
|
|
3054
|
+
var AmisSteedosField = __assign(__assign({}, config$5), { snippets: [
|
|
2951
3055
|
{
|
|
2952
|
-
title: config$
|
|
3056
|
+
title: config$5.title,
|
|
2953
3057
|
screenshot: "",
|
|
2954
3058
|
schema: {
|
|
2955
|
-
componentName: config$
|
|
2956
|
-
props: config$
|
|
3059
|
+
componentName: config$5.componentName,
|
|
3060
|
+
props: config$5.preview
|
|
2957
3061
|
}
|
|
2958
3062
|
}
|
|
2959
3063
|
], amis: {
|
|
2960
3064
|
render: {
|
|
2961
|
-
type: config$
|
|
3065
|
+
type: config$5.amis.name,
|
|
2962
3066
|
usage: "renderer",
|
|
2963
3067
|
weight: 1,
|
|
2964
3068
|
framework: "react"
|
|
2965
3069
|
},
|
|
2966
3070
|
plugin: {
|
|
2967
|
-
rendererName: config$
|
|
3071
|
+
rendererName: config$5.amis.name,
|
|
2968
3072
|
$schema: '/schemas/UnkownSchema.json',
|
|
2969
|
-
name: config$
|
|
2970
|
-
description: config$
|
|
2971
|
-
tags: [config$
|
|
3073
|
+
name: config$5.title,
|
|
3074
|
+
description: config$5.title,
|
|
3075
|
+
tags: [config$5.group],
|
|
2972
3076
|
order: -9999,
|
|
2973
|
-
icon: config$
|
|
3077
|
+
icon: config$5.amis.icon,
|
|
2974
3078
|
scaffold: {
|
|
2975
|
-
type: config$
|
|
3079
|
+
type: config$5.amis.name,
|
|
2976
3080
|
config: {
|
|
2977
3081
|
"type": "text",
|
|
2978
3082
|
"label": "字段1"
|
|
2979
3083
|
}
|
|
2980
3084
|
},
|
|
2981
3085
|
previewSchema: {
|
|
2982
|
-
type: config$
|
|
3086
|
+
type: config$5.amis.name,
|
|
2983
3087
|
config: {
|
|
2984
3088
|
"type": "text",
|
|
2985
3089
|
"label": "字段1"
|
|
@@ -3012,7 +3116,7 @@
|
|
|
3012
3116
|
* @LastEditTime: 2023-01-14 16:51:23
|
|
3013
3117
|
* @Description:
|
|
3014
3118
|
*/
|
|
3015
|
-
var config$
|
|
3119
|
+
var config$4 = {
|
|
3016
3120
|
componentType: 'amisSchema',
|
|
3017
3121
|
group: "华炎魔方",
|
|
3018
3122
|
componentName: "AmisSelectFlow",
|
|
@@ -3036,18 +3140,18 @@
|
|
|
3036
3140
|
icon: "fa-fw fa fa-list-alt"
|
|
3037
3141
|
}
|
|
3038
3142
|
};
|
|
3039
|
-
var AmisSelectFlow = __assign(__assign({}, config$
|
|
3143
|
+
var AmisSelectFlow = __assign(__assign({}, config$4), { snippets: [
|
|
3040
3144
|
{
|
|
3041
|
-
title: config$
|
|
3145
|
+
title: config$4.title,
|
|
3042
3146
|
screenshot: "",
|
|
3043
3147
|
schema: {
|
|
3044
|
-
componentName: config$
|
|
3045
|
-
props: config$
|
|
3148
|
+
componentName: config$4.componentName,
|
|
3149
|
+
props: config$4.preview
|
|
3046
3150
|
}
|
|
3047
3151
|
}
|
|
3048
3152
|
], amis: {
|
|
3049
3153
|
render: {
|
|
3050
|
-
type: config$
|
|
3154
|
+
type: config$4.amis.name,
|
|
3051
3155
|
usage: "renderer",
|
|
3052
3156
|
weight: 1,
|
|
3053
3157
|
framework: "react"
|
|
@@ -3085,7 +3189,7 @@
|
|
|
3085
3189
|
* @LastEditTime: 2023-02-09 16:48:59
|
|
3086
3190
|
* @Description:
|
|
3087
3191
|
*/
|
|
3088
|
-
var config$
|
|
3192
|
+
var config$3 = {
|
|
3089
3193
|
componentType: 'amisSchema',
|
|
3090
3194
|
group: "华炎魔方",
|
|
3091
3195
|
componentName: "AmisInstanceDetail",
|
|
@@ -3109,18 +3213,18 @@
|
|
|
3109
3213
|
icon: "fa-fw fa fa-list-alt"
|
|
3110
3214
|
}
|
|
3111
3215
|
};
|
|
3112
|
-
var AmisInstanceDetail = __assign(__assign({}, config$
|
|
3216
|
+
var AmisInstanceDetail = __assign(__assign({}, config$3), { snippets: [
|
|
3113
3217
|
{
|
|
3114
|
-
title: config$
|
|
3218
|
+
title: config$3.title,
|
|
3115
3219
|
screenshot: "",
|
|
3116
3220
|
schema: {
|
|
3117
|
-
componentName: config$
|
|
3118
|
-
props: config$
|
|
3221
|
+
componentName: config$3.componentName,
|
|
3222
|
+
props: config$3.preview
|
|
3119
3223
|
}
|
|
3120
3224
|
}
|
|
3121
3225
|
], amis: {
|
|
3122
3226
|
render: {
|
|
3123
|
-
type: config$
|
|
3227
|
+
type: config$3.amis.name,
|
|
3124
3228
|
usage: "renderer",
|
|
3125
3229
|
weight: 1,
|
|
3126
3230
|
framework: "react"
|
|
@@ -3156,7 +3260,7 @@
|
|
|
3156
3260
|
* @LastEditTime: 2022-12-08 10:37:45
|
|
3157
3261
|
* @Description:
|
|
3158
3262
|
*/
|
|
3159
|
-
var config$
|
|
3263
|
+
var config$2 = {
|
|
3160
3264
|
componentType: 'amisSchema',
|
|
3161
3265
|
group: "华炎魔方",
|
|
3162
3266
|
componentName: "PageListView",
|
|
@@ -3180,18 +3284,18 @@
|
|
|
3180
3284
|
icon: "fa-fw fa fa-list-alt"
|
|
3181
3285
|
}
|
|
3182
3286
|
};
|
|
3183
|
-
var PageListViewMeta = __assign(__assign({}, config$
|
|
3287
|
+
var PageListViewMeta = __assign(__assign({}, config$2), { snippets: [
|
|
3184
3288
|
{
|
|
3185
|
-
title: config$
|
|
3289
|
+
title: config$2.title,
|
|
3186
3290
|
screenshot: "",
|
|
3187
3291
|
schema: {
|
|
3188
|
-
componentName: config$
|
|
3189
|
-
props: config$
|
|
3292
|
+
componentName: config$2.componentName,
|
|
3293
|
+
props: config$2.preview
|
|
3190
3294
|
}
|
|
3191
3295
|
}
|
|
3192
3296
|
], amis: {
|
|
3193
3297
|
render: {
|
|
3194
|
-
type: config$
|
|
3298
|
+
type: config$2.amis.name,
|
|
3195
3299
|
usage: "renderer",
|
|
3196
3300
|
weight: 1,
|
|
3197
3301
|
framework: "react"
|
|
@@ -3205,7 +3309,7 @@
|
|
|
3205
3309
|
* @LastEditTime: 2022-12-08 10:37:45
|
|
3206
3310
|
* @Description:
|
|
3207
3311
|
*/
|
|
3208
|
-
var config = {
|
|
3312
|
+
var config$1 = {
|
|
3209
3313
|
componentType: 'amisSchema',
|
|
3210
3314
|
group: "华炎魔方",
|
|
3211
3315
|
componentName: "PageRecordDetail",
|
|
@@ -3229,7 +3333,56 @@
|
|
|
3229
3333
|
icon: "fa-fw fa fa-list-alt"
|
|
3230
3334
|
}
|
|
3231
3335
|
};
|
|
3232
|
-
var PageRecordDetailMeta = __assign(__assign({}, config), { snippets: [
|
|
3336
|
+
var PageRecordDetailMeta = __assign(__assign({}, config$1), { snippets: [
|
|
3337
|
+
{
|
|
3338
|
+
title: config$1.title,
|
|
3339
|
+
screenshot: "",
|
|
3340
|
+
schema: {
|
|
3341
|
+
componentName: config$1.componentName,
|
|
3342
|
+
props: config$1.preview
|
|
3343
|
+
}
|
|
3344
|
+
}
|
|
3345
|
+
], amis: {
|
|
3346
|
+
render: {
|
|
3347
|
+
type: config$1.amis.name,
|
|
3348
|
+
usage: "renderer",
|
|
3349
|
+
weight: 1,
|
|
3350
|
+
framework: "react"
|
|
3351
|
+
},
|
|
3352
|
+
} });
|
|
3353
|
+
|
|
3354
|
+
/*
|
|
3355
|
+
* @Author: baozhoutao@steedos.com
|
|
3356
|
+
* @Date: 2022-10-11 09:39:38
|
|
3357
|
+
* @LastEditors: baozhoutao@steedos.com
|
|
3358
|
+
* @LastEditTime: 2023-04-12 14:35:40
|
|
3359
|
+
* @Description:
|
|
3360
|
+
*/
|
|
3361
|
+
var config = {
|
|
3362
|
+
// componentType: 'amisSchema',
|
|
3363
|
+
group: "华炎魔方-原子组件",
|
|
3364
|
+
componentName: "SteedosSkeleton",
|
|
3365
|
+
title: "骨架屏",
|
|
3366
|
+
docUrl: "",
|
|
3367
|
+
screenshot: "",
|
|
3368
|
+
npm: {
|
|
3369
|
+
package: "@steedos-widgets/amis-object",
|
|
3370
|
+
version: "{{version}}",
|
|
3371
|
+
exportName: "SteedosSkeleton",
|
|
3372
|
+
main: "",
|
|
3373
|
+
destructuring: true,
|
|
3374
|
+
subName: ""
|
|
3375
|
+
},
|
|
3376
|
+
preview: {},
|
|
3377
|
+
targets: ["steedos__RecordPage", "steedos__AppPage", "steedos__HomePage"],
|
|
3378
|
+
engines: ["amis"],
|
|
3379
|
+
// settings for amis.
|
|
3380
|
+
amis: {
|
|
3381
|
+
name: 'steedos-skeleton',
|
|
3382
|
+
icon: "fa-fw fa fa-list-alt"
|
|
3383
|
+
}
|
|
3384
|
+
};
|
|
3385
|
+
var SteedosSkeleton = __assign(__assign({}, config), { snippets: [
|
|
3233
3386
|
{
|
|
3234
3387
|
title: config.title,
|
|
3235
3388
|
screenshot: "",
|
|
@@ -3245,13 +3398,57 @@
|
|
|
3245
3398
|
weight: 1,
|
|
3246
3399
|
framework: "react"
|
|
3247
3400
|
},
|
|
3401
|
+
plugin_disable: {
|
|
3402
|
+
rendererName: config.amis.name,
|
|
3403
|
+
$schema: '/schemas/UnkownSchema.json',
|
|
3404
|
+
name: config.title,
|
|
3405
|
+
description: config.title,
|
|
3406
|
+
tags: [config.group],
|
|
3407
|
+
order: -9999,
|
|
3408
|
+
icon: config.amis.icon,
|
|
3409
|
+
scaffold: {
|
|
3410
|
+
type: config.amis.name,
|
|
3411
|
+
count: 100,
|
|
3412
|
+
body: [], // 容器类字段
|
|
3413
|
+
},
|
|
3414
|
+
regions: [
|
|
3415
|
+
{
|
|
3416
|
+
key: 'body',
|
|
3417
|
+
label: '内容区'
|
|
3418
|
+
}
|
|
3419
|
+
],
|
|
3420
|
+
previewSchema: {
|
|
3421
|
+
type: config.amis.name,
|
|
3422
|
+
config: {
|
|
3423
|
+
"active": true,
|
|
3424
|
+
"loading": true
|
|
3425
|
+
}
|
|
3426
|
+
},
|
|
3427
|
+
panelTitle: "设置",
|
|
3428
|
+
panelControls: [
|
|
3429
|
+
{
|
|
3430
|
+
type: "editor",
|
|
3431
|
+
name: "config",
|
|
3432
|
+
label: "定义",
|
|
3433
|
+
language: "json",
|
|
3434
|
+
pipeOut: function (value) {
|
|
3435
|
+
try {
|
|
3436
|
+
return value ? JSON.parse(value) : null;
|
|
3437
|
+
}
|
|
3438
|
+
catch (e) {
|
|
3439
|
+
}
|
|
3440
|
+
return value;
|
|
3441
|
+
}
|
|
3442
|
+
}
|
|
3443
|
+
]
|
|
3444
|
+
}
|
|
3248
3445
|
} });
|
|
3249
3446
|
|
|
3250
3447
|
/*
|
|
3251
3448
|
* @Author: baozhoutao@steedos.com
|
|
3252
3449
|
* @Date: 2022-08-31 16:32:35
|
|
3253
|
-
* @LastEditors:
|
|
3254
|
-
* @LastEditTime: 2023-
|
|
3450
|
+
* @LastEditors: 殷亮辉 yinlianghui@hotoa.com
|
|
3451
|
+
* @LastEditTime: 2023-04-12 23:32:03
|
|
3255
3452
|
* @Description:
|
|
3256
3453
|
*/
|
|
3257
3454
|
var components = [
|
|
@@ -3262,6 +3459,7 @@
|
|
|
3262
3459
|
AmisRecordDetailRelatedList,
|
|
3263
3460
|
AmisRecordDetailRelatedLists,
|
|
3264
3461
|
AmisRecordDetail,
|
|
3462
|
+
AmisRecordService,
|
|
3265
3463
|
AmisObjectCalendar,
|
|
3266
3464
|
AmisObjectButton,
|
|
3267
3465
|
AmisObjectFieldLookup,
|
|
@@ -3283,6 +3481,7 @@
|
|
|
3283
3481
|
SteedosLoading,
|
|
3284
3482
|
PageListViewMeta,
|
|
3285
3483
|
PageRecordDetailMeta,
|
|
3484
|
+
SteedosSkeleton
|
|
3286
3485
|
];
|
|
3287
3486
|
var componentList = [
|
|
3288
3487
|
{
|