@g1cloud/bluesea 5.0.0-beta.1 → 5.0.0-beta.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.
Files changed (43) hide show
  1. package/css/bluesea.css +358 -278
  2. package/css/frame-default.css +16 -12
  3. package/dist/{BSAlertModal-BixCrZDD.js → BSAlertModal-xBi30_WT.js} +1 -1
  4. package/dist/{BSGridColumnSettingModal-CVVenSnr.js → BSGridColumnSettingModal-CGOmNxYg.js} +1 -1
  5. package/dist/{BSRichTextMaximizedModal-BqzE5__U.js → BSRichTextMaximizedModal-bwfs_ETq.js} +1 -1
  6. package/dist/{BSYesNoModal-B5lERw_k.js → BSYesNoModal-g_jspSyV.js} +1 -1
  7. package/dist/{BSYoutubeInputModal-eRBqHjeW.js → BSYoutubeInputModal-gxqSatHw.js} +1 -1
  8. package/dist/{ImageInsertModal-DvKLXL1n.js → ImageInsertModal-BjQMX1aF.js} +2 -2
  9. package/dist/{ImageProperties.vue_vue_type_script_setup_true_lang-DVUZuLfG.js → ImageProperties.vue_vue_type_script_setup_true_lang-DngZdEN7.js} +1 -1
  10. package/dist/{ImagePropertiesModal-Dsg6BS63.js → ImagePropertiesModal-BVMSRdqN.js} +2 -2
  11. package/dist/{LinkPropertiesModal-Ct0ykD4j.js → LinkPropertiesModal-CjQMdxnd.js} +1 -1
  12. package/dist/{TableInsertModal-BhyzkcTU.js → TableInsertModal-W9oMIgb_.js} +1 -1
  13. package/dist/TablePropertiesModal-rKhKzzYG.js +353 -0
  14. package/dist/{VideoInsertModal-BAwRYBzU.js → VideoInsertModal-DMtZM5vy.js} +2 -2
  15. package/dist/{VideoProperties.vue_vue_type_script_setup_true_lang-BfwBHyER.js → VideoProperties.vue_vue_type_script_setup_true_lang-CbE-PZdm.js} +1 -1
  16. package/dist/{VideoPropertiesModal-B2FeEw4W.js → VideoPropertiesModal-CLkvzq3Y.js} +2 -2
  17. package/dist/{YoutubeInsertModal-EU6G-021.js → YoutubeInsertModal-4_qANoY5.js} +3 -3
  18. package/dist/{YoutubeProperties.vue_vue_type_script_setup_true_lang-Ci3ndkZR.js → YoutubeProperties.vue_vue_type_script_setup_true_lang-B-LT9GYf.js} +1 -1
  19. package/dist/{YoutubePropertiesModal-CRy6zJwZ.js → YoutubePropertiesModal-BKwZsK6d.js} +2 -2
  20. package/dist/bluesea.css +304 -228
  21. package/dist/bluesea.js +21 -21
  22. package/dist/bluesea.umd.cjs +433 -197
  23. package/dist/component/input/BSMultiSelect.vue.d.ts +6 -6
  24. package/dist/component/input/BSSelect.vue.d.ts +6 -6
  25. package/dist/component/input/BSSelectPopup.vue.d.ts +6 -6
  26. package/dist/component/input/BSTreeMultiSelect.vue.d.ts +6 -6
  27. package/dist/component/input/BSTreeSelect.vue.d.ts +6 -6
  28. package/dist/component/richtext/RichTextModel.d.ts +1 -0
  29. package/dist/component/richtext/richTextUtil.d.ts +1 -1
  30. package/dist/component/richtext/table/RichTextTableCell.d.ts +1 -0
  31. package/dist/component/richtext/table/RichTextTableLib.d.ts +7 -1
  32. package/dist/component/tree/BSTree.vue.d.ts +3 -3
  33. package/dist/component/tree/BSTreeRow.vue.d.ts +3 -3
  34. package/dist/directive/vT.d.ts +1 -0
  35. package/dist/{index-CDwzpZX0.js → index-BQZ3zTp7.js} +160 -93
  36. package/package.json +3 -3
  37. package/scss/component.scss +18 -14
  38. package/text/bluesea_text_en.json +12 -0
  39. package/text/bluesea_text_fr.json +12 -0
  40. package/text/bluesea_text_ja.json +12 -0
  41. package/text/bluesea_text_ko.json +12 -0
  42. package/text/bluesea_text_zh.json +12 -0
  43. package/dist/TablePropertiesModal-BAxcByTD.js +0 -184
package/dist/bluesea.css CHANGED
@@ -381,14 +381,26 @@
381
381
  padding: 4px 2px;
382
382
  cursor: pointer;
383
383
  }
384
- .bs-checkbox-group.modified input::before,
385
- .bs-radio-button-group.modified input::before {
384
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
385
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
386
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
386
387
  color: var(--purple) !important;
387
388
  }
388
- .bs-checkbox-group.modified input ~ label,
389
- .bs-radio-button-group.modified input ~ label {
389
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
390
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
391
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
390
392
  color: var(--purple) !important;
391
393
  }
394
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
395
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
396
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
397
+ color: var(--danger) !important;
398
+ }
399
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
400
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
401
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
402
+ color: var(--danger) !important;
403
+ }
392
404
  .bs-checkbox-group.disabled input::before,
393
405
  .bs-radio-button-group.disabled input::before {
394
406
  color: var(--gray-400) !important;
@@ -397,14 +409,6 @@
397
409
  .bs-radio-button-group.disabled input ~ label {
398
410
  color: var(--gray-400) !important;
399
411
  }
400
- .bs-checkbox-group.error input::before,
401
- .bs-radio-button-group.error input::before {
402
- color: var(--danger) !important;
403
- }
404
- .bs-checkbox-group.error input ~ label,
405
- .bs-radio-button-group.error input ~ label {
406
- color: var(--danger) !important;
407
- }
408
412
  .bs-select-wrap {
409
413
  position: relative;
410
414
  outline: 0;
@@ -884,14 +888,26 @@
884
888
  padding: 4px 2px;
885
889
  cursor: pointer;
886
890
  }
887
- .bs-checkbox-group.modified input::before,
888
- .bs-radio-button-group.modified input::before {
891
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
892
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
893
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
889
894
  color: var(--purple) !important;
890
895
  }
891
- .bs-checkbox-group.modified input ~ label,
892
- .bs-radio-button-group.modified input ~ label {
896
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
897
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
898
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
893
899
  color: var(--purple) !important;
894
900
  }
901
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
902
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
903
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
904
+ color: var(--danger) !important;
905
+ }
906
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
907
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
908
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
909
+ color: var(--danger) !important;
910
+ }
895
911
  .bs-checkbox-group.disabled input::before,
896
912
  .bs-radio-button-group.disabled input::before {
897
913
  color: var(--gray-400) !important;
@@ -900,14 +916,6 @@
900
916
  .bs-radio-button-group.disabled input ~ label {
901
917
  color: var(--gray-400) !important;
902
918
  }
903
- .bs-checkbox-group.error input::before,
904
- .bs-radio-button-group.error input::before {
905
- color: var(--danger) !important;
906
- }
907
- .bs-checkbox-group.error input ~ label,
908
- .bs-radio-button-group.error input ~ label {
909
- color: var(--danger) !important;
910
- }
911
919
  .bs-select-wrap, .bs-select {
912
920
  position: relative;
913
921
  outline: 0;
@@ -1316,14 +1324,26 @@
1316
1324
  padding: 4px 2px;
1317
1325
  cursor: pointer;
1318
1326
  }
1319
- .bs-checkbox-group.modified input::before,
1320
- .bs-radio-button-group.modified input::before {
1327
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
1328
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
1329
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
1321
1330
  color: var(--purple) !important;
1322
1331
  }
1323
- .bs-checkbox-group.modified input ~ label,
1324
- .bs-radio-button-group.modified input ~ label {
1332
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
1333
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
1334
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
1325
1335
  color: var(--purple) !important;
1326
1336
  }
1337
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
1338
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
1339
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
1340
+ color: var(--danger) !important;
1341
+ }
1342
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
1343
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
1344
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
1345
+ color: var(--danger) !important;
1346
+ }
1327
1347
  .bs-checkbox-group.disabled input::before,
1328
1348
  .bs-radio-button-group.disabled input::before {
1329
1349
  color: var(--gray-400) !important;
@@ -1332,14 +1352,6 @@
1332
1352
  .bs-radio-button-group.disabled input ~ label {
1333
1353
  color: var(--gray-400) !important;
1334
1354
  }
1335
- .bs-checkbox-group.error input::before,
1336
- .bs-radio-button-group.error input::before {
1337
- color: var(--danger) !important;
1338
- }
1339
- .bs-checkbox-group.error input ~ label,
1340
- .bs-radio-button-group.error input ~ label {
1341
- color: var(--danger) !important;
1342
- }
1343
1355
  .bs-select-wrap {
1344
1356
  position: relative;
1345
1357
  outline: 0;
@@ -1799,14 +1811,26 @@
1799
1811
  padding: 4px 2px;
1800
1812
  cursor: pointer;
1801
1813
  }
1802
- .bs-checkbox-group.modified input::before,
1803
- .bs-radio-button-group.modified input::before {
1814
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
1815
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
1816
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
1804
1817
  color: var(--purple) !important;
1805
1818
  }
1806
- .bs-checkbox-group.modified input ~ label,
1807
- .bs-radio-button-group.modified input ~ label {
1819
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
1820
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
1821
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
1808
1822
  color: var(--purple) !important;
1809
1823
  }
1824
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
1825
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
1826
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
1827
+ color: var(--danger) !important;
1828
+ }
1829
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
1830
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
1831
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
1832
+ color: var(--danger) !important;
1833
+ }
1810
1834
  .bs-checkbox-group.disabled input::before,
1811
1835
  .bs-radio-button-group.disabled input::before {
1812
1836
  color: var(--gray-400) !important;
@@ -1815,14 +1839,6 @@
1815
1839
  .bs-radio-button-group.disabled input ~ label {
1816
1840
  color: var(--gray-400) !important;
1817
1841
  }
1818
- .bs-checkbox-group.error input::before,
1819
- .bs-radio-button-group.error input::before {
1820
- color: var(--danger) !important;
1821
- }
1822
- .bs-checkbox-group.error input ~ label,
1823
- .bs-radio-button-group.error input ~ label {
1824
- color: var(--danger) !important;
1825
- }
1826
1842
  .bs-select-wrap {
1827
1843
  position: relative;
1828
1844
  outline: 0;
@@ -2661,14 +2677,26 @@ to {
2661
2677
  padding: 4px 2px;
2662
2678
  cursor: pointer;
2663
2679
  }
2664
- .bs-checkbox-group.modified input::before,
2665
- .bs-radio-button-group.modified input::before {
2680
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
2681
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
2682
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
2666
2683
  color: var(--purple) !important;
2667
2684
  }
2668
- .bs-checkbox-group.modified input ~ label,
2669
- .bs-radio-button-group.modified input ~ label {
2685
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
2686
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
2687
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
2670
2688
  color: var(--purple) !important;
2671
2689
  }
2690
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
2691
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
2692
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
2693
+ color: var(--danger) !important;
2694
+ }
2695
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
2696
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
2697
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
2698
+ color: var(--danger) !important;
2699
+ }
2672
2700
  .bs-checkbox-group.disabled input::before,
2673
2701
  .bs-radio-button-group.disabled input::before {
2674
2702
  color: var(--gray-400) !important;
@@ -2677,14 +2705,6 @@ to {
2677
2705
  .bs-radio-button-group.disabled input ~ label {
2678
2706
  color: var(--gray-400) !important;
2679
2707
  }
2680
- .bs-checkbox-group.error input::before,
2681
- .bs-radio-button-group.error input::before {
2682
- color: var(--danger) !important;
2683
- }
2684
- .bs-checkbox-group.error input ~ label,
2685
- .bs-radio-button-group.error input ~ label {
2686
- color: var(--danger) !important;
2687
- }
2688
2708
  .bs-select-wrap {
2689
2709
  position: relative;
2690
2710
  outline: 0;
@@ -3201,14 +3221,26 @@ to {
3201
3221
  padding: 4px 2px;
3202
3222
  cursor: pointer;
3203
3223
  }
3204
- .bs-checkbox-group.modified input::before,
3205
- .bs-radio-button-group.modified input::before {
3224
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
3225
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
3226
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
3206
3227
  color: var(--purple) !important;
3207
3228
  }
3208
- .bs-checkbox-group.modified input ~ label,
3209
- .bs-radio-button-group.modified input ~ label {
3229
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
3230
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
3231
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
3210
3232
  color: var(--purple) !important;
3211
3233
  }
3234
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
3235
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
3236
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
3237
+ color: var(--danger) !important;
3238
+ }
3239
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
3240
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
3241
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
3242
+ color: var(--danger) !important;
3243
+ }
3212
3244
  .bs-checkbox-group.disabled input::before,
3213
3245
  .bs-radio-button-group.disabled input::before {
3214
3246
  color: var(--gray-400) !important;
@@ -3217,14 +3249,6 @@ to {
3217
3249
  .bs-radio-button-group.disabled input ~ label {
3218
3250
  color: var(--gray-400) !important;
3219
3251
  }
3220
- .bs-checkbox-group.error input::before,
3221
- .bs-radio-button-group.error input::before {
3222
- color: var(--danger) !important;
3223
- }
3224
- .bs-checkbox-group.error input ~ label,
3225
- .bs-radio-button-group.error input ~ label {
3226
- color: var(--danger) !important;
3227
- }
3228
3252
  .bs-select-wrap {
3229
3253
  position: relative;
3230
3254
  outline: 0;
@@ -3646,14 +3670,26 @@ to {
3646
3670
  padding: 4px 2px;
3647
3671
  cursor: pointer;
3648
3672
  }
3649
- .bs-checkbox-group.modified input::before,
3650
- .bs-radio-button-group.modified input::before {
3673
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
3674
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
3675
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
3651
3676
  color: var(--purple) !important;
3652
3677
  }
3653
- .bs-checkbox-group.modified input ~ label,
3654
- .bs-radio-button-group.modified input ~ label {
3678
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
3679
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
3680
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
3655
3681
  color: var(--purple) !important;
3656
3682
  }
3683
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
3684
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
3685
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
3686
+ color: var(--danger) !important;
3687
+ }
3688
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
3689
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
3690
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
3691
+ color: var(--danger) !important;
3692
+ }
3657
3693
  .bs-checkbox-group.disabled input::before,
3658
3694
  .bs-radio-button-group.disabled input::before {
3659
3695
  color: var(--gray-400) !important;
@@ -3662,14 +3698,6 @@ to {
3662
3698
  .bs-radio-button-group.disabled input ~ label {
3663
3699
  color: var(--gray-400) !important;
3664
3700
  }
3665
- .bs-checkbox-group.error input::before,
3666
- .bs-radio-button-group.error input::before {
3667
- color: var(--danger) !important;
3668
- }
3669
- .bs-checkbox-group.error input ~ label,
3670
- .bs-radio-button-group.error input ~ label {
3671
- color: var(--danger) !important;
3672
- }
3673
3701
  .bs-select-wrap {
3674
3702
  position: relative;
3675
3703
  outline: 0;
@@ -4133,14 +4161,26 @@ to {
4133
4161
  padding: 4px 2px;
4134
4162
  cursor: pointer;
4135
4163
  }
4136
- .bs-checkbox-group.modified input::before,
4137
- .bs-radio-button-group.modified input::before {
4164
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
4165
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
4166
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
4138
4167
  color: var(--purple) !important;
4139
4168
  }
4140
- .bs-checkbox-group.modified input ~ label,
4141
- .bs-radio-button-group.modified input ~ label {
4169
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
4170
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
4171
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
4142
4172
  color: var(--purple) !important;
4143
4173
  }
4174
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
4175
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
4176
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
4177
+ color: var(--danger) !important;
4178
+ }
4179
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
4180
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
4181
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
4182
+ color: var(--danger) !important;
4183
+ }
4144
4184
  .bs-checkbox-group.disabled input::before,
4145
4185
  .bs-radio-button-group.disabled input::before {
4146
4186
  color: var(--gray-400) !important;
@@ -4149,14 +4189,6 @@ to {
4149
4189
  .bs-radio-button-group.disabled input ~ label {
4150
4190
  color: var(--gray-400) !important;
4151
4191
  }
4152
- .bs-checkbox-group.error input::before,
4153
- .bs-radio-button-group.error input::before {
4154
- color: var(--danger) !important;
4155
- }
4156
- .bs-checkbox-group.error input ~ label,
4157
- .bs-radio-button-group.error input ~ label {
4158
- color: var(--danger) !important;
4159
- }
4160
4192
  .bs-select-wrap {
4161
4193
  position: relative;
4162
4194
  outline: 0;
@@ -4588,14 +4620,26 @@ to {
4588
4620
  padding: 4px 2px;
4589
4621
  cursor: pointer;
4590
4622
  }
4591
- .bs-checkbox-group.modified input::before,
4592
- .bs-radio-button-group.modified input::before {
4623
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
4624
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
4625
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
4593
4626
  color: var(--purple) !important;
4594
4627
  }
4595
- .bs-checkbox-group.modified input ~ label,
4596
- .bs-radio-button-group.modified input ~ label {
4628
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
4629
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
4630
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
4597
4631
  color: var(--purple) !important;
4598
4632
  }
4633
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
4634
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
4635
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
4636
+ color: var(--danger) !important;
4637
+ }
4638
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
4639
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
4640
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
4641
+ color: var(--danger) !important;
4642
+ }
4599
4643
  .bs-checkbox-group.disabled input::before,
4600
4644
  .bs-radio-button-group.disabled input::before {
4601
4645
  color: var(--gray-400) !important;
@@ -4604,14 +4648,6 @@ to {
4604
4648
  .bs-radio-button-group.disabled input ~ label {
4605
4649
  color: var(--gray-400) !important;
4606
4650
  }
4607
- .bs-checkbox-group.error input::before,
4608
- .bs-radio-button-group.error input::before {
4609
- color: var(--danger) !important;
4610
- }
4611
- .bs-checkbox-group.error input ~ label,
4612
- .bs-radio-button-group.error input ~ label {
4613
- color: var(--danger) !important;
4614
- }
4615
4651
  .bs-select-wrap {
4616
4652
  position: relative;
4617
4653
  outline: 0;
@@ -5046,14 +5082,26 @@ to {
5046
5082
  padding: 4px 2px;
5047
5083
  cursor: pointer;
5048
5084
  }
5049
- .bs-checkbox-group.modified input::before,
5050
- .bs-radio-button-group.modified input::before {
5085
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
5086
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
5087
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
5051
5088
  color: var(--purple) !important;
5052
5089
  }
5053
- .bs-checkbox-group.modified input ~ label,
5054
- .bs-radio-button-group.modified input ~ label {
5090
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
5091
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
5092
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
5055
5093
  color: var(--purple) !important;
5056
5094
  }
5095
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
5096
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
5097
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
5098
+ color: var(--danger) !important;
5099
+ }
5100
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
5101
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
5102
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
5103
+ color: var(--danger) !important;
5104
+ }
5057
5105
  .bs-checkbox-group.disabled input::before,
5058
5106
  .bs-radio-button-group.disabled input::before {
5059
5107
  color: var(--gray-400) !important;
@@ -5062,14 +5110,6 @@ to {
5062
5110
  .bs-radio-button-group.disabled input ~ label {
5063
5111
  color: var(--gray-400) !important;
5064
5112
  }
5065
- .bs-checkbox-group.error input::before,
5066
- .bs-radio-button-group.error input::before {
5067
- color: var(--danger) !important;
5068
- }
5069
- .bs-checkbox-group.error input ~ label,
5070
- .bs-radio-button-group.error input ~ label {
5071
- color: var(--danger) !important;
5072
- }
5073
5113
  .bs-select-wrap {
5074
5114
  position: relative;
5075
5115
  outline: 0;
@@ -5489,14 +5529,26 @@ to {
5489
5529
  padding: 4px 2px;
5490
5530
  cursor: pointer;
5491
5531
  }
5492
- .bs-checkbox-group.modified input::before,
5493
- .bs-radio-button-group.modified input::before {
5532
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
5533
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
5534
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
5494
5535
  color: var(--purple) !important;
5495
5536
  }
5496
- .bs-checkbox-group.modified input ~ label,
5497
- .bs-radio-button-group.modified input ~ label {
5537
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
5538
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
5539
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
5498
5540
  color: var(--purple) !important;
5499
5541
  }
5542
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
5543
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
5544
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
5545
+ color: var(--danger) !important;
5546
+ }
5547
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
5548
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
5549
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
5550
+ color: var(--danger) !important;
5551
+ }
5500
5552
  .bs-checkbox-group.disabled input::before,
5501
5553
  .bs-radio-button-group.disabled input::before {
5502
5554
  color: var(--gray-400) !important;
@@ -5505,14 +5557,6 @@ to {
5505
5557
  .bs-radio-button-group.disabled input ~ label {
5506
5558
  color: var(--gray-400) !important;
5507
5559
  }
5508
- .bs-checkbox-group.error input::before,
5509
- .bs-radio-button-group.error input::before {
5510
- color: var(--danger) !important;
5511
- }
5512
- .bs-checkbox-group.error input ~ label,
5513
- .bs-radio-button-group.error input ~ label {
5514
- color: var(--danger) !important;
5515
- }
5516
5560
  .bs-select-wrap {
5517
5561
  position: relative;
5518
5562
  outline: 0;
@@ -6050,14 +6094,26 @@ to {
6050
6094
  padding: 4px 2px;
6051
6095
  cursor: pointer;
6052
6096
  }
6053
- .bs-checkbox-group.modified input::before,
6054
- .bs-radio-button-group.modified input::before {
6097
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
6098
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
6099
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
6055
6100
  color: var(--purple) !important;
6056
6101
  }
6057
- .bs-checkbox-group.modified input ~ label,
6058
- .bs-radio-button-group.modified input ~ label {
6102
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
6103
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
6104
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
6059
6105
  color: var(--purple) !important;
6060
6106
  }
6107
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
6108
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
6109
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
6110
+ color: var(--danger) !important;
6111
+ }
6112
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
6113
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
6114
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
6115
+ color: var(--danger) !important;
6116
+ }
6061
6117
  .bs-checkbox-group.disabled input::before,
6062
6118
  .bs-radio-button-group.disabled input::before {
6063
6119
  color: var(--gray-400) !important;
@@ -6066,14 +6122,6 @@ to {
6066
6122
  .bs-radio-button-group.disabled input ~ label {
6067
6123
  color: var(--gray-400) !important;
6068
6124
  }
6069
- .bs-checkbox-group.error input::before,
6070
- .bs-radio-button-group.error input::before {
6071
- color: var(--danger) !important;
6072
- }
6073
- .bs-checkbox-group.error input ~ label,
6074
- .bs-radio-button-group.error input ~ label {
6075
- color: var(--danger) !important;
6076
- }
6077
6125
  .bs-select-wrap {
6078
6126
  position: relative;
6079
6127
  outline: 0;
@@ -6505,14 +6553,26 @@ to {
6505
6553
  padding: 4px 2px;
6506
6554
  cursor: pointer;
6507
6555
  }
6508
- .bs-checkbox-group.modified input::before,
6509
- .bs-radio-button-group.modified input::before {
6556
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
6557
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
6558
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
6510
6559
  color: var(--purple) !important;
6511
6560
  }
6512
- .bs-checkbox-group.modified input ~ label,
6513
- .bs-radio-button-group.modified input ~ label {
6561
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
6562
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
6563
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
6514
6564
  color: var(--purple) !important;
6515
6565
  }
6566
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
6567
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
6568
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
6569
+ color: var(--danger) !important;
6570
+ }
6571
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
6572
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
6573
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
6574
+ color: var(--danger) !important;
6575
+ }
6516
6576
  .bs-checkbox-group.disabled input::before,
6517
6577
  .bs-radio-button-group.disabled input::before {
6518
6578
  color: var(--gray-400) !important;
@@ -6521,14 +6581,6 @@ to {
6521
6581
  .bs-radio-button-group.disabled input ~ label {
6522
6582
  color: var(--gray-400) !important;
6523
6583
  }
6524
- .bs-checkbox-group.error input::before,
6525
- .bs-radio-button-group.error input::before {
6526
- color: var(--danger) !important;
6527
- }
6528
- .bs-checkbox-group.error input ~ label,
6529
- .bs-radio-button-group.error input ~ label {
6530
- color: var(--danger) !important;
6531
- }
6532
6584
  .bs-select-wrap, .bs-multi-select {
6533
6585
  position: relative;
6534
6586
  outline: 0;
@@ -7378,14 +7430,26 @@ to {
7378
7430
  padding: 4px 2px;
7379
7431
  cursor: pointer;
7380
7432
  }
7381
- .bs-checkbox-group.modified input::before,
7382
- .bs-radio-button-group.modified input::before {
7433
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
7434
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
7435
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
7383
7436
  color: var(--purple) !important;
7384
7437
  }
7385
- .bs-checkbox-group.modified input ~ label,
7386
- .bs-radio-button-group.modified input ~ label {
7438
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
7439
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
7440
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
7387
7441
  color: var(--purple) !important;
7388
7442
  }
7443
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
7444
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
7445
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
7446
+ color: var(--danger) !important;
7447
+ }
7448
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
7449
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
7450
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
7451
+ color: var(--danger) !important;
7452
+ }
7389
7453
  .bs-checkbox-group.disabled input::before,
7390
7454
  .bs-radio-button-group.disabled input::before {
7391
7455
  color: var(--gray-400) !important;
@@ -7394,14 +7458,6 @@ to {
7394
7458
  .bs-radio-button-group.disabled input ~ label {
7395
7459
  color: var(--gray-400) !important;
7396
7460
  }
7397
- .bs-checkbox-group.error input::before,
7398
- .bs-radio-button-group.error input::before {
7399
- color: var(--danger) !important;
7400
- }
7401
- .bs-checkbox-group.error input ~ label,
7402
- .bs-radio-button-group.error input ~ label {
7403
- color: var(--danger) !important;
7404
- }
7405
7461
  .bs-select-wrap, .bs-tree-select {
7406
7462
  position: relative;
7407
7463
  outline: 0;
@@ -7812,14 +7868,26 @@ to {
7812
7868
  padding: 4px 2px;
7813
7869
  cursor: pointer;
7814
7870
  }
7815
- .bs-checkbox-group.modified input::before,
7816
- .bs-radio-button-group.modified input::before {
7871
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
7872
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
7873
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
7817
7874
  color: var(--purple) !important;
7818
7875
  }
7819
- .bs-checkbox-group.modified input ~ label,
7820
- .bs-radio-button-group.modified input ~ label {
7876
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
7877
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
7878
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
7821
7879
  color: var(--purple) !important;
7822
7880
  }
7881
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
7882
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
7883
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
7884
+ color: var(--danger) !important;
7885
+ }
7886
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
7887
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
7888
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
7889
+ color: var(--danger) !important;
7890
+ }
7823
7891
  .bs-checkbox-group.disabled input::before,
7824
7892
  .bs-radio-button-group.disabled input::before {
7825
7893
  color: var(--gray-400) !important;
@@ -7828,14 +7896,6 @@ to {
7828
7896
  .bs-radio-button-group.disabled input ~ label {
7829
7897
  color: var(--gray-400) !important;
7830
7898
  }
7831
- .bs-checkbox-group.error input::before,
7832
- .bs-radio-button-group.error input::before {
7833
- color: var(--danger) !important;
7834
- }
7835
- .bs-checkbox-group.error input ~ label,
7836
- .bs-radio-button-group.error input ~ label {
7837
- color: var(--danger) !important;
7838
- }
7839
7899
  .bs-select-wrap, .bs-multi-tree-select {
7840
7900
  position: relative;
7841
7901
  outline: 0;
@@ -8253,14 +8313,26 @@ to {
8253
8313
  padding: 4px 2px;
8254
8314
  cursor: pointer;
8255
8315
  }
8256
- .bs-checkbox-group.modified input::before,
8257
- .bs-radio-button-group.modified input::before {
8316
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
8317
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
8318
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
8258
8319
  color: var(--purple) !important;
8259
8320
  }
8260
- .bs-checkbox-group.modified input ~ label,
8261
- .bs-radio-button-group.modified input ~ label {
8321
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
8322
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
8323
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
8262
8324
  color: var(--purple) !important;
8263
8325
  }
8326
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
8327
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
8328
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
8329
+ color: var(--danger) !important;
8330
+ }
8331
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
8332
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
8333
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
8334
+ color: var(--danger) !important;
8335
+ }
8264
8336
  .bs-checkbox-group.disabled input::before,
8265
8337
  .bs-radio-button-group.disabled input::before {
8266
8338
  color: var(--gray-400) !important;
@@ -8269,14 +8341,6 @@ to {
8269
8341
  .bs-radio-button-group.disabled input ~ label {
8270
8342
  color: var(--gray-400) !important;
8271
8343
  }
8272
- .bs-checkbox-group.error input::before,
8273
- .bs-radio-button-group.error input::before {
8274
- color: var(--danger) !important;
8275
- }
8276
- .bs-checkbox-group.error input ~ label,
8277
- .bs-radio-button-group.error input ~ label {
8278
- color: var(--danger) !important;
8279
- }
8280
8344
  .bs-select-wrap {
8281
8345
  position: relative;
8282
8346
  outline: 0;
@@ -8773,14 +8837,26 @@ span.table-property[data-v-96d890f0]:after {
8773
8837
  padding: 4px 2px;
8774
8838
  cursor: pointer;
8775
8839
  }
8776
- .bs-checkbox-group.modified input::before,
8777
- .bs-radio-button-group.modified input::before {
8840
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
8841
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
8842
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
8778
8843
  color: var(--purple) !important;
8779
8844
  }
8780
- .bs-checkbox-group.modified input ~ label,
8781
- .bs-radio-button-group.modified input ~ label {
8845
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
8846
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
8847
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
8782
8848
  color: var(--purple) !important;
8783
8849
  }
8850
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
8851
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
8852
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
8853
+ color: var(--danger) !important;
8854
+ }
8855
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
8856
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
8857
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
8858
+ color: var(--danger) !important;
8859
+ }
8784
8860
  .bs-checkbox-group.disabled input::before,
8785
8861
  .bs-radio-button-group.disabled input::before {
8786
8862
  color: var(--gray-400) !important;
@@ -8789,14 +8865,6 @@ span.table-property[data-v-96d890f0]:after {
8789
8865
  .bs-radio-button-group.disabled input ~ label {
8790
8866
  color: var(--gray-400) !important;
8791
8867
  }
8792
- .bs-checkbox-group.error input::before,
8793
- .bs-radio-button-group.error input::before {
8794
- color: var(--danger) !important;
8795
- }
8796
- .bs-checkbox-group.error input ~ label,
8797
- .bs-radio-button-group.error input ~ label {
8798
- color: var(--danger) !important;
8799
- }
8800
8868
  .bs-select-wrap {
8801
8869
  position: relative;
8802
8870
  outline: 0;
@@ -9572,14 +9640,26 @@ span.table-property[data-v-96d890f0]:after {
9572
9640
  padding: 4px 2px;
9573
9641
  cursor: pointer;
9574
9642
  }
9575
- .bs-checkbox-group.modified input::before,
9576
- .bs-radio-button-group.modified input::before {
9643
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
9644
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
9645
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
9577
9646
  color: var(--purple) !important;
9578
9647
  }
9579
- .bs-checkbox-group.modified input ~ label,
9580
- .bs-radio-button-group.modified input ~ label {
9648
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
9649
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
9650
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
9581
9651
  color: var(--purple) !important;
9582
9652
  }
9653
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
9654
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
9655
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
9656
+ color: var(--danger) !important;
9657
+ }
9658
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
9659
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
9660
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
9661
+ color: var(--danger) !important;
9662
+ }
9583
9663
  .bs-checkbox-group.disabled input::before,
9584
9664
  .bs-radio-button-group.disabled input::before {
9585
9665
  color: var(--gray-400) !important;
@@ -9588,14 +9668,6 @@ span.table-property[data-v-96d890f0]:after {
9588
9668
  .bs-radio-button-group.disabled input ~ label {
9589
9669
  color: var(--gray-400) !important;
9590
9670
  }
9591
- .bs-checkbox-group.error input::before,
9592
- .bs-radio-button-group.error input::before {
9593
- color: var(--danger) !important;
9594
- }
9595
- .bs-checkbox-group.error input ~ label,
9596
- .bs-radio-button-group.error input ~ label {
9597
- color: var(--danger) !important;
9598
- }
9599
9671
  .bs-select-wrap {
9600
9672
  position: relative;
9601
9673
  outline: 0;
@@ -10063,14 +10135,26 @@ span.table-property[data-v-96d890f0]:after {
10063
10135
  padding: 4px 2px;
10064
10136
  cursor: pointer;
10065
10137
  }
10066
- .bs-checkbox-group.modified input::before,
10067
- .bs-radio-button-group.modified input::before {
10138
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input::before,
10139
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input::before,
10140
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input::before {
10068
10141
  color: var(--purple) !important;
10069
10142
  }
10070
- .bs-checkbox-group.modified input ~ label,
10071
- .bs-radio-button-group.modified input ~ label {
10143
+ .bs-checkbox-group.modified .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.modified .bs-radio-button:not(.disabled) input ~ label,
10144
+ .bs-radio-button-group.modified .bs-checkbox:not(.disabled) input ~ label,
10145
+ .bs-radio-button-group.modified .bs-radio-button:not(.disabled) input ~ label {
10072
10146
  color: var(--purple) !important;
10073
10147
  }
10148
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input::before, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input::before,
10149
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input::before,
10150
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input::before {
10151
+ color: var(--danger) !important;
10152
+ }
10153
+ .bs-checkbox-group.error .bs-checkbox:not(.disabled) input ~ label, .bs-checkbox-group.error .bs-radio-button:not(.disabled) input ~ label,
10154
+ .bs-radio-button-group.error .bs-checkbox:not(.disabled) input ~ label,
10155
+ .bs-radio-button-group.error .bs-radio-button:not(.disabled) input ~ label {
10156
+ color: var(--danger) !important;
10157
+ }
10074
10158
  .bs-checkbox-group.disabled input::before,
10075
10159
  .bs-radio-button-group.disabled input::before {
10076
10160
  color: var(--gray-400) !important;
@@ -10079,14 +10163,6 @@ span.table-property[data-v-96d890f0]:after {
10079
10163
  .bs-radio-button-group.disabled input ~ label {
10080
10164
  color: var(--gray-400) !important;
10081
10165
  }
10082
- .bs-checkbox-group.error input::before,
10083
- .bs-radio-button-group.error input::before {
10084
- color: var(--danger) !important;
10085
- }
10086
- .bs-checkbox-group.error input ~ label,
10087
- .bs-radio-button-group.error input ~ label {
10088
- color: var(--danger) !important;
10089
- }
10090
10166
  .bs-select-wrap {
10091
10167
  position: relative;
10092
10168
  outline: 0;