@pie-element/ebsr 9.9.1-next.5 → 9.10.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/configure/CHANGELOG.md +11 -0
- package/configure/package.json +3 -3
- package/controller/CHANGELOG.md +11 -0
- package/controller/package.json +2 -2
- package/docs/config-schema.json +698 -0
- package/docs/config-schema.json.md +545 -0
- package/docs/pie-schema.json +328 -0
- package/docs/pie-schema.json.md +255 -0
- package/module/configure.js +1 -1
- package/module/element.js +1 -1
- package/module/index.html +1 -1
- package/module/manifest.json +2 -2
- package/module/print.html +1 -1
- package/module/print.js +1 -1
- package/package.json +3 -3
package/docs/pie-schema.json
CHANGED
|
@@ -434,6 +434,43 @@
|
|
|
434
434
|
"title": "disabled"
|
|
435
435
|
}
|
|
436
436
|
}
|
|
437
|
+
},
|
|
438
|
+
"customPlugins": {
|
|
439
|
+
"description": "An array of objects that determine custom plugins.\nA custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).\nExample can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.",
|
|
440
|
+
"type": "array",
|
|
441
|
+
"items": {
|
|
442
|
+
"title": "CustomPlugin",
|
|
443
|
+
"type": "object",
|
|
444
|
+
"properties": {
|
|
445
|
+
"event": {
|
|
446
|
+
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
447
|
+
"type": "string",
|
|
448
|
+
"title": "event"
|
|
449
|
+
},
|
|
450
|
+
"iconAlt": {
|
|
451
|
+
"description": "The alt for the custom button icon",
|
|
452
|
+
"type": "string",
|
|
453
|
+
"title": "iconAlt"
|
|
454
|
+
},
|
|
455
|
+
"iconType": {
|
|
456
|
+
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
457
|
+
"type": "string",
|
|
458
|
+
"title": "iconType"
|
|
459
|
+
},
|
|
460
|
+
"icon": {
|
|
461
|
+
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
462
|
+
"type": "string",
|
|
463
|
+
"title": "icon"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"required": [
|
|
467
|
+
"event",
|
|
468
|
+
"icon",
|
|
469
|
+
"iconAlt",
|
|
470
|
+
"iconType"
|
|
471
|
+
]
|
|
472
|
+
},
|
|
473
|
+
"title": "customPlugins"
|
|
437
474
|
}
|
|
438
475
|
}
|
|
439
476
|
},
|
|
@@ -526,6 +563,43 @@
|
|
|
526
563
|
"title": "disabled"
|
|
527
564
|
}
|
|
528
565
|
}
|
|
566
|
+
},
|
|
567
|
+
"customPlugins": {
|
|
568
|
+
"description": "An array of objects that determine custom plugins.\nA custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).\nExample can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.",
|
|
569
|
+
"type": "array",
|
|
570
|
+
"items": {
|
|
571
|
+
"title": "CustomPlugin",
|
|
572
|
+
"type": "object",
|
|
573
|
+
"properties": {
|
|
574
|
+
"event": {
|
|
575
|
+
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
576
|
+
"type": "string",
|
|
577
|
+
"title": "event"
|
|
578
|
+
},
|
|
579
|
+
"iconAlt": {
|
|
580
|
+
"description": "The alt for the custom button icon",
|
|
581
|
+
"type": "string",
|
|
582
|
+
"title": "iconAlt"
|
|
583
|
+
},
|
|
584
|
+
"iconType": {
|
|
585
|
+
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
586
|
+
"type": "string",
|
|
587
|
+
"title": "iconType"
|
|
588
|
+
},
|
|
589
|
+
"icon": {
|
|
590
|
+
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
591
|
+
"type": "string",
|
|
592
|
+
"title": "icon"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
"required": [
|
|
596
|
+
"event",
|
|
597
|
+
"icon",
|
|
598
|
+
"iconAlt",
|
|
599
|
+
"iconType"
|
|
600
|
+
]
|
|
601
|
+
},
|
|
602
|
+
"title": "customPlugins"
|
|
529
603
|
}
|
|
530
604
|
}
|
|
531
605
|
},
|
|
@@ -613,6 +687,43 @@
|
|
|
613
687
|
"title": "disabled"
|
|
614
688
|
}
|
|
615
689
|
}
|
|
690
|
+
},
|
|
691
|
+
"customPlugins": {
|
|
692
|
+
"description": "An array of objects that determine custom plugins.\nA custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).\nExample can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.",
|
|
693
|
+
"type": "array",
|
|
694
|
+
"items": {
|
|
695
|
+
"title": "CustomPlugin",
|
|
696
|
+
"type": "object",
|
|
697
|
+
"properties": {
|
|
698
|
+
"event": {
|
|
699
|
+
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
700
|
+
"type": "string",
|
|
701
|
+
"title": "event"
|
|
702
|
+
},
|
|
703
|
+
"iconAlt": {
|
|
704
|
+
"description": "The alt for the custom button icon",
|
|
705
|
+
"type": "string",
|
|
706
|
+
"title": "iconAlt"
|
|
707
|
+
},
|
|
708
|
+
"iconType": {
|
|
709
|
+
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
710
|
+
"type": "string",
|
|
711
|
+
"title": "iconType"
|
|
712
|
+
},
|
|
713
|
+
"icon": {
|
|
714
|
+
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
715
|
+
"type": "string",
|
|
716
|
+
"title": "icon"
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
"required": [
|
|
720
|
+
"event",
|
|
721
|
+
"icon",
|
|
722
|
+
"iconAlt",
|
|
723
|
+
"iconType"
|
|
724
|
+
]
|
|
725
|
+
},
|
|
726
|
+
"title": "customPlugins"
|
|
616
727
|
}
|
|
617
728
|
}
|
|
618
729
|
},
|
|
@@ -790,6 +901,43 @@
|
|
|
790
901
|
"title": "disabled"
|
|
791
902
|
}
|
|
792
903
|
}
|
|
904
|
+
},
|
|
905
|
+
"customPlugins": {
|
|
906
|
+
"description": "An array of objects that determine custom plugins.\nA custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).\nExample can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.",
|
|
907
|
+
"type": "array",
|
|
908
|
+
"items": {
|
|
909
|
+
"title": "CustomPlugin",
|
|
910
|
+
"type": "object",
|
|
911
|
+
"properties": {
|
|
912
|
+
"event": {
|
|
913
|
+
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
914
|
+
"type": "string",
|
|
915
|
+
"title": "event"
|
|
916
|
+
},
|
|
917
|
+
"iconAlt": {
|
|
918
|
+
"description": "The alt for the custom button icon",
|
|
919
|
+
"type": "string",
|
|
920
|
+
"title": "iconAlt"
|
|
921
|
+
},
|
|
922
|
+
"iconType": {
|
|
923
|
+
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
924
|
+
"type": "string",
|
|
925
|
+
"title": "iconType"
|
|
926
|
+
},
|
|
927
|
+
"icon": {
|
|
928
|
+
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
929
|
+
"type": "string",
|
|
930
|
+
"title": "icon"
|
|
931
|
+
}
|
|
932
|
+
},
|
|
933
|
+
"required": [
|
|
934
|
+
"event",
|
|
935
|
+
"icon",
|
|
936
|
+
"iconAlt",
|
|
937
|
+
"iconType"
|
|
938
|
+
]
|
|
939
|
+
},
|
|
940
|
+
"title": "customPlugins"
|
|
793
941
|
}
|
|
794
942
|
}
|
|
795
943
|
},
|
|
@@ -844,6 +992,43 @@
|
|
|
844
992
|
"title": "disabled"
|
|
845
993
|
}
|
|
846
994
|
}
|
|
995
|
+
},
|
|
996
|
+
"customPlugins": {
|
|
997
|
+
"description": "An array of objects that determine custom plugins.\nA custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).\nExample can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.",
|
|
998
|
+
"type": "array",
|
|
999
|
+
"items": {
|
|
1000
|
+
"title": "CustomPlugin",
|
|
1001
|
+
"type": "object",
|
|
1002
|
+
"properties": {
|
|
1003
|
+
"event": {
|
|
1004
|
+
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
1005
|
+
"type": "string",
|
|
1006
|
+
"title": "event"
|
|
1007
|
+
},
|
|
1008
|
+
"iconAlt": {
|
|
1009
|
+
"description": "The alt for the custom button icon",
|
|
1010
|
+
"type": "string",
|
|
1011
|
+
"title": "iconAlt"
|
|
1012
|
+
},
|
|
1013
|
+
"iconType": {
|
|
1014
|
+
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
1015
|
+
"type": "string",
|
|
1016
|
+
"title": "iconType"
|
|
1017
|
+
},
|
|
1018
|
+
"icon": {
|
|
1019
|
+
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
1020
|
+
"type": "string",
|
|
1021
|
+
"title": "icon"
|
|
1022
|
+
}
|
|
1023
|
+
},
|
|
1024
|
+
"required": [
|
|
1025
|
+
"event",
|
|
1026
|
+
"icon",
|
|
1027
|
+
"iconAlt",
|
|
1028
|
+
"iconType"
|
|
1029
|
+
]
|
|
1030
|
+
},
|
|
1031
|
+
"title": "customPlugins"
|
|
847
1032
|
}
|
|
848
1033
|
}
|
|
849
1034
|
},
|
|
@@ -928,6 +1113,43 @@
|
|
|
928
1113
|
"title": "disabled"
|
|
929
1114
|
}
|
|
930
1115
|
}
|
|
1116
|
+
},
|
|
1117
|
+
"customPlugins": {
|
|
1118
|
+
"description": "An array of objects that determine custom plugins.\nA custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).\nExample can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.",
|
|
1119
|
+
"type": "array",
|
|
1120
|
+
"items": {
|
|
1121
|
+
"title": "CustomPlugin",
|
|
1122
|
+
"type": "object",
|
|
1123
|
+
"properties": {
|
|
1124
|
+
"event": {
|
|
1125
|
+
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
1126
|
+
"type": "string",
|
|
1127
|
+
"title": "event"
|
|
1128
|
+
},
|
|
1129
|
+
"iconAlt": {
|
|
1130
|
+
"description": "The alt for the custom button icon",
|
|
1131
|
+
"type": "string",
|
|
1132
|
+
"title": "iconAlt"
|
|
1133
|
+
},
|
|
1134
|
+
"iconType": {
|
|
1135
|
+
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
1136
|
+
"type": "string",
|
|
1137
|
+
"title": "iconType"
|
|
1138
|
+
},
|
|
1139
|
+
"icon": {
|
|
1140
|
+
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
1141
|
+
"type": "string",
|
|
1142
|
+
"title": "icon"
|
|
1143
|
+
}
|
|
1144
|
+
},
|
|
1145
|
+
"required": [
|
|
1146
|
+
"event",
|
|
1147
|
+
"icon",
|
|
1148
|
+
"iconAlt",
|
|
1149
|
+
"iconType"
|
|
1150
|
+
]
|
|
1151
|
+
},
|
|
1152
|
+
"title": "customPlugins"
|
|
931
1153
|
}
|
|
932
1154
|
}
|
|
933
1155
|
},
|
|
@@ -995,6 +1217,43 @@
|
|
|
995
1217
|
"title": "disabled"
|
|
996
1218
|
}
|
|
997
1219
|
}
|
|
1220
|
+
},
|
|
1221
|
+
"customPlugins": {
|
|
1222
|
+
"description": "An array of objects that determine custom plugins.\nA custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).\nExample can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.",
|
|
1223
|
+
"type": "array",
|
|
1224
|
+
"items": {
|
|
1225
|
+
"title": "CustomPlugin",
|
|
1226
|
+
"type": "object",
|
|
1227
|
+
"properties": {
|
|
1228
|
+
"event": {
|
|
1229
|
+
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
1230
|
+
"type": "string",
|
|
1231
|
+
"title": "event"
|
|
1232
|
+
},
|
|
1233
|
+
"iconAlt": {
|
|
1234
|
+
"description": "The alt for the custom button icon",
|
|
1235
|
+
"type": "string",
|
|
1236
|
+
"title": "iconAlt"
|
|
1237
|
+
},
|
|
1238
|
+
"iconType": {
|
|
1239
|
+
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
1240
|
+
"type": "string",
|
|
1241
|
+
"title": "iconType"
|
|
1242
|
+
},
|
|
1243
|
+
"icon": {
|
|
1244
|
+
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
1245
|
+
"type": "string",
|
|
1246
|
+
"title": "icon"
|
|
1247
|
+
}
|
|
1248
|
+
},
|
|
1249
|
+
"required": [
|
|
1250
|
+
"event",
|
|
1251
|
+
"icon",
|
|
1252
|
+
"iconAlt",
|
|
1253
|
+
"iconType"
|
|
1254
|
+
]
|
|
1255
|
+
},
|
|
1256
|
+
"title": "customPlugins"
|
|
998
1257
|
}
|
|
999
1258
|
}
|
|
1000
1259
|
},
|
|
@@ -1009,6 +1268,38 @@
|
|
|
1009
1268
|
}
|
|
1010
1269
|
}
|
|
1011
1270
|
},
|
|
1271
|
+
"CustomPlugin": {
|
|
1272
|
+
"title": "CustomPlugin",
|
|
1273
|
+
"type": "object",
|
|
1274
|
+
"properties": {
|
|
1275
|
+
"event": {
|
|
1276
|
+
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
1277
|
+
"type": "string",
|
|
1278
|
+
"title": "event"
|
|
1279
|
+
},
|
|
1280
|
+
"iconAlt": {
|
|
1281
|
+
"description": "The alt for the custom button icon",
|
|
1282
|
+
"type": "string",
|
|
1283
|
+
"title": "iconAlt"
|
|
1284
|
+
},
|
|
1285
|
+
"iconType": {
|
|
1286
|
+
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
1287
|
+
"type": "string",
|
|
1288
|
+
"title": "iconType"
|
|
1289
|
+
},
|
|
1290
|
+
"icon": {
|
|
1291
|
+
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
1292
|
+
"type": "string",
|
|
1293
|
+
"title": "icon"
|
|
1294
|
+
}
|
|
1295
|
+
},
|
|
1296
|
+
"required": [
|
|
1297
|
+
"event",
|
|
1298
|
+
"icon",
|
|
1299
|
+
"iconAlt",
|
|
1300
|
+
"iconType"
|
|
1301
|
+
]
|
|
1302
|
+
},
|
|
1012
1303
|
"ConfigureMaxImageDimensionsProp": {
|
|
1013
1304
|
"title": "ConfigureMaxImageDimensionsProp",
|
|
1014
1305
|
"type": "object",
|
|
@@ -1102,6 +1393,43 @@
|
|
|
1102
1393
|
"title": "disabled"
|
|
1103
1394
|
}
|
|
1104
1395
|
}
|
|
1396
|
+
},
|
|
1397
|
+
"customPlugins": {
|
|
1398
|
+
"description": "An array of objects that determine custom plugins.\nA custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).\nExample can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.",
|
|
1399
|
+
"type": "array",
|
|
1400
|
+
"items": {
|
|
1401
|
+
"title": "CustomPlugin",
|
|
1402
|
+
"type": "object",
|
|
1403
|
+
"properties": {
|
|
1404
|
+
"event": {
|
|
1405
|
+
"description": "The name of the custom event. It needs to be valid (only letters, numbers and \"_\" can be used).\nPIE will emit the event prefixed with \"PIE-\".\nEg: event = 'client_custom_event_A' => the emitted event will be \"PIE-client_custom_event_A\"",
|
|
1406
|
+
"type": "string",
|
|
1407
|
+
"title": "event"
|
|
1408
|
+
},
|
|
1409
|
+
"iconAlt": {
|
|
1410
|
+
"description": "The alt for the custom button icon",
|
|
1411
|
+
"type": "string",
|
|
1412
|
+
"title": "iconAlt"
|
|
1413
|
+
},
|
|
1414
|
+
"iconType": {
|
|
1415
|
+
"description": "The icon type.\nCurrently, only \"SVG\" is supported.",
|
|
1416
|
+
"type": "string",
|
|
1417
|
+
"title": "iconType"
|
|
1418
|
+
},
|
|
1419
|
+
"icon": {
|
|
1420
|
+
"description": "The icon string. Currently, only \"SVG\" is supported, so it needs to be a valid svg.",
|
|
1421
|
+
"type": "string",
|
|
1422
|
+
"title": "icon"
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1425
|
+
"required": [
|
|
1426
|
+
"event",
|
|
1427
|
+
"icon",
|
|
1428
|
+
"iconAlt",
|
|
1429
|
+
"iconType"
|
|
1430
|
+
]
|
|
1431
|
+
},
|
|
1432
|
+
"title": "customPlugins"
|
|
1105
1433
|
}
|
|
1106
1434
|
}
|
|
1107
1435
|
},
|