@dynamic-framework/ui-react 1.11.0 → 1.12.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.
Files changed (45) hide show
  1. package/dist/css/dynamic-ui-non-root.css +784 -17
  2. package/dist/css/dynamic-ui-non-root.min.css +1 -1
  3. package/dist/css/dynamic-ui.css +784 -17
  4. package/dist/css/dynamic-ui.min.css +1 -1
  5. package/dist/index.esm.js +83 -159
  6. package/dist/index.esm.js.map +1 -1
  7. package/dist/index.js +92 -166
  8. package/dist/index.js.map +1 -1
  9. package/dist/types/components/DAlert/DAlert.d.ts +15 -0
  10. package/dist/types/components/DAlert/index.d.ts +2 -0
  11. package/dist/types/components/DButton/DButton.d.ts +2 -1
  12. package/dist/types/components/DInputMask/DInputMask.d.ts +16 -0
  13. package/dist/types/components/DInputMask/index.d.ts +2 -0
  14. package/dist/types/components/DModal/DModal.d.ts +2 -2
  15. package/dist/types/components/DToastContainer/useToast.d.ts +2 -2
  16. package/dist/types/components/DTooltip/DTooltip.d.ts +3 -2
  17. package/dist/types/components/config.d.ts +2 -2
  18. package/dist/types/components/index.d.ts +2 -2
  19. package/dist/types/components/interface.d.ts +3 -4
  20. package/dist/types/contexts/DModalContext.d.ts +31 -0
  21. package/dist/types/contexts/DOffcanvasContext.d.ts +31 -0
  22. package/dist/types/contexts/index.d.ts +2 -2
  23. package/dist/types/hooks/index.d.ts +2 -0
  24. package/dist/types/hooks/useDisableBodyScrollEffect.d.ts +1 -0
  25. package/dist/types/hooks/usePortal.d.ts +3 -0
  26. package/package.json +3 -2
  27. package/src/style/abstracts/_maps.scss +1 -1
  28. package/src/style/abstracts/_utilities.scss +2 -5
  29. package/src/style/abstracts/variables/_box-file.scss +1 -0
  30. package/src/style/abstracts/variables/_modals.scss +4 -0
  31. package/src/style/abstracts/variables/_offcanvas.scss +1 -0
  32. package/src/style/abstracts/variables/_typography.scss +1 -0
  33. package/src/style/components/_+import.scss +2 -1
  34. package/src/style/components/{_d-toast.scss → _d-alert.scss} +12 -11
  35. package/src/style/components/_d-box-file.scss +2 -0
  36. package/src/style/components/_d-button.scss +67 -3
  37. package/src/style/components/_d-modal.scss +16 -4
  38. package/src/style/components/_d-offcanvas.scss +4 -0
  39. package/src/style/components/_d-tooltip.scss +35 -0
  40. package/dist/types/components/DAlertBox/DAlertBox.d.ts +0 -9
  41. package/dist/types/components/DAlertBox/index.d.ts +0 -2
  42. package/dist/types/components/DToast/DToast.d.ts +0 -14
  43. package/dist/types/components/DToast/index.d.ts +0 -2
  44. package/dist/types/contexts/ModalContext.d.ts +0 -44
  45. package/dist/types/contexts/OffcanvasContext.d.ts +0 -44
@@ -39,7 +39,7 @@ hr {
39
39
  h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
40
40
  margin-top: 0;
41
41
  margin-bottom: 0;
42
- font-weight: 500;
42
+ font-weight: 700;
43
43
  line-height: 1.2;
44
44
  color: var(--bs-heading-color);
45
45
  }
@@ -7903,6 +7903,124 @@ label {
7903
7903
  --bs-btn-disabled-color: var(--bs-danger-600);
7904
7904
  }
7905
7905
 
7906
+ .btn-light {
7907
+ --bs-btn-color: #555564;
7908
+ --bs-btn-bg: #f7f7ff;
7909
+ --bs-btn-border-color: #f7f7ff;
7910
+ --bs-btn-hover-color: #555564;
7911
+ --bs-btn-hover-bg: #d2d2d9;
7912
+ --bs-btn-hover-border-color: #c6c6cc;
7913
+ --bs-btn-focus-shadow-rgb: 223, 223, 232;
7914
+ --bs-btn-active-color: #000;
7915
+ --bs-btn-active-bg: #c6c6cc;
7916
+ --bs-btn-active-border-color: #b9b9bf;
7917
+ --bs-btn-active-shadow: none;
7918
+ --bs-btn-disabled-color: #555564;
7919
+ --bs-btn-disabled-bg: #f7f7ff;
7920
+ --bs-btn-disabled-border-color: #f7f7ff;
7921
+ }
7922
+
7923
+ .btn-outline-light {
7924
+ --bs-btn-color: #f7f7ff;
7925
+ --bs-btn-border-color: #f7f7ff;
7926
+ --bs-btn-hover-color: #555564;
7927
+ --bs-btn-hover-bg: #f7f7ff;
7928
+ --bs-btn-hover-border-color: #f7f7ff;
7929
+ --bs-btn-focus-shadow-rgb: 247, 247, 255;
7930
+ --bs-btn-active-color: #555564;
7931
+ --bs-btn-active-bg: #f7f7ff;
7932
+ --bs-btn-active-border-color: #f7f7ff;
7933
+ --bs-btn-active-shadow: none;
7934
+ --bs-btn-disabled-color: #f7f7ff;
7935
+ --bs-btn-disabled-bg: transparent;
7936
+ --bs-btn-disabled-border-color: #f7f7ff;
7937
+ --bs-gradient: none;
7938
+ }
7939
+
7940
+ .btn-link-light {
7941
+ --bs-btn-bg: transparent;
7942
+ --bs-btn-border-color: transparent;
7943
+ --bs-btn-color: var(--bs-light-600);
7944
+ --bs-btn-hover-bg: var(--bs-light-100);
7945
+ --bs-btn-hover-border-color: transparent;
7946
+ --bs-btn-hover-color: var(--bs-light-600);
7947
+ --bs-btn-focus-bg: transparent;
7948
+ --bs-btn-focus-border-color: transparent;
7949
+ --bs-btn-focus-color: var(--bs-light-600);
7950
+ --bs-btn-active-bg: var(--bs-light-200);
7951
+ --bs-btn-active-border-color: transparent;
7952
+ --bs-btn-active-color: var(--bs-light-600);
7953
+ --bs-btn-disabled-bg: transparent;
7954
+ --bs-btn-disabled-border-color: transparent;
7955
+ --bs-btn-disabled-color: var(--bs-light-300);
7956
+ --bs-btn-focus-outline-offset: 0;
7957
+ }
7958
+ .btn-link-light.loading {
7959
+ --bs-btn-disabled-opacity: 1;
7960
+ --bs-btn-disabled-bg: transparent;
7961
+ --bs-btn-disabled-border-color: transparent;
7962
+ --bs-btn-disabled-color: var(--bs-light-600);
7963
+ }
7964
+
7965
+ .btn-dark {
7966
+ --bs-btn-color: #fff;
7967
+ --bs-btn-bg: #161723;
7968
+ --bs-btn-border-color: #161723;
7969
+ --bs-btn-hover-color: #fff;
7970
+ --bs-btn-hover-bg: #393a44;
7971
+ --bs-btn-hover-border-color: #2d2e39;
7972
+ --bs-btn-focus-shadow-rgb: 57, 58, 68;
7973
+ --bs-btn-active-color: #fff;
7974
+ --bs-btn-active-bg: #45454f;
7975
+ --bs-btn-active-border-color: #2d2e39;
7976
+ --bs-btn-active-shadow: none;
7977
+ --bs-btn-disabled-color: #fff;
7978
+ --bs-btn-disabled-bg: #161723;
7979
+ --bs-btn-disabled-border-color: #161723;
7980
+ }
7981
+
7982
+ .btn-outline-dark {
7983
+ --bs-btn-color: #161723;
7984
+ --bs-btn-border-color: #161723;
7985
+ --bs-btn-hover-color: #fff;
7986
+ --bs-btn-hover-bg: #161723;
7987
+ --bs-btn-hover-border-color: #161723;
7988
+ --bs-btn-focus-shadow-rgb: 22, 23, 35;
7989
+ --bs-btn-active-color: #fff;
7990
+ --bs-btn-active-bg: #161723;
7991
+ --bs-btn-active-border-color: #161723;
7992
+ --bs-btn-active-shadow: none;
7993
+ --bs-btn-disabled-color: #161723;
7994
+ --bs-btn-disabled-bg: transparent;
7995
+ --bs-btn-disabled-border-color: #161723;
7996
+ --bs-gradient: none;
7997
+ }
7998
+
7999
+ .btn-link-dark {
8000
+ --bs-btn-bg: transparent;
8001
+ --bs-btn-border-color: transparent;
8002
+ --bs-btn-color: var(--bs-dark-600);
8003
+ --bs-btn-hover-bg: var(--bs-dark-100);
8004
+ --bs-btn-hover-border-color: transparent;
8005
+ --bs-btn-hover-color: var(--bs-dark-600);
8006
+ --bs-btn-focus-bg: transparent;
8007
+ --bs-btn-focus-border-color: transparent;
8008
+ --bs-btn-focus-color: var(--bs-dark-600);
8009
+ --bs-btn-active-bg: var(--bs-dark-200);
8010
+ --bs-btn-active-border-color: transparent;
8011
+ --bs-btn-active-color: var(--bs-dark-600);
8012
+ --bs-btn-disabled-bg: transparent;
8013
+ --bs-btn-disabled-border-color: transparent;
8014
+ --bs-btn-disabled-color: var(--bs-dark-300);
8015
+ --bs-btn-focus-outline-offset: 0;
8016
+ }
8017
+ .btn-link-dark.loading {
8018
+ --bs-btn-disabled-opacity: 1;
8019
+ --bs-btn-disabled-bg: transparent;
8020
+ --bs-btn-disabled-border-color: transparent;
8021
+ --bs-btn-disabled-color: var(--bs-dark-600);
8022
+ }
8023
+
7906
8024
  .btn-lg, .btn-group-lg > .btn {
7907
8025
  --bs-btn-padding-y: var(--bs-btn-lg-padding-y);
7908
8026
  --bs-btn-padding-x: var(--bs-btn-lg-padding-x);
@@ -7921,6 +8039,31 @@ label {
7921
8039
  --bs-btn-text-decoration: var(--bs-link-decoration);
7922
8040
  }
7923
8041
 
8042
+ .btn-link {
8043
+ --bs-btn-font-weight: 400;
8044
+ --bs-btn-color: var(--bs-link-color);
8045
+ --bs-btn-bg: transparent;
8046
+ --bs-btn-border-color: transparent;
8047
+ --bs-btn-hover-color: var(--bs-link-hover-color);
8048
+ --bs-btn-hover-border-color: transparent;
8049
+ --bs-btn-active-color: var(--bs-link-hover-color);
8050
+ --bs-btn-active-border-color: transparent;
8051
+ --bs-btn-disabled-color: #616173;
8052
+ --bs-btn-disabled-border-color: transparent;
8053
+ --bs-btn-box-shadow: 0 0 0 #000;
8054
+ --bs-btn-focus-shadow-rgb: 222, 61, 120;
8055
+ text-decoration: underline;
8056
+ }
8057
+ .btn-link:hover, .btn-link:focus-visible {
8058
+ text-decoration: underline;
8059
+ }
8060
+ .btn-link:focus-visible {
8061
+ color: var(--bs-btn-color);
8062
+ }
8063
+ .btn-link:hover {
8064
+ color: var(--bs-btn-hover-color);
8065
+ }
8066
+
7924
8067
  .d-quick-action-button {
7925
8068
  --bs-quick-action-button-gap: var(--bs-ref-spacer-2);
7926
8069
  --bs-quick-action-button-padding: var(--bs-ref-spacer-3);
@@ -8191,7 +8334,7 @@ label {
8191
8334
  .alert {
8192
8335
  --bs-alert-gap: 1rem;
8193
8336
  --bs-alert-box-shadow: var(--bs-box-shadow-sm);
8194
- --bs-alert-icon-color: var(--bs-alert-component-icon-color, var(--bs-alert-color));
8337
+ --bs-alert-icon-color: var(--bs-alert-color);
8195
8338
  --bs-alert-separator-opacity: var(--bs-alert-component-separator-opacity);
8196
8339
  --bs-alert-close-icon-size: 0.75rem;
8197
8340
  display: flex;
@@ -8267,25 +8410,39 @@ label {
8267
8410
  --bs-alert-border-color: var(--bs-dark);
8268
8411
  --bs-alert-link-color: var(--bs-white);
8269
8412
  }
8270
- .alert.alert-box {
8413
+ .alert.alert-soft {
8271
8414
  --bs-alert-color: var(--bs-gray-900);
8272
8415
  border-width: 0 0 0 5px;
8273
8416
  }
8274
- .alert.alert-box.alert-box-secondary {
8275
- --bs-alert-icon-color: var(--bs-secondary);
8276
- --bs-alert-border-color: var(--bs-secondary);
8417
+ .alert.alert-soft.alert-primary {
8418
+ --bs-alert-icon-color: var(--bs-primary-500);
8419
+ --bs-alert-bg: var(--bs-primary-100);
8420
+ }
8421
+ .alert.alert-soft.alert-secondary {
8422
+ --bs-alert-icon-color: var(--bs-secondary-500);
8277
8423
  --bs-alert-bg: var(--bs-secondary-100);
8278
8424
  }
8279
- .alert.alert-box.alert-box-white {
8280
- --bs-alert-icon-color: var(--bs-secondary);
8281
- --bs-alert-border-color: var(--bs-secondary);
8282
- --bs-alert-bg: var(--bs-white);
8425
+ .alert.alert-soft.alert-success {
8426
+ --bs-alert-icon-color: var(--bs-success-500);
8427
+ --bs-alert-bg: var(--bs-success-100);
8283
8428
  }
8284
- .alert.alert-box.alert-box-info {
8285
- --bs-alert-icon-color: var(--bs-info);
8286
- --bs-alert-border-color: var(--bs-info);
8429
+ .alert.alert-soft.alert-info {
8430
+ --bs-alert-icon-color: var(--bs-info-500);
8287
8431
  --bs-alert-bg: var(--bs-info-100);
8288
8432
  }
8433
+ .alert.alert-soft.alert-warning {
8434
+ --bs-alert-icon-color: var(--bs-warning-500);
8435
+ --bs-alert-bg: var(--bs-warning-100);
8436
+ }
8437
+ .alert.alert-soft.alert-danger {
8438
+ --bs-alert-icon-color: var(--bs-danger-500);
8439
+ --bs-alert-bg: var(--bs-danger-100);
8440
+ }
8441
+ .alert.alert-soft.alert-light {
8442
+ --bs-alert-icon-color: var(--bs-secondary-500);
8443
+ --bs-alert-border-color: var(--bs-secondary-500);
8444
+ --bs-alert-bg: var(--bs-white);
8445
+ }
8289
8446
 
8290
8447
  .badge {
8291
8448
  --bs-badge-bg: var(--bs-white);
@@ -8401,6 +8558,7 @@ label {
8401
8558
  }
8402
8559
 
8403
8560
  .modal {
8561
+ --bs-modal-header-gap: 1.5rem;
8404
8562
  --bs-modal-body-padding: 0;
8405
8563
  --bs-modal-footer-padding: 1.5rem;
8406
8564
  --bs-modal-separator-margin-x: 1.5rem;
@@ -8408,13 +8566,17 @@ label {
8408
8566
  --bs-modal-separator-bg: var(--bs-gray-200);
8409
8567
  }
8410
8568
  .modal .modal-header {
8411
- flex-direction: column;
8412
- align-items: flex-start;
8569
+ flex-direction: row;
8570
+ gap: var(--bs-modal-header-gap);
8571
+ align-items: center;
8572
+ justify-content: space-between;
8573
+ }
8574
+ .modal .modal-header:has(.d-modal-close:only-child) {
8575
+ justify-content: flex-end;
8413
8576
  }
8414
8577
  .modal .d-modal-close {
8415
- align-self: flex-end;
8578
+ align-self: flex-start;
8416
8579
  padding: 0;
8417
- margin-bottom: 1rem;
8418
8580
  background: transparent;
8419
8581
  border: 0;
8420
8582
  }
@@ -8446,11 +8608,17 @@ label {
8446
8608
  justify-content: flex-end;
8447
8609
  }
8448
8610
 
8611
+ .d-portal .modal {
8612
+ display: block;
8613
+ }
8614
+
8449
8615
  .offcanvas {
8616
+ --bs-offcanvas-header-gap: 1.5rem;
8450
8617
  --bs-offcanvas-footer-gap: 1.5rem;
8451
8618
  }
8452
8619
  .offcanvas .offcanvas-header {
8453
8620
  flex-direction: row;
8621
+ gap: var(--bs-offcanvas-header-gap);
8454
8622
  align-items: center;
8455
8623
  justify-content: space-between;
8456
8624
  }
@@ -8466,6 +8634,7 @@ label {
8466
8634
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
8467
8635
  }
8468
8636
  .offcanvas .d-offcanvas-close {
8637
+ align-self: flex-start;
8469
8638
  padding: 0;
8470
8639
  background: transparent;
8471
8640
  border: 0;
@@ -9701,6 +9870,7 @@ label {
9701
9870
 
9702
9871
  .d-box-file {
9703
9872
  --bs-box-file-gap: var(--bs-ref-spacer-3);
9873
+ --bs-box-file-bg: unset;
9704
9874
  --bs-box-file-border: 1px dashed var(--bs-gray-700);
9705
9875
  --bs-box-file-border-radius: var(--bs-border-radius);
9706
9876
  --bs-box-file-padding: var(--bs-ref-spacer-5);
@@ -9716,6 +9886,7 @@ label {
9716
9886
  gap: var(--bs-box-file-gap);
9717
9887
  width: 100%;
9718
9888
  cursor: pointer;
9889
+ background: var(--bs-box-file-bg);
9719
9890
  border: var(--bs-box-file-border);
9720
9891
  border-radius: var(--bs-box-file-border-radius);
9721
9892
  }
@@ -10433,6 +10604,62 @@ label {
10433
10604
  gap: var(--bs-card-body-gap);
10434
10605
  }
10435
10606
 
10607
+ .d-tooltip {
10608
+ --bs-tooltip-font-size: var(--bs-tooltip-component-font-size, var(--bs-body-font-size));
10609
+ --bs-tooltip-sm-font-size: var(--bs-ref-fs-small);
10610
+ --bs-tooltip-lg-font-size: var(--bs-ref-fs-6);
10611
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, transparent);
10612
+ --bs-tooltip-border-radius: var(--bs-tooltip-component-border-radius, var(--bs-border-radius));
10613
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-body-color));
10614
+ --bs-tooltip-padding: var(--bs-tooltip-component-padding, var(--bs-ref-spacer-2));
10615
+ --bs-tooltip-max-width: var(--bs-tooltip-component-max-width, 300px);
10616
+ max-width: var(--bs-tooltip-max-width);
10617
+ padding: var(--bs-tooltip-padding);
10618
+ font-size: var(--bs-tooltip-font-size);
10619
+ color: var(--bs-tooltip-color);
10620
+ background: var(--bs-tooltip-bg);
10621
+ border-radius: var(--bs-tooltip-border-radius);
10622
+ fill: var(--bs-tooltip-bg);
10623
+ }
10624
+ .d-tooltip.d-tooltip-sm {
10625
+ --bs-tooltip-font-size: var(--bs-tooltip-sm-font-size);
10626
+ }
10627
+ .d-tooltip.d-tooltip-lg {
10628
+ --bs-tooltip-font-size: var(--bs-tooltip-lg-font-size);
10629
+ }
10630
+ .d-tooltip.d-tooltip-primary {
10631
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10632
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-primary));
10633
+ }
10634
+ .d-tooltip.d-tooltip-secondary {
10635
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10636
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-secondary));
10637
+ }
10638
+ .d-tooltip.d-tooltip-success {
10639
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10640
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-success));
10641
+ }
10642
+ .d-tooltip.d-tooltip-info {
10643
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10644
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-info));
10645
+ }
10646
+ .d-tooltip.d-tooltip-warning {
10647
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-black));
10648
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-warning));
10649
+ }
10650
+ .d-tooltip.d-tooltip-danger {
10651
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10652
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-danger));
10653
+ }
10654
+ .d-tooltip.d-tooltip-light {
10655
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-gray-700));
10656
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-light));
10657
+ }
10658
+ .d-tooltip.d-tooltip-dark {
10659
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10660
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-dark));
10661
+ }
10662
+
10436
10663
  .operation-group:not(:last-child) {
10437
10664
  border-bottom: 1px solid var(--bs-gray-300);
10438
10665
  }
@@ -12491,6 +12718,276 @@ label {
12491
12718
  color: inherit !important;
12492
12719
  }
12493
12720
 
12721
+ .text-primary-100 {
12722
+ --bs-text-opacity: 1;
12723
+ color: rgba(var(--bs-primary-100-rgb), var(--bs-text-opacity)) !important;
12724
+ }
12725
+
12726
+ .text-primary-200 {
12727
+ --bs-text-opacity: 1;
12728
+ color: rgba(var(--bs-primary-200-rgb), var(--bs-text-opacity)) !important;
12729
+ }
12730
+
12731
+ .text-primary-300 {
12732
+ --bs-text-opacity: 1;
12733
+ color: rgba(var(--bs-primary-300-rgb), var(--bs-text-opacity)) !important;
12734
+ }
12735
+
12736
+ .text-primary-400 {
12737
+ --bs-text-opacity: 1;
12738
+ color: rgba(var(--bs-primary-400-rgb), var(--bs-text-opacity)) !important;
12739
+ }
12740
+
12741
+ .text-primary-500 {
12742
+ --bs-text-opacity: 1;
12743
+ color: rgba(var(--bs-primary-500-rgb), var(--bs-text-opacity)) !important;
12744
+ }
12745
+
12746
+ .text-primary-600 {
12747
+ --bs-text-opacity: 1;
12748
+ color: rgba(var(--bs-primary-600-rgb), var(--bs-text-opacity)) !important;
12749
+ }
12750
+
12751
+ .text-primary-700 {
12752
+ --bs-text-opacity: 1;
12753
+ color: rgba(var(--bs-primary-700-rgb), var(--bs-text-opacity)) !important;
12754
+ }
12755
+
12756
+ .text-primary-800 {
12757
+ --bs-text-opacity: 1;
12758
+ color: rgba(var(--bs-primary-800-rgb), var(--bs-text-opacity)) !important;
12759
+ }
12760
+
12761
+ .text-primary-900 {
12762
+ --bs-text-opacity: 1;
12763
+ color: rgba(var(--bs-primary-900-rgb), var(--bs-text-opacity)) !important;
12764
+ }
12765
+
12766
+ .text-secondary-100 {
12767
+ --bs-text-opacity: 1;
12768
+ color: rgba(var(--bs-secondary-100-rgb), var(--bs-text-opacity)) !important;
12769
+ }
12770
+
12771
+ .text-secondary-200 {
12772
+ --bs-text-opacity: 1;
12773
+ color: rgba(var(--bs-secondary-200-rgb), var(--bs-text-opacity)) !important;
12774
+ }
12775
+
12776
+ .text-secondary-300 {
12777
+ --bs-text-opacity: 1;
12778
+ color: rgba(var(--bs-secondary-300-rgb), var(--bs-text-opacity)) !important;
12779
+ }
12780
+
12781
+ .text-secondary-400 {
12782
+ --bs-text-opacity: 1;
12783
+ color: rgba(var(--bs-secondary-400-rgb), var(--bs-text-opacity)) !important;
12784
+ }
12785
+
12786
+ .text-secondary-500 {
12787
+ --bs-text-opacity: 1;
12788
+ color: rgba(var(--bs-secondary-500-rgb), var(--bs-text-opacity)) !important;
12789
+ }
12790
+
12791
+ .text-secondary-600 {
12792
+ --bs-text-opacity: 1;
12793
+ color: rgba(var(--bs-secondary-600-rgb), var(--bs-text-opacity)) !important;
12794
+ }
12795
+
12796
+ .text-secondary-700 {
12797
+ --bs-text-opacity: 1;
12798
+ color: rgba(var(--bs-secondary-700-rgb), var(--bs-text-opacity)) !important;
12799
+ }
12800
+
12801
+ .text-secondary-800 {
12802
+ --bs-text-opacity: 1;
12803
+ color: rgba(var(--bs-secondary-800-rgb), var(--bs-text-opacity)) !important;
12804
+ }
12805
+
12806
+ .text-secondary-900 {
12807
+ --bs-text-opacity: 1;
12808
+ color: rgba(var(--bs-secondary-900-rgb), var(--bs-text-opacity)) !important;
12809
+ }
12810
+
12811
+ .text-success-100 {
12812
+ --bs-text-opacity: 1;
12813
+ color: rgba(var(--bs-success-100-rgb), var(--bs-text-opacity)) !important;
12814
+ }
12815
+
12816
+ .text-success-200 {
12817
+ --bs-text-opacity: 1;
12818
+ color: rgba(var(--bs-success-200-rgb), var(--bs-text-opacity)) !important;
12819
+ }
12820
+
12821
+ .text-success-300 {
12822
+ --bs-text-opacity: 1;
12823
+ color: rgba(var(--bs-success-300-rgb), var(--bs-text-opacity)) !important;
12824
+ }
12825
+
12826
+ .text-success-400 {
12827
+ --bs-text-opacity: 1;
12828
+ color: rgba(var(--bs-success-400-rgb), var(--bs-text-opacity)) !important;
12829
+ }
12830
+
12831
+ .text-success-500 {
12832
+ --bs-text-opacity: 1;
12833
+ color: rgba(var(--bs-success-500-rgb), var(--bs-text-opacity)) !important;
12834
+ }
12835
+
12836
+ .text-success-600 {
12837
+ --bs-text-opacity: 1;
12838
+ color: rgba(var(--bs-success-600-rgb), var(--bs-text-opacity)) !important;
12839
+ }
12840
+
12841
+ .text-success-700 {
12842
+ --bs-text-opacity: 1;
12843
+ color: rgba(var(--bs-success-700-rgb), var(--bs-text-opacity)) !important;
12844
+ }
12845
+
12846
+ .text-success-800 {
12847
+ --bs-text-opacity: 1;
12848
+ color: rgba(var(--bs-success-800-rgb), var(--bs-text-opacity)) !important;
12849
+ }
12850
+
12851
+ .text-success-900 {
12852
+ --bs-text-opacity: 1;
12853
+ color: rgba(var(--bs-success-900-rgb), var(--bs-text-opacity)) !important;
12854
+ }
12855
+
12856
+ .text-info-100 {
12857
+ --bs-text-opacity: 1;
12858
+ color: rgba(var(--bs-info-100-rgb), var(--bs-text-opacity)) !important;
12859
+ }
12860
+
12861
+ .text-info-200 {
12862
+ --bs-text-opacity: 1;
12863
+ color: rgba(var(--bs-info-200-rgb), var(--bs-text-opacity)) !important;
12864
+ }
12865
+
12866
+ .text-info-300 {
12867
+ --bs-text-opacity: 1;
12868
+ color: rgba(var(--bs-info-300-rgb), var(--bs-text-opacity)) !important;
12869
+ }
12870
+
12871
+ .text-info-400 {
12872
+ --bs-text-opacity: 1;
12873
+ color: rgba(var(--bs-info-400-rgb), var(--bs-text-opacity)) !important;
12874
+ }
12875
+
12876
+ .text-info-500 {
12877
+ --bs-text-opacity: 1;
12878
+ color: rgba(var(--bs-info-500-rgb), var(--bs-text-opacity)) !important;
12879
+ }
12880
+
12881
+ .text-info-600 {
12882
+ --bs-text-opacity: 1;
12883
+ color: rgba(var(--bs-info-600-rgb), var(--bs-text-opacity)) !important;
12884
+ }
12885
+
12886
+ .text-info-700 {
12887
+ --bs-text-opacity: 1;
12888
+ color: rgba(var(--bs-info-700-rgb), var(--bs-text-opacity)) !important;
12889
+ }
12890
+
12891
+ .text-info-800 {
12892
+ --bs-text-opacity: 1;
12893
+ color: rgba(var(--bs-info-800-rgb), var(--bs-text-opacity)) !important;
12894
+ }
12895
+
12896
+ .text-info-900 {
12897
+ --bs-text-opacity: 1;
12898
+ color: rgba(var(--bs-info-900-rgb), var(--bs-text-opacity)) !important;
12899
+ }
12900
+
12901
+ .text-warning-100 {
12902
+ --bs-text-opacity: 1;
12903
+ color: rgba(var(--bs-warning-100-rgb), var(--bs-text-opacity)) !important;
12904
+ }
12905
+
12906
+ .text-warning-200 {
12907
+ --bs-text-opacity: 1;
12908
+ color: rgba(var(--bs-warning-200-rgb), var(--bs-text-opacity)) !important;
12909
+ }
12910
+
12911
+ .text-warning-300 {
12912
+ --bs-text-opacity: 1;
12913
+ color: rgba(var(--bs-warning-300-rgb), var(--bs-text-opacity)) !important;
12914
+ }
12915
+
12916
+ .text-warning-400 {
12917
+ --bs-text-opacity: 1;
12918
+ color: rgba(var(--bs-warning-400-rgb), var(--bs-text-opacity)) !important;
12919
+ }
12920
+
12921
+ .text-warning-500 {
12922
+ --bs-text-opacity: 1;
12923
+ color: rgba(var(--bs-warning-500-rgb), var(--bs-text-opacity)) !important;
12924
+ }
12925
+
12926
+ .text-warning-600 {
12927
+ --bs-text-opacity: 1;
12928
+ color: rgba(var(--bs-warning-600-rgb), var(--bs-text-opacity)) !important;
12929
+ }
12930
+
12931
+ .text-warning-700 {
12932
+ --bs-text-opacity: 1;
12933
+ color: rgba(var(--bs-warning-700-rgb), var(--bs-text-opacity)) !important;
12934
+ }
12935
+
12936
+ .text-warning-800 {
12937
+ --bs-text-opacity: 1;
12938
+ color: rgba(var(--bs-warning-800-rgb), var(--bs-text-opacity)) !important;
12939
+ }
12940
+
12941
+ .text-warning-900 {
12942
+ --bs-text-opacity: 1;
12943
+ color: rgba(var(--bs-warning-900-rgb), var(--bs-text-opacity)) !important;
12944
+ }
12945
+
12946
+ .text-danger-100 {
12947
+ --bs-text-opacity: 1;
12948
+ color: rgba(var(--bs-danger-100-rgb), var(--bs-text-opacity)) !important;
12949
+ }
12950
+
12951
+ .text-danger-200 {
12952
+ --bs-text-opacity: 1;
12953
+ color: rgba(var(--bs-danger-200-rgb), var(--bs-text-opacity)) !important;
12954
+ }
12955
+
12956
+ .text-danger-300 {
12957
+ --bs-text-opacity: 1;
12958
+ color: rgba(var(--bs-danger-300-rgb), var(--bs-text-opacity)) !important;
12959
+ }
12960
+
12961
+ .text-danger-400 {
12962
+ --bs-text-opacity: 1;
12963
+ color: rgba(var(--bs-danger-400-rgb), var(--bs-text-opacity)) !important;
12964
+ }
12965
+
12966
+ .text-danger-500 {
12967
+ --bs-text-opacity: 1;
12968
+ color: rgba(var(--bs-danger-500-rgb), var(--bs-text-opacity)) !important;
12969
+ }
12970
+
12971
+ .text-danger-600 {
12972
+ --bs-text-opacity: 1;
12973
+ color: rgba(var(--bs-danger-600-rgb), var(--bs-text-opacity)) !important;
12974
+ }
12975
+
12976
+ .text-danger-700 {
12977
+ --bs-text-opacity: 1;
12978
+ color: rgba(var(--bs-danger-700-rgb), var(--bs-text-opacity)) !important;
12979
+ }
12980
+
12981
+ .text-danger-800 {
12982
+ --bs-text-opacity: 1;
12983
+ color: rgba(var(--bs-danger-800-rgb), var(--bs-text-opacity)) !important;
12984
+ }
12985
+
12986
+ .text-danger-900 {
12987
+ --bs-text-opacity: 1;
12988
+ color: rgba(var(--bs-danger-900-rgb), var(--bs-text-opacity)) !important;
12989
+ }
12990
+
12494
12991
  .text-gray-100 {
12495
12992
  --bs-text-opacity: 1;
12496
12993
  color: rgba(var(--bs-gray-100-rgb), var(--bs-text-opacity)) !important;
@@ -12824,6 +13321,276 @@ label {
12824
13321
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
12825
13322
  }
12826
13323
 
13324
+ .bg-primary-100 {
13325
+ --bs-bg-opacity: 1;
13326
+ background-color: rgba(var(--bs-primary-100-rgb), var(--bs-bg-opacity)) !important;
13327
+ }
13328
+
13329
+ .bg-primary-200 {
13330
+ --bs-bg-opacity: 1;
13331
+ background-color: rgba(var(--bs-primary-200-rgb), var(--bs-bg-opacity)) !important;
13332
+ }
13333
+
13334
+ .bg-primary-300 {
13335
+ --bs-bg-opacity: 1;
13336
+ background-color: rgba(var(--bs-primary-300-rgb), var(--bs-bg-opacity)) !important;
13337
+ }
13338
+
13339
+ .bg-primary-400 {
13340
+ --bs-bg-opacity: 1;
13341
+ background-color: rgba(var(--bs-primary-400-rgb), var(--bs-bg-opacity)) !important;
13342
+ }
13343
+
13344
+ .bg-primary-500 {
13345
+ --bs-bg-opacity: 1;
13346
+ background-color: rgba(var(--bs-primary-500-rgb), var(--bs-bg-opacity)) !important;
13347
+ }
13348
+
13349
+ .bg-primary-600 {
13350
+ --bs-bg-opacity: 1;
13351
+ background-color: rgba(var(--bs-primary-600-rgb), var(--bs-bg-opacity)) !important;
13352
+ }
13353
+
13354
+ .bg-primary-700 {
13355
+ --bs-bg-opacity: 1;
13356
+ background-color: rgba(var(--bs-primary-700-rgb), var(--bs-bg-opacity)) !important;
13357
+ }
13358
+
13359
+ .bg-primary-800 {
13360
+ --bs-bg-opacity: 1;
13361
+ background-color: rgba(var(--bs-primary-800-rgb), var(--bs-bg-opacity)) !important;
13362
+ }
13363
+
13364
+ .bg-primary-900 {
13365
+ --bs-bg-opacity: 1;
13366
+ background-color: rgba(var(--bs-primary-900-rgb), var(--bs-bg-opacity)) !important;
13367
+ }
13368
+
13369
+ .bg-secondary-100 {
13370
+ --bs-bg-opacity: 1;
13371
+ background-color: rgba(var(--bs-secondary-100-rgb), var(--bs-bg-opacity)) !important;
13372
+ }
13373
+
13374
+ .bg-secondary-200 {
13375
+ --bs-bg-opacity: 1;
13376
+ background-color: rgba(var(--bs-secondary-200-rgb), var(--bs-bg-opacity)) !important;
13377
+ }
13378
+
13379
+ .bg-secondary-300 {
13380
+ --bs-bg-opacity: 1;
13381
+ background-color: rgba(var(--bs-secondary-300-rgb), var(--bs-bg-opacity)) !important;
13382
+ }
13383
+
13384
+ .bg-secondary-400 {
13385
+ --bs-bg-opacity: 1;
13386
+ background-color: rgba(var(--bs-secondary-400-rgb), var(--bs-bg-opacity)) !important;
13387
+ }
13388
+
13389
+ .bg-secondary-500 {
13390
+ --bs-bg-opacity: 1;
13391
+ background-color: rgba(var(--bs-secondary-500-rgb), var(--bs-bg-opacity)) !important;
13392
+ }
13393
+
13394
+ .bg-secondary-600 {
13395
+ --bs-bg-opacity: 1;
13396
+ background-color: rgba(var(--bs-secondary-600-rgb), var(--bs-bg-opacity)) !important;
13397
+ }
13398
+
13399
+ .bg-secondary-700 {
13400
+ --bs-bg-opacity: 1;
13401
+ background-color: rgba(var(--bs-secondary-700-rgb), var(--bs-bg-opacity)) !important;
13402
+ }
13403
+
13404
+ .bg-secondary-800 {
13405
+ --bs-bg-opacity: 1;
13406
+ background-color: rgba(var(--bs-secondary-800-rgb), var(--bs-bg-opacity)) !important;
13407
+ }
13408
+
13409
+ .bg-secondary-900 {
13410
+ --bs-bg-opacity: 1;
13411
+ background-color: rgba(var(--bs-secondary-900-rgb), var(--bs-bg-opacity)) !important;
13412
+ }
13413
+
13414
+ .bg-success-100 {
13415
+ --bs-bg-opacity: 1;
13416
+ background-color: rgba(var(--bs-success-100-rgb), var(--bs-bg-opacity)) !important;
13417
+ }
13418
+
13419
+ .bg-success-200 {
13420
+ --bs-bg-opacity: 1;
13421
+ background-color: rgba(var(--bs-success-200-rgb), var(--bs-bg-opacity)) !important;
13422
+ }
13423
+
13424
+ .bg-success-300 {
13425
+ --bs-bg-opacity: 1;
13426
+ background-color: rgba(var(--bs-success-300-rgb), var(--bs-bg-opacity)) !important;
13427
+ }
13428
+
13429
+ .bg-success-400 {
13430
+ --bs-bg-opacity: 1;
13431
+ background-color: rgba(var(--bs-success-400-rgb), var(--bs-bg-opacity)) !important;
13432
+ }
13433
+
13434
+ .bg-success-500 {
13435
+ --bs-bg-opacity: 1;
13436
+ background-color: rgba(var(--bs-success-500-rgb), var(--bs-bg-opacity)) !important;
13437
+ }
13438
+
13439
+ .bg-success-600 {
13440
+ --bs-bg-opacity: 1;
13441
+ background-color: rgba(var(--bs-success-600-rgb), var(--bs-bg-opacity)) !important;
13442
+ }
13443
+
13444
+ .bg-success-700 {
13445
+ --bs-bg-opacity: 1;
13446
+ background-color: rgba(var(--bs-success-700-rgb), var(--bs-bg-opacity)) !important;
13447
+ }
13448
+
13449
+ .bg-success-800 {
13450
+ --bs-bg-opacity: 1;
13451
+ background-color: rgba(var(--bs-success-800-rgb), var(--bs-bg-opacity)) !important;
13452
+ }
13453
+
13454
+ .bg-success-900 {
13455
+ --bs-bg-opacity: 1;
13456
+ background-color: rgba(var(--bs-success-900-rgb), var(--bs-bg-opacity)) !important;
13457
+ }
13458
+
13459
+ .bg-info-100 {
13460
+ --bs-bg-opacity: 1;
13461
+ background-color: rgba(var(--bs-info-100-rgb), var(--bs-bg-opacity)) !important;
13462
+ }
13463
+
13464
+ .bg-info-200 {
13465
+ --bs-bg-opacity: 1;
13466
+ background-color: rgba(var(--bs-info-200-rgb), var(--bs-bg-opacity)) !important;
13467
+ }
13468
+
13469
+ .bg-info-300 {
13470
+ --bs-bg-opacity: 1;
13471
+ background-color: rgba(var(--bs-info-300-rgb), var(--bs-bg-opacity)) !important;
13472
+ }
13473
+
13474
+ .bg-info-400 {
13475
+ --bs-bg-opacity: 1;
13476
+ background-color: rgba(var(--bs-info-400-rgb), var(--bs-bg-opacity)) !important;
13477
+ }
13478
+
13479
+ .bg-info-500 {
13480
+ --bs-bg-opacity: 1;
13481
+ background-color: rgba(var(--bs-info-500-rgb), var(--bs-bg-opacity)) !important;
13482
+ }
13483
+
13484
+ .bg-info-600 {
13485
+ --bs-bg-opacity: 1;
13486
+ background-color: rgba(var(--bs-info-600-rgb), var(--bs-bg-opacity)) !important;
13487
+ }
13488
+
13489
+ .bg-info-700 {
13490
+ --bs-bg-opacity: 1;
13491
+ background-color: rgba(var(--bs-info-700-rgb), var(--bs-bg-opacity)) !important;
13492
+ }
13493
+
13494
+ .bg-info-800 {
13495
+ --bs-bg-opacity: 1;
13496
+ background-color: rgba(var(--bs-info-800-rgb), var(--bs-bg-opacity)) !important;
13497
+ }
13498
+
13499
+ .bg-info-900 {
13500
+ --bs-bg-opacity: 1;
13501
+ background-color: rgba(var(--bs-info-900-rgb), var(--bs-bg-opacity)) !important;
13502
+ }
13503
+
13504
+ .bg-warning-100 {
13505
+ --bs-bg-opacity: 1;
13506
+ background-color: rgba(var(--bs-warning-100-rgb), var(--bs-bg-opacity)) !important;
13507
+ }
13508
+
13509
+ .bg-warning-200 {
13510
+ --bs-bg-opacity: 1;
13511
+ background-color: rgba(var(--bs-warning-200-rgb), var(--bs-bg-opacity)) !important;
13512
+ }
13513
+
13514
+ .bg-warning-300 {
13515
+ --bs-bg-opacity: 1;
13516
+ background-color: rgba(var(--bs-warning-300-rgb), var(--bs-bg-opacity)) !important;
13517
+ }
13518
+
13519
+ .bg-warning-400 {
13520
+ --bs-bg-opacity: 1;
13521
+ background-color: rgba(var(--bs-warning-400-rgb), var(--bs-bg-opacity)) !important;
13522
+ }
13523
+
13524
+ .bg-warning-500 {
13525
+ --bs-bg-opacity: 1;
13526
+ background-color: rgba(var(--bs-warning-500-rgb), var(--bs-bg-opacity)) !important;
13527
+ }
13528
+
13529
+ .bg-warning-600 {
13530
+ --bs-bg-opacity: 1;
13531
+ background-color: rgba(var(--bs-warning-600-rgb), var(--bs-bg-opacity)) !important;
13532
+ }
13533
+
13534
+ .bg-warning-700 {
13535
+ --bs-bg-opacity: 1;
13536
+ background-color: rgba(var(--bs-warning-700-rgb), var(--bs-bg-opacity)) !important;
13537
+ }
13538
+
13539
+ .bg-warning-800 {
13540
+ --bs-bg-opacity: 1;
13541
+ background-color: rgba(var(--bs-warning-800-rgb), var(--bs-bg-opacity)) !important;
13542
+ }
13543
+
13544
+ .bg-warning-900 {
13545
+ --bs-bg-opacity: 1;
13546
+ background-color: rgba(var(--bs-warning-900-rgb), var(--bs-bg-opacity)) !important;
13547
+ }
13548
+
13549
+ .bg-danger-100 {
13550
+ --bs-bg-opacity: 1;
13551
+ background-color: rgba(var(--bs-danger-100-rgb), var(--bs-bg-opacity)) !important;
13552
+ }
13553
+
13554
+ .bg-danger-200 {
13555
+ --bs-bg-opacity: 1;
13556
+ background-color: rgba(var(--bs-danger-200-rgb), var(--bs-bg-opacity)) !important;
13557
+ }
13558
+
13559
+ .bg-danger-300 {
13560
+ --bs-bg-opacity: 1;
13561
+ background-color: rgba(var(--bs-danger-300-rgb), var(--bs-bg-opacity)) !important;
13562
+ }
13563
+
13564
+ .bg-danger-400 {
13565
+ --bs-bg-opacity: 1;
13566
+ background-color: rgba(var(--bs-danger-400-rgb), var(--bs-bg-opacity)) !important;
13567
+ }
13568
+
13569
+ .bg-danger-500 {
13570
+ --bs-bg-opacity: 1;
13571
+ background-color: rgba(var(--bs-danger-500-rgb), var(--bs-bg-opacity)) !important;
13572
+ }
13573
+
13574
+ .bg-danger-600 {
13575
+ --bs-bg-opacity: 1;
13576
+ background-color: rgba(var(--bs-danger-600-rgb), var(--bs-bg-opacity)) !important;
13577
+ }
13578
+
13579
+ .bg-danger-700 {
13580
+ --bs-bg-opacity: 1;
13581
+ background-color: rgba(var(--bs-danger-700-rgb), var(--bs-bg-opacity)) !important;
13582
+ }
13583
+
13584
+ .bg-danger-800 {
13585
+ --bs-bg-opacity: 1;
13586
+ background-color: rgba(var(--bs-danger-800-rgb), var(--bs-bg-opacity)) !important;
13587
+ }
13588
+
13589
+ .bg-danger-900 {
13590
+ --bs-bg-opacity: 1;
13591
+ background-color: rgba(var(--bs-danger-900-rgb), var(--bs-bg-opacity)) !important;
13592
+ }
13593
+
12827
13594
  .bg-gray-100 {
12828
13595
  --bs-bg-opacity: 1;
12829
13596
  background-color: rgba(var(--bs-gray-100-rgb), var(--bs-bg-opacity)) !important;