@dynamic-framework/ui-react 1.14.1 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/dynamic-ui-non-root.css +234 -29
- package/dist/css/dynamic-ui-non-root.min.css +1 -1
- package/dist/css/dynamic-ui.css +234 -29
- package/dist/css/dynamic-ui.min.css +1 -1
- package/dist/index.esm.js +211 -63
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +211 -64
- package/dist/index.js.map +1 -1
- package/dist/types/components/DAlert/DAlert.d.ts +6 -3
- package/dist/types/components/DBoxFile/DBoxFile.d.ts +2 -2
- package/dist/types/components/DButton/DButton.d.ts +1 -1
- package/dist/types/components/DChip/DChip.d.ts +5 -1
- package/dist/types/components/DCollapse/DCollapse.d.ts +5 -3
- package/dist/types/components/DDatePicker/DDatePicker.d.ts +6 -6
- package/dist/types/components/DDatePickerHeader/DDatePickerHeader.d.ts +5 -5
- package/dist/types/components/DInput/DInput.d.ts +2 -2
- package/dist/types/components/DInputCounter/DInputCounter.d.ts +2 -2
- package/dist/types/components/DInputCurrency/DInputCurrency.d.ts +1 -1
- package/dist/types/components/DInputCurrencyBase/DInputCurrencyBase.d.ts +1 -1
- package/dist/types/components/DInputMask/DInputMask.d.ts +1 -1
- package/dist/types/components/DInputPassword/DInputPassword.d.ts +1 -1
- package/dist/types/components/DInputPin/DInputPin.d.ts +3 -3
- package/dist/types/components/DInputSearch/DInputSearch.d.ts +2 -5
- package/dist/types/components/DInputSelect/index.d.ts +1 -1
- package/dist/types/components/DModal/components/DModalHeader.d.ts +2 -2
- package/dist/types/components/DMonthPicker/DMonthPicker.d.ts +5 -4
- package/dist/types/components/DOffcanvas/components/DOffcanvasHeader.d.ts +2 -2
- package/dist/types/components/DPopover/DPopover.d.ts +5 -0
- package/dist/types/components/DSelect/DSelect.d.ts +41 -0
- package/dist/types/components/DSelect/components/DSelectClearIndicator.d.ts +2 -0
- package/dist/types/components/DSelect/components/DSelectDropdownIndicator.d.ts +2 -0
- package/dist/types/components/DSelect/components/DSelectLoadingIndicator.d.ts +2 -0
- package/dist/types/components/DSelect/components/DSelectMultiValueRemove.d.ts +2 -0
- package/dist/types/components/DSelect/components/DSelectOptionCheck.d.ts +2 -0
- package/dist/types/components/DSelect/components/DSelectOptionEmoji.d.ts +7 -0
- package/dist/types/components/DSelect/components/DSelectOptionIcon.d.ts +7 -0
- package/dist/types/components/DSelect/components/DSelectSingleValueEmoji.d.ts +2 -0
- package/dist/types/components/DSelect/components/DSelectSingleValueEmojiText.d.ts +2 -0
- package/dist/types/components/DSelect/components/DSelectSingleValueIconText.d.ts +2 -0
- package/dist/types/components/DSelect/index.d.ts +4 -0
- package/dist/types/components/DStepper/DStepper.d.ts +5 -2
- package/dist/types/components/DStepperDesktop/DStepperDesktop.d.ts +5 -2
- package/dist/types/components/DTabs/index.d.ts +1 -1
- package/dist/types/components/DToastContainer/useToast.d.ts +3 -1
- package/dist/types/components/config.d.ts +0 -2
- package/dist/types/components/index.d.ts +2 -3
- package/dist/types/components/interface.d.ts +8 -0
- package/dist/types/contexts/DContext.d.ts +37 -12
- package/package.json +5 -3
- package/src/style/abstracts/variables/_buttons.scss +1 -1
- package/src/style/abstracts/variables/_forms.scss +2 -2
- package/src/style/components/_+import.scss +1 -0
- package/src/style/components/_d-badge.scss +1 -1
- package/src/style/components/_d-button.scss +6 -1
- package/src/style/components/_d-icon.scss +2 -4
- package/src/style/components/_d-input.scss +3 -13
- package/src/style/components/_d-select.scss +252 -0
- package/src/style/components/_d-tabs.scss +0 -5
- package/dist/types/components/DCardAccount/DCardAccount.d.ts +0 -13
- package/dist/types/components/DCardAccount/index.d.ts +0 -2
- package/dist/types/components/DCollapseIconText/DCollapseIconText.d.ts +0 -22
- package/dist/types/components/DCollapseIconText/index.d.ts +0 -2
package/dist/css/dynamic-ui.css
CHANGED
|
@@ -2437,7 +2437,7 @@ progress {
|
|
|
2437
2437
|
appearance: none;
|
|
2438
2438
|
background-color: var(--bs-white);
|
|
2439
2439
|
background-clip: padding-box;
|
|
2440
|
-
border: 1px solid var(--bs-gray-
|
|
2440
|
+
border: 1px solid var(--bs-gray-300);
|
|
2441
2441
|
border-radius: 0.5rem;
|
|
2442
2442
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
|
2443
2443
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
@@ -2480,7 +2480,7 @@ progress {
|
|
|
2480
2480
|
.form-control:disabled {
|
|
2481
2481
|
color: var(--bs-gray);
|
|
2482
2482
|
background-color: var(--bs-gray-100);
|
|
2483
|
-
border-color: var(--bs-gray-
|
|
2483
|
+
border-color: var(--bs-gray-300);
|
|
2484
2484
|
opacity: 1;
|
|
2485
2485
|
}
|
|
2486
2486
|
.form-control::-webkit-file-upload-button {
|
|
@@ -2637,7 +2637,7 @@ textarea.form-control-lg {
|
|
|
2637
2637
|
background-repeat: no-repeat;
|
|
2638
2638
|
background-position: right 1rem center;
|
|
2639
2639
|
background-size: 24px;
|
|
2640
|
-
border: 1px solid var(--bs-gray-
|
|
2640
|
+
border: 1px solid var(--bs-gray-300);
|
|
2641
2641
|
border-radius: 0.5rem;
|
|
2642
2642
|
box-shadow: var(--bs-box-shadow-inset);
|
|
2643
2643
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
@@ -2658,7 +2658,7 @@ textarea.form-control-lg {
|
|
|
2658
2658
|
}
|
|
2659
2659
|
.form-select:disabled {
|
|
2660
2660
|
background-color: var(--bs-gray-100);
|
|
2661
|
-
border-color: var(--bs-gray-
|
|
2661
|
+
border-color: var(--bs-gray-300);
|
|
2662
2662
|
}
|
|
2663
2663
|
.form-select:-moz-focusring {
|
|
2664
2664
|
color: transparent;
|
|
@@ -3604,7 +3604,7 @@ textarea.form-control-lg {
|
|
|
3604
3604
|
}
|
|
3605
3605
|
.btn-group > :not(.btn-check:first-child) + .btn,
|
|
3606
3606
|
.btn-group > .btn-group:not(:first-child) {
|
|
3607
|
-
margin-left: calc(
|
|
3607
|
+
margin-left: calc(1px * -1);
|
|
3608
3608
|
}
|
|
3609
3609
|
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
|
|
3610
3610
|
.btn-group > .btn.dropdown-toggle-split:first-child,
|
|
@@ -3658,7 +3658,7 @@ textarea.form-control-lg {
|
|
|
3658
3658
|
}
|
|
3659
3659
|
.btn-group-vertical > .btn:not(:first-child),
|
|
3660
3660
|
.btn-group-vertical > .btn-group:not(:first-child) {
|
|
3661
|
-
margin-top: calc(
|
|
3661
|
+
margin-top: calc(1px * -1);
|
|
3662
3662
|
}
|
|
3663
3663
|
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
|
|
3664
3664
|
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
|
|
@@ -7320,13 +7320,13 @@ textarea.form-control-lg {
|
|
|
7320
7320
|
--bs-icon-size: var(--bs-icon-component-size, 1.5rem);
|
|
7321
7321
|
--bs-icon-padding: var(--bs-icon-component-padding, 0);
|
|
7322
7322
|
--bs-icon-loading-duration: var(--bs-icon-component-loading-duration, 1.8);
|
|
7323
|
-
display: inline-flex !important;
|
|
7323
|
+
display: inline-flex !important; /* stylelint-disable-line declaration-no-important */
|
|
7324
7324
|
align-items: center;
|
|
7325
7325
|
justify-content: center;
|
|
7326
7326
|
width: var(--bs-icon-size);
|
|
7327
7327
|
height: var(--bs-icon-size);
|
|
7328
7328
|
padding: var(--bs-icon-padding);
|
|
7329
|
-
font-size: var(--bs-icon-size) !important;
|
|
7329
|
+
font-size: var(--bs-icon-size) !important; /* stylelint-disable-line declaration-no-important */
|
|
7330
7330
|
color: var(--bs-icon-color);
|
|
7331
7331
|
background-color: var(--bs-icon-bg-color);
|
|
7332
7332
|
border-radius: var(--bs-icon-padding);
|
|
@@ -7352,7 +7352,6 @@ textarea.form-control-lg {
|
|
|
7352
7352
|
--bs-input-label-padding-x: var(--bs-ref-spacer-2);
|
|
7353
7353
|
--bs-input-label-padding-y: 0;
|
|
7354
7354
|
--bs-input-label-gap: var(--bs-ref-spacer-1);
|
|
7355
|
-
--bs-input-label-has-value-color: var(--bs-dark);
|
|
7356
7355
|
--bs-input-group-border-color: var(--bs-gray-300);
|
|
7357
7356
|
--bs-input-group-border-width: 1px;
|
|
7358
7357
|
--bs-input-group-border-radius: 0.5rem;
|
|
@@ -7363,9 +7362,9 @@ textarea.form-control-lg {
|
|
|
7363
7362
|
--bs-input-form-text-padding: 0 0.5rem;
|
|
7364
7363
|
--bs-input-form-text-gap: 0.5rem;
|
|
7365
7364
|
--bs-input-form-text-color: var(--bs-gray);
|
|
7366
|
-
--bs-input-group-disabled-border-color: var(--bs-gray-
|
|
7365
|
+
--bs-input-group-disabled-border-color: var(--bs-gray-300);
|
|
7367
7366
|
--bs-input-group-disabled-bg: var(--bs-gray-100);
|
|
7368
|
-
--bs-input-group-disabled-color: var(--bs-
|
|
7367
|
+
--bs-input-group-disabled-color: var(--bs-gray);
|
|
7369
7368
|
display: flex;
|
|
7370
7369
|
flex-direction: column;
|
|
7371
7370
|
gap: var(--bs-input-gap);
|
|
@@ -7394,10 +7393,10 @@ textarea.form-control-lg {
|
|
|
7394
7393
|
border: var(--bs-input-group-border-width) solid var(--bs-input-group-border-color);
|
|
7395
7394
|
border-radius: var(--bs-input-group-border-radius);
|
|
7396
7395
|
}
|
|
7397
|
-
.d-input .input-group:not(:focus-within):not(.has-validation):has(.form-control:not(:-moz-placeholder-shown
|
|
7396
|
+
.d-input .input-group:not(:focus-within):not(.has-validation):has(.form-control:not(:-moz-placeholder-shown)) {
|
|
7398
7397
|
border-color: var(--bs-input-group-hover-border-color);
|
|
7399
7398
|
}
|
|
7400
|
-
.d-input .input-group:not(:focus-within):not(.has-validation):has(.form-control:not(:placeholder-shown
|
|
7399
|
+
.d-input .input-group:not(:focus-within):not(.has-validation):has(.form-control:not(:placeholder-shown)) {
|
|
7401
7400
|
border-color: var(--bs-input-group-hover-border-color);
|
|
7402
7401
|
}
|
|
7403
7402
|
.d-input:has(.form-control.is-valid) .input-group {
|
|
@@ -7407,7 +7406,7 @@ textarea.form-control-lg {
|
|
|
7407
7406
|
.d-input:has(.form-control.is-valid) .input-group ~ .form-text {
|
|
7408
7407
|
color: var(--bs-form-valid-border-color);
|
|
7409
7408
|
}
|
|
7410
|
-
.d-input:has(.form-control.is-valid) .d-input-validation-icon
|
|
7409
|
+
.d-input:has(.form-control.is-valid) .d-input-validation-icon {
|
|
7411
7410
|
--bs-icon-color: var(--bs-success);
|
|
7412
7411
|
}
|
|
7413
7412
|
.d-input:has(.form-control.is-invalid) .input-group {
|
|
@@ -7417,7 +7416,7 @@ textarea.form-control-lg {
|
|
|
7417
7416
|
.d-input:has(.form-control.is-invalid) .input-group ~ .form-text {
|
|
7418
7417
|
color: var(--bs-form-invalid-border-color);
|
|
7419
7418
|
}
|
|
7420
|
-
.d-input:has(.form-control.is-invalid) .d-input-validation-icon
|
|
7419
|
+
.d-input:has(.form-control.is-invalid) .d-input-validation-icon {
|
|
7421
7420
|
--bs-icon-color: var(--bs-danger);
|
|
7422
7421
|
}
|
|
7423
7422
|
.d-input .input-group ~ .form-text {
|
|
@@ -7454,17 +7453,10 @@ textarea.form-control-lg {
|
|
|
7454
7453
|
border: 0;
|
|
7455
7454
|
outline: 0;
|
|
7456
7455
|
}
|
|
7457
|
-
.d-input .input-group-text:disabled {
|
|
7458
|
-
color: var(--bs-input-group-disabled-color);
|
|
7459
|
-
}
|
|
7460
7456
|
.d-input .form-control:disabled {
|
|
7461
7457
|
background: var(--bs-input-group-disabled-bg);
|
|
7462
7458
|
}
|
|
7463
|
-
.d-input:has(.form-control:disabled) {
|
|
7464
|
-
border-color: var(--bs-input-group-disabled-color);
|
|
7465
|
-
}
|
|
7466
7459
|
.d-input:has(.form-control:disabled) .input-group-text {
|
|
7467
|
-
color: var(--bs-input-group-disabled-color);
|
|
7468
7460
|
background: var(--bs-input-group-disabled-bg);
|
|
7469
7461
|
}
|
|
7470
7462
|
.d-input:has(.form-control:disabled) .d-input-icon .d-icon {
|
|
@@ -7671,7 +7663,7 @@ label {
|
|
|
7671
7663
|
--bs-btn-line-height: 1.2rem;
|
|
7672
7664
|
--bs-btn-color: var(--bs-body-color);
|
|
7673
7665
|
--bs-btn-bg: transparent;
|
|
7674
|
-
--bs-btn-border-width:
|
|
7666
|
+
--bs-btn-border-width: 1px;
|
|
7675
7667
|
--bs-btn-border-color: transparent;
|
|
7676
7668
|
--bs-btn-border-radius: var(--bs-btn-component-border-radius, 0.5rem);
|
|
7677
7669
|
--bs-btn-hover-border-color: transparent;
|
|
@@ -7687,7 +7679,7 @@ label {
|
|
|
7687
7679
|
--bs-btn-sm-padding-x: 1rem;
|
|
7688
7680
|
--bs-btn-sm-font-size: 0.875rem;
|
|
7689
7681
|
--bs-btn-sm-border-radius: var(--bs-btn-component-sm-border-radius, 0.5rem);
|
|
7690
|
-
display: flex;
|
|
7682
|
+
display: inline-flex;
|
|
7691
7683
|
flex-direction: row;
|
|
7692
7684
|
gap: var(--bs-btn-gap, 0.5rem);
|
|
7693
7685
|
align-items: center;
|
|
@@ -7722,6 +7714,7 @@ label {
|
|
|
7722
7714
|
}
|
|
7723
7715
|
.btn:hover, .btn.hover {
|
|
7724
7716
|
color: var(--bs-btn-hover-color);
|
|
7717
|
+
text-decoration: none;
|
|
7725
7718
|
background-color: var(--bs-btn-hover-bg);
|
|
7726
7719
|
border-color: var(--bs-btn-hover-border-color);
|
|
7727
7720
|
}
|
|
@@ -7825,6 +7818,9 @@ label {
|
|
|
7825
7818
|
--bs-btn-disabled-color: var(--bs-primary-300);
|
|
7826
7819
|
--bs-btn-focus-outline-offset: 0;
|
|
7827
7820
|
}
|
|
7821
|
+
.btn-link-primary span {
|
|
7822
|
+
text-decoration: underline;
|
|
7823
|
+
}
|
|
7828
7824
|
.btn-link-primary.loading {
|
|
7829
7825
|
--bs-btn-disabled-opacity: 1;
|
|
7830
7826
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -7899,6 +7895,9 @@ label {
|
|
|
7899
7895
|
--bs-btn-disabled-color: var(--bs-secondary-300);
|
|
7900
7896
|
--bs-btn-focus-outline-offset: 0;
|
|
7901
7897
|
}
|
|
7898
|
+
.btn-link-secondary span {
|
|
7899
|
+
text-decoration: underline;
|
|
7900
|
+
}
|
|
7902
7901
|
.btn-link-secondary.loading {
|
|
7903
7902
|
--bs-btn-disabled-opacity: 1;
|
|
7904
7903
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -7973,6 +7972,9 @@ label {
|
|
|
7973
7972
|
--bs-btn-disabled-color: var(--bs-success-300);
|
|
7974
7973
|
--bs-btn-focus-outline-offset: 0;
|
|
7975
7974
|
}
|
|
7975
|
+
.btn-link-success span {
|
|
7976
|
+
text-decoration: underline;
|
|
7977
|
+
}
|
|
7976
7978
|
.btn-link-success.loading {
|
|
7977
7979
|
--bs-btn-disabled-opacity: 1;
|
|
7978
7980
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -8047,6 +8049,9 @@ label {
|
|
|
8047
8049
|
--bs-btn-disabled-color: var(--bs-info-300);
|
|
8048
8050
|
--bs-btn-focus-outline-offset: 0;
|
|
8049
8051
|
}
|
|
8052
|
+
.btn-link-info span {
|
|
8053
|
+
text-decoration: underline;
|
|
8054
|
+
}
|
|
8050
8055
|
.btn-link-info.loading {
|
|
8051
8056
|
--bs-btn-disabled-opacity: 1;
|
|
8052
8057
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -8121,6 +8126,9 @@ label {
|
|
|
8121
8126
|
--bs-btn-disabled-color: var(--bs-warning-300);
|
|
8122
8127
|
--bs-btn-focus-outline-offset: 0;
|
|
8123
8128
|
}
|
|
8129
|
+
.btn-link-warning span {
|
|
8130
|
+
text-decoration: underline;
|
|
8131
|
+
}
|
|
8124
8132
|
.btn-link-warning.loading {
|
|
8125
8133
|
--bs-btn-disabled-opacity: 1;
|
|
8126
8134
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -8195,6 +8203,9 @@ label {
|
|
|
8195
8203
|
--bs-btn-disabled-color: var(--bs-danger-300);
|
|
8196
8204
|
--bs-btn-focus-outline-offset: 0;
|
|
8197
8205
|
}
|
|
8206
|
+
.btn-link-danger span {
|
|
8207
|
+
text-decoration: underline;
|
|
8208
|
+
}
|
|
8198
8209
|
.btn-link-danger.loading {
|
|
8199
8210
|
--bs-btn-disabled-opacity: 1;
|
|
8200
8211
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -8254,6 +8265,9 @@ label {
|
|
|
8254
8265
|
--bs-btn-disabled-color: var(--bs-light-300);
|
|
8255
8266
|
--bs-btn-focus-outline-offset: 0;
|
|
8256
8267
|
}
|
|
8268
|
+
.btn-link-light span {
|
|
8269
|
+
text-decoration: underline;
|
|
8270
|
+
}
|
|
8257
8271
|
.btn-link-light.loading {
|
|
8258
8272
|
--bs-btn-disabled-opacity: 1;
|
|
8259
8273
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -8313,6 +8327,9 @@ label {
|
|
|
8313
8327
|
--bs-btn-disabled-color: var(--bs-dark-300);
|
|
8314
8328
|
--bs-btn-focus-outline-offset: 0;
|
|
8315
8329
|
}
|
|
8330
|
+
.btn-link-dark span {
|
|
8331
|
+
text-decoration: underline;
|
|
8332
|
+
}
|
|
8316
8333
|
.btn-link-dark.loading {
|
|
8317
8334
|
--bs-btn-disabled-opacity: 1;
|
|
8318
8335
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -8746,7 +8763,7 @@ label {
|
|
|
8746
8763
|
.badge {
|
|
8747
8764
|
--bs-badge-bg: var(--bs-white);
|
|
8748
8765
|
--bs-badge-dot-height: var(--bs-ref-spacer-3);
|
|
8749
|
-
display: block;
|
|
8766
|
+
display: inline-block;
|
|
8750
8767
|
background-color: var(--bs-badge-bg);
|
|
8751
8768
|
}
|
|
8752
8769
|
.badge.badge-primary {
|
|
@@ -10123,7 +10140,6 @@ label {
|
|
|
10123
10140
|
--bs-tabs-nav-padding-y: 1rem;
|
|
10124
10141
|
--bs-tabs-link-border-height: 2px;
|
|
10125
10142
|
--bs-tabs-link-line-height: 1.5rem;
|
|
10126
|
-
--bs-tabs-link-hover-color: var(--bs-secondary-600);
|
|
10127
10143
|
--bs-tabs-link-border-border-radius: 50rem;
|
|
10128
10144
|
--bs-tabs-link-border-active-color: var(--bs-secondary);
|
|
10129
10145
|
--bs-tabs-link-border-active-font-weight: var(--bs-ref-fw-bold);
|
|
@@ -10139,9 +10155,6 @@ label {
|
|
|
10139
10155
|
position: relative;
|
|
10140
10156
|
line-height: var(--bs-tabs-link-line-height);
|
|
10141
10157
|
}
|
|
10142
|
-
.d-tabs .nav-link:hover {
|
|
10143
|
-
color: var(--bs-tabs-link-hover-color);
|
|
10144
|
-
}
|
|
10145
10158
|
.d-tabs .nav-link.active {
|
|
10146
10159
|
font-weight: var(--bs-tabs-link-border-active-font-weight);
|
|
10147
10160
|
color: var(--bs-tabs-link-border-active-color);
|
|
@@ -10975,6 +10988,198 @@ label {
|
|
|
10975
10988
|
--bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-dark));
|
|
10976
10989
|
}
|
|
10977
10990
|
|
|
10991
|
+
.d-select {
|
|
10992
|
+
--bs-input-gap: 0.5rem;
|
|
10993
|
+
--bs-input-label-color: var(--bs-gray);
|
|
10994
|
+
--bs-input-label-font-weight: var(--bs-ref-fw-bold);
|
|
10995
|
+
--bs-input-label-font-size: var(--bs-ref-fs-small);
|
|
10996
|
+
--bs-input-label-padding-x: var(--bs-ref-spacer-2);
|
|
10997
|
+
--bs-input-label-padding-y: 0;
|
|
10998
|
+
--bs-input-label-gap: var(--bs-ref-spacer-1);
|
|
10999
|
+
--bs-input-group-border-color: var(--bs-gray-300);
|
|
11000
|
+
--bs-input-group-border-width: 1px;
|
|
11001
|
+
--bs-input-group-border-radius: 0.5rem;
|
|
11002
|
+
--bs-input-group-hover-border-color: var(--bs-gray);
|
|
11003
|
+
--bs-input-group-focus-border-color: var(--bs-secondary);
|
|
11004
|
+
--bs-input-group-focus-box-shadow: 0 0 0 1px rgba(var(--bs-secondary-rgb));
|
|
11005
|
+
--bs-input-padding-y: 0.75rem;
|
|
11006
|
+
--bs-input-padding-x: 1rem;
|
|
11007
|
+
--bs-input-font-family: ;
|
|
11008
|
+
--bs-input-font-size: 1rem;
|
|
11009
|
+
--bs-input-font-weight: 400;
|
|
11010
|
+
--bs-input-line-height: 1.375;
|
|
11011
|
+
--bs-input-color: var(--bs-gray);
|
|
11012
|
+
--bs-input-bg: var(--bs-white);
|
|
11013
|
+
--bs-input-focus-color: var(--bs-gray);
|
|
11014
|
+
--bs-input-focus-bg: var(--bs-white);
|
|
11015
|
+
--bs-input-placeholder-color: var(--bs-gray-500);
|
|
11016
|
+
--bs-input-form-text-padding: 0 0.5rem;
|
|
11017
|
+
--bs-input-form-text-gap: 0.5rem;
|
|
11018
|
+
--bs-input-form-text-color: var(--bs-gray);
|
|
11019
|
+
--bs-input-group-disabled-border-color: var(--bs-gray-300);
|
|
11020
|
+
--bs-input-group-disabled-bg: var(--bs-gray-100);
|
|
11021
|
+
--bs-input-group-disabled-color: var(--bs-gray);
|
|
11022
|
+
--bs-select-menu-shadow: 0 8px 12px 0 rgba(22, 23, 35, 0.05);
|
|
11023
|
+
--bs-select-option-focus-bg: var(--bs-gray-100);
|
|
11024
|
+
--bs-select-option-selected-color: var(--bs-secondary);
|
|
11025
|
+
--bs-select-option-selected-bg: var(--bs-gray-100);
|
|
11026
|
+
--bs-select-option-is-checkbox-font-size: var(--bs-body-font-size);
|
|
11027
|
+
--bs-select-option-is-checkbox-font-weight: var(--bs-ref-fw-normal);
|
|
11028
|
+
--bs-select-option-is-checkbox-color: var(--bs-gray-900);
|
|
11029
|
+
--bs-select-option-has-icon-icon-size: 1rem;
|
|
11030
|
+
--bs-select-multi-value-padding-x: var(--bs-input-gap);
|
|
11031
|
+
--bs-select-multi-value-padding-y: 0;
|
|
11032
|
+
--bs-select-multi-value-margin-right: var(--bs-input-gap);
|
|
11033
|
+
--bs-select-multi-value-background: var(--bs-gray-100);
|
|
11034
|
+
--bs-select-multi-value-border-radius: 0.25rem;
|
|
11035
|
+
--bs-select-multi-value-label-color: var(--bs-secondary);
|
|
11036
|
+
--bs-select-indicator-width: 1.5rem;
|
|
11037
|
+
--bs-select-indicator-height: 1.5rem;
|
|
11038
|
+
display: flex;
|
|
11039
|
+
flex-direction: column;
|
|
11040
|
+
gap: var(--bs-input-gap);
|
|
11041
|
+
align-items: flex-start;
|
|
11042
|
+
}
|
|
11043
|
+
.d-select:focus-within .input-group {
|
|
11044
|
+
border-color: var(--bs-input-group-focus-border-color);
|
|
11045
|
+
box-shadow: var(--bs-input-group-focus-box-shadow);
|
|
11046
|
+
}
|
|
11047
|
+
.d-select .d-select-control {
|
|
11048
|
+
display: flex;
|
|
11049
|
+
flex-direction: column;
|
|
11050
|
+
gap: var(--bs-input-gap);
|
|
11051
|
+
width: 100%;
|
|
11052
|
+
}
|
|
11053
|
+
.d-select label {
|
|
11054
|
+
display: inline-flex;
|
|
11055
|
+
flex-direction: row;
|
|
11056
|
+
gap: var(--bs-input-label-gap);
|
|
11057
|
+
align-items: center;
|
|
11058
|
+
}
|
|
11059
|
+
.d-select label .d-select-icon .d-icon {
|
|
11060
|
+
--bs-icon-color: var(--bs-focus-ring-color);
|
|
11061
|
+
}
|
|
11062
|
+
.d-select .input-group {
|
|
11063
|
+
border: var(--bs-input-group-border-width) solid var(--bs-input-group-border-color);
|
|
11064
|
+
border-radius: var(--bs-input-group-border-radius);
|
|
11065
|
+
}
|
|
11066
|
+
.d-select .input-group:not(.disabled):not(:focus-within):not(.has-validation):has(.d-select__value-container--has-value) {
|
|
11067
|
+
border-color: var(--bs-input-group-hover-border-color);
|
|
11068
|
+
}
|
|
11069
|
+
.d-select .input-group ~ .form-text {
|
|
11070
|
+
display: inline-flex;
|
|
11071
|
+
flex-direction: row;
|
|
11072
|
+
gap: var(--bs-input-form-text-gap);
|
|
11073
|
+
align-items: center;
|
|
11074
|
+
padding: var(--bs-input-form-text-padding);
|
|
11075
|
+
color: var(--bs-input-form-text-color);
|
|
11076
|
+
}
|
|
11077
|
+
.d-select .d-select-component {
|
|
11078
|
+
border-radius: var(--bs-input-group-border-radius);
|
|
11079
|
+
}
|
|
11080
|
+
.d-select .d-select__control {
|
|
11081
|
+
width: 100%;
|
|
11082
|
+
padding: var(--bs-input-padding-y) var(--bs-input-padding-x);
|
|
11083
|
+
font-family: var(--bs-input-font-family);
|
|
11084
|
+
--bs-input-font-size: 1rem;
|
|
11085
|
+
font-weight: var(--bs-input-font-weight);
|
|
11086
|
+
line-height: var(--bs-input-line-height);
|
|
11087
|
+
color: var(--bs-input-color);
|
|
11088
|
+
-webkit-appearance: none;
|
|
11089
|
+
-moz-appearance: none;
|
|
11090
|
+
appearance: none;
|
|
11091
|
+
background-color: var(--bs-input-bg);
|
|
11092
|
+
background-clip: padding-box;
|
|
11093
|
+
border-radius: 0.5rem;
|
|
11094
|
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
11095
|
+
}
|
|
11096
|
+
@media (prefers-reduced-motion: reduce) {
|
|
11097
|
+
.d-select .d-select__control {
|
|
11098
|
+
transition: none;
|
|
11099
|
+
}
|
|
11100
|
+
}
|
|
11101
|
+
.d-select .d-select__control:focus {
|
|
11102
|
+
color: var(--bs-input-focus-color);
|
|
11103
|
+
background-color: var(--bs-input-focus-bg);
|
|
11104
|
+
outline: 0;
|
|
11105
|
+
}
|
|
11106
|
+
.d-select .d-select__placeholder {
|
|
11107
|
+
color: var(--bs-input-placeholder-color);
|
|
11108
|
+
opacity: 1;
|
|
11109
|
+
}
|
|
11110
|
+
.d-select .d-select__menu-list {
|
|
11111
|
+
top: calc(var(--bs-input-group-border-width) * 2);
|
|
11112
|
+
background: var(--bs-input-bg);
|
|
11113
|
+
border-radius: var(--bs-input-group-border-radius);
|
|
11114
|
+
box-shadow: var(--bs-select-menu-shadow);
|
|
11115
|
+
}
|
|
11116
|
+
.d-select .d-select__control--menu-is-open .d-select__dropdown-indicator {
|
|
11117
|
+
transform: rotateX(180deg);
|
|
11118
|
+
}
|
|
11119
|
+
.d-select .d-select__option {
|
|
11120
|
+
display: block;
|
|
11121
|
+
padding: var(--bs-input-padding-y) var(--bs-input-padding-x);
|
|
11122
|
+
}
|
|
11123
|
+
.d-select .d-select__option--is-focused {
|
|
11124
|
+
background: var(--bs-select-option-focus-bg);
|
|
11125
|
+
}
|
|
11126
|
+
.d-select .d-select__option--is-selected {
|
|
11127
|
+
color: var(--bs-select-option-selected-color);
|
|
11128
|
+
background: var(--bs-select-option-selected-bg);
|
|
11129
|
+
}
|
|
11130
|
+
.d-select .d-select__option--is-checkbox {
|
|
11131
|
+
padding: 0;
|
|
11132
|
+
}
|
|
11133
|
+
.d-select .d-select__option--is-checkbox > label {
|
|
11134
|
+
width: 100%;
|
|
11135
|
+
padding: var(--bs-input-padding-x);
|
|
11136
|
+
}
|
|
11137
|
+
.d-select .d-select__option--is-checkbox .form-check-input {
|
|
11138
|
+
margin-right: var(--bs-input-padding-x);
|
|
11139
|
+
}
|
|
11140
|
+
.d-select .d-select__option--is-checkbox label {
|
|
11141
|
+
font-size: var(--bs-select-option-is-checkbox-font-size);
|
|
11142
|
+
font-weight: var(--bs-select-option-is-checkbox-font-weight);
|
|
11143
|
+
color: var(--bs-select-option-is-checkbox-color);
|
|
11144
|
+
}
|
|
11145
|
+
.d-select .d-select__multi-value {
|
|
11146
|
+
padding: var(--bs-select-multi-value-padding-y) var(--bs-select-multi-value-padding-x);
|
|
11147
|
+
margin-right: var(--bs-select-multi-value-margin-right);
|
|
11148
|
+
background: var(--bs-select-multi-value-background);
|
|
11149
|
+
border-radius: var(--bs-select-multi-value-border-radius);
|
|
11150
|
+
}
|
|
11151
|
+
.d-select .d-select__multi-value__label {
|
|
11152
|
+
color: var(--bs-select-multi-value-label-color);
|
|
11153
|
+
}
|
|
11154
|
+
.d-select .d-select__control--has-icon,
|
|
11155
|
+
.d-select .d-select__option--has-icon {
|
|
11156
|
+
display: flex;
|
|
11157
|
+
flex-direction: row;
|
|
11158
|
+
gap: var(--bs-input-padding-x);
|
|
11159
|
+
align-items: center;
|
|
11160
|
+
white-space: nowrap;
|
|
11161
|
+
}
|
|
11162
|
+
.d-select .d-select__control--has-icon .d-icon,
|
|
11163
|
+
.d-select .d-select__option--has-icon .d-icon {
|
|
11164
|
+
--bs-icon-size: var(--bs-select-option-has-icon-icon-size);
|
|
11165
|
+
}
|
|
11166
|
+
.d-select .d-select__indicator {
|
|
11167
|
+
display: flex;
|
|
11168
|
+
align-items: center;
|
|
11169
|
+
justify-content: center;
|
|
11170
|
+
width: var(--bs-select-indicator-width);
|
|
11171
|
+
height: var(--bs-select-indicator-height);
|
|
11172
|
+
}
|
|
11173
|
+
.d-select .d-select__indicator-separator {
|
|
11174
|
+
width: var(--bs-input-gap);
|
|
11175
|
+
}
|
|
11176
|
+
.d-select.disabled .d-select__control {
|
|
11177
|
+
background: var(--bs-input-group-disabled-bg);
|
|
11178
|
+
}
|
|
11179
|
+
.d-select.disabled .input-group {
|
|
11180
|
+
border-color: var(--bs-input-group-disabled-border-color);
|
|
11181
|
+
}
|
|
11182
|
+
|
|
10978
11183
|
.operation-group:not(:last-child) {
|
|
10979
11184
|
border-bottom: 1px solid var(--bs-gray-300);
|
|
10980
11185
|
}
|