@steedos-widgets/amis-object 1.2.2 → 1.2.3
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/AmisObjectListview.d.ts +12 -4
- package/dist/amis-object.cjs.css +0 -8
- package/dist/amis-object.cjs.js +209 -194
- package/dist/amis-object.cjs.js.map +1 -1
- package/dist/amis-object.esm.css +0 -8
- package/dist/amis-object.esm.js +209 -195
- package/dist/amis-object.esm.js.map +1 -1
- package/dist/amis-object.umd.css +0 -8
- package/dist/amis-object.umd.js +209 -194
- package/dist/amis-object.umd.js.map +1 -1
- package/dist/assets.json +11 -11
- package/dist/meta.js +395 -345
- package/dist/pages/PageListView.d.ts +1 -3
- package/dist/pages/PageObject.d.ts +65 -0
- package/dist/pages/PageObject.meta.d.ts +2 -0
- package/dist/pages/PageRecordDetail.d.ts +1 -2
- package/dist/pages/index.d.ts +1 -0
- 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$u = {
|
|
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$u), { snippets: [
|
|
119
119
|
{
|
|
120
|
-
title: config$
|
|
120
|
+
title: config$u.title,
|
|
121
121
|
screenshot: "",
|
|
122
122
|
schema: {
|
|
123
|
-
componentName: config$
|
|
124
|
-
props: config$
|
|
123
|
+
componentName: config$u.componentName,
|
|
124
|
+
props: config$u.preview
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
], amis: {
|
|
128
128
|
render: {
|
|
129
|
-
type: config$
|
|
129
|
+
type: config$u.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$u.amis.name,
|
|
136
136
|
$schema: '/schemas/UnkownSchema.json',
|
|
137
|
-
name: config$
|
|
138
|
-
description: config$
|
|
139
|
-
tags: [config$
|
|
137
|
+
name: config$u.title,
|
|
138
|
+
description: config$u.title,
|
|
139
|
+
tags: [config$u.group],
|
|
140
140
|
order: -9999,
|
|
141
|
-
icon: config$
|
|
141
|
+
icon: config$u.amis.icon,
|
|
142
142
|
scaffold: {
|
|
143
|
-
type: config$
|
|
144
|
-
label: config$
|
|
143
|
+
type: config$u.amis.name,
|
|
144
|
+
label: config$u.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$u.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$t = {
|
|
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$t), { snippets: [
|
|
540
540
|
{
|
|
541
|
-
title: config$
|
|
541
|
+
title: config$t.title,
|
|
542
542
|
screenshot: "",
|
|
543
543
|
schema: {
|
|
544
|
-
componentName: config$
|
|
545
|
-
props: config$
|
|
544
|
+
componentName: config$t.componentName,
|
|
545
|
+
props: config$t.preview
|
|
546
546
|
}
|
|
547
547
|
}
|
|
548
548
|
], amis: {
|
|
549
549
|
render: {
|
|
550
|
-
type: config$
|
|
550
|
+
type: config$t.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$t.amis.name,
|
|
557
557
|
$schema: '/schemas/UnkownSchema.json',
|
|
558
|
-
name: config$
|
|
559
|
-
description: config$
|
|
560
|
-
tags: [config$
|
|
558
|
+
name: config$t.title,
|
|
559
|
+
description: config$t.description,
|
|
560
|
+
tags: [config$t.group],
|
|
561
561
|
order: -9999,
|
|
562
|
-
icon: config$
|
|
562
|
+
icon: config$t.amis.icon,
|
|
563
563
|
scaffold: {
|
|
564
|
-
type: config$
|
|
565
|
-
label: config$
|
|
564
|
+
type: config$t.amis.name,
|
|
565
|
+
label: config$t.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$t.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$s = {
|
|
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$s), { snippets: [
|
|
712
712
|
{
|
|
713
|
-
title: config$
|
|
713
|
+
title: config$s.title,
|
|
714
714
|
screenshot: "",
|
|
715
715
|
schema: {
|
|
716
|
-
componentName: config$
|
|
717
|
-
props: config$
|
|
716
|
+
componentName: config$s.componentName,
|
|
717
|
+
props: config$s.preview
|
|
718
718
|
}
|
|
719
719
|
}
|
|
720
720
|
], amis: {
|
|
721
721
|
render: {
|
|
722
|
-
type: config$
|
|
722
|
+
type: config$s.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$s.amis.name,
|
|
729
729
|
$schema: '/schemas/UnkownSchema.json',
|
|
730
|
-
name: config$
|
|
731
|
-
description: config$
|
|
732
|
-
tags: [config$
|
|
730
|
+
name: config$s.title,
|
|
731
|
+
description: config$s.title,
|
|
732
|
+
tags: [config$s.group],
|
|
733
733
|
order: -9999,
|
|
734
|
-
icon: config$
|
|
734
|
+
icon: config$s.amis.icon,
|
|
735
735
|
scaffold: {
|
|
736
|
-
type: config$
|
|
737
|
-
label: config$
|
|
736
|
+
type: config$s.amis.name,
|
|
737
|
+
label: config$s.title,
|
|
738
738
|
objectApiName: "${objectName}",
|
|
739
739
|
currentView: "timeGridWeek"
|
|
740
740
|
},
|
|
741
741
|
previewSchema: {
|
|
742
|
-
type: config$
|
|
742
|
+
type: config$s.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$r = {
|
|
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$r), { snippets: [
|
|
881
881
|
{
|
|
882
|
-
title: config$
|
|
882
|
+
title: config$r.title,
|
|
883
883
|
screenshot: "",
|
|
884
884
|
schema: {
|
|
885
|
-
componentName: config$
|
|
886
|
-
props: config$
|
|
885
|
+
componentName: config$r.componentName,
|
|
886
|
+
props: config$r.preview
|
|
887
887
|
}
|
|
888
888
|
}
|
|
889
889
|
], amis: {
|
|
890
890
|
render: {
|
|
891
|
-
type: config$
|
|
891
|
+
type: config$r.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$r.amis.name,
|
|
898
898
|
$schema: '/schemas/UnkownSchema.json',
|
|
899
|
-
name: config$
|
|
900
|
-
description: config$
|
|
901
|
-
tags: [config$
|
|
899
|
+
name: config$r.title,
|
|
900
|
+
description: config$r.title,
|
|
901
|
+
tags: [config$r.group],
|
|
902
902
|
order: -9999,
|
|
903
|
-
icon: config$
|
|
903
|
+
icon: config$r.amis.icon,
|
|
904
904
|
scaffold: {
|
|
905
|
-
type: config$
|
|
906
|
-
label: config$
|
|
905
|
+
type: config$r.amis.name,
|
|
906
|
+
label: config$r.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$r.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$q = {
|
|
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$q), { snippets: [
|
|
1195
1195
|
{
|
|
1196
|
-
title: config$
|
|
1196
|
+
title: config$q.title,
|
|
1197
1197
|
screenshot: "",
|
|
1198
1198
|
schema: {
|
|
1199
|
-
componentName: config$
|
|
1200
|
-
props: config$
|
|
1199
|
+
componentName: config$q.componentName,
|
|
1200
|
+
props: config$q.preview
|
|
1201
1201
|
}
|
|
1202
1202
|
}
|
|
1203
1203
|
], amis: {
|
|
1204
1204
|
render: {
|
|
1205
|
-
type: config$
|
|
1205
|
+
type: config$q.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$q.amis.name,
|
|
1212
1212
|
$schema: '/schemas/UnkownSchema.json',
|
|
1213
|
-
name: config$
|
|
1214
|
-
description: config$
|
|
1215
|
-
tags: [config$
|
|
1213
|
+
name: config$q.title,
|
|
1214
|
+
description: config$q.description,
|
|
1215
|
+
tags: [config$q.group],
|
|
1216
1216
|
order: -9999,
|
|
1217
|
-
icon: config$
|
|
1217
|
+
icon: config$q.amis.icon,
|
|
1218
1218
|
scaffold: {
|
|
1219
|
-
type: config$
|
|
1220
|
-
label: config$
|
|
1219
|
+
type: config$q.amis.name,
|
|
1220
|
+
label: config$q.title,
|
|
1221
1221
|
objectApiName: "${objectName}",
|
|
1222
1222
|
recordId: "${recordId}"
|
|
1223
1223
|
},
|
|
1224
1224
|
previewSchema: {
|
|
1225
|
-
type: config$
|
|
1225
|
+
type: config$q.amis.name,
|
|
1226
1226
|
objectApiName: 'space_users'
|
|
1227
1227
|
},
|
|
1228
1228
|
panelTitle: "设置",
|
|
@@ -1265,7 +1265,7 @@
|
|
|
1265
1265
|
* @LastEditTime: 2023-04-12 23:29:24
|
|
1266
1266
|
* @Description:
|
|
1267
1267
|
*/
|
|
1268
|
-
var config$
|
|
1268
|
+
var config$p = {
|
|
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$p), { snippets: [
|
|
1305
1305
|
{
|
|
1306
|
-
title: config$
|
|
1306
|
+
title: config$p.title,
|
|
1307
1307
|
screenshot: "",
|
|
1308
1308
|
schema: {
|
|
1309
|
-
componentName: config$
|
|
1310
|
-
props: config$
|
|
1309
|
+
componentName: config$p.componentName,
|
|
1310
|
+
props: config$p.preview
|
|
1311
1311
|
}
|
|
1312
1312
|
}
|
|
1313
1313
|
], amis: {
|
|
1314
1314
|
render: {
|
|
1315
|
-
type: config$
|
|
1315
|
+
type: config$p.amis.name,
|
|
1316
1316
|
usage: "renderer",
|
|
1317
1317
|
weight: 1,
|
|
1318
1318
|
framework: "react"
|
|
1319
1319
|
},
|
|
1320
1320
|
plugin__disable: {
|
|
1321
|
-
rendererName: config$
|
|
1321
|
+
rendererName: config$p.amis.name,
|
|
1322
1322
|
$schema: '/schemas/UnkownSchema.json',
|
|
1323
|
-
name: config$
|
|
1324
|
-
description: config$
|
|
1325
|
-
tags: [config$
|
|
1323
|
+
name: config$p.title,
|
|
1324
|
+
description: config$p.title,
|
|
1325
|
+
tags: [config$p.group],
|
|
1326
1326
|
order: -9999,
|
|
1327
|
-
icon: config$
|
|
1327
|
+
icon: config$p.amis.icon,
|
|
1328
1328
|
scaffold: {
|
|
1329
|
-
type: config$
|
|
1329
|
+
type: config$p.amis.name,
|
|
1330
1330
|
body: [],
|
|
1331
|
-
label: config$
|
|
1331
|
+
label: config$p.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$p.amis.name,
|
|
1343
1343
|
objectApiName: 'space_users'
|
|
1344
1344
|
},
|
|
1345
1345
|
panelTitle: "设置",
|
|
@@ -1369,7 +1369,7 @@
|
|
|
1369
1369
|
}
|
|
1370
1370
|
} });
|
|
1371
1371
|
|
|
1372
|
-
var config$
|
|
1372
|
+
var config$o = {
|
|
1373
1373
|
componentType: 'amisSchema',
|
|
1374
1374
|
group: "华炎魔方",
|
|
1375
1375
|
componentName: "AmisRecordService",
|
|
@@ -1405,34 +1405,34 @@
|
|
|
1405
1405
|
icon: "fa-fw fa fa-list-alt"
|
|
1406
1406
|
}
|
|
1407
1407
|
};
|
|
1408
|
-
var AmisRecordService = __assign(__assign({}, config$
|
|
1408
|
+
var AmisRecordService = __assign(__assign({}, config$o), { snippets: [
|
|
1409
1409
|
{
|
|
1410
|
-
title: config$
|
|
1410
|
+
title: config$o.title,
|
|
1411
1411
|
screenshot: "",
|
|
1412
1412
|
schema: {
|
|
1413
|
-
componentName: config$
|
|
1414
|
-
props: config$
|
|
1413
|
+
componentName: config$o.componentName,
|
|
1414
|
+
props: config$o.preview
|
|
1415
1415
|
}
|
|
1416
1416
|
}
|
|
1417
1417
|
], amis: {
|
|
1418
1418
|
render: {
|
|
1419
|
-
type: config$
|
|
1419
|
+
type: config$o.amis.name,
|
|
1420
1420
|
usage: "renderer",
|
|
1421
1421
|
weight: 1,
|
|
1422
1422
|
framework: "react"
|
|
1423
1423
|
},
|
|
1424
1424
|
plugin: {
|
|
1425
|
-
rendererName: config$
|
|
1425
|
+
rendererName: config$o.amis.name,
|
|
1426
1426
|
$schema: '/schemas/UnkownSchema.json',
|
|
1427
|
-
name: config$
|
|
1428
|
-
description: config$
|
|
1429
|
-
tags: [config$
|
|
1427
|
+
name: config$o.title,
|
|
1428
|
+
description: config$o.title,
|
|
1429
|
+
tags: [config$o.group],
|
|
1430
1430
|
order: -9999,
|
|
1431
|
-
icon: config$
|
|
1431
|
+
icon: config$o.amis.icon,
|
|
1432
1432
|
scaffold: {
|
|
1433
|
-
type: config$
|
|
1433
|
+
type: config$o.amis.name,
|
|
1434
1434
|
body: [],
|
|
1435
|
-
label: config$
|
|
1435
|
+
label: config$o.title,
|
|
1436
1436
|
objectApiName: "${objectName}",
|
|
1437
1437
|
recordId: "${recordId}"
|
|
1438
1438
|
},
|
|
@@ -1443,7 +1443,7 @@
|
|
|
1443
1443
|
}
|
|
1444
1444
|
],
|
|
1445
1445
|
previewSchema: {
|
|
1446
|
-
type: config$
|
|
1446
|
+
type: config$o.amis.name,
|
|
1447
1447
|
objectApiName: 'space_users'
|
|
1448
1448
|
},
|
|
1449
1449
|
panelTitle: "设置",
|
|
@@ -1473,7 +1473,7 @@
|
|
|
1473
1473
|
}
|
|
1474
1474
|
} });
|
|
1475
1475
|
|
|
1476
|
-
var config$
|
|
1476
|
+
var config$n = {
|
|
1477
1477
|
componentType: 'amisSchema',
|
|
1478
1478
|
group: "华炎魔方-界面",
|
|
1479
1479
|
componentName: "AmisSelectUser",
|
|
@@ -1519,37 +1519,37 @@
|
|
|
1519
1519
|
icon: "fa-fw fa fa-list-alt"
|
|
1520
1520
|
}
|
|
1521
1521
|
};
|
|
1522
|
-
var AmisSelectUser = __assign(__assign({}, config$
|
|
1522
|
+
var AmisSelectUser = __assign(__assign({}, config$n), { snippets: [
|
|
1523
1523
|
{
|
|
1524
|
-
title: config$
|
|
1524
|
+
title: config$n.title,
|
|
1525
1525
|
screenshot: "",
|
|
1526
1526
|
schema: {
|
|
1527
|
-
componentName: config$
|
|
1528
|
-
props: config$
|
|
1527
|
+
componentName: config$n.componentName,
|
|
1528
|
+
props: config$n.preview
|
|
1529
1529
|
}
|
|
1530
1530
|
}
|
|
1531
1531
|
], amis: {
|
|
1532
1532
|
render: {
|
|
1533
|
-
type: config$
|
|
1533
|
+
type: config$n.amis.name,
|
|
1534
1534
|
usage: "renderer",
|
|
1535
1535
|
weight: 1,
|
|
1536
1536
|
framework: "react"
|
|
1537
1537
|
},
|
|
1538
1538
|
plugin_disabled: {
|
|
1539
|
-
rendererName: config$
|
|
1539
|
+
rendererName: config$n.amis.name,
|
|
1540
1540
|
$schema: '/schemas/UnkownSchema.json',
|
|
1541
|
-
name: config$
|
|
1542
|
-
description: config$
|
|
1543
|
-
tags: [config$
|
|
1541
|
+
name: config$n.title,
|
|
1542
|
+
description: config$n.title,
|
|
1543
|
+
tags: [config$n.group],
|
|
1544
1544
|
order: -9999,
|
|
1545
|
-
icon: config$
|
|
1545
|
+
icon: config$n.amis.icon,
|
|
1546
1546
|
scaffold: {
|
|
1547
|
-
type: config$
|
|
1548
|
-
label: config$
|
|
1547
|
+
type: config$n.amis.name,
|
|
1548
|
+
label: config$n.title,
|
|
1549
1549
|
name: ""
|
|
1550
1550
|
},
|
|
1551
1551
|
previewSchema: {
|
|
1552
|
-
type: config$
|
|
1552
|
+
type: config$n.amis.name,
|
|
1553
1553
|
},
|
|
1554
1554
|
panelTitle: "设置",
|
|
1555
1555
|
panelControls: [
|
|
@@ -1580,7 +1580,7 @@
|
|
|
1580
1580
|
* @LastEditTime: 2023-03-06 14:31:14
|
|
1581
1581
|
* @Description:
|
|
1582
1582
|
*/
|
|
1583
|
-
var config$
|
|
1583
|
+
var config$m = {
|
|
1584
1584
|
componentType: 'amisSchema',
|
|
1585
1585
|
group: "华炎魔方",
|
|
1586
1586
|
componentName: "AmisRecordDetailRelatedList",
|
|
@@ -1622,38 +1622,38 @@
|
|
|
1622
1622
|
icon: "fa-fw fa fa-list-alt"
|
|
1623
1623
|
}
|
|
1624
1624
|
};
|
|
1625
|
-
var AmisRecordDetailRelatedList = __assign(__assign({}, config$
|
|
1625
|
+
var AmisRecordDetailRelatedList = __assign(__assign({}, config$m), { snippets: [
|
|
1626
1626
|
{
|
|
1627
|
-
title: config$
|
|
1627
|
+
title: config$m.title,
|
|
1628
1628
|
screenshot: "",
|
|
1629
1629
|
schema: {
|
|
1630
|
-
componentName: config$
|
|
1631
|
-
props: config$
|
|
1630
|
+
componentName: config$m.componentName,
|
|
1631
|
+
props: config$m.preview
|
|
1632
1632
|
}
|
|
1633
1633
|
}
|
|
1634
1634
|
], amis: {
|
|
1635
1635
|
render: {
|
|
1636
|
-
type: config$
|
|
1636
|
+
type: config$m.amis.name,
|
|
1637
1637
|
usage: "renderer",
|
|
1638
1638
|
weight: 1,
|
|
1639
1639
|
framework: "react"
|
|
1640
1640
|
},
|
|
1641
1641
|
plugin: {
|
|
1642
|
-
rendererName: config$
|
|
1642
|
+
rendererName: config$m.amis.name,
|
|
1643
1643
|
$schema: '/schemas/UnkownSchema.json',
|
|
1644
|
-
name: config$
|
|
1645
|
-
description: config$
|
|
1646
|
-
tags: [config$
|
|
1644
|
+
name: config$m.title,
|
|
1645
|
+
description: config$m.description,
|
|
1646
|
+
tags: [config$m.group],
|
|
1647
1647
|
order: -9999,
|
|
1648
|
-
icon: config$
|
|
1648
|
+
icon: config$m.amis.icon,
|
|
1649
1649
|
scaffold: {
|
|
1650
|
-
type: config$
|
|
1651
|
-
label: config$
|
|
1650
|
+
type: config$m.amis.name,
|
|
1651
|
+
label: config$m.title,
|
|
1652
1652
|
objectApiName: "${objectName}",
|
|
1653
1653
|
recordId: "${recordId}"
|
|
1654
1654
|
},
|
|
1655
1655
|
previewSchema: {
|
|
1656
|
-
type: config$
|
|
1656
|
+
type: config$m.amis.name,
|
|
1657
1657
|
objectApiName: "accounts"
|
|
1658
1658
|
},
|
|
1659
1659
|
panelTitle: "设置",
|
|
@@ -1720,7 +1720,7 @@
|
|
|
1720
1720
|
* @LastEditTime: 2022-12-01 16:08:49
|
|
1721
1721
|
* @Description:
|
|
1722
1722
|
*/
|
|
1723
|
-
var config$
|
|
1723
|
+
var config$l = {
|
|
1724
1724
|
componentType: 'amisSchema',
|
|
1725
1725
|
group: "华炎魔方",
|
|
1726
1726
|
componentName: "AmisRecordDetailRelatedLists",
|
|
@@ -1757,38 +1757,38 @@
|
|
|
1757
1757
|
icon: "fa-fw fa fa-list-alt"
|
|
1758
1758
|
}
|
|
1759
1759
|
};
|
|
1760
|
-
var AmisRecordDetailRelatedLists = __assign(__assign({}, config$
|
|
1760
|
+
var AmisRecordDetailRelatedLists = __assign(__assign({}, config$l), { snippets: [
|
|
1761
1761
|
{
|
|
1762
|
-
title: config$
|
|
1762
|
+
title: config$l.title,
|
|
1763
1763
|
screenshot: "",
|
|
1764
1764
|
schema: {
|
|
1765
|
-
componentName: config$
|
|
1766
|
-
props: config$
|
|
1765
|
+
componentName: config$l.componentName,
|
|
1766
|
+
props: config$l.preview
|
|
1767
1767
|
}
|
|
1768
1768
|
}
|
|
1769
1769
|
], amis: {
|
|
1770
1770
|
render: {
|
|
1771
|
-
type: config$
|
|
1771
|
+
type: config$l.amis.name,
|
|
1772
1772
|
usage: "renderer",
|
|
1773
1773
|
weight: 1,
|
|
1774
1774
|
framework: "react"
|
|
1775
1775
|
},
|
|
1776
1776
|
plugin: {
|
|
1777
|
-
rendererName: config$
|
|
1777
|
+
rendererName: config$l.amis.name,
|
|
1778
1778
|
$schema: '/schemas/UnkownSchema.json',
|
|
1779
|
-
name: config$
|
|
1780
|
-
description: config$
|
|
1781
|
-
tags: [config$
|
|
1779
|
+
name: config$l.title,
|
|
1780
|
+
description: config$l.description,
|
|
1781
|
+
tags: [config$l.group],
|
|
1782
1782
|
order: -9999,
|
|
1783
|
-
icon: config$
|
|
1783
|
+
icon: config$l.amis.icon,
|
|
1784
1784
|
scaffold: {
|
|
1785
|
-
type: config$
|
|
1786
|
-
label: config$
|
|
1785
|
+
type: config$l.amis.name,
|
|
1786
|
+
label: config$l.title,
|
|
1787
1787
|
objectApiName: "${objectName}",
|
|
1788
1788
|
recordId: "${recordId}",
|
|
1789
1789
|
},
|
|
1790
1790
|
previewSchema: {
|
|
1791
|
-
type: config$
|
|
1791
|
+
type: config$l.amis.name,
|
|
1792
1792
|
objectApiName: "accounts",
|
|
1793
1793
|
},
|
|
1794
1794
|
panelTitle: "设置",
|
|
@@ -1825,7 +1825,7 @@
|
|
|
1825
1825
|
* @LastEditTime: 2022-09-02 09:04:33
|
|
1826
1826
|
* @Description:
|
|
1827
1827
|
*/
|
|
1828
|
-
var config$
|
|
1828
|
+
var config$k = {
|
|
1829
1829
|
componentType: 'amisSchema',
|
|
1830
1830
|
group: "华炎魔方",
|
|
1831
1831
|
componentName: "AmisProvider",
|
|
@@ -1850,33 +1850,33 @@
|
|
|
1850
1850
|
icon: "fa-fw fa fa-list-alt"
|
|
1851
1851
|
}
|
|
1852
1852
|
};
|
|
1853
|
-
var AmisProvider = __assign(__assign({}, config$
|
|
1853
|
+
var AmisProvider = __assign(__assign({}, config$k), { snippets: [
|
|
1854
1854
|
{
|
|
1855
|
-
title: config$
|
|
1855
|
+
title: config$k.title,
|
|
1856
1856
|
screenshot: "",
|
|
1857
1857
|
schema: {
|
|
1858
|
-
componentName: config$
|
|
1859
|
-
props: config$
|
|
1858
|
+
componentName: config$k.componentName,
|
|
1859
|
+
props: config$k.preview
|
|
1860
1860
|
}
|
|
1861
1861
|
}
|
|
1862
1862
|
], amis: {
|
|
1863
1863
|
render: {
|
|
1864
|
-
type: config$
|
|
1864
|
+
type: config$k.amis.name,
|
|
1865
1865
|
usage: "renderer",
|
|
1866
1866
|
weight: 1,
|
|
1867
1867
|
framework: "react"
|
|
1868
1868
|
},
|
|
1869
1869
|
plugin_disabled: {
|
|
1870
|
-
rendererName: config$
|
|
1870
|
+
rendererName: config$k.amis.name,
|
|
1871
1871
|
$schema: '/schemas/UnkownSchema.json',
|
|
1872
|
-
name: config$
|
|
1873
|
-
description: config$
|
|
1874
|
-
tags: [config$
|
|
1872
|
+
name: config$k.title,
|
|
1873
|
+
description: config$k.title,
|
|
1874
|
+
tags: [config$k.group],
|
|
1875
1875
|
order: -9999,
|
|
1876
|
-
icon: config$
|
|
1876
|
+
icon: config$k.amis.icon,
|
|
1877
1877
|
scaffold: {
|
|
1878
|
-
type: config$
|
|
1879
|
-
label: config$
|
|
1878
|
+
type: config$k.amis.name,
|
|
1879
|
+
label: config$k.title,
|
|
1880
1880
|
body: [], // 容器类字段
|
|
1881
1881
|
},
|
|
1882
1882
|
// 容器类组件必需字段
|
|
@@ -1887,7 +1887,7 @@
|
|
|
1887
1887
|
},
|
|
1888
1888
|
],
|
|
1889
1889
|
previewSchema: {
|
|
1890
|
-
type: config$
|
|
1890
|
+
type: config$k.amis.name,
|
|
1891
1891
|
},
|
|
1892
1892
|
panelTitle: "设置",
|
|
1893
1893
|
panelControls: []
|
|
@@ -1901,7 +1901,7 @@
|
|
|
1901
1901
|
* @LastEditTime: 2022-12-26 11:26:17
|
|
1902
1902
|
* @Description:
|
|
1903
1903
|
*/
|
|
1904
|
-
var config$
|
|
1904
|
+
var config$j = {
|
|
1905
1905
|
// componentType: 'amisSchema',
|
|
1906
1906
|
group: "华炎魔方",
|
|
1907
1907
|
componentName: "AmisObjectFieldLookup",
|
|
@@ -1925,18 +1925,18 @@
|
|
|
1925
1925
|
icon: "fa-fw fa fa-list-alt"
|
|
1926
1926
|
}
|
|
1927
1927
|
};
|
|
1928
|
-
var AmisObjectFieldLookup = __assign(__assign({}, config$
|
|
1928
|
+
var AmisObjectFieldLookup = __assign(__assign({}, config$j), { snippets: [
|
|
1929
1929
|
{
|
|
1930
|
-
title: config$
|
|
1930
|
+
title: config$j.title,
|
|
1931
1931
|
screenshot: "",
|
|
1932
1932
|
schema: {
|
|
1933
|
-
componentName: config$
|
|
1934
|
-
props: config$
|
|
1933
|
+
componentName: config$j.componentName,
|
|
1934
|
+
props: config$j.preview
|
|
1935
1935
|
}
|
|
1936
1936
|
}
|
|
1937
1937
|
], amis: {
|
|
1938
1938
|
render: {
|
|
1939
|
-
type: config$
|
|
1939
|
+
type: config$j.amis.name,
|
|
1940
1940
|
usage: "formitem",
|
|
1941
1941
|
weight: 1,
|
|
1942
1942
|
framework: "react"
|
|
@@ -1972,7 +1972,7 @@
|
|
|
1972
1972
|
* @LastEditTime: 2023-02-04 12:04:41
|
|
1973
1973
|
* @Description:
|
|
1974
1974
|
*/
|
|
1975
|
-
var config$
|
|
1975
|
+
var config$i = {
|
|
1976
1976
|
// componentType: 'amisSchema',
|
|
1977
1977
|
group: "华炎魔方",
|
|
1978
1978
|
componentName: "AmisObjectButton",
|
|
@@ -1996,18 +1996,18 @@
|
|
|
1996
1996
|
icon: "fa-fw fa fa-list-alt"
|
|
1997
1997
|
}
|
|
1998
1998
|
};
|
|
1999
|
-
var AmisObjectButton = __assign(__assign({}, config$
|
|
1999
|
+
var AmisObjectButton = __assign(__assign({}, config$i), { snippets: [
|
|
2000
2000
|
{
|
|
2001
|
-
title: config$
|
|
2001
|
+
title: config$i.title,
|
|
2002
2002
|
screenshot: "",
|
|
2003
2003
|
schema: {
|
|
2004
|
-
componentName: config$
|
|
2005
|
-
props: config$
|
|
2004
|
+
componentName: config$i.componentName,
|
|
2005
|
+
props: config$i.preview
|
|
2006
2006
|
}
|
|
2007
2007
|
}
|
|
2008
2008
|
], amis: {
|
|
2009
2009
|
render: {
|
|
2010
|
-
type: config$
|
|
2010
|
+
type: config$i.amis.name,
|
|
2011
2011
|
usage: "renderer",
|
|
2012
2012
|
weight: 1,
|
|
2013
2013
|
framework: "react"
|
|
@@ -2043,7 +2043,7 @@
|
|
|
2043
2043
|
* @LastEditTime: 2022-11-14 10:09:25
|
|
2044
2044
|
* @Description:
|
|
2045
2045
|
*/
|
|
2046
|
-
var config$
|
|
2046
|
+
var config$h = {
|
|
2047
2047
|
// componentType: 'amisSchema',
|
|
2048
2048
|
group: "华炎魔方",
|
|
2049
2049
|
componentName: "SteedosDropdownButton",
|
|
@@ -2067,18 +2067,18 @@
|
|
|
2067
2067
|
icon: "fa-fw fa fa-list-alt"
|
|
2068
2068
|
}
|
|
2069
2069
|
};
|
|
2070
|
-
var SteedosDropdownButton = __assign(__assign({}, config$
|
|
2070
|
+
var SteedosDropdownButton = __assign(__assign({}, config$h), { snippets: [
|
|
2071
2071
|
{
|
|
2072
|
-
title: config$
|
|
2072
|
+
title: config$h.title,
|
|
2073
2073
|
screenshot: "",
|
|
2074
2074
|
schema: {
|
|
2075
|
-
componentName: config$
|
|
2076
|
-
props: config$
|
|
2075
|
+
componentName: config$h.componentName,
|
|
2076
|
+
props: config$h.preview
|
|
2077
2077
|
}
|
|
2078
2078
|
}
|
|
2079
2079
|
], amis: {
|
|
2080
2080
|
render: {
|
|
2081
|
-
type: config$
|
|
2081
|
+
type: config$h.amis.name,
|
|
2082
2082
|
usage: "renderer",
|
|
2083
2083
|
weight: 1,
|
|
2084
2084
|
framework: "react"
|
|
@@ -2114,7 +2114,7 @@
|
|
|
2114
2114
|
* @LastEditTime: 2022-12-13 12:04:13
|
|
2115
2115
|
* @Description:
|
|
2116
2116
|
*/
|
|
2117
|
-
var config$
|
|
2117
|
+
var config$g = {
|
|
2118
2118
|
componentType: 'amisSchema',
|
|
2119
2119
|
group: "华炎魔方",
|
|
2120
2120
|
componentName: "AmisAppLauncher",
|
|
@@ -2138,39 +2138,39 @@
|
|
|
2138
2138
|
icon: "fa-fw fa fa-list-alt"
|
|
2139
2139
|
}
|
|
2140
2140
|
};
|
|
2141
|
-
var AmisAppLauncher = __assign(__assign({}, config$
|
|
2141
|
+
var AmisAppLauncher = __assign(__assign({}, config$g), { snippets: [
|
|
2142
2142
|
{
|
|
2143
|
-
title: config$
|
|
2143
|
+
title: config$g.title,
|
|
2144
2144
|
screenshot: "",
|
|
2145
2145
|
schema: {
|
|
2146
|
-
componentName: config$
|
|
2147
|
-
props: config$
|
|
2146
|
+
componentName: config$g.componentName,
|
|
2147
|
+
props: config$g.preview
|
|
2148
2148
|
}
|
|
2149
2149
|
}
|
|
2150
2150
|
], amis: {
|
|
2151
2151
|
render: {
|
|
2152
|
-
type: config$
|
|
2152
|
+
type: config$g.amis.name,
|
|
2153
2153
|
usage: "renderer",
|
|
2154
2154
|
weight: 1,
|
|
2155
2155
|
framework: "react"
|
|
2156
2156
|
},
|
|
2157
2157
|
plugin_disabled: {
|
|
2158
|
-
rendererName: config$
|
|
2158
|
+
rendererName: config$g.amis.name,
|
|
2159
2159
|
$schema: '/schemas/UnkownSchema.json',
|
|
2160
|
-
name: config$
|
|
2161
|
-
description: config$
|
|
2162
|
-
tags: [config$
|
|
2160
|
+
name: config$g.title,
|
|
2161
|
+
description: config$g.title,
|
|
2162
|
+
tags: [config$g.group],
|
|
2163
2163
|
order: -9999,
|
|
2164
|
-
icon: config$
|
|
2164
|
+
icon: config$g.amis.icon,
|
|
2165
2165
|
scaffold: {
|
|
2166
|
-
type: config$
|
|
2167
|
-
label: config$
|
|
2166
|
+
type: config$g.amis.name,
|
|
2167
|
+
label: config$g.title,
|
|
2168
2168
|
name: 'board',
|
|
2169
2169
|
columns: 1,
|
|
2170
2170
|
vertical: false
|
|
2171
2171
|
},
|
|
2172
2172
|
previewSchema: {
|
|
2173
|
-
type: config$
|
|
2173
|
+
type: config$g.amis.name,
|
|
2174
2174
|
},
|
|
2175
2175
|
panelTitle: "设置",
|
|
2176
2176
|
panelControls: []
|
|
@@ -2184,7 +2184,7 @@
|
|
|
2184
2184
|
* @LastEditTime: 2022-12-13 12:08:37
|
|
2185
2185
|
* @Description:
|
|
2186
2186
|
*/
|
|
2187
|
-
var config$
|
|
2187
|
+
var config$f = {
|
|
2188
2188
|
componentType: 'amisSchema',
|
|
2189
2189
|
group: "华炎魔方",
|
|
2190
2190
|
componentName: "AmisLogo",
|
|
@@ -2208,39 +2208,39 @@
|
|
|
2208
2208
|
icon: "fa-fw fa fa-list-alt"
|
|
2209
2209
|
}
|
|
2210
2210
|
};
|
|
2211
|
-
var AmisLogo = __assign(__assign({}, config$
|
|
2211
|
+
var AmisLogo = __assign(__assign({}, config$f), { snippets: [
|
|
2212
2212
|
{
|
|
2213
|
-
title: config$
|
|
2213
|
+
title: config$f.title,
|
|
2214
2214
|
screenshot: "",
|
|
2215
2215
|
schema: {
|
|
2216
|
-
componentName: config$
|
|
2217
|
-
props: config$
|
|
2216
|
+
componentName: config$f.componentName,
|
|
2217
|
+
props: config$f.preview
|
|
2218
2218
|
}
|
|
2219
2219
|
}
|
|
2220
2220
|
], amis: {
|
|
2221
2221
|
render: {
|
|
2222
|
-
type: config$
|
|
2222
|
+
type: config$f.amis.name,
|
|
2223
2223
|
usage: "renderer",
|
|
2224
2224
|
weight: 1,
|
|
2225
2225
|
framework: "react"
|
|
2226
2226
|
},
|
|
2227
2227
|
plugin_disabled: {
|
|
2228
|
-
rendererName: config$
|
|
2228
|
+
rendererName: config$f.amis.name,
|
|
2229
2229
|
$schema: '/schemas/UnkownSchema.json',
|
|
2230
|
-
name: config$
|
|
2231
|
-
description: config$
|
|
2232
|
-
tags: [config$
|
|
2230
|
+
name: config$f.title,
|
|
2231
|
+
description: config$f.title,
|
|
2232
|
+
tags: [config$f.group],
|
|
2233
2233
|
order: -9999,
|
|
2234
|
-
icon: config$
|
|
2234
|
+
icon: config$f.amis.icon,
|
|
2235
2235
|
scaffold: {
|
|
2236
|
-
type: config$
|
|
2237
|
-
label: config$
|
|
2236
|
+
type: config$f.amis.name,
|
|
2237
|
+
label: config$f.title,
|
|
2238
2238
|
name: 'board',
|
|
2239
2239
|
columns: 1,
|
|
2240
2240
|
vertical: false
|
|
2241
2241
|
},
|
|
2242
2242
|
previewSchema: {
|
|
2243
|
-
type: config$
|
|
2243
|
+
type: config$f.amis.name,
|
|
2244
2244
|
},
|
|
2245
2245
|
panelTitle: "设置",
|
|
2246
2246
|
panelControls: []
|
|
@@ -2254,7 +2254,7 @@
|
|
|
2254
2254
|
* @LastEditTime: 2022-12-16 14:17:37
|
|
2255
2255
|
* @Description:
|
|
2256
2256
|
*/
|
|
2257
|
-
var config$
|
|
2257
|
+
var config$e = {
|
|
2258
2258
|
componentType: 'amisSchema',
|
|
2259
2259
|
group: "华炎魔方",
|
|
2260
2260
|
componentName: "AmisAppMenu",
|
|
@@ -2285,39 +2285,39 @@
|
|
|
2285
2285
|
icon: "fa-fw fa fa-list-alt"
|
|
2286
2286
|
}
|
|
2287
2287
|
};
|
|
2288
|
-
var AmisAppMenu = __assign(__assign({}, config$
|
|
2288
|
+
var AmisAppMenu = __assign(__assign({}, config$e), { snippets: [
|
|
2289
2289
|
{
|
|
2290
|
-
title: config$
|
|
2290
|
+
title: config$e.title,
|
|
2291
2291
|
screenshot: "",
|
|
2292
2292
|
schema: {
|
|
2293
|
-
componentName: config$
|
|
2294
|
-
props: config$
|
|
2293
|
+
componentName: config$e.componentName,
|
|
2294
|
+
props: config$e.preview
|
|
2295
2295
|
}
|
|
2296
2296
|
}
|
|
2297
2297
|
], amis: {
|
|
2298
2298
|
render: {
|
|
2299
|
-
type: config$
|
|
2299
|
+
type: config$e.amis.name,
|
|
2300
2300
|
usage: "renderer",
|
|
2301
2301
|
weight: 1,
|
|
2302
2302
|
framework: "react"
|
|
2303
2303
|
},
|
|
2304
2304
|
plugin_disabled: {
|
|
2305
|
-
rendererName: config$
|
|
2305
|
+
rendererName: config$e.amis.name,
|
|
2306
2306
|
$schema: '/schemas/UnkownSchema.json',
|
|
2307
|
-
name: config$
|
|
2308
|
-
description: config$
|
|
2309
|
-
tags: [config$
|
|
2307
|
+
name: config$e.title,
|
|
2308
|
+
description: config$e.title,
|
|
2309
|
+
tags: [config$e.group],
|
|
2310
2310
|
order: -9999,
|
|
2311
|
-
icon: config$
|
|
2311
|
+
icon: config$e.amis.icon,
|
|
2312
2312
|
scaffold: {
|
|
2313
|
-
type: config$
|
|
2314
|
-
label: config$
|
|
2313
|
+
type: config$e.amis.name,
|
|
2314
|
+
label: config$e.title,
|
|
2315
2315
|
columns: 1,
|
|
2316
2316
|
vertical: false,
|
|
2317
2317
|
showIcon: true
|
|
2318
2318
|
},
|
|
2319
2319
|
previewSchema: {
|
|
2320
|
-
type: config$
|
|
2320
|
+
type: config$e.amis.name,
|
|
2321
2321
|
},
|
|
2322
2322
|
panelTitle: "设置",
|
|
2323
2323
|
panelControls: [
|
|
@@ -2342,7 +2342,7 @@
|
|
|
2342
2342
|
* @LastEditTime: 2023-03-09 19:01:32
|
|
2343
2343
|
* @Description:
|
|
2344
2344
|
*/
|
|
2345
|
-
var config$
|
|
2345
|
+
var config$d = {
|
|
2346
2346
|
// componentType: 'amisSchema',
|
|
2347
2347
|
group: "华炎魔方-原子组件",
|
|
2348
2348
|
componentName: "SteedosIcon",
|
|
@@ -2366,39 +2366,39 @@
|
|
|
2366
2366
|
icon: "fa-fw fa fa-list-alt"
|
|
2367
2367
|
}
|
|
2368
2368
|
};
|
|
2369
|
-
var SteedosIcon = __assign(__assign({}, config$
|
|
2369
|
+
var SteedosIcon = __assign(__assign({}, config$d), { snippets: [
|
|
2370
2370
|
{
|
|
2371
|
-
title: config$
|
|
2371
|
+
title: config$d.title,
|
|
2372
2372
|
screenshot: "",
|
|
2373
2373
|
schema: {
|
|
2374
|
-
componentName: config$
|
|
2375
|
-
props: config$
|
|
2374
|
+
componentName: config$d.componentName,
|
|
2375
|
+
props: config$d.preview
|
|
2376
2376
|
}
|
|
2377
2377
|
}
|
|
2378
2378
|
], amis: {
|
|
2379
2379
|
render: {
|
|
2380
|
-
type: config$
|
|
2380
|
+
type: config$d.amis.name,
|
|
2381
2381
|
usage: "renderer",
|
|
2382
2382
|
weight: 1,
|
|
2383
2383
|
framework: "react"
|
|
2384
2384
|
},
|
|
2385
2385
|
plugin: {
|
|
2386
|
-
rendererName: config$
|
|
2386
|
+
rendererName: config$d.amis.name,
|
|
2387
2387
|
$schema: '/schemas/UnkownSchema.json',
|
|
2388
|
-
name: config$
|
|
2389
|
-
description: config$
|
|
2390
|
-
tags: [config$
|
|
2388
|
+
name: config$d.title,
|
|
2389
|
+
description: config$d.title,
|
|
2390
|
+
tags: [config$d.group],
|
|
2391
2391
|
order: -9999,
|
|
2392
|
-
icon: config$
|
|
2392
|
+
icon: config$d.amis.icon,
|
|
2393
2393
|
scaffold: {
|
|
2394
|
-
type: config$
|
|
2394
|
+
type: config$d.amis.name,
|
|
2395
2395
|
category: 'standard',
|
|
2396
2396
|
name: 'account',
|
|
2397
2397
|
colorVariant: 'default',
|
|
2398
2398
|
size: 'medium'
|
|
2399
2399
|
},
|
|
2400
2400
|
previewSchema: {
|
|
2401
|
-
type: config$
|
|
2401
|
+
type: config$d.amis.name,
|
|
2402
2402
|
},
|
|
2403
2403
|
panelTitle: "设置",
|
|
2404
2404
|
panelControls: [
|
|
@@ -2493,7 +2493,7 @@
|
|
|
2493
2493
|
* @LastEditTime: 2022-12-16 11:11:32
|
|
2494
2494
|
* @Description:
|
|
2495
2495
|
*/
|
|
2496
|
-
var config$
|
|
2496
|
+
var config$c = {
|
|
2497
2497
|
// componentType: 'amisSchema',
|
|
2498
2498
|
group: "华炎魔方",
|
|
2499
2499
|
componentName: "SteedosDropdown",
|
|
@@ -2517,32 +2517,32 @@
|
|
|
2517
2517
|
icon: "fa-fw fa fa-list-alt"
|
|
2518
2518
|
}
|
|
2519
2519
|
};
|
|
2520
|
-
var SteedosDropdown = __assign(__assign({}, config$
|
|
2520
|
+
var SteedosDropdown = __assign(__assign({}, config$c), { snippets: [
|
|
2521
2521
|
{
|
|
2522
|
-
title: config$
|
|
2522
|
+
title: config$c.title,
|
|
2523
2523
|
screenshot: "",
|
|
2524
2524
|
schema: {
|
|
2525
|
-
componentName: config$
|
|
2526
|
-
props: config$
|
|
2525
|
+
componentName: config$c.componentName,
|
|
2526
|
+
props: config$c.preview
|
|
2527
2527
|
}
|
|
2528
2528
|
}
|
|
2529
2529
|
], amis: {
|
|
2530
2530
|
render: {
|
|
2531
|
-
type: config$
|
|
2531
|
+
type: config$c.amis.name,
|
|
2532
2532
|
usage: "renderer",
|
|
2533
2533
|
weight: 1,
|
|
2534
2534
|
framework: "react"
|
|
2535
2535
|
},
|
|
2536
2536
|
plugin_disabled: {
|
|
2537
|
-
rendererName: config$
|
|
2537
|
+
rendererName: config$c.amis.name,
|
|
2538
2538
|
$schema: '/schemas/UnkownSchema.json',
|
|
2539
|
-
name: config$
|
|
2540
|
-
description: config$
|
|
2541
|
-
tags: [config$
|
|
2539
|
+
name: config$c.title,
|
|
2540
|
+
description: config$c.title,
|
|
2541
|
+
tags: [config$c.group],
|
|
2542
2542
|
order: -9999,
|
|
2543
|
-
icon: config$
|
|
2543
|
+
icon: config$c.amis.icon,
|
|
2544
2544
|
scaffold: {
|
|
2545
|
-
type: config$
|
|
2545
|
+
type: config$c.amis.name,
|
|
2546
2546
|
placement: 'bottomLeft',
|
|
2547
2547
|
trigger: ['click'],
|
|
2548
2548
|
body: [],
|
|
@@ -2559,7 +2559,7 @@
|
|
|
2559
2559
|
},
|
|
2560
2560
|
],
|
|
2561
2561
|
previewSchema: {
|
|
2562
|
-
type: config$
|
|
2562
|
+
type: config$c.amis.name,
|
|
2563
2563
|
},
|
|
2564
2564
|
panelTitle: "设置",
|
|
2565
2565
|
panelControls: [
|
|
@@ -2607,7 +2607,7 @@
|
|
|
2607
2607
|
* @LastEditTime: 2022-12-16 11:10:51
|
|
2608
2608
|
* @Description:
|
|
2609
2609
|
*/
|
|
2610
|
-
var config$
|
|
2610
|
+
var config$b = {
|
|
2611
2611
|
// componentType: 'amisSchema',
|
|
2612
2612
|
group: "华炎魔方",
|
|
2613
2613
|
componentName: "FromNow",
|
|
@@ -2631,18 +2631,18 @@
|
|
|
2631
2631
|
icon: "fa-fw fa fa-list-alt"
|
|
2632
2632
|
}
|
|
2633
2633
|
};
|
|
2634
|
-
var FromNow = __assign(__assign({}, config$
|
|
2634
|
+
var FromNow = __assign(__assign({}, config$b), { snippets: [
|
|
2635
2635
|
{
|
|
2636
|
-
title: config$
|
|
2636
|
+
title: config$b.title,
|
|
2637
2637
|
screenshot: "",
|
|
2638
2638
|
schema: {
|
|
2639
|
-
componentName: config$
|
|
2640
|
-
props: config$
|
|
2639
|
+
componentName: config$b.componentName,
|
|
2640
|
+
props: config$b.preview
|
|
2641
2641
|
}
|
|
2642
2642
|
}
|
|
2643
2643
|
], amis: {
|
|
2644
2644
|
render: {
|
|
2645
|
-
type: config$
|
|
2645
|
+
type: config$b.amis.name,
|
|
2646
2646
|
usage: "renderer",
|
|
2647
2647
|
weight: 1,
|
|
2648
2648
|
framework: "react"
|
|
@@ -2680,7 +2680,7 @@
|
|
|
2680
2680
|
* @LastEditTime: 2022-12-14 13:38:52
|
|
2681
2681
|
* @Description:
|
|
2682
2682
|
*/
|
|
2683
|
-
var config$
|
|
2683
|
+
var config$a = {
|
|
2684
2684
|
componentType: 'amisSchema',
|
|
2685
2685
|
group: "华炎魔方",
|
|
2686
2686
|
componentName: "AmisGlobalHeader",
|
|
@@ -2705,38 +2705,38 @@
|
|
|
2705
2705
|
icon: "fa-fw fa fa-list-alt"
|
|
2706
2706
|
}
|
|
2707
2707
|
};
|
|
2708
|
-
var AmisGlobalHeader = __assign(__assign({}, config$
|
|
2708
|
+
var AmisGlobalHeader = __assign(__assign({}, config$a), { snippets: [
|
|
2709
2709
|
{
|
|
2710
|
-
title: config$
|
|
2710
|
+
title: config$a.title,
|
|
2711
2711
|
screenshot: "",
|
|
2712
2712
|
schema: {
|
|
2713
|
-
componentName: config$
|
|
2714
|
-
props: config$
|
|
2713
|
+
componentName: config$a.componentName,
|
|
2714
|
+
props: config$a.preview
|
|
2715
2715
|
}
|
|
2716
2716
|
}
|
|
2717
2717
|
], amis: {
|
|
2718
2718
|
render: {
|
|
2719
|
-
type: config$
|
|
2719
|
+
type: config$a.amis.name,
|
|
2720
2720
|
usage: "renderer",
|
|
2721
2721
|
weight: 1,
|
|
2722
2722
|
framework: "react"
|
|
2723
2723
|
},
|
|
2724
2724
|
plugin_disabled: {
|
|
2725
|
-
rendererName: config$
|
|
2725
|
+
rendererName: config$a.amis.name,
|
|
2726
2726
|
$schema: '/schemas/UnkownSchema.json',
|
|
2727
|
-
name: config$
|
|
2728
|
-
description: config$
|
|
2729
|
-
tags: [config$
|
|
2727
|
+
name: config$a.title,
|
|
2728
|
+
description: config$a.title,
|
|
2729
|
+
tags: [config$a.group],
|
|
2730
2730
|
order: -9999,
|
|
2731
|
-
icon: config$
|
|
2731
|
+
icon: config$a.amis.icon,
|
|
2732
2732
|
scaffold: {
|
|
2733
|
-
type: config$
|
|
2734
|
-
label: config$
|
|
2733
|
+
type: config$a.amis.name,
|
|
2734
|
+
label: config$a.title,
|
|
2735
2735
|
columns: 1,
|
|
2736
2736
|
vertical: false
|
|
2737
2737
|
},
|
|
2738
2738
|
previewSchema: {
|
|
2739
|
-
type: config$
|
|
2739
|
+
type: config$a.amis.name,
|
|
2740
2740
|
},
|
|
2741
2741
|
panelTitle: "设置",
|
|
2742
2742
|
panelControls: []
|
|
@@ -2750,7 +2750,7 @@
|
|
|
2750
2750
|
* @LastEditTime: 2022-12-16 10:15:58
|
|
2751
2751
|
* @Description:
|
|
2752
2752
|
*/
|
|
2753
|
-
var config$
|
|
2753
|
+
var config$9 = {
|
|
2754
2754
|
group: "华炎魔方",
|
|
2755
2755
|
componentName: "SteedosLoading",
|
|
2756
2756
|
title: "加载中",
|
|
@@ -2773,18 +2773,18 @@
|
|
|
2773
2773
|
icon: "fa-fw fa fa-list-alt"
|
|
2774
2774
|
}
|
|
2775
2775
|
};
|
|
2776
|
-
var SteedosLoading = __assign(__assign({}, config$
|
|
2776
|
+
var SteedosLoading = __assign(__assign({}, config$9), { snippets: [
|
|
2777
2777
|
{
|
|
2778
|
-
title: config$
|
|
2778
|
+
title: config$9.title,
|
|
2779
2779
|
screenshot: "",
|
|
2780
2780
|
schema: {
|
|
2781
|
-
componentName: config$
|
|
2782
|
-
props: config$
|
|
2781
|
+
componentName: config$9.componentName,
|
|
2782
|
+
props: config$9.preview
|
|
2783
2783
|
}
|
|
2784
2784
|
}
|
|
2785
2785
|
], amis: {
|
|
2786
2786
|
render: {
|
|
2787
|
-
type: config$
|
|
2787
|
+
type: config$9.amis.name,
|
|
2788
2788
|
usage: "renderer",
|
|
2789
2789
|
weight: 1,
|
|
2790
2790
|
framework: "react"
|
|
@@ -2798,7 +2798,7 @@
|
|
|
2798
2798
|
* @LastEditTime: 2023-04-07 18:31:37
|
|
2799
2799
|
* @Description:
|
|
2800
2800
|
*/
|
|
2801
|
-
var config$
|
|
2801
|
+
var config$8 = {
|
|
2802
2802
|
// componentType: 'amisSchema',
|
|
2803
2803
|
group: "华炎魔方-原子组件",
|
|
2804
2804
|
componentName: "SteedosBadge",
|
|
@@ -2822,32 +2822,32 @@
|
|
|
2822
2822
|
icon: "fa-fw fa fa-list-alt"
|
|
2823
2823
|
}
|
|
2824
2824
|
};
|
|
2825
|
-
var SteedosBadge = __assign(__assign({}, config$
|
|
2825
|
+
var SteedosBadge = __assign(__assign({}, config$8), { snippets: [
|
|
2826
2826
|
{
|
|
2827
|
-
title: config$
|
|
2827
|
+
title: config$8.title,
|
|
2828
2828
|
screenshot: "",
|
|
2829
2829
|
schema: {
|
|
2830
|
-
componentName: config$
|
|
2831
|
-
props: config$
|
|
2830
|
+
componentName: config$8.componentName,
|
|
2831
|
+
props: config$8.preview
|
|
2832
2832
|
}
|
|
2833
2833
|
}
|
|
2834
2834
|
], amis: {
|
|
2835
2835
|
render: {
|
|
2836
|
-
type: config$
|
|
2836
|
+
type: config$8.amis.name,
|
|
2837
2837
|
usage: "renderer",
|
|
2838
2838
|
weight: 1,
|
|
2839
2839
|
framework: "react"
|
|
2840
2840
|
},
|
|
2841
2841
|
plugin: {
|
|
2842
|
-
rendererName: config$
|
|
2842
|
+
rendererName: config$8.amis.name,
|
|
2843
2843
|
$schema: '/schemas/UnkownSchema.json',
|
|
2844
|
-
name: config$
|
|
2845
|
-
description: config$
|
|
2846
|
-
tags: [config$
|
|
2844
|
+
name: config$8.title,
|
|
2845
|
+
description: config$8.title,
|
|
2846
|
+
tags: [config$8.group],
|
|
2847
2847
|
order: -9999,
|
|
2848
|
-
icon: config$
|
|
2848
|
+
icon: config$8.amis.icon,
|
|
2849
2849
|
scaffold: {
|
|
2850
|
-
type: config$
|
|
2850
|
+
type: config$8.amis.name,
|
|
2851
2851
|
count: 100,
|
|
2852
2852
|
body: [], // 容器类字段
|
|
2853
2853
|
},
|
|
@@ -2858,7 +2858,7 @@
|
|
|
2858
2858
|
}
|
|
2859
2859
|
],
|
|
2860
2860
|
previewSchema: {
|
|
2861
|
-
type: config$
|
|
2861
|
+
type: config$8.amis.name,
|
|
2862
2862
|
},
|
|
2863
2863
|
panelTitle: "设置",
|
|
2864
2864
|
panelControls: [
|
|
@@ -2934,7 +2934,7 @@
|
|
|
2934
2934
|
* @LastEditTime: 2023-03-09 19:00:03
|
|
2935
2935
|
* @Description:
|
|
2936
2936
|
*/
|
|
2937
|
-
var config$
|
|
2937
|
+
var config$7 = {
|
|
2938
2938
|
// componentType: 'amisSchema',
|
|
2939
2939
|
group: "华炎魔方-原子组件",
|
|
2940
2940
|
componentName: "SteedosBadgeRibbon",
|
|
@@ -2958,32 +2958,32 @@
|
|
|
2958
2958
|
icon: "fa-fw fa fa-list-alt"
|
|
2959
2959
|
}
|
|
2960
2960
|
};
|
|
2961
|
-
var SteedosBadgeRibbon = __assign(__assign({}, config$
|
|
2961
|
+
var SteedosBadgeRibbon = __assign(__assign({}, config$7), { snippets: [
|
|
2962
2962
|
{
|
|
2963
|
-
title: config$
|
|
2963
|
+
title: config$7.title,
|
|
2964
2964
|
screenshot: "",
|
|
2965
2965
|
schema: {
|
|
2966
|
-
componentName: config$
|
|
2967
|
-
props: config$
|
|
2966
|
+
componentName: config$7.componentName,
|
|
2967
|
+
props: config$7.preview
|
|
2968
2968
|
}
|
|
2969
2969
|
}
|
|
2970
2970
|
], amis: {
|
|
2971
2971
|
render: {
|
|
2972
|
-
type: config$
|
|
2972
|
+
type: config$7.amis.name,
|
|
2973
2973
|
usage: "renderer",
|
|
2974
2974
|
weight: 1,
|
|
2975
2975
|
framework: "react"
|
|
2976
2976
|
},
|
|
2977
2977
|
plugin: {
|
|
2978
|
-
rendererName: config$
|
|
2978
|
+
rendererName: config$7.amis.name,
|
|
2979
2979
|
$schema: '/schemas/UnkownSchema.json',
|
|
2980
|
-
name: config$
|
|
2981
|
-
description: config$
|
|
2982
|
-
tags: [config$
|
|
2980
|
+
name: config$7.title,
|
|
2981
|
+
description: config$7.title,
|
|
2982
|
+
tags: [config$7.group],
|
|
2983
2983
|
order: -9999,
|
|
2984
|
-
icon: config$
|
|
2984
|
+
icon: config$7.amis.icon,
|
|
2985
2985
|
scaffold: {
|
|
2986
|
-
type: config$
|
|
2986
|
+
type: config$7.amis.name,
|
|
2987
2987
|
body: [], // 容器类字段
|
|
2988
2988
|
},
|
|
2989
2989
|
regions: [
|
|
@@ -2993,7 +2993,7 @@
|
|
|
2993
2993
|
}
|
|
2994
2994
|
],
|
|
2995
2995
|
previewSchema: {
|
|
2996
|
-
type: config$
|
|
2996
|
+
type: config$7.amis.name,
|
|
2997
2997
|
},
|
|
2998
2998
|
panelTitle: "设置",
|
|
2999
2999
|
panelControls: [
|
|
@@ -3027,7 +3027,7 @@
|
|
|
3027
3027
|
* @LastEditTime: 2023-03-06 18:29:59
|
|
3028
3028
|
* @Description:
|
|
3029
3029
|
*/
|
|
3030
|
-
var config$
|
|
3030
|
+
var config$6 = {
|
|
3031
3031
|
componentType: 'amisSchema',
|
|
3032
3032
|
group: "华炎魔方-原子组件",
|
|
3033
3033
|
componentName: "AmisSteedosField",
|
|
@@ -3051,39 +3051,39 @@
|
|
|
3051
3051
|
icon: "fa-fw fa fa-list-alt"
|
|
3052
3052
|
}
|
|
3053
3053
|
};
|
|
3054
|
-
var AmisSteedosField = __assign(__assign({}, config$
|
|
3054
|
+
var AmisSteedosField = __assign(__assign({}, config$6), { snippets: [
|
|
3055
3055
|
{
|
|
3056
|
-
title: config$
|
|
3056
|
+
title: config$6.title,
|
|
3057
3057
|
screenshot: "",
|
|
3058
3058
|
schema: {
|
|
3059
|
-
componentName: config$
|
|
3060
|
-
props: config$
|
|
3059
|
+
componentName: config$6.componentName,
|
|
3060
|
+
props: config$6.preview
|
|
3061
3061
|
}
|
|
3062
3062
|
}
|
|
3063
3063
|
], amis: {
|
|
3064
3064
|
render: {
|
|
3065
|
-
type: config$
|
|
3065
|
+
type: config$6.amis.name,
|
|
3066
3066
|
usage: "renderer",
|
|
3067
3067
|
weight: 1,
|
|
3068
3068
|
framework: "react"
|
|
3069
3069
|
},
|
|
3070
3070
|
plugin: {
|
|
3071
|
-
rendererName: config$
|
|
3071
|
+
rendererName: config$6.amis.name,
|
|
3072
3072
|
$schema: '/schemas/UnkownSchema.json',
|
|
3073
|
-
name: config$
|
|
3074
|
-
description: config$
|
|
3075
|
-
tags: [config$
|
|
3073
|
+
name: config$6.title,
|
|
3074
|
+
description: config$6.title,
|
|
3075
|
+
tags: [config$6.group],
|
|
3076
3076
|
order: -9999,
|
|
3077
|
-
icon: config$
|
|
3077
|
+
icon: config$6.amis.icon,
|
|
3078
3078
|
scaffold: {
|
|
3079
|
-
type: config$
|
|
3079
|
+
type: config$6.amis.name,
|
|
3080
3080
|
config: {
|
|
3081
3081
|
"type": "text",
|
|
3082
3082
|
"label": "字段1"
|
|
3083
3083
|
}
|
|
3084
3084
|
},
|
|
3085
3085
|
previewSchema: {
|
|
3086
|
-
type: config$
|
|
3086
|
+
type: config$6.amis.name,
|
|
3087
3087
|
config: {
|
|
3088
3088
|
"type": "text",
|
|
3089
3089
|
"label": "字段1"
|
|
@@ -3116,7 +3116,7 @@
|
|
|
3116
3116
|
* @LastEditTime: 2023-01-14 16:51:23
|
|
3117
3117
|
* @Description:
|
|
3118
3118
|
*/
|
|
3119
|
-
var config$
|
|
3119
|
+
var config$5 = {
|
|
3120
3120
|
componentType: 'amisSchema',
|
|
3121
3121
|
group: "华炎魔方",
|
|
3122
3122
|
componentName: "AmisSelectFlow",
|
|
@@ -3140,18 +3140,18 @@
|
|
|
3140
3140
|
icon: "fa-fw fa fa-list-alt"
|
|
3141
3141
|
}
|
|
3142
3142
|
};
|
|
3143
|
-
var AmisSelectFlow = __assign(__assign({}, config$
|
|
3143
|
+
var AmisSelectFlow = __assign(__assign({}, config$5), { snippets: [
|
|
3144
3144
|
{
|
|
3145
|
-
title: config$
|
|
3145
|
+
title: config$5.title,
|
|
3146
3146
|
screenshot: "",
|
|
3147
3147
|
schema: {
|
|
3148
|
-
componentName: config$
|
|
3149
|
-
props: config$
|
|
3148
|
+
componentName: config$5.componentName,
|
|
3149
|
+
props: config$5.preview
|
|
3150
3150
|
}
|
|
3151
3151
|
}
|
|
3152
3152
|
], amis: {
|
|
3153
3153
|
render: {
|
|
3154
|
-
type: config$
|
|
3154
|
+
type: config$5.amis.name,
|
|
3155
3155
|
usage: "renderer",
|
|
3156
3156
|
weight: 1,
|
|
3157
3157
|
framework: "react"
|
|
@@ -3189,7 +3189,7 @@
|
|
|
3189
3189
|
* @LastEditTime: 2023-02-09 16:48:59
|
|
3190
3190
|
* @Description:
|
|
3191
3191
|
*/
|
|
3192
|
-
var config$
|
|
3192
|
+
var config$4 = {
|
|
3193
3193
|
componentType: 'amisSchema',
|
|
3194
3194
|
group: "华炎魔方",
|
|
3195
3195
|
componentName: "AmisInstanceDetail",
|
|
@@ -3213,18 +3213,18 @@
|
|
|
3213
3213
|
icon: "fa-fw fa fa-list-alt"
|
|
3214
3214
|
}
|
|
3215
3215
|
};
|
|
3216
|
-
var AmisInstanceDetail = __assign(__assign({}, config$
|
|
3216
|
+
var AmisInstanceDetail = __assign(__assign({}, config$4), { snippets: [
|
|
3217
3217
|
{
|
|
3218
|
-
title: config$
|
|
3218
|
+
title: config$4.title,
|
|
3219
3219
|
screenshot: "",
|
|
3220
3220
|
schema: {
|
|
3221
|
-
componentName: config$
|
|
3222
|
-
props: config$
|
|
3221
|
+
componentName: config$4.componentName,
|
|
3222
|
+
props: config$4.preview
|
|
3223
3223
|
}
|
|
3224
3224
|
}
|
|
3225
3225
|
], amis: {
|
|
3226
3226
|
render: {
|
|
3227
|
-
type: config$
|
|
3227
|
+
type: config$4.amis.name,
|
|
3228
3228
|
usage: "renderer",
|
|
3229
3229
|
weight: 1,
|
|
3230
3230
|
framework: "react"
|
|
@@ -3260,7 +3260,7 @@
|
|
|
3260
3260
|
* @LastEditTime: 2022-12-08 10:37:45
|
|
3261
3261
|
* @Description:
|
|
3262
3262
|
*/
|
|
3263
|
-
var config$
|
|
3263
|
+
var config$3 = {
|
|
3264
3264
|
componentType: 'amisSchema',
|
|
3265
3265
|
group: "华炎魔方",
|
|
3266
3266
|
componentName: "PageListView",
|
|
@@ -3284,18 +3284,18 @@
|
|
|
3284
3284
|
icon: "fa-fw fa fa-list-alt"
|
|
3285
3285
|
}
|
|
3286
3286
|
};
|
|
3287
|
-
var PageListViewMeta = __assign(__assign({}, config$
|
|
3287
|
+
var PageListViewMeta = __assign(__assign({}, config$3), { snippets: [
|
|
3288
3288
|
{
|
|
3289
|
-
title: config$
|
|
3289
|
+
title: config$3.title,
|
|
3290
3290
|
screenshot: "",
|
|
3291
3291
|
schema: {
|
|
3292
|
-
componentName: config$
|
|
3293
|
-
props: config$
|
|
3292
|
+
componentName: config$3.componentName,
|
|
3293
|
+
props: config$3.preview
|
|
3294
3294
|
}
|
|
3295
3295
|
}
|
|
3296
3296
|
], amis: {
|
|
3297
3297
|
render: {
|
|
3298
|
-
type: config$
|
|
3298
|
+
type: config$3.amis.name,
|
|
3299
3299
|
usage: "renderer",
|
|
3300
3300
|
weight: 1,
|
|
3301
3301
|
framework: "react"
|
|
@@ -3309,7 +3309,7 @@
|
|
|
3309
3309
|
* @LastEditTime: 2022-12-08 10:37:45
|
|
3310
3310
|
* @Description:
|
|
3311
3311
|
*/
|
|
3312
|
-
var config$
|
|
3312
|
+
var config$2 = {
|
|
3313
3313
|
componentType: 'amisSchema',
|
|
3314
3314
|
group: "华炎魔方",
|
|
3315
3315
|
componentName: "PageRecordDetail",
|
|
@@ -3333,18 +3333,18 @@
|
|
|
3333
3333
|
icon: "fa-fw fa fa-list-alt"
|
|
3334
3334
|
}
|
|
3335
3335
|
};
|
|
3336
|
-
var PageRecordDetailMeta = __assign(__assign({}, config$
|
|
3336
|
+
var PageRecordDetailMeta = __assign(__assign({}, config$2), { snippets: [
|
|
3337
3337
|
{
|
|
3338
|
-
title: config$
|
|
3338
|
+
title: config$2.title,
|
|
3339
3339
|
screenshot: "",
|
|
3340
3340
|
schema: {
|
|
3341
|
-
componentName: config$
|
|
3342
|
-
props: config$
|
|
3341
|
+
componentName: config$2.componentName,
|
|
3342
|
+
props: config$2.preview
|
|
3343
3343
|
}
|
|
3344
3344
|
}
|
|
3345
3345
|
], amis: {
|
|
3346
3346
|
render: {
|
|
3347
|
-
type: config$
|
|
3347
|
+
type: config$2.amis.name,
|
|
3348
3348
|
usage: "renderer",
|
|
3349
3349
|
weight: 1,
|
|
3350
3350
|
framework: "react"
|
|
@@ -3358,7 +3358,7 @@
|
|
|
3358
3358
|
* @LastEditTime: 2023-04-12 14:35:40
|
|
3359
3359
|
* @Description:
|
|
3360
3360
|
*/
|
|
3361
|
-
var config = {
|
|
3361
|
+
var config$1 = {
|
|
3362
3362
|
// componentType: 'amisSchema',
|
|
3363
3363
|
group: "华炎魔方-原子组件",
|
|
3364
3364
|
componentName: "SteedosSkeleton",
|
|
@@ -3382,32 +3382,32 @@
|
|
|
3382
3382
|
icon: "fa-fw fa fa-list-alt"
|
|
3383
3383
|
}
|
|
3384
3384
|
};
|
|
3385
|
-
var SteedosSkeleton = __assign(__assign({}, config), { snippets: [
|
|
3385
|
+
var SteedosSkeleton = __assign(__assign({}, config$1), { snippets: [
|
|
3386
3386
|
{
|
|
3387
|
-
title: config.title,
|
|
3387
|
+
title: config$1.title,
|
|
3388
3388
|
screenshot: "",
|
|
3389
3389
|
schema: {
|
|
3390
|
-
componentName: config.componentName,
|
|
3391
|
-
props: config.preview
|
|
3390
|
+
componentName: config$1.componentName,
|
|
3391
|
+
props: config$1.preview
|
|
3392
3392
|
}
|
|
3393
3393
|
}
|
|
3394
3394
|
], amis: {
|
|
3395
3395
|
render: {
|
|
3396
|
-
type: config.amis.name,
|
|
3396
|
+
type: config$1.amis.name,
|
|
3397
3397
|
usage: "renderer",
|
|
3398
3398
|
weight: 1,
|
|
3399
3399
|
framework: "react"
|
|
3400
3400
|
},
|
|
3401
3401
|
plugin_disable: {
|
|
3402
|
-
rendererName: config.amis.name,
|
|
3402
|
+
rendererName: config$1.amis.name,
|
|
3403
3403
|
$schema: '/schemas/UnkownSchema.json',
|
|
3404
|
-
name: config.title,
|
|
3405
|
-
description: config.title,
|
|
3406
|
-
tags: [config.group],
|
|
3404
|
+
name: config$1.title,
|
|
3405
|
+
description: config$1.title,
|
|
3406
|
+
tags: [config$1.group],
|
|
3407
3407
|
order: -9999,
|
|
3408
|
-
icon: config.amis.icon,
|
|
3408
|
+
icon: config$1.amis.icon,
|
|
3409
3409
|
scaffold: {
|
|
3410
|
-
type: config.amis.name,
|
|
3410
|
+
type: config$1.amis.name,
|
|
3411
3411
|
count: 100,
|
|
3412
3412
|
body: [], // 容器类字段
|
|
3413
3413
|
},
|
|
@@ -3418,7 +3418,7 @@
|
|
|
3418
3418
|
}
|
|
3419
3419
|
],
|
|
3420
3420
|
previewSchema: {
|
|
3421
|
-
type: config.amis.name,
|
|
3421
|
+
type: config$1.amis.name,
|
|
3422
3422
|
config: {
|
|
3423
3423
|
"active": true,
|
|
3424
3424
|
"loading": true
|
|
@@ -3447,8 +3447,57 @@
|
|
|
3447
3447
|
/*
|
|
3448
3448
|
* @Author: baozhoutao@steedos.com
|
|
3449
3449
|
* @Date: 2022-08-31 16:32:35
|
|
3450
|
-
* @LastEditors:
|
|
3451
|
-
* @LastEditTime: 2023-04-12
|
|
3450
|
+
* @LastEditors: baozhoutao@steedos.com
|
|
3451
|
+
* @LastEditTime: 2023-04-12 15:06:00
|
|
3452
|
+
* @Description:
|
|
3453
|
+
*/
|
|
3454
|
+
var config = {
|
|
3455
|
+
componentType: 'amisSchema',
|
|
3456
|
+
group: "华炎魔方",
|
|
3457
|
+
componentName: "PageObject",
|
|
3458
|
+
title: "对象页面",
|
|
3459
|
+
docUrl: "",
|
|
3460
|
+
screenshot: "",
|
|
3461
|
+
npm: {
|
|
3462
|
+
package: "@steedos-widgets/amis-object",
|
|
3463
|
+
version: "{{version}}",
|
|
3464
|
+
exportName: "PageObject",
|
|
3465
|
+
main: "",
|
|
3466
|
+
destructuring: true,
|
|
3467
|
+
subName: ""
|
|
3468
|
+
},
|
|
3469
|
+
preview: {},
|
|
3470
|
+
targets: ["steedos__RecordPage", "steedos__AppPage", "steedos__HomePage"],
|
|
3471
|
+
engines: ["amis"],
|
|
3472
|
+
// settings for amis.
|
|
3473
|
+
amis: {
|
|
3474
|
+
name: 'steedos-page-object-control',
|
|
3475
|
+
icon: "fa-fw fa fa-list-alt"
|
|
3476
|
+
}
|
|
3477
|
+
};
|
|
3478
|
+
var PageObject = __assign(__assign({}, config), { snippets: [
|
|
3479
|
+
{
|
|
3480
|
+
title: config.title,
|
|
3481
|
+
screenshot: "",
|
|
3482
|
+
schema: {
|
|
3483
|
+
componentName: config.componentName,
|
|
3484
|
+
props: config.preview
|
|
3485
|
+
}
|
|
3486
|
+
}
|
|
3487
|
+
], amis: {
|
|
3488
|
+
render: {
|
|
3489
|
+
type: config.amis.name,
|
|
3490
|
+
usage: "renderer",
|
|
3491
|
+
weight: 1,
|
|
3492
|
+
framework: "react"
|
|
3493
|
+
},
|
|
3494
|
+
} });
|
|
3495
|
+
|
|
3496
|
+
/*
|
|
3497
|
+
* @Author: baozhoutao@steedos.com
|
|
3498
|
+
* @Date: 2022-08-31 16:32:35
|
|
3499
|
+
* @LastEditors: baozhoutao@steedos.com
|
|
3500
|
+
* @LastEditTime: 2023-04-13 18:46:27
|
|
3452
3501
|
* @Description:
|
|
3453
3502
|
*/
|
|
3454
3503
|
var components = [
|
|
@@ -3481,7 +3530,8 @@
|
|
|
3481
3530
|
SteedosLoading,
|
|
3482
3531
|
PageListViewMeta,
|
|
3483
3532
|
PageRecordDetailMeta,
|
|
3484
|
-
SteedosSkeleton
|
|
3533
|
+
SteedosSkeleton,
|
|
3534
|
+
PageObject
|
|
3485
3535
|
];
|
|
3486
3536
|
var componentList = [
|
|
3487
3537
|
{
|