@pie-lib/config-ui 9.0.3-next.2 → 10.0.0-beta.1

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.
Files changed (100) hide show
  1. package/CHANGELOG.json +605 -0
  2. package/CHANGELOG.md +976 -328
  3. package/lib/alert-dialog.js +44 -0
  4. package/lib/alert-dialog.js.map +1 -0
  5. package/lib/checkbox.js +5 -5
  6. package/lib/checkbox.js.map +1 -1
  7. package/lib/choice-configuration/feedback-menu.js +42 -54
  8. package/lib/choice-configuration/feedback-menu.js.map +1 -1
  9. package/lib/choice-configuration/index.js +102 -86
  10. package/lib/choice-configuration/index.js.map +1 -1
  11. package/lib/choice-utils.js +9 -7
  12. package/lib/choice-utils.js.map +1 -1
  13. package/lib/feedback-config/feedback-selector.js +45 -49
  14. package/lib/feedback-config/feedback-selector.js.map +1 -1
  15. package/lib/feedback-config/group.js +13 -13
  16. package/lib/feedback-config/group.js.map +1 -1
  17. package/lib/feedback-config/index.js +57 -56
  18. package/lib/feedback-config/index.js.map +1 -1
  19. package/lib/form-section.js +19 -15
  20. package/lib/form-section.js.map +1 -1
  21. package/lib/help.js +31 -38
  22. package/lib/help.js.map +1 -1
  23. package/lib/index.js +73 -52
  24. package/lib/index.js.map +1 -1
  25. package/lib/input.js +36 -41
  26. package/lib/input.js.map +1 -1
  27. package/lib/inputs.js +42 -29
  28. package/lib/inputs.js.map +1 -1
  29. package/lib/langs.js +38 -46
  30. package/lib/langs.js.map +1 -1
  31. package/lib/layout/config-layout.js +36 -42
  32. package/lib/layout/config-layout.js.map +1 -1
  33. package/lib/layout/index.js +3 -3
  34. package/lib/layout/index.js.map +1 -1
  35. package/lib/layout/layout-contents.js +35 -35
  36. package/lib/layout/layout-contents.js.map +1 -1
  37. package/lib/layout/settings-box.js +29 -40
  38. package/lib/layout/settings-box.js.map +1 -1
  39. package/lib/mui-box/index.js +4 -4
  40. package/lib/mui-box/index.js.map +1 -1
  41. package/lib/number-text-field-custom.js +364 -0
  42. package/lib/number-text-field-custom.js.map +1 -0
  43. package/lib/number-text-field.js +46 -46
  44. package/lib/number-text-field.js.map +1 -1
  45. package/lib/radio-with-label.js +5 -5
  46. package/lib/radio-with-label.js.map +1 -1
  47. package/lib/settings/display-size.js +12 -10
  48. package/lib/settings/display-size.js.map +1 -1
  49. package/lib/settings/index.js +81 -14
  50. package/lib/settings/index.js.map +1 -1
  51. package/lib/settings/panel.js +297 -79
  52. package/lib/settings/panel.js.map +1 -1
  53. package/lib/settings/settings-radio-label.js +43 -0
  54. package/lib/settings/settings-radio-label.js.map +1 -0
  55. package/lib/settings/toggle.js +9 -7
  56. package/lib/settings/toggle.js.map +1 -1
  57. package/lib/tabs/index.js +29 -36
  58. package/lib/tabs/index.js.map +1 -1
  59. package/lib/tags-input/index.js +33 -41
  60. package/lib/tags-input/index.js.map +1 -1
  61. package/lib/two-choice.js +46 -50
  62. package/lib/two-choice.js.map +1 -1
  63. package/lib/with-stateful-model.js +24 -31
  64. package/lib/with-stateful-model.js.map +1 -1
  65. package/package.json +9 -7
  66. package/src/alert-dialog.jsx +43 -0
  67. package/src/checkbox.jsx +63 -0
  68. package/src/choice-configuration/feedback-menu.jsx +103 -0
  69. package/src/choice-configuration/index.jsx +319 -0
  70. package/src/choice-utils.js +30 -0
  71. package/src/feedback-config/feedback-selector.jsx +116 -0
  72. package/src/feedback-config/group.jsx +54 -0
  73. package/src/feedback-config/index.jsx +98 -0
  74. package/src/form-section.jsx +23 -0
  75. package/src/help.jsx +88 -0
  76. package/src/index.js +58 -0
  77. package/src/input.jsx +72 -0
  78. package/src/inputs.jsx +96 -0
  79. package/src/langs.jsx +122 -0
  80. package/src/layout/config-layout.jsx +64 -0
  81. package/src/layout/index.js +4 -0
  82. package/src/layout/layout-contents.jsx +60 -0
  83. package/src/layout/settings-box.jsx +31 -0
  84. package/src/mui-box/index.jsx +64 -0
  85. package/src/number-text-field-custom.jsx +276 -0
  86. package/src/number-text-field.jsx +196 -0
  87. package/src/radio-with-label.jsx +18 -0
  88. package/src/settings/display-size.jsx +52 -0
  89. package/src/settings/index.js +75 -0
  90. package/src/settings/panel.jsx +297 -0
  91. package/src/settings/settings-radio-label.jsx +20 -0
  92. package/src/settings/toggle.jsx +31 -0
  93. package/src/tabs/index.jsx +51 -0
  94. package/src/tags-input/index.jsx +121 -0
  95. package/src/two-choice.jsx +94 -0
  96. package/src/with-stateful-model.jsx +36 -0
  97. package/NEXT.CHANGELOG.json +0 -1
  98. package/__mocks__/@pie-lib/editable-html.jsx +0 -3
  99. package/lib/input-container.js +0 -59
  100. package/lib/input-container.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -1068,5 +1068,610 @@
1068
1068
  "committerDate": "2019-04-12 20:52:03 +0100",
1069
1069
  "isTagged": true,
1070
1070
  "tag": "@pie-lib/config-ui@8.0.0"
1071
+ },
1072
+ {
1073
+ "type": "feat",
1074
+ "scope": null,
1075
+ "subject": "Added support to Settings Panel for updating configuration as well (not only model).",
1076
+ "merge": null,
1077
+ "header": "feat: Added support to Settings Panel for updating configuration as well (not only model).",
1078
+ "body": null,
1079
+ "footer": "BREAKING CHANGE: radio function used for settings panel expects 3 parameters and the second one is an array of choices.",
1080
+ "notes": [
1081
+ {
1082
+ "title": "BREAKING CHANGE",
1083
+ "text": "radio function used for settings panel expects 3 parameters and the second one is an array of choices."
1084
+ }
1085
+ ],
1086
+ "hash": "44e10d11857e0873a3ee304a863e2162a0fe8c30",
1087
+ "gitTags": "",
1088
+ "committerDate": "2019-04-24 10:03:41 +0300",
1089
+ "isTagged": true,
1090
+ "tag": "@pie-lib/config-ui@10.0.0"
1091
+ },
1092
+ {
1093
+ "type": "fix",
1094
+ "scope": null,
1095
+ "subject": "Fixed demo page after updating Settings Panel.",
1096
+ "merge": null,
1097
+ "header": "fix: Fixed demo page after updating Settings Panel.",
1098
+ "body": null,
1099
+ "footer": null,
1100
+ "notes": [],
1101
+ "hash": "158fac9a0d651a79d9121f5620c55deb7ca4afb6",
1102
+ "gitTags": "",
1103
+ "committerDate": "2019-04-24 11:56:28 +0300",
1104
+ "isTagged": true,
1105
+ "tag": "@pie-lib/config-ui@10.0.1"
1106
+ },
1107
+ {
1108
+ "type": "feat",
1109
+ "scope": "mask-markup",
1110
+ "subject": "merging with the develop branch",
1111
+ "merge": null,
1112
+ "header": "feat(mask-markup): merging with the develop branch",
1113
+ "body": null,
1114
+ "footer": null,
1115
+ "notes": [],
1116
+ "hash": "0153c1aba8a08ba6c974fcc69476a87b9086f6c5",
1117
+ "gitTags": " (develop)",
1118
+ "committerDate": "2019-05-02 07:12:59 +0300",
1119
+ "isTagged": true,
1120
+ "tag": "@pie-lib/config-ui@10.1.0"
1121
+ },
1122
+ {
1123
+ "type": "feat",
1124
+ "scope": null,
1125
+ "subject": "Added support for dropdown and number text fields in settings panel.",
1126
+ "merge": null,
1127
+ "header": "feat: Added support for dropdown and number text fields in settings panel.",
1128
+ "body": null,
1129
+ "footer": null,
1130
+ "notes": [],
1131
+ "hash": "db84ffb8040fef8c2d6f8259ffdfcc82c211ba84",
1132
+ "gitTags": "",
1133
+ "committerDate": "2019-05-17 20:53:06 +0300",
1134
+ "isTagged": true,
1135
+ "tag": "@pie-lib/config-ui@10.2.0"
1136
+ },
1137
+ {
1138
+ "type": "chore",
1139
+ "scope": "merge",
1140
+ "subject": "merged with develop",
1141
+ "merge": null,
1142
+ "header": "chore(merge): merged with develop",
1143
+ "body": null,
1144
+ "footer": null,
1145
+ "notes": [],
1146
+ "hash": "89ff9d89eb26b5afc82267c10f79af2894f4c2d5",
1147
+ "gitTags": " (origin/feat/response-area-plugin)",
1148
+ "committerDate": "2019-06-05 21:55:26 +0300",
1149
+ "isTagged": true,
1150
+ "tag": "@pie-lib/config-ui@10.2.2"
1151
+ },
1152
+ {
1153
+ "type": "chore",
1154
+ "scope": "merge",
1155
+ "subject": "merged with develop",
1156
+ "merge": null,
1157
+ "header": "chore(merge): merged with develop",
1158
+ "body": null,
1159
+ "footer": null,
1160
+ "notes": [],
1161
+ "hash": "e68506cf63b2a17973821bb0cfef40828faccd1f",
1162
+ "gitTags": "",
1163
+ "committerDate": "2019-05-21 06:26:54 +0300",
1164
+ "isTagged": true,
1165
+ "tag": "@pie-lib/config-ui@10.2.2"
1166
+ },
1167
+ {
1168
+ "type": "feat",
1169
+ "scope": "editable-html",
1170
+ "subject": "made some changes in order to publish packages with the editable-html bump",
1171
+ "merge": null,
1172
+ "header": "feat(editable-html): made some changes in order to publish packages with the editable-html bump",
1173
+ "body": null,
1174
+ "footer": null,
1175
+ "notes": [],
1176
+ "hash": "d049e3c2f2bd650ae5e94b84aa7dd3348ad682dc",
1177
+ "gitTags": "",
1178
+ "committerDate": "2019-06-05 23:01:55 +0300",
1179
+ "isTagged": true,
1180
+ "tag": "@pie-lib/config-ui@10.3.0"
1181
+ },
1182
+ {
1183
+ "type": "chore",
1184
+ "scope": "editable-html",
1185
+ "subject": "version bump",
1186
+ "merge": null,
1187
+ "header": "chore(editable-html): version bump",
1188
+ "body": null,
1189
+ "footer": null,
1190
+ "notes": [],
1191
+ "hash": "64d9b802b2df2f5bf96e21f6b8e12dd997416f4a",
1192
+ "gitTags": "",
1193
+ "committerDate": "2019-06-05 22:49:11 +0300",
1194
+ "isTagged": true,
1195
+ "tag": "@pie-lib/config-ui@10.3.0"
1196
+ },
1197
+ {
1198
+ "type": "chore",
1199
+ "scope": "merge",
1200
+ "subject": "merged with develop",
1201
+ "merge": null,
1202
+ "header": "chore(merge): merged with develop",
1203
+ "body": null,
1204
+ "footer": null,
1205
+ "notes": [],
1206
+ "hash": "03e233c8095db723b28db9db7d51c5b1572eb7a4",
1207
+ "gitTags": "",
1208
+ "committerDate": "2019-06-05 23:10:07 +0300",
1209
+ "isTagged": true,
1210
+ "tag": "@pie-lib/config-ui@10.3.0"
1211
+ },
1212
+ {
1213
+ "type": "chore",
1214
+ "scope": "merge",
1215
+ "subject": "merged with develop",
1216
+ "merge": null,
1217
+ "header": "chore(merge): merged with develop",
1218
+ "body": null,
1219
+ "footer": null,
1220
+ "notes": [],
1221
+ "hash": "ccf6553b1749984649f310ca22832fa411190035",
1222
+ "gitTags": "",
1223
+ "committerDate": "2019-06-05 23:27:16 +0300",
1224
+ "isTagged": true,
1225
+ "tag": "@pie-lib/config-ui@10.3.1"
1226
+ },
1227
+ {
1228
+ "type": "feat",
1229
+ "scope": null,
1230
+ "subject": "version bumps",
1231
+ "merge": null,
1232
+ "header": "feat: version bumps",
1233
+ "body": null,
1234
+ "footer": null,
1235
+ "notes": [],
1236
+ "hash": "23eb54f95e4b6480e2f8c5b336627a7f3bc2f428",
1237
+ "gitTags": "",
1238
+ "committerDate": "2019-06-10 15:24:32 +0100",
1239
+ "isTagged": true,
1240
+ "tag": "@pie-lib/config-ui@10.4.0"
1241
+ },
1242
+ {
1243
+ "type": "fix",
1244
+ "scope": null,
1245
+ "subject": "allow variant in NumberTextField",
1246
+ "merge": null,
1247
+ "header": "fix: allow variant in NumberTextField",
1248
+ "body": null,
1249
+ "footer": null,
1250
+ "notes": [],
1251
+ "hash": "cc2f4505b02637a92a5e11d956da680a4574128d",
1252
+ "gitTags": " (develop)",
1253
+ "committerDate": "2019-06-18 10:14:40 +0100",
1254
+ "isTagged": true,
1255
+ "tag": "@pie-lib/config-ui@10.4.2"
1256
+ },
1257
+ {
1258
+ "type": "fix",
1259
+ "scope": null,
1260
+ "subject": "fix variant name",
1261
+ "merge": null,
1262
+ "header": "fix: fix variant name",
1263
+ "body": null,
1264
+ "footer": null,
1265
+ "notes": [],
1266
+ "hash": "f383f64d8d556fbab805942dfa2b83bde7979834",
1267
+ "gitTags": " (origin/develop, origin/HEAD, develop)",
1268
+ "committerDate": "2019-06-20 09:23:59 +0100",
1269
+ "isTagged": true,
1270
+ "tag": "@pie-lib/config-ui@10.4.3"
1271
+ },
1272
+ {
1273
+ "type": "fix",
1274
+ "scope": null,
1275
+ "subject": "fix variant name",
1276
+ "merge": null,
1277
+ "header": "fix: fix variant name",
1278
+ "body": null,
1279
+ "footer": null,
1280
+ "notes": [],
1281
+ "hash": "f383f64d8d556fbab805942dfa2b83bde7979834",
1282
+ "gitTags": "",
1283
+ "committerDate": "2019-06-20 09:23:59 +0100",
1284
+ "isTagged": true,
1285
+ "tag": "@pie-lib/config-ui@10.4.3"
1286
+ },
1287
+ {
1288
+ "type": "feat",
1289
+ "scope": "version",
1290
+ "subject": "version bumped",
1291
+ "merge": null,
1292
+ "header": "feat(version): version bumped",
1293
+ "body": null,
1294
+ "footer": null,
1295
+ "notes": [],
1296
+ "hash": "e9f5678e48f49179ac961504d93efded379ddf05",
1297
+ "gitTags": "",
1298
+ "committerDate": "2019-06-20 21:58:54 -0400",
1299
+ "isTagged": true,
1300
+ "tag": "@pie-lib/config-ui@10.5.0"
1301
+ },
1302
+ {
1303
+ "type": "feat",
1304
+ "scope": "desgin",
1305
+ "subject": "added spacing before choices for ditb, fixed the config-ui design in order for it to work appropriately on bigger and smaller screens as well",
1306
+ "merge": null,
1307
+ "header": "feat(desgin): added spacing before choices for ditb, fixed the config-ui design in order for it to work appropriately on bigger and smaller screens as well",
1308
+ "body": null,
1309
+ "footer": null,
1310
+ "notes": [],
1311
+ "hash": "c5921c704e270a93abe54161b737bbaae1f9d2e3",
1312
+ "gitTags": "",
1313
+ "committerDate": "2019-06-20 21:54:12 -0400",
1314
+ "isTagged": true,
1315
+ "tag": "@pie-lib/config-ui@10.5.0"
1316
+ },
1317
+ {
1318
+ "type": "feat",
1319
+ "scope": null,
1320
+ "subject": "space w/ theme.spacing.unit",
1321
+ "merge": null,
1322
+ "header": "feat: space w/ theme.spacing.unit",
1323
+ "body": null,
1324
+ "footer": null,
1325
+ "notes": [],
1326
+ "hash": "ca80e3c9771df8ae9e8669b2937e40db2bd73018",
1327
+ "gitTags": " (origin/develop, origin/HEAD, develop)",
1328
+ "committerDate": "2019-06-24 10:44:30 +0100",
1329
+ "isTagged": true,
1330
+ "tag": "@pie-lib/config-ui@10.6.0"
1331
+ },
1332
+ {
1333
+ "type": "feat",
1334
+ "scope": null,
1335
+ "subject": "space w/ theme.spacing.unit",
1336
+ "merge": null,
1337
+ "header": "feat: space w/ theme.spacing.unit",
1338
+ "body": null,
1339
+ "footer": null,
1340
+ "notes": [],
1341
+ "hash": "ca80e3c9771df8ae9e8669b2937e40db2bd73018",
1342
+ "gitTags": "",
1343
+ "committerDate": "2019-06-24 10:44:30 +0100",
1344
+ "isTagged": true,
1345
+ "tag": "@pie-lib/config-ui@10.6.0"
1346
+ },
1347
+ {
1348
+ "type": "feat",
1349
+ "scope": "layout",
1350
+ "subject": "merged develop into master [ch2242]",
1351
+ "merge": null,
1352
+ "header": "feat(layout): merged develop into master [ch2242]",
1353
+ "body": null,
1354
+ "footer": null,
1355
+ "notes": [],
1356
+ "hash": "28f11ba7391c26e99a4fabaec388461b63c4a169",
1357
+ "gitTags": " (develop)",
1358
+ "committerDate": "2019-06-25 21:07:13 -0400",
1359
+ "isTagged": true,
1360
+ "tag": "@pie-lib/config-ui@10.7.0"
1361
+ },
1362
+ {
1363
+ "type": "feat",
1364
+ "scope": "layout",
1365
+ "subject": "made the changes requested for the settings tab [ch2242]",
1366
+ "merge": null,
1367
+ "header": "feat(layout): made the changes requested for the settings tab [ch2242]",
1368
+ "body": null,
1369
+ "footer": null,
1370
+ "notes": [],
1371
+ "hash": "7677dcae6fea1bbbc835716f70df274f983e7ff0",
1372
+ "gitTags": "",
1373
+ "committerDate": "2019-06-25 21:00:09 -0400",
1374
+ "isTagged": true,
1375
+ "tag": "@pie-lib/config-ui@10.7.0"
1376
+ },
1377
+ {
1378
+ "type": "feat",
1379
+ "scope": "layout",
1380
+ "subject": "made the changes requested for the settings tab [ch2242]",
1381
+ "merge": null,
1382
+ "header": "feat(layout): made the changes requested for the settings tab [ch2242]",
1383
+ "body": null,
1384
+ "footer": null,
1385
+ "notes": [],
1386
+ "hash": "7677dcae6fea1bbbc835716f70df274f983e7ff0",
1387
+ "gitTags": "",
1388
+ "committerDate": "2019-06-25 21:00:09 -0400",
1389
+ "isTagged": true,
1390
+ "tag": "@pie-lib/config-ui@10.7.0"
1391
+ },
1392
+ {
1393
+ "type": "chore",
1394
+ "scope": "version",
1395
+ "subject": "version bumped the elements that need update",
1396
+ "merge": null,
1397
+ "header": "chore(version): version bumped the elements that need update",
1398
+ "body": null,
1399
+ "footer": null,
1400
+ "notes": [],
1401
+ "hash": "17fe624e780cd3115987b6ceee3227103212ce70",
1402
+ "gitTags": "",
1403
+ "committerDate": "2019-07-02 12:48:43 -0400",
1404
+ "isTagged": true,
1405
+ "tag": "@pie-lib/config-ui@10.7.4"
1406
+ },
1407
+ {
1408
+ "type": "chore",
1409
+ "scope": "merge",
1410
+ "subject": "merged master into this branch",
1411
+ "merge": null,
1412
+ "header": "chore(merge): merged master into this branch",
1413
+ "body": null,
1414
+ "footer": null,
1415
+ "notes": [],
1416
+ "hash": "e7758d577c82c0f39a5bf44556792517cd1ea6b0",
1417
+ "gitTags": "",
1418
+ "committerDate": "2019-07-02 11:29:52 -0400",
1419
+ "isTagged": true,
1420
+ "tag": "@pie-lib/config-ui@10.7.4"
1421
+ },
1422
+ {
1423
+ "type": "chore",
1424
+ "scope": "editable-html",
1425
+ "subject": "version bumped the editor version",
1426
+ "merge": null,
1427
+ "header": "chore(editable-html): version bumped the editor version",
1428
+ "body": null,
1429
+ "footer": null,
1430
+ "notes": [],
1431
+ "hash": "ae5be2c531ca9196cafc8ac22c519b369bb50e8a",
1432
+ "gitTags": "",
1433
+ "committerDate": "2019-07-02 14:45:51 -0400",
1434
+ "isTagged": true,
1435
+ "tag": "@pie-lib/config-ui@10.7.5"
1436
+ },
1437
+ {
1438
+ "type": "chore",
1439
+ "scope": "version",
1440
+ "subject": "version bumped some elements that depend on editable-html",
1441
+ "merge": null,
1442
+ "header": "chore(version): version bumped some elements that depend on editable-html",
1443
+ "body": null,
1444
+ "footer": null,
1445
+ "notes": [],
1446
+ "hash": "1b472679a467a5a37b43a2935c093afb10eb7bb8",
1447
+ "gitTags": "",
1448
+ "committerDate": "2019-07-02 14:41:50 -0400",
1449
+ "isTagged": true,
1450
+ "tag": "@pie-lib/config-ui@10.7.5"
1451
+ },
1452
+ {
1453
+ "type": "fix",
1454
+ "scope": "settings",
1455
+ "subject": "made the design changes requested [ch2396]",
1456
+ "merge": null,
1457
+ "header": "fix(settings): made the design changes requested [ch2396]",
1458
+ "body": null,
1459
+ "footer": null,
1460
+ "notes": [],
1461
+ "hash": "8717ac60fe2260d9fa136acc2712baa02cca339b",
1462
+ "gitTags": "",
1463
+ "committerDate": "2019-07-07 15:15:42 -0400",
1464
+ "isTagged": true,
1465
+ "tag": "@pie-lib/config-ui@10.7.12"
1466
+ },
1467
+ {
1468
+ "type": "fix",
1469
+ "scope": null,
1470
+ "subject": "Design fix.",
1471
+ "merge": null,
1472
+ "header": "fix: Design fix.",
1473
+ "body": null,
1474
+ "footer": null,
1475
+ "notes": [],
1476
+ "hash": "26e4390fb869771aaf8268381336a5eb785e4ac8",
1477
+ "gitTags": " (origin/andreea/ch4224/from-ibx-ebsr-has-different-trash-cans-than)",
1478
+ "committerDate": "2019-09-26 15:51:36 +0300",
1479
+ "isTagged": true,
1480
+ "tag": "@pie-lib/config-ui@10.7.34"
1481
+ },
1482
+ {
1483
+ "type": "fix",
1484
+ "scope": null,
1485
+ "subject": "Design fix.",
1486
+ "merge": null,
1487
+ "header": "fix: Design fix.",
1488
+ "body": null,
1489
+ "footer": null,
1490
+ "notes": [],
1491
+ "hash": "26e4390fb869771aaf8268381336a5eb785e4ac8",
1492
+ "gitTags": "",
1493
+ "committerDate": "2019-09-26 15:51:36 +0300",
1494
+ "isTagged": true,
1495
+ "tag": "@pie-lib/config-ui@10.7.34"
1496
+ },
1497
+ {
1498
+ "type": "feat",
1499
+ "scope": "index",
1500
+ "subject": "updated file to publish new element",
1501
+ "merge": null,
1502
+ "header": "feat(index): updated file to publish new element",
1503
+ "body": null,
1504
+ "footer": null,
1505
+ "notes": [],
1506
+ "hash": "2dbed7613ec6e20bcac768c9676d886d8dc7ab73",
1507
+ "gitTags": "",
1508
+ "committerDate": "2020-03-23 09:08:55 +0200",
1509
+ "isTagged": true,
1510
+ "tag": "@pie-lib/config-ui@10.8.0"
1511
+ },
1512
+ {
1513
+ "type": "feat",
1514
+ "scope": "packaging",
1515
+ "subject": "updated to the latest version of render-ui",
1516
+ "merge": null,
1517
+ "header": "feat(packaging): updated to the latest version of render-ui",
1518
+ "body": null,
1519
+ "footer": null,
1520
+ "notes": [],
1521
+ "hash": "16ab637bdc52cda1798ebac033d3398bcb6eab5d",
1522
+ "gitTags": "",
1523
+ "committerDate": "2020-03-23 08:57:36 +0200",
1524
+ "isTagged": true,
1525
+ "tag": "@pie-lib/config-ui@10.8.0"
1526
+ },
1527
+ {
1528
+ "type": "fix",
1529
+ "scope": null,
1530
+ "subject": "bad import accessing lib",
1531
+ "merge": null,
1532
+ "header": "fix: bad import accessing lib",
1533
+ "body": null,
1534
+ "footer": null,
1535
+ "notes": [],
1536
+ "hash": "fa2dcfbf4b7b4071af3ae40a9085030876197fc3",
1537
+ "gitTags": "",
1538
+ "committerDate": "2020-03-30 13:30:58 +0100",
1539
+ "isTagged": true,
1540
+ "tag": "@pie-lib/config-ui@10.8.4"
1541
+ },
1542
+ {
1543
+ "type": "fix",
1544
+ "scope": null,
1545
+ "subject": "add module prop to package.json",
1546
+ "merge": null,
1547
+ "header": "fix: add module prop to package.json",
1548
+ "body": null,
1549
+ "footer": null,
1550
+ "notes": [],
1551
+ "hash": "0d7cd6d30eeacc8732add16152f9a4be69652e40",
1552
+ "gitTags": "",
1553
+ "committerDate": "2020-03-30 13:00:20 +0100",
1554
+ "isTagged": true,
1555
+ "tag": "@pie-lib/config-ui@10.8.4"
1556
+ },
1557
+ {
1558
+ "type": "fix",
1559
+ "scope": null,
1560
+ "subject": "correct export syntax",
1561
+ "merge": null,
1562
+ "header": "fix: correct export syntax",
1563
+ "body": null,
1564
+ "footer": null,
1565
+ "notes": [],
1566
+ "hash": "db7fcc0fa1bddf9fc2d304978941db04001ec0ab",
1567
+ "gitTags": "",
1568
+ "committerDate": "2020-03-30 22:30:10 +0100",
1569
+ "isTagged": true,
1570
+ "tag": "@pie-lib/config-ui@10.8.6"
1571
+ },
1572
+ {
1573
+ "type": "fix",
1574
+ "scope": "config-ui",
1575
+ "subject": "fix choices map null check - PD-879",
1576
+ "merge": null,
1577
+ "header": "fix(config-ui): fix choices map null check - PD-879",
1578
+ "body": null,
1579
+ "footer": null,
1580
+ "notes": [],
1581
+ "hash": "bc38e4e276261adb1649bd8a2e6ff3be276f7fe7",
1582
+ "gitTags": " (origin/fix/PD-879-fix-choices-map)",
1583
+ "committerDate": "2021-02-08 15:14:20 +0200",
1584
+ "isTagged": true,
1585
+ "tag": "@pie-lib/config-ui@10.8.46"
1586
+ },
1587
+ {
1588
+ "type": "fix",
1589
+ "scope": "config-ui",
1590
+ "subject": "update snapshots for tests",
1591
+ "merge": null,
1592
+ "header": "fix(config-ui): update snapshots for tests",
1593
+ "body": null,
1594
+ "footer": null,
1595
+ "notes": [],
1596
+ "hash": "869e30ca431f186b35f55b0c7e5a1419e494a0f2",
1597
+ "gitTags": " (origin/fix/hide-feedback-if-disabled)",
1598
+ "committerDate": "2021-02-04 17:04:37 +0200",
1599
+ "isTagged": true,
1600
+ "tag": "@pie-lib/config-ui@10.8.46"
1601
+ },
1602
+ {
1603
+ "type": "fix",
1604
+ "scope": "config-ui",
1605
+ "subject": "hide feddback for author if feedback is not enabled",
1606
+ "merge": null,
1607
+ "header": "fix(config-ui): hide feddback for author if feedback is not enabled",
1608
+ "body": null,
1609
+ "footer": null,
1610
+ "notes": [],
1611
+ "hash": "56718c4fb513f26a9feb7107f28e384aa9cc083e",
1612
+ "gitTags": "",
1613
+ "committerDate": "2021-02-04 16:58:00 +0200",
1614
+ "isTagged": true,
1615
+ "tag": "@pie-lib/config-ui@10.8.46"
1616
+ },
1617
+ {
1618
+ "type": "fix",
1619
+ "scope": null,
1620
+ "subject": "rename the 'Everything' math editor as the 'Miscellaneous' math editor",
1621
+ "merge": null,
1622
+ "header": "fix: rename the 'Everything' math editor as the 'Miscellaneous' math editor",
1623
+ "body": null,
1624
+ "footer": null,
1625
+ "notes": [],
1626
+ "hash": "6b5c0b3edbb6dc02ff802ea05c8b7de65e5e77f0",
1627
+ "gitTags": " (origin/fix/PD-870)",
1628
+ "committerDate": "2021-03-02 17:41:22 +0200",
1629
+ "isTagged": true,
1630
+ "tag": "@pie-lib/config-ui@10.8.53"
1631
+ },
1632
+ {
1633
+ "type": "fix",
1634
+ "scope": "config-ui",
1635
+ "subject": "set same font-size for labels in settings panel PD-269",
1636
+ "merge": null,
1637
+ "header": "fix(config-ui): set same font-size for labels in settings panel PD-269",
1638
+ "body": null,
1639
+ "footer": null,
1640
+ "notes": [],
1641
+ "hash": "21749a0e00de07a75c3ea3dd57cbe40e524d8258",
1642
+ "gitTags": " (origin/fix/font-size-label-settings-panel)",
1643
+ "committerDate": "2021-03-10 12:25:37 +0200",
1644
+ "isTagged": true,
1645
+ "tag": "@pie-lib/config-ui@10.8.54"
1646
+ },
1647
+ {
1648
+ "type": "feat",
1649
+ "scope": "config-ui",
1650
+ "subject": "remove audio and video buttons from choice configuration label for multiple-choice and ebsr PD-1180",
1651
+ "merge": null,
1652
+ "header": "feat(config-ui): remove audio and video buttons from choice configuration label for multiple-choice and ebsr PD-1180",
1653
+ "body": null,
1654
+ "footer": null,
1655
+ "notes": [],
1656
+ "hash": "5988b02c5b9647784544784a2de673aca58b5a17",
1657
+ "gitTags": " (origin/feat/PD-1180/choice-configuration-remove-audio-video-buttons)",
1658
+ "committerDate": "2021-06-03 13:47:40 +0300",
1659
+ "isTagged": true,
1660
+ "tag": "@pie-lib/config-ui@10.9.0"
1661
+ },
1662
+ {
1663
+ "type": "feat",
1664
+ "scope": "config-ui",
1665
+ "subject": "add checkboxes option for settings panel PD-483",
1666
+ "merge": null,
1667
+ "header": "feat(config-ui): add checkboxes option for settings panel PD-483",
1668
+ "body": null,
1669
+ "footer": null,
1670
+ "notes": [],
1671
+ "hash": "04200ad78ec09d7f0de8fa8632ad4b7a90c43ccd",
1672
+ "gitTags": "",
1673
+ "committerDate": "2021-06-08 12:59:21 +0300",
1674
+ "isTagged": true,
1675
+ "tag": "@pie-lib/config-ui@10.10.0"
1071
1676
  }
1072
1677
  ]