@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
@@ -330,7 +330,7 @@ hr {
330
330
  h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
331
331
  margin-top: 0;
332
332
  margin-bottom: 0;
333
- font-weight: 500;
333
+ font-weight: 700;
334
334
  line-height: 1.2;
335
335
  color: var(--bs-heading-color);
336
336
  }
@@ -8194,6 +8194,124 @@ label {
8194
8194
  --bs-btn-disabled-color: var(--bs-danger-600);
8195
8195
  }
8196
8196
 
8197
+ .btn-light {
8198
+ --bs-btn-color: #555564;
8199
+ --bs-btn-bg: #f7f7ff;
8200
+ --bs-btn-border-color: #f7f7ff;
8201
+ --bs-btn-hover-color: #555564;
8202
+ --bs-btn-hover-bg: #d2d2d9;
8203
+ --bs-btn-hover-border-color: #c6c6cc;
8204
+ --bs-btn-focus-shadow-rgb: 223, 223, 232;
8205
+ --bs-btn-active-color: #000;
8206
+ --bs-btn-active-bg: #c6c6cc;
8207
+ --bs-btn-active-border-color: #b9b9bf;
8208
+ --bs-btn-active-shadow: none;
8209
+ --bs-btn-disabled-color: #555564;
8210
+ --bs-btn-disabled-bg: #f7f7ff;
8211
+ --bs-btn-disabled-border-color: #f7f7ff;
8212
+ }
8213
+
8214
+ .btn-outline-light {
8215
+ --bs-btn-color: #f7f7ff;
8216
+ --bs-btn-border-color: #f7f7ff;
8217
+ --bs-btn-hover-color: #555564;
8218
+ --bs-btn-hover-bg: #f7f7ff;
8219
+ --bs-btn-hover-border-color: #f7f7ff;
8220
+ --bs-btn-focus-shadow-rgb: 247, 247, 255;
8221
+ --bs-btn-active-color: #555564;
8222
+ --bs-btn-active-bg: #f7f7ff;
8223
+ --bs-btn-active-border-color: #f7f7ff;
8224
+ --bs-btn-active-shadow: none;
8225
+ --bs-btn-disabled-color: #f7f7ff;
8226
+ --bs-btn-disabled-bg: transparent;
8227
+ --bs-btn-disabled-border-color: #f7f7ff;
8228
+ --bs-gradient: none;
8229
+ }
8230
+
8231
+ .btn-link-light {
8232
+ --bs-btn-bg: transparent;
8233
+ --bs-btn-border-color: transparent;
8234
+ --bs-btn-color: var(--bs-light-600);
8235
+ --bs-btn-hover-bg: var(--bs-light-100);
8236
+ --bs-btn-hover-border-color: transparent;
8237
+ --bs-btn-hover-color: var(--bs-light-600);
8238
+ --bs-btn-focus-bg: transparent;
8239
+ --bs-btn-focus-border-color: transparent;
8240
+ --bs-btn-focus-color: var(--bs-light-600);
8241
+ --bs-btn-active-bg: var(--bs-light-200);
8242
+ --bs-btn-active-border-color: transparent;
8243
+ --bs-btn-active-color: var(--bs-light-600);
8244
+ --bs-btn-disabled-bg: transparent;
8245
+ --bs-btn-disabled-border-color: transparent;
8246
+ --bs-btn-disabled-color: var(--bs-light-300);
8247
+ --bs-btn-focus-outline-offset: 0;
8248
+ }
8249
+ .btn-link-light.loading {
8250
+ --bs-btn-disabled-opacity: 1;
8251
+ --bs-btn-disabled-bg: transparent;
8252
+ --bs-btn-disabled-border-color: transparent;
8253
+ --bs-btn-disabled-color: var(--bs-light-600);
8254
+ }
8255
+
8256
+ .btn-dark {
8257
+ --bs-btn-color: #fff;
8258
+ --bs-btn-bg: #161723;
8259
+ --bs-btn-border-color: #161723;
8260
+ --bs-btn-hover-color: #fff;
8261
+ --bs-btn-hover-bg: #393a44;
8262
+ --bs-btn-hover-border-color: #2d2e39;
8263
+ --bs-btn-focus-shadow-rgb: 57, 58, 68;
8264
+ --bs-btn-active-color: #fff;
8265
+ --bs-btn-active-bg: #45454f;
8266
+ --bs-btn-active-border-color: #2d2e39;
8267
+ --bs-btn-active-shadow: none;
8268
+ --bs-btn-disabled-color: #fff;
8269
+ --bs-btn-disabled-bg: #161723;
8270
+ --bs-btn-disabled-border-color: #161723;
8271
+ }
8272
+
8273
+ .btn-outline-dark {
8274
+ --bs-btn-color: #161723;
8275
+ --bs-btn-border-color: #161723;
8276
+ --bs-btn-hover-color: #fff;
8277
+ --bs-btn-hover-bg: #161723;
8278
+ --bs-btn-hover-border-color: #161723;
8279
+ --bs-btn-focus-shadow-rgb: 22, 23, 35;
8280
+ --bs-btn-active-color: #fff;
8281
+ --bs-btn-active-bg: #161723;
8282
+ --bs-btn-active-border-color: #161723;
8283
+ --bs-btn-active-shadow: none;
8284
+ --bs-btn-disabled-color: #161723;
8285
+ --bs-btn-disabled-bg: transparent;
8286
+ --bs-btn-disabled-border-color: #161723;
8287
+ --bs-gradient: none;
8288
+ }
8289
+
8290
+ .btn-link-dark {
8291
+ --bs-btn-bg: transparent;
8292
+ --bs-btn-border-color: transparent;
8293
+ --bs-btn-color: var(--bs-dark-600);
8294
+ --bs-btn-hover-bg: var(--bs-dark-100);
8295
+ --bs-btn-hover-border-color: transparent;
8296
+ --bs-btn-hover-color: var(--bs-dark-600);
8297
+ --bs-btn-focus-bg: transparent;
8298
+ --bs-btn-focus-border-color: transparent;
8299
+ --bs-btn-focus-color: var(--bs-dark-600);
8300
+ --bs-btn-active-bg: var(--bs-dark-200);
8301
+ --bs-btn-active-border-color: transparent;
8302
+ --bs-btn-active-color: var(--bs-dark-600);
8303
+ --bs-btn-disabled-bg: transparent;
8304
+ --bs-btn-disabled-border-color: transparent;
8305
+ --bs-btn-disabled-color: var(--bs-dark-300);
8306
+ --bs-btn-focus-outline-offset: 0;
8307
+ }
8308
+ .btn-link-dark.loading {
8309
+ --bs-btn-disabled-opacity: 1;
8310
+ --bs-btn-disabled-bg: transparent;
8311
+ --bs-btn-disabled-border-color: transparent;
8312
+ --bs-btn-disabled-color: var(--bs-dark-600);
8313
+ }
8314
+
8197
8315
  .btn-lg, .btn-group-lg > .btn {
8198
8316
  --bs-btn-padding-y: var(--bs-btn-lg-padding-y);
8199
8317
  --bs-btn-padding-x: var(--bs-btn-lg-padding-x);
@@ -8212,6 +8330,31 @@ label {
8212
8330
  --bs-btn-text-decoration: var(--bs-link-decoration);
8213
8331
  }
8214
8332
 
8333
+ .btn-link {
8334
+ --bs-btn-font-weight: 400;
8335
+ --bs-btn-color: var(--bs-link-color);
8336
+ --bs-btn-bg: transparent;
8337
+ --bs-btn-border-color: transparent;
8338
+ --bs-btn-hover-color: var(--bs-link-hover-color);
8339
+ --bs-btn-hover-border-color: transparent;
8340
+ --bs-btn-active-color: var(--bs-link-hover-color);
8341
+ --bs-btn-active-border-color: transparent;
8342
+ --bs-btn-disabled-color: #616173;
8343
+ --bs-btn-disabled-border-color: transparent;
8344
+ --bs-btn-box-shadow: 0 0 0 #000;
8345
+ --bs-btn-focus-shadow-rgb: 222, 61, 120;
8346
+ text-decoration: underline;
8347
+ }
8348
+ .btn-link:hover, .btn-link:focus-visible {
8349
+ text-decoration: underline;
8350
+ }
8351
+ .btn-link:focus-visible {
8352
+ color: var(--bs-btn-color);
8353
+ }
8354
+ .btn-link:hover {
8355
+ color: var(--bs-btn-hover-color);
8356
+ }
8357
+
8215
8358
  .d-quick-action-button {
8216
8359
  --bs-quick-action-button-gap: var(--bs-ref-spacer-2);
8217
8360
  --bs-quick-action-button-padding: var(--bs-ref-spacer-3);
@@ -8482,7 +8625,7 @@ label {
8482
8625
  .alert {
8483
8626
  --bs-alert-gap: 1rem;
8484
8627
  --bs-alert-box-shadow: var(--bs-box-shadow-sm);
8485
- --bs-alert-icon-color: var(--bs-alert-component-icon-color, var(--bs-alert-color));
8628
+ --bs-alert-icon-color: var(--bs-alert-color);
8486
8629
  --bs-alert-separator-opacity: var(--bs-alert-component-separator-opacity);
8487
8630
  --bs-alert-close-icon-size: 0.75rem;
8488
8631
  display: flex;
@@ -8558,25 +8701,39 @@ label {
8558
8701
  --bs-alert-border-color: var(--bs-dark);
8559
8702
  --bs-alert-link-color: var(--bs-white);
8560
8703
  }
8561
- .alert.alert-box {
8704
+ .alert.alert-soft {
8562
8705
  --bs-alert-color: var(--bs-gray-900);
8563
8706
  border-width: 0 0 0 5px;
8564
8707
  }
8565
- .alert.alert-box.alert-box-secondary {
8566
- --bs-alert-icon-color: var(--bs-secondary);
8567
- --bs-alert-border-color: var(--bs-secondary);
8708
+ .alert.alert-soft.alert-primary {
8709
+ --bs-alert-icon-color: var(--bs-primary-500);
8710
+ --bs-alert-bg: var(--bs-primary-100);
8711
+ }
8712
+ .alert.alert-soft.alert-secondary {
8713
+ --bs-alert-icon-color: var(--bs-secondary-500);
8568
8714
  --bs-alert-bg: var(--bs-secondary-100);
8569
8715
  }
8570
- .alert.alert-box.alert-box-white {
8571
- --bs-alert-icon-color: var(--bs-secondary);
8572
- --bs-alert-border-color: var(--bs-secondary);
8573
- --bs-alert-bg: var(--bs-white);
8716
+ .alert.alert-soft.alert-success {
8717
+ --bs-alert-icon-color: var(--bs-success-500);
8718
+ --bs-alert-bg: var(--bs-success-100);
8574
8719
  }
8575
- .alert.alert-box.alert-box-info {
8576
- --bs-alert-icon-color: var(--bs-info);
8577
- --bs-alert-border-color: var(--bs-info);
8720
+ .alert.alert-soft.alert-info {
8721
+ --bs-alert-icon-color: var(--bs-info-500);
8578
8722
  --bs-alert-bg: var(--bs-info-100);
8579
8723
  }
8724
+ .alert.alert-soft.alert-warning {
8725
+ --bs-alert-icon-color: var(--bs-warning-500);
8726
+ --bs-alert-bg: var(--bs-warning-100);
8727
+ }
8728
+ .alert.alert-soft.alert-danger {
8729
+ --bs-alert-icon-color: var(--bs-danger-500);
8730
+ --bs-alert-bg: var(--bs-danger-100);
8731
+ }
8732
+ .alert.alert-soft.alert-light {
8733
+ --bs-alert-icon-color: var(--bs-secondary-500);
8734
+ --bs-alert-border-color: var(--bs-secondary-500);
8735
+ --bs-alert-bg: var(--bs-white);
8736
+ }
8580
8737
 
8581
8738
  .badge {
8582
8739
  --bs-badge-bg: var(--bs-white);
@@ -8692,6 +8849,7 @@ label {
8692
8849
  }
8693
8850
 
8694
8851
  .modal {
8852
+ --bs-modal-header-gap: 1.5rem;
8695
8853
  --bs-modal-body-padding: 0;
8696
8854
  --bs-modal-footer-padding: 1.5rem;
8697
8855
  --bs-modal-separator-margin-x: 1.5rem;
@@ -8699,13 +8857,17 @@ label {
8699
8857
  --bs-modal-separator-bg: var(--bs-gray-200);
8700
8858
  }
8701
8859
  .modal .modal-header {
8702
- flex-direction: column;
8703
- align-items: flex-start;
8860
+ flex-direction: row;
8861
+ gap: var(--bs-modal-header-gap);
8862
+ align-items: center;
8863
+ justify-content: space-between;
8864
+ }
8865
+ .modal .modal-header:has(.d-modal-close:only-child) {
8866
+ justify-content: flex-end;
8704
8867
  }
8705
8868
  .modal .d-modal-close {
8706
- align-self: flex-end;
8869
+ align-self: flex-start;
8707
8870
  padding: 0;
8708
- margin-bottom: 1rem;
8709
8871
  background: transparent;
8710
8872
  border: 0;
8711
8873
  }
@@ -8737,11 +8899,17 @@ label {
8737
8899
  justify-content: flex-end;
8738
8900
  }
8739
8901
 
8902
+ .d-portal .modal {
8903
+ display: block;
8904
+ }
8905
+
8740
8906
  .offcanvas {
8907
+ --bs-offcanvas-header-gap: 1.5rem;
8741
8908
  --bs-offcanvas-footer-gap: 1.5rem;
8742
8909
  }
8743
8910
  .offcanvas .offcanvas-header {
8744
8911
  flex-direction: row;
8912
+ gap: var(--bs-offcanvas-header-gap);
8745
8913
  align-items: center;
8746
8914
  justify-content: space-between;
8747
8915
  }
@@ -8757,6 +8925,7 @@ label {
8757
8925
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
8758
8926
  }
8759
8927
  .offcanvas .d-offcanvas-close {
8928
+ align-self: flex-start;
8760
8929
  padding: 0;
8761
8930
  background: transparent;
8762
8931
  border: 0;
@@ -9992,6 +10161,7 @@ label {
9992
10161
 
9993
10162
  .d-box-file {
9994
10163
  --bs-box-file-gap: var(--bs-ref-spacer-3);
10164
+ --bs-box-file-bg: unset;
9995
10165
  --bs-box-file-border: 1px dashed var(--bs-gray-700);
9996
10166
  --bs-box-file-border-radius: var(--bs-border-radius);
9997
10167
  --bs-box-file-padding: var(--bs-ref-spacer-5);
@@ -10007,6 +10177,7 @@ label {
10007
10177
  gap: var(--bs-box-file-gap);
10008
10178
  width: 100%;
10009
10179
  cursor: pointer;
10180
+ background: var(--bs-box-file-bg);
10010
10181
  border: var(--bs-box-file-border);
10011
10182
  border-radius: var(--bs-box-file-border-radius);
10012
10183
  }
@@ -10724,6 +10895,62 @@ label {
10724
10895
  gap: var(--bs-card-body-gap);
10725
10896
  }
10726
10897
 
10898
+ .d-tooltip {
10899
+ --bs-tooltip-font-size: var(--bs-tooltip-component-font-size, var(--bs-body-font-size));
10900
+ --bs-tooltip-sm-font-size: var(--bs-ref-fs-small);
10901
+ --bs-tooltip-lg-font-size: var(--bs-ref-fs-6);
10902
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, transparent);
10903
+ --bs-tooltip-border-radius: var(--bs-tooltip-component-border-radius, var(--bs-border-radius));
10904
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-body-color));
10905
+ --bs-tooltip-padding: var(--bs-tooltip-component-padding, var(--bs-ref-spacer-2));
10906
+ --bs-tooltip-max-width: var(--bs-tooltip-component-max-width, 300px);
10907
+ max-width: var(--bs-tooltip-max-width);
10908
+ padding: var(--bs-tooltip-padding);
10909
+ font-size: var(--bs-tooltip-font-size);
10910
+ color: var(--bs-tooltip-color);
10911
+ background: var(--bs-tooltip-bg);
10912
+ border-radius: var(--bs-tooltip-border-radius);
10913
+ fill: var(--bs-tooltip-bg);
10914
+ }
10915
+ .d-tooltip.d-tooltip-sm {
10916
+ --bs-tooltip-font-size: var(--bs-tooltip-sm-font-size);
10917
+ }
10918
+ .d-tooltip.d-tooltip-lg {
10919
+ --bs-tooltip-font-size: var(--bs-tooltip-lg-font-size);
10920
+ }
10921
+ .d-tooltip.d-tooltip-primary {
10922
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10923
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-primary));
10924
+ }
10925
+ .d-tooltip.d-tooltip-secondary {
10926
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10927
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-secondary));
10928
+ }
10929
+ .d-tooltip.d-tooltip-success {
10930
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10931
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-success));
10932
+ }
10933
+ .d-tooltip.d-tooltip-info {
10934
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10935
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-info));
10936
+ }
10937
+ .d-tooltip.d-tooltip-warning {
10938
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-black));
10939
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-warning));
10940
+ }
10941
+ .d-tooltip.d-tooltip-danger {
10942
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10943
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-danger));
10944
+ }
10945
+ .d-tooltip.d-tooltip-light {
10946
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-gray-700));
10947
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-light));
10948
+ }
10949
+ .d-tooltip.d-tooltip-dark {
10950
+ --bs-tooltip-color: var(--bs-tooltip-component-color, var(--bs-white));
10951
+ --bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-dark));
10952
+ }
10953
+
10727
10954
  .operation-group:not(:last-child) {
10728
10955
  border-bottom: 1px solid var(--bs-gray-300);
10729
10956
  }
@@ -12782,6 +13009,276 @@ label {
12782
13009
  color: inherit !important;
12783
13010
  }
12784
13011
 
13012
+ .text-primary-100 {
13013
+ --bs-text-opacity: 1;
13014
+ color: rgba(var(--bs-primary-100-rgb), var(--bs-text-opacity)) !important;
13015
+ }
13016
+
13017
+ .text-primary-200 {
13018
+ --bs-text-opacity: 1;
13019
+ color: rgba(var(--bs-primary-200-rgb), var(--bs-text-opacity)) !important;
13020
+ }
13021
+
13022
+ .text-primary-300 {
13023
+ --bs-text-opacity: 1;
13024
+ color: rgba(var(--bs-primary-300-rgb), var(--bs-text-opacity)) !important;
13025
+ }
13026
+
13027
+ .text-primary-400 {
13028
+ --bs-text-opacity: 1;
13029
+ color: rgba(var(--bs-primary-400-rgb), var(--bs-text-opacity)) !important;
13030
+ }
13031
+
13032
+ .text-primary-500 {
13033
+ --bs-text-opacity: 1;
13034
+ color: rgba(var(--bs-primary-500-rgb), var(--bs-text-opacity)) !important;
13035
+ }
13036
+
13037
+ .text-primary-600 {
13038
+ --bs-text-opacity: 1;
13039
+ color: rgba(var(--bs-primary-600-rgb), var(--bs-text-opacity)) !important;
13040
+ }
13041
+
13042
+ .text-primary-700 {
13043
+ --bs-text-opacity: 1;
13044
+ color: rgba(var(--bs-primary-700-rgb), var(--bs-text-opacity)) !important;
13045
+ }
13046
+
13047
+ .text-primary-800 {
13048
+ --bs-text-opacity: 1;
13049
+ color: rgba(var(--bs-primary-800-rgb), var(--bs-text-opacity)) !important;
13050
+ }
13051
+
13052
+ .text-primary-900 {
13053
+ --bs-text-opacity: 1;
13054
+ color: rgba(var(--bs-primary-900-rgb), var(--bs-text-opacity)) !important;
13055
+ }
13056
+
13057
+ .text-secondary-100 {
13058
+ --bs-text-opacity: 1;
13059
+ color: rgba(var(--bs-secondary-100-rgb), var(--bs-text-opacity)) !important;
13060
+ }
13061
+
13062
+ .text-secondary-200 {
13063
+ --bs-text-opacity: 1;
13064
+ color: rgba(var(--bs-secondary-200-rgb), var(--bs-text-opacity)) !important;
13065
+ }
13066
+
13067
+ .text-secondary-300 {
13068
+ --bs-text-opacity: 1;
13069
+ color: rgba(var(--bs-secondary-300-rgb), var(--bs-text-opacity)) !important;
13070
+ }
13071
+
13072
+ .text-secondary-400 {
13073
+ --bs-text-opacity: 1;
13074
+ color: rgba(var(--bs-secondary-400-rgb), var(--bs-text-opacity)) !important;
13075
+ }
13076
+
13077
+ .text-secondary-500 {
13078
+ --bs-text-opacity: 1;
13079
+ color: rgba(var(--bs-secondary-500-rgb), var(--bs-text-opacity)) !important;
13080
+ }
13081
+
13082
+ .text-secondary-600 {
13083
+ --bs-text-opacity: 1;
13084
+ color: rgba(var(--bs-secondary-600-rgb), var(--bs-text-opacity)) !important;
13085
+ }
13086
+
13087
+ .text-secondary-700 {
13088
+ --bs-text-opacity: 1;
13089
+ color: rgba(var(--bs-secondary-700-rgb), var(--bs-text-opacity)) !important;
13090
+ }
13091
+
13092
+ .text-secondary-800 {
13093
+ --bs-text-opacity: 1;
13094
+ color: rgba(var(--bs-secondary-800-rgb), var(--bs-text-opacity)) !important;
13095
+ }
13096
+
13097
+ .text-secondary-900 {
13098
+ --bs-text-opacity: 1;
13099
+ color: rgba(var(--bs-secondary-900-rgb), var(--bs-text-opacity)) !important;
13100
+ }
13101
+
13102
+ .text-success-100 {
13103
+ --bs-text-opacity: 1;
13104
+ color: rgba(var(--bs-success-100-rgb), var(--bs-text-opacity)) !important;
13105
+ }
13106
+
13107
+ .text-success-200 {
13108
+ --bs-text-opacity: 1;
13109
+ color: rgba(var(--bs-success-200-rgb), var(--bs-text-opacity)) !important;
13110
+ }
13111
+
13112
+ .text-success-300 {
13113
+ --bs-text-opacity: 1;
13114
+ color: rgba(var(--bs-success-300-rgb), var(--bs-text-opacity)) !important;
13115
+ }
13116
+
13117
+ .text-success-400 {
13118
+ --bs-text-opacity: 1;
13119
+ color: rgba(var(--bs-success-400-rgb), var(--bs-text-opacity)) !important;
13120
+ }
13121
+
13122
+ .text-success-500 {
13123
+ --bs-text-opacity: 1;
13124
+ color: rgba(var(--bs-success-500-rgb), var(--bs-text-opacity)) !important;
13125
+ }
13126
+
13127
+ .text-success-600 {
13128
+ --bs-text-opacity: 1;
13129
+ color: rgba(var(--bs-success-600-rgb), var(--bs-text-opacity)) !important;
13130
+ }
13131
+
13132
+ .text-success-700 {
13133
+ --bs-text-opacity: 1;
13134
+ color: rgba(var(--bs-success-700-rgb), var(--bs-text-opacity)) !important;
13135
+ }
13136
+
13137
+ .text-success-800 {
13138
+ --bs-text-opacity: 1;
13139
+ color: rgba(var(--bs-success-800-rgb), var(--bs-text-opacity)) !important;
13140
+ }
13141
+
13142
+ .text-success-900 {
13143
+ --bs-text-opacity: 1;
13144
+ color: rgba(var(--bs-success-900-rgb), var(--bs-text-opacity)) !important;
13145
+ }
13146
+
13147
+ .text-info-100 {
13148
+ --bs-text-opacity: 1;
13149
+ color: rgba(var(--bs-info-100-rgb), var(--bs-text-opacity)) !important;
13150
+ }
13151
+
13152
+ .text-info-200 {
13153
+ --bs-text-opacity: 1;
13154
+ color: rgba(var(--bs-info-200-rgb), var(--bs-text-opacity)) !important;
13155
+ }
13156
+
13157
+ .text-info-300 {
13158
+ --bs-text-opacity: 1;
13159
+ color: rgba(var(--bs-info-300-rgb), var(--bs-text-opacity)) !important;
13160
+ }
13161
+
13162
+ .text-info-400 {
13163
+ --bs-text-opacity: 1;
13164
+ color: rgba(var(--bs-info-400-rgb), var(--bs-text-opacity)) !important;
13165
+ }
13166
+
13167
+ .text-info-500 {
13168
+ --bs-text-opacity: 1;
13169
+ color: rgba(var(--bs-info-500-rgb), var(--bs-text-opacity)) !important;
13170
+ }
13171
+
13172
+ .text-info-600 {
13173
+ --bs-text-opacity: 1;
13174
+ color: rgba(var(--bs-info-600-rgb), var(--bs-text-opacity)) !important;
13175
+ }
13176
+
13177
+ .text-info-700 {
13178
+ --bs-text-opacity: 1;
13179
+ color: rgba(var(--bs-info-700-rgb), var(--bs-text-opacity)) !important;
13180
+ }
13181
+
13182
+ .text-info-800 {
13183
+ --bs-text-opacity: 1;
13184
+ color: rgba(var(--bs-info-800-rgb), var(--bs-text-opacity)) !important;
13185
+ }
13186
+
13187
+ .text-info-900 {
13188
+ --bs-text-opacity: 1;
13189
+ color: rgba(var(--bs-info-900-rgb), var(--bs-text-opacity)) !important;
13190
+ }
13191
+
13192
+ .text-warning-100 {
13193
+ --bs-text-opacity: 1;
13194
+ color: rgba(var(--bs-warning-100-rgb), var(--bs-text-opacity)) !important;
13195
+ }
13196
+
13197
+ .text-warning-200 {
13198
+ --bs-text-opacity: 1;
13199
+ color: rgba(var(--bs-warning-200-rgb), var(--bs-text-opacity)) !important;
13200
+ }
13201
+
13202
+ .text-warning-300 {
13203
+ --bs-text-opacity: 1;
13204
+ color: rgba(var(--bs-warning-300-rgb), var(--bs-text-opacity)) !important;
13205
+ }
13206
+
13207
+ .text-warning-400 {
13208
+ --bs-text-opacity: 1;
13209
+ color: rgba(var(--bs-warning-400-rgb), var(--bs-text-opacity)) !important;
13210
+ }
13211
+
13212
+ .text-warning-500 {
13213
+ --bs-text-opacity: 1;
13214
+ color: rgba(var(--bs-warning-500-rgb), var(--bs-text-opacity)) !important;
13215
+ }
13216
+
13217
+ .text-warning-600 {
13218
+ --bs-text-opacity: 1;
13219
+ color: rgba(var(--bs-warning-600-rgb), var(--bs-text-opacity)) !important;
13220
+ }
13221
+
13222
+ .text-warning-700 {
13223
+ --bs-text-opacity: 1;
13224
+ color: rgba(var(--bs-warning-700-rgb), var(--bs-text-opacity)) !important;
13225
+ }
13226
+
13227
+ .text-warning-800 {
13228
+ --bs-text-opacity: 1;
13229
+ color: rgba(var(--bs-warning-800-rgb), var(--bs-text-opacity)) !important;
13230
+ }
13231
+
13232
+ .text-warning-900 {
13233
+ --bs-text-opacity: 1;
13234
+ color: rgba(var(--bs-warning-900-rgb), var(--bs-text-opacity)) !important;
13235
+ }
13236
+
13237
+ .text-danger-100 {
13238
+ --bs-text-opacity: 1;
13239
+ color: rgba(var(--bs-danger-100-rgb), var(--bs-text-opacity)) !important;
13240
+ }
13241
+
13242
+ .text-danger-200 {
13243
+ --bs-text-opacity: 1;
13244
+ color: rgba(var(--bs-danger-200-rgb), var(--bs-text-opacity)) !important;
13245
+ }
13246
+
13247
+ .text-danger-300 {
13248
+ --bs-text-opacity: 1;
13249
+ color: rgba(var(--bs-danger-300-rgb), var(--bs-text-opacity)) !important;
13250
+ }
13251
+
13252
+ .text-danger-400 {
13253
+ --bs-text-opacity: 1;
13254
+ color: rgba(var(--bs-danger-400-rgb), var(--bs-text-opacity)) !important;
13255
+ }
13256
+
13257
+ .text-danger-500 {
13258
+ --bs-text-opacity: 1;
13259
+ color: rgba(var(--bs-danger-500-rgb), var(--bs-text-opacity)) !important;
13260
+ }
13261
+
13262
+ .text-danger-600 {
13263
+ --bs-text-opacity: 1;
13264
+ color: rgba(var(--bs-danger-600-rgb), var(--bs-text-opacity)) !important;
13265
+ }
13266
+
13267
+ .text-danger-700 {
13268
+ --bs-text-opacity: 1;
13269
+ color: rgba(var(--bs-danger-700-rgb), var(--bs-text-opacity)) !important;
13270
+ }
13271
+
13272
+ .text-danger-800 {
13273
+ --bs-text-opacity: 1;
13274
+ color: rgba(var(--bs-danger-800-rgb), var(--bs-text-opacity)) !important;
13275
+ }
13276
+
13277
+ .text-danger-900 {
13278
+ --bs-text-opacity: 1;
13279
+ color: rgba(var(--bs-danger-900-rgb), var(--bs-text-opacity)) !important;
13280
+ }
13281
+
12785
13282
  .text-gray-100 {
12786
13283
  --bs-text-opacity: 1;
12787
13284
  color: rgba(var(--bs-gray-100-rgb), var(--bs-text-opacity)) !important;
@@ -13115,6 +13612,276 @@ label {
13115
13612
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
13116
13613
  }
13117
13614
 
13615
+ .bg-primary-100 {
13616
+ --bs-bg-opacity: 1;
13617
+ background-color: rgba(var(--bs-primary-100-rgb), var(--bs-bg-opacity)) !important;
13618
+ }
13619
+
13620
+ .bg-primary-200 {
13621
+ --bs-bg-opacity: 1;
13622
+ background-color: rgba(var(--bs-primary-200-rgb), var(--bs-bg-opacity)) !important;
13623
+ }
13624
+
13625
+ .bg-primary-300 {
13626
+ --bs-bg-opacity: 1;
13627
+ background-color: rgba(var(--bs-primary-300-rgb), var(--bs-bg-opacity)) !important;
13628
+ }
13629
+
13630
+ .bg-primary-400 {
13631
+ --bs-bg-opacity: 1;
13632
+ background-color: rgba(var(--bs-primary-400-rgb), var(--bs-bg-opacity)) !important;
13633
+ }
13634
+
13635
+ .bg-primary-500 {
13636
+ --bs-bg-opacity: 1;
13637
+ background-color: rgba(var(--bs-primary-500-rgb), var(--bs-bg-opacity)) !important;
13638
+ }
13639
+
13640
+ .bg-primary-600 {
13641
+ --bs-bg-opacity: 1;
13642
+ background-color: rgba(var(--bs-primary-600-rgb), var(--bs-bg-opacity)) !important;
13643
+ }
13644
+
13645
+ .bg-primary-700 {
13646
+ --bs-bg-opacity: 1;
13647
+ background-color: rgba(var(--bs-primary-700-rgb), var(--bs-bg-opacity)) !important;
13648
+ }
13649
+
13650
+ .bg-primary-800 {
13651
+ --bs-bg-opacity: 1;
13652
+ background-color: rgba(var(--bs-primary-800-rgb), var(--bs-bg-opacity)) !important;
13653
+ }
13654
+
13655
+ .bg-primary-900 {
13656
+ --bs-bg-opacity: 1;
13657
+ background-color: rgba(var(--bs-primary-900-rgb), var(--bs-bg-opacity)) !important;
13658
+ }
13659
+
13660
+ .bg-secondary-100 {
13661
+ --bs-bg-opacity: 1;
13662
+ background-color: rgba(var(--bs-secondary-100-rgb), var(--bs-bg-opacity)) !important;
13663
+ }
13664
+
13665
+ .bg-secondary-200 {
13666
+ --bs-bg-opacity: 1;
13667
+ background-color: rgba(var(--bs-secondary-200-rgb), var(--bs-bg-opacity)) !important;
13668
+ }
13669
+
13670
+ .bg-secondary-300 {
13671
+ --bs-bg-opacity: 1;
13672
+ background-color: rgba(var(--bs-secondary-300-rgb), var(--bs-bg-opacity)) !important;
13673
+ }
13674
+
13675
+ .bg-secondary-400 {
13676
+ --bs-bg-opacity: 1;
13677
+ background-color: rgba(var(--bs-secondary-400-rgb), var(--bs-bg-opacity)) !important;
13678
+ }
13679
+
13680
+ .bg-secondary-500 {
13681
+ --bs-bg-opacity: 1;
13682
+ background-color: rgba(var(--bs-secondary-500-rgb), var(--bs-bg-opacity)) !important;
13683
+ }
13684
+
13685
+ .bg-secondary-600 {
13686
+ --bs-bg-opacity: 1;
13687
+ background-color: rgba(var(--bs-secondary-600-rgb), var(--bs-bg-opacity)) !important;
13688
+ }
13689
+
13690
+ .bg-secondary-700 {
13691
+ --bs-bg-opacity: 1;
13692
+ background-color: rgba(var(--bs-secondary-700-rgb), var(--bs-bg-opacity)) !important;
13693
+ }
13694
+
13695
+ .bg-secondary-800 {
13696
+ --bs-bg-opacity: 1;
13697
+ background-color: rgba(var(--bs-secondary-800-rgb), var(--bs-bg-opacity)) !important;
13698
+ }
13699
+
13700
+ .bg-secondary-900 {
13701
+ --bs-bg-opacity: 1;
13702
+ background-color: rgba(var(--bs-secondary-900-rgb), var(--bs-bg-opacity)) !important;
13703
+ }
13704
+
13705
+ .bg-success-100 {
13706
+ --bs-bg-opacity: 1;
13707
+ background-color: rgba(var(--bs-success-100-rgb), var(--bs-bg-opacity)) !important;
13708
+ }
13709
+
13710
+ .bg-success-200 {
13711
+ --bs-bg-opacity: 1;
13712
+ background-color: rgba(var(--bs-success-200-rgb), var(--bs-bg-opacity)) !important;
13713
+ }
13714
+
13715
+ .bg-success-300 {
13716
+ --bs-bg-opacity: 1;
13717
+ background-color: rgba(var(--bs-success-300-rgb), var(--bs-bg-opacity)) !important;
13718
+ }
13719
+
13720
+ .bg-success-400 {
13721
+ --bs-bg-opacity: 1;
13722
+ background-color: rgba(var(--bs-success-400-rgb), var(--bs-bg-opacity)) !important;
13723
+ }
13724
+
13725
+ .bg-success-500 {
13726
+ --bs-bg-opacity: 1;
13727
+ background-color: rgba(var(--bs-success-500-rgb), var(--bs-bg-opacity)) !important;
13728
+ }
13729
+
13730
+ .bg-success-600 {
13731
+ --bs-bg-opacity: 1;
13732
+ background-color: rgba(var(--bs-success-600-rgb), var(--bs-bg-opacity)) !important;
13733
+ }
13734
+
13735
+ .bg-success-700 {
13736
+ --bs-bg-opacity: 1;
13737
+ background-color: rgba(var(--bs-success-700-rgb), var(--bs-bg-opacity)) !important;
13738
+ }
13739
+
13740
+ .bg-success-800 {
13741
+ --bs-bg-opacity: 1;
13742
+ background-color: rgba(var(--bs-success-800-rgb), var(--bs-bg-opacity)) !important;
13743
+ }
13744
+
13745
+ .bg-success-900 {
13746
+ --bs-bg-opacity: 1;
13747
+ background-color: rgba(var(--bs-success-900-rgb), var(--bs-bg-opacity)) !important;
13748
+ }
13749
+
13750
+ .bg-info-100 {
13751
+ --bs-bg-opacity: 1;
13752
+ background-color: rgba(var(--bs-info-100-rgb), var(--bs-bg-opacity)) !important;
13753
+ }
13754
+
13755
+ .bg-info-200 {
13756
+ --bs-bg-opacity: 1;
13757
+ background-color: rgba(var(--bs-info-200-rgb), var(--bs-bg-opacity)) !important;
13758
+ }
13759
+
13760
+ .bg-info-300 {
13761
+ --bs-bg-opacity: 1;
13762
+ background-color: rgba(var(--bs-info-300-rgb), var(--bs-bg-opacity)) !important;
13763
+ }
13764
+
13765
+ .bg-info-400 {
13766
+ --bs-bg-opacity: 1;
13767
+ background-color: rgba(var(--bs-info-400-rgb), var(--bs-bg-opacity)) !important;
13768
+ }
13769
+
13770
+ .bg-info-500 {
13771
+ --bs-bg-opacity: 1;
13772
+ background-color: rgba(var(--bs-info-500-rgb), var(--bs-bg-opacity)) !important;
13773
+ }
13774
+
13775
+ .bg-info-600 {
13776
+ --bs-bg-opacity: 1;
13777
+ background-color: rgba(var(--bs-info-600-rgb), var(--bs-bg-opacity)) !important;
13778
+ }
13779
+
13780
+ .bg-info-700 {
13781
+ --bs-bg-opacity: 1;
13782
+ background-color: rgba(var(--bs-info-700-rgb), var(--bs-bg-opacity)) !important;
13783
+ }
13784
+
13785
+ .bg-info-800 {
13786
+ --bs-bg-opacity: 1;
13787
+ background-color: rgba(var(--bs-info-800-rgb), var(--bs-bg-opacity)) !important;
13788
+ }
13789
+
13790
+ .bg-info-900 {
13791
+ --bs-bg-opacity: 1;
13792
+ background-color: rgba(var(--bs-info-900-rgb), var(--bs-bg-opacity)) !important;
13793
+ }
13794
+
13795
+ .bg-warning-100 {
13796
+ --bs-bg-opacity: 1;
13797
+ background-color: rgba(var(--bs-warning-100-rgb), var(--bs-bg-opacity)) !important;
13798
+ }
13799
+
13800
+ .bg-warning-200 {
13801
+ --bs-bg-opacity: 1;
13802
+ background-color: rgba(var(--bs-warning-200-rgb), var(--bs-bg-opacity)) !important;
13803
+ }
13804
+
13805
+ .bg-warning-300 {
13806
+ --bs-bg-opacity: 1;
13807
+ background-color: rgba(var(--bs-warning-300-rgb), var(--bs-bg-opacity)) !important;
13808
+ }
13809
+
13810
+ .bg-warning-400 {
13811
+ --bs-bg-opacity: 1;
13812
+ background-color: rgba(var(--bs-warning-400-rgb), var(--bs-bg-opacity)) !important;
13813
+ }
13814
+
13815
+ .bg-warning-500 {
13816
+ --bs-bg-opacity: 1;
13817
+ background-color: rgba(var(--bs-warning-500-rgb), var(--bs-bg-opacity)) !important;
13818
+ }
13819
+
13820
+ .bg-warning-600 {
13821
+ --bs-bg-opacity: 1;
13822
+ background-color: rgba(var(--bs-warning-600-rgb), var(--bs-bg-opacity)) !important;
13823
+ }
13824
+
13825
+ .bg-warning-700 {
13826
+ --bs-bg-opacity: 1;
13827
+ background-color: rgba(var(--bs-warning-700-rgb), var(--bs-bg-opacity)) !important;
13828
+ }
13829
+
13830
+ .bg-warning-800 {
13831
+ --bs-bg-opacity: 1;
13832
+ background-color: rgba(var(--bs-warning-800-rgb), var(--bs-bg-opacity)) !important;
13833
+ }
13834
+
13835
+ .bg-warning-900 {
13836
+ --bs-bg-opacity: 1;
13837
+ background-color: rgba(var(--bs-warning-900-rgb), var(--bs-bg-opacity)) !important;
13838
+ }
13839
+
13840
+ .bg-danger-100 {
13841
+ --bs-bg-opacity: 1;
13842
+ background-color: rgba(var(--bs-danger-100-rgb), var(--bs-bg-opacity)) !important;
13843
+ }
13844
+
13845
+ .bg-danger-200 {
13846
+ --bs-bg-opacity: 1;
13847
+ background-color: rgba(var(--bs-danger-200-rgb), var(--bs-bg-opacity)) !important;
13848
+ }
13849
+
13850
+ .bg-danger-300 {
13851
+ --bs-bg-opacity: 1;
13852
+ background-color: rgba(var(--bs-danger-300-rgb), var(--bs-bg-opacity)) !important;
13853
+ }
13854
+
13855
+ .bg-danger-400 {
13856
+ --bs-bg-opacity: 1;
13857
+ background-color: rgba(var(--bs-danger-400-rgb), var(--bs-bg-opacity)) !important;
13858
+ }
13859
+
13860
+ .bg-danger-500 {
13861
+ --bs-bg-opacity: 1;
13862
+ background-color: rgba(var(--bs-danger-500-rgb), var(--bs-bg-opacity)) !important;
13863
+ }
13864
+
13865
+ .bg-danger-600 {
13866
+ --bs-bg-opacity: 1;
13867
+ background-color: rgba(var(--bs-danger-600-rgb), var(--bs-bg-opacity)) !important;
13868
+ }
13869
+
13870
+ .bg-danger-700 {
13871
+ --bs-bg-opacity: 1;
13872
+ background-color: rgba(var(--bs-danger-700-rgb), var(--bs-bg-opacity)) !important;
13873
+ }
13874
+
13875
+ .bg-danger-800 {
13876
+ --bs-bg-opacity: 1;
13877
+ background-color: rgba(var(--bs-danger-800-rgb), var(--bs-bg-opacity)) !important;
13878
+ }
13879
+
13880
+ .bg-danger-900 {
13881
+ --bs-bg-opacity: 1;
13882
+ background-color: rgba(var(--bs-danger-900-rgb), var(--bs-bg-opacity)) !important;
13883
+ }
13884
+
13118
13885
  .bg-gray-100 {
13119
13886
  --bs-bg-opacity: 1;
13120
13887
  background-color: rgba(var(--bs-gray-100-rgb), var(--bs-bg-opacity)) !important;