@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
|
@@ -2146,7 +2146,7 @@ progress {
|
|
|
2146
2146
|
appearance: none;
|
|
2147
2147
|
background-color: var(--bs-white);
|
|
2148
2148
|
background-clip: padding-box;
|
|
2149
|
-
border: 1px solid var(--bs-gray-
|
|
2149
|
+
border: 1px solid var(--bs-gray-300);
|
|
2150
2150
|
border-radius: 0.5rem;
|
|
2151
2151
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
|
2152
2152
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
@@ -2189,7 +2189,7 @@ progress {
|
|
|
2189
2189
|
.form-control:disabled {
|
|
2190
2190
|
color: var(--bs-gray);
|
|
2191
2191
|
background-color: var(--bs-gray-100);
|
|
2192
|
-
border-color: var(--bs-gray-
|
|
2192
|
+
border-color: var(--bs-gray-300);
|
|
2193
2193
|
opacity: 1;
|
|
2194
2194
|
}
|
|
2195
2195
|
.form-control::-webkit-file-upload-button {
|
|
@@ -2346,7 +2346,7 @@ textarea.form-control-lg {
|
|
|
2346
2346
|
background-repeat: no-repeat;
|
|
2347
2347
|
background-position: right 1rem center;
|
|
2348
2348
|
background-size: 24px;
|
|
2349
|
-
border: 1px solid var(--bs-gray-
|
|
2349
|
+
border: 1px solid var(--bs-gray-300);
|
|
2350
2350
|
border-radius: 0.5rem;
|
|
2351
2351
|
box-shadow: var(--bs-box-shadow-inset);
|
|
2352
2352
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
@@ -2367,7 +2367,7 @@ textarea.form-control-lg {
|
|
|
2367
2367
|
}
|
|
2368
2368
|
.form-select:disabled {
|
|
2369
2369
|
background-color: var(--bs-gray-100);
|
|
2370
|
-
border-color: var(--bs-gray-
|
|
2370
|
+
border-color: var(--bs-gray-300);
|
|
2371
2371
|
}
|
|
2372
2372
|
.form-select:-moz-focusring {
|
|
2373
2373
|
color: transparent;
|
|
@@ -3313,7 +3313,7 @@ textarea.form-control-lg {
|
|
|
3313
3313
|
}
|
|
3314
3314
|
.btn-group > :not(.btn-check:first-child) + .btn,
|
|
3315
3315
|
.btn-group > .btn-group:not(:first-child) {
|
|
3316
|
-
margin-left: calc(
|
|
3316
|
+
margin-left: calc(1px * -1);
|
|
3317
3317
|
}
|
|
3318
3318
|
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
|
|
3319
3319
|
.btn-group > .btn.dropdown-toggle-split:first-child,
|
|
@@ -3367,7 +3367,7 @@ textarea.form-control-lg {
|
|
|
3367
3367
|
}
|
|
3368
3368
|
.btn-group-vertical > .btn:not(:first-child),
|
|
3369
3369
|
.btn-group-vertical > .btn-group:not(:first-child) {
|
|
3370
|
-
margin-top: calc(
|
|
3370
|
+
margin-top: calc(1px * -1);
|
|
3371
3371
|
}
|
|
3372
3372
|
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
|
|
3373
3373
|
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
|
|
@@ -7029,13 +7029,13 @@ textarea.form-control-lg {
|
|
|
7029
7029
|
--bs-icon-size: var(--bs-icon-component-size, 1.5rem);
|
|
7030
7030
|
--bs-icon-padding: var(--bs-icon-component-padding, 0);
|
|
7031
7031
|
--bs-icon-loading-duration: var(--bs-icon-component-loading-duration, 1.8);
|
|
7032
|
-
display: inline-flex !important;
|
|
7032
|
+
display: inline-flex !important; /* stylelint-disable-line declaration-no-important */
|
|
7033
7033
|
align-items: center;
|
|
7034
7034
|
justify-content: center;
|
|
7035
7035
|
width: var(--bs-icon-size);
|
|
7036
7036
|
height: var(--bs-icon-size);
|
|
7037
7037
|
padding: var(--bs-icon-padding);
|
|
7038
|
-
font-size: var(--bs-icon-size) !important;
|
|
7038
|
+
font-size: var(--bs-icon-size) !important; /* stylelint-disable-line declaration-no-important */
|
|
7039
7039
|
color: var(--bs-icon-color);
|
|
7040
7040
|
background-color: var(--bs-icon-bg-color);
|
|
7041
7041
|
border-radius: var(--bs-icon-padding);
|
|
@@ -7061,7 +7061,6 @@ textarea.form-control-lg {
|
|
|
7061
7061
|
--bs-input-label-padding-x: var(--bs-ref-spacer-2);
|
|
7062
7062
|
--bs-input-label-padding-y: 0;
|
|
7063
7063
|
--bs-input-label-gap: var(--bs-ref-spacer-1);
|
|
7064
|
-
--bs-input-label-has-value-color: var(--bs-dark);
|
|
7065
7064
|
--bs-input-group-border-color: var(--bs-gray-300);
|
|
7066
7065
|
--bs-input-group-border-width: 1px;
|
|
7067
7066
|
--bs-input-group-border-radius: 0.5rem;
|
|
@@ -7072,9 +7071,9 @@ textarea.form-control-lg {
|
|
|
7072
7071
|
--bs-input-form-text-padding: 0 0.5rem;
|
|
7073
7072
|
--bs-input-form-text-gap: 0.5rem;
|
|
7074
7073
|
--bs-input-form-text-color: var(--bs-gray);
|
|
7075
|
-
--bs-input-group-disabled-border-color: var(--bs-gray-
|
|
7074
|
+
--bs-input-group-disabled-border-color: var(--bs-gray-300);
|
|
7076
7075
|
--bs-input-group-disabled-bg: var(--bs-gray-100);
|
|
7077
|
-
--bs-input-group-disabled-color: var(--bs-
|
|
7076
|
+
--bs-input-group-disabled-color: var(--bs-gray);
|
|
7078
7077
|
display: flex;
|
|
7079
7078
|
flex-direction: column;
|
|
7080
7079
|
gap: var(--bs-input-gap);
|
|
@@ -7103,10 +7102,10 @@ textarea.form-control-lg {
|
|
|
7103
7102
|
border: var(--bs-input-group-border-width) solid var(--bs-input-group-border-color);
|
|
7104
7103
|
border-radius: var(--bs-input-group-border-radius);
|
|
7105
7104
|
}
|
|
7106
|
-
.d-input .input-group:not(:focus-within):not(.has-validation):has(.form-control:not(:-moz-placeholder-shown
|
|
7105
|
+
.d-input .input-group:not(:focus-within):not(.has-validation):has(.form-control:not(:-moz-placeholder-shown)) {
|
|
7107
7106
|
border-color: var(--bs-input-group-hover-border-color);
|
|
7108
7107
|
}
|
|
7109
|
-
.d-input .input-group:not(:focus-within):not(.has-validation):has(.form-control:not(:placeholder-shown
|
|
7108
|
+
.d-input .input-group:not(:focus-within):not(.has-validation):has(.form-control:not(:placeholder-shown)) {
|
|
7110
7109
|
border-color: var(--bs-input-group-hover-border-color);
|
|
7111
7110
|
}
|
|
7112
7111
|
.d-input:has(.form-control.is-valid) .input-group {
|
|
@@ -7116,7 +7115,7 @@ textarea.form-control-lg {
|
|
|
7116
7115
|
.d-input:has(.form-control.is-valid) .input-group ~ .form-text {
|
|
7117
7116
|
color: var(--bs-form-valid-border-color);
|
|
7118
7117
|
}
|
|
7119
|
-
.d-input:has(.form-control.is-valid) .d-input-validation-icon
|
|
7118
|
+
.d-input:has(.form-control.is-valid) .d-input-validation-icon {
|
|
7120
7119
|
--bs-icon-color: var(--bs-success);
|
|
7121
7120
|
}
|
|
7122
7121
|
.d-input:has(.form-control.is-invalid) .input-group {
|
|
@@ -7126,7 +7125,7 @@ textarea.form-control-lg {
|
|
|
7126
7125
|
.d-input:has(.form-control.is-invalid) .input-group ~ .form-text {
|
|
7127
7126
|
color: var(--bs-form-invalid-border-color);
|
|
7128
7127
|
}
|
|
7129
|
-
.d-input:has(.form-control.is-invalid) .d-input-validation-icon
|
|
7128
|
+
.d-input:has(.form-control.is-invalid) .d-input-validation-icon {
|
|
7130
7129
|
--bs-icon-color: var(--bs-danger);
|
|
7131
7130
|
}
|
|
7132
7131
|
.d-input .input-group ~ .form-text {
|
|
@@ -7163,17 +7162,10 @@ textarea.form-control-lg {
|
|
|
7163
7162
|
border: 0;
|
|
7164
7163
|
outline: 0;
|
|
7165
7164
|
}
|
|
7166
|
-
.d-input .input-group-text:disabled {
|
|
7167
|
-
color: var(--bs-input-group-disabled-color);
|
|
7168
|
-
}
|
|
7169
7165
|
.d-input .form-control:disabled {
|
|
7170
7166
|
background: var(--bs-input-group-disabled-bg);
|
|
7171
7167
|
}
|
|
7172
|
-
.d-input:has(.form-control:disabled) {
|
|
7173
|
-
border-color: var(--bs-input-group-disabled-color);
|
|
7174
|
-
}
|
|
7175
7168
|
.d-input:has(.form-control:disabled) .input-group-text {
|
|
7176
|
-
color: var(--bs-input-group-disabled-color);
|
|
7177
7169
|
background: var(--bs-input-group-disabled-bg);
|
|
7178
7170
|
}
|
|
7179
7171
|
.d-input:has(.form-control:disabled) .d-input-icon .d-icon {
|
|
@@ -7380,7 +7372,7 @@ label {
|
|
|
7380
7372
|
--bs-btn-line-height: 1.2rem;
|
|
7381
7373
|
--bs-btn-color: var(--bs-body-color);
|
|
7382
7374
|
--bs-btn-bg: transparent;
|
|
7383
|
-
--bs-btn-border-width:
|
|
7375
|
+
--bs-btn-border-width: 1px;
|
|
7384
7376
|
--bs-btn-border-color: transparent;
|
|
7385
7377
|
--bs-btn-border-radius: var(--bs-btn-component-border-radius, 0.5rem);
|
|
7386
7378
|
--bs-btn-hover-border-color: transparent;
|
|
@@ -7396,7 +7388,7 @@ label {
|
|
|
7396
7388
|
--bs-btn-sm-padding-x: 1rem;
|
|
7397
7389
|
--bs-btn-sm-font-size: 0.875rem;
|
|
7398
7390
|
--bs-btn-sm-border-radius: var(--bs-btn-component-sm-border-radius, 0.5rem);
|
|
7399
|
-
display: flex;
|
|
7391
|
+
display: inline-flex;
|
|
7400
7392
|
flex-direction: row;
|
|
7401
7393
|
gap: var(--bs-btn-gap, 0.5rem);
|
|
7402
7394
|
align-items: center;
|
|
@@ -7431,6 +7423,7 @@ label {
|
|
|
7431
7423
|
}
|
|
7432
7424
|
.btn:hover, .btn.hover {
|
|
7433
7425
|
color: var(--bs-btn-hover-color);
|
|
7426
|
+
text-decoration: none;
|
|
7434
7427
|
background-color: var(--bs-btn-hover-bg);
|
|
7435
7428
|
border-color: var(--bs-btn-hover-border-color);
|
|
7436
7429
|
}
|
|
@@ -7534,6 +7527,9 @@ label {
|
|
|
7534
7527
|
--bs-btn-disabled-color: var(--bs-primary-300);
|
|
7535
7528
|
--bs-btn-focus-outline-offset: 0;
|
|
7536
7529
|
}
|
|
7530
|
+
.btn-link-primary span {
|
|
7531
|
+
text-decoration: underline;
|
|
7532
|
+
}
|
|
7537
7533
|
.btn-link-primary.loading {
|
|
7538
7534
|
--bs-btn-disabled-opacity: 1;
|
|
7539
7535
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -7608,6 +7604,9 @@ label {
|
|
|
7608
7604
|
--bs-btn-disabled-color: var(--bs-secondary-300);
|
|
7609
7605
|
--bs-btn-focus-outline-offset: 0;
|
|
7610
7606
|
}
|
|
7607
|
+
.btn-link-secondary span {
|
|
7608
|
+
text-decoration: underline;
|
|
7609
|
+
}
|
|
7611
7610
|
.btn-link-secondary.loading {
|
|
7612
7611
|
--bs-btn-disabled-opacity: 1;
|
|
7613
7612
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -7682,6 +7681,9 @@ label {
|
|
|
7682
7681
|
--bs-btn-disabled-color: var(--bs-success-300);
|
|
7683
7682
|
--bs-btn-focus-outline-offset: 0;
|
|
7684
7683
|
}
|
|
7684
|
+
.btn-link-success span {
|
|
7685
|
+
text-decoration: underline;
|
|
7686
|
+
}
|
|
7685
7687
|
.btn-link-success.loading {
|
|
7686
7688
|
--bs-btn-disabled-opacity: 1;
|
|
7687
7689
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -7756,6 +7758,9 @@ label {
|
|
|
7756
7758
|
--bs-btn-disabled-color: var(--bs-info-300);
|
|
7757
7759
|
--bs-btn-focus-outline-offset: 0;
|
|
7758
7760
|
}
|
|
7761
|
+
.btn-link-info span {
|
|
7762
|
+
text-decoration: underline;
|
|
7763
|
+
}
|
|
7759
7764
|
.btn-link-info.loading {
|
|
7760
7765
|
--bs-btn-disabled-opacity: 1;
|
|
7761
7766
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -7830,6 +7835,9 @@ label {
|
|
|
7830
7835
|
--bs-btn-disabled-color: var(--bs-warning-300);
|
|
7831
7836
|
--bs-btn-focus-outline-offset: 0;
|
|
7832
7837
|
}
|
|
7838
|
+
.btn-link-warning span {
|
|
7839
|
+
text-decoration: underline;
|
|
7840
|
+
}
|
|
7833
7841
|
.btn-link-warning.loading {
|
|
7834
7842
|
--bs-btn-disabled-opacity: 1;
|
|
7835
7843
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -7904,6 +7912,9 @@ label {
|
|
|
7904
7912
|
--bs-btn-disabled-color: var(--bs-danger-300);
|
|
7905
7913
|
--bs-btn-focus-outline-offset: 0;
|
|
7906
7914
|
}
|
|
7915
|
+
.btn-link-danger span {
|
|
7916
|
+
text-decoration: underline;
|
|
7917
|
+
}
|
|
7907
7918
|
.btn-link-danger.loading {
|
|
7908
7919
|
--bs-btn-disabled-opacity: 1;
|
|
7909
7920
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -7963,6 +7974,9 @@ label {
|
|
|
7963
7974
|
--bs-btn-disabled-color: var(--bs-light-300);
|
|
7964
7975
|
--bs-btn-focus-outline-offset: 0;
|
|
7965
7976
|
}
|
|
7977
|
+
.btn-link-light span {
|
|
7978
|
+
text-decoration: underline;
|
|
7979
|
+
}
|
|
7966
7980
|
.btn-link-light.loading {
|
|
7967
7981
|
--bs-btn-disabled-opacity: 1;
|
|
7968
7982
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -8022,6 +8036,9 @@ label {
|
|
|
8022
8036
|
--bs-btn-disabled-color: var(--bs-dark-300);
|
|
8023
8037
|
--bs-btn-focus-outline-offset: 0;
|
|
8024
8038
|
}
|
|
8039
|
+
.btn-link-dark span {
|
|
8040
|
+
text-decoration: underline;
|
|
8041
|
+
}
|
|
8025
8042
|
.btn-link-dark.loading {
|
|
8026
8043
|
--bs-btn-disabled-opacity: 1;
|
|
8027
8044
|
--bs-btn-disabled-bg: transparent;
|
|
@@ -8455,7 +8472,7 @@ label {
|
|
|
8455
8472
|
.badge {
|
|
8456
8473
|
--bs-badge-bg: var(--bs-white);
|
|
8457
8474
|
--bs-badge-dot-height: var(--bs-ref-spacer-3);
|
|
8458
|
-
display: block;
|
|
8475
|
+
display: inline-block;
|
|
8459
8476
|
background-color: var(--bs-badge-bg);
|
|
8460
8477
|
}
|
|
8461
8478
|
.badge.badge-primary {
|
|
@@ -9832,7 +9849,6 @@ label {
|
|
|
9832
9849
|
--bs-tabs-nav-padding-y: 1rem;
|
|
9833
9850
|
--bs-tabs-link-border-height: 2px;
|
|
9834
9851
|
--bs-tabs-link-line-height: 1.5rem;
|
|
9835
|
-
--bs-tabs-link-hover-color: var(--bs-secondary-600);
|
|
9836
9852
|
--bs-tabs-link-border-border-radius: 50rem;
|
|
9837
9853
|
--bs-tabs-link-border-active-color: var(--bs-secondary);
|
|
9838
9854
|
--bs-tabs-link-border-active-font-weight: var(--bs-ref-fw-bold);
|
|
@@ -9848,9 +9864,6 @@ label {
|
|
|
9848
9864
|
position: relative;
|
|
9849
9865
|
line-height: var(--bs-tabs-link-line-height);
|
|
9850
9866
|
}
|
|
9851
|
-
.d-tabs .nav-link:hover {
|
|
9852
|
-
color: var(--bs-tabs-link-hover-color);
|
|
9853
|
-
}
|
|
9854
9867
|
.d-tabs .nav-link.active {
|
|
9855
9868
|
font-weight: var(--bs-tabs-link-border-active-font-weight);
|
|
9856
9869
|
color: var(--bs-tabs-link-border-active-color);
|
|
@@ -10684,6 +10697,198 @@ label {
|
|
|
10684
10697
|
--bs-tooltip-bg: var(--bs-tooltip-component-bg, var(--bs-dark));
|
|
10685
10698
|
}
|
|
10686
10699
|
|
|
10700
|
+
.d-select {
|
|
10701
|
+
--bs-input-gap: 0.5rem;
|
|
10702
|
+
--bs-input-label-color: var(--bs-gray);
|
|
10703
|
+
--bs-input-label-font-weight: var(--bs-ref-fw-bold);
|
|
10704
|
+
--bs-input-label-font-size: var(--bs-ref-fs-small);
|
|
10705
|
+
--bs-input-label-padding-x: var(--bs-ref-spacer-2);
|
|
10706
|
+
--bs-input-label-padding-y: 0;
|
|
10707
|
+
--bs-input-label-gap: var(--bs-ref-spacer-1);
|
|
10708
|
+
--bs-input-group-border-color: var(--bs-gray-300);
|
|
10709
|
+
--bs-input-group-border-width: 1px;
|
|
10710
|
+
--bs-input-group-border-radius: 0.5rem;
|
|
10711
|
+
--bs-input-group-hover-border-color: var(--bs-gray);
|
|
10712
|
+
--bs-input-group-focus-border-color: var(--bs-secondary);
|
|
10713
|
+
--bs-input-group-focus-box-shadow: 0 0 0 1px rgba(var(--bs-secondary-rgb));
|
|
10714
|
+
--bs-input-padding-y: 0.75rem;
|
|
10715
|
+
--bs-input-padding-x: 1rem;
|
|
10716
|
+
--bs-input-font-family: ;
|
|
10717
|
+
--bs-input-font-size: 1rem;
|
|
10718
|
+
--bs-input-font-weight: 400;
|
|
10719
|
+
--bs-input-line-height: 1.375;
|
|
10720
|
+
--bs-input-color: var(--bs-gray);
|
|
10721
|
+
--bs-input-bg: var(--bs-white);
|
|
10722
|
+
--bs-input-focus-color: var(--bs-gray);
|
|
10723
|
+
--bs-input-focus-bg: var(--bs-white);
|
|
10724
|
+
--bs-input-placeholder-color: var(--bs-gray-500);
|
|
10725
|
+
--bs-input-form-text-padding: 0 0.5rem;
|
|
10726
|
+
--bs-input-form-text-gap: 0.5rem;
|
|
10727
|
+
--bs-input-form-text-color: var(--bs-gray);
|
|
10728
|
+
--bs-input-group-disabled-border-color: var(--bs-gray-300);
|
|
10729
|
+
--bs-input-group-disabled-bg: var(--bs-gray-100);
|
|
10730
|
+
--bs-input-group-disabled-color: var(--bs-gray);
|
|
10731
|
+
--bs-select-menu-shadow: 0 8px 12px 0 rgba(22, 23, 35, 0.05);
|
|
10732
|
+
--bs-select-option-focus-bg: var(--bs-gray-100);
|
|
10733
|
+
--bs-select-option-selected-color: var(--bs-secondary);
|
|
10734
|
+
--bs-select-option-selected-bg: var(--bs-gray-100);
|
|
10735
|
+
--bs-select-option-is-checkbox-font-size: var(--bs-body-font-size);
|
|
10736
|
+
--bs-select-option-is-checkbox-font-weight: var(--bs-ref-fw-normal);
|
|
10737
|
+
--bs-select-option-is-checkbox-color: var(--bs-gray-900);
|
|
10738
|
+
--bs-select-option-has-icon-icon-size: 1rem;
|
|
10739
|
+
--bs-select-multi-value-padding-x: var(--bs-input-gap);
|
|
10740
|
+
--bs-select-multi-value-padding-y: 0;
|
|
10741
|
+
--bs-select-multi-value-margin-right: var(--bs-input-gap);
|
|
10742
|
+
--bs-select-multi-value-background: var(--bs-gray-100);
|
|
10743
|
+
--bs-select-multi-value-border-radius: 0.25rem;
|
|
10744
|
+
--bs-select-multi-value-label-color: var(--bs-secondary);
|
|
10745
|
+
--bs-select-indicator-width: 1.5rem;
|
|
10746
|
+
--bs-select-indicator-height: 1.5rem;
|
|
10747
|
+
display: flex;
|
|
10748
|
+
flex-direction: column;
|
|
10749
|
+
gap: var(--bs-input-gap);
|
|
10750
|
+
align-items: flex-start;
|
|
10751
|
+
}
|
|
10752
|
+
.d-select:focus-within .input-group {
|
|
10753
|
+
border-color: var(--bs-input-group-focus-border-color);
|
|
10754
|
+
box-shadow: var(--bs-input-group-focus-box-shadow);
|
|
10755
|
+
}
|
|
10756
|
+
.d-select .d-select-control {
|
|
10757
|
+
display: flex;
|
|
10758
|
+
flex-direction: column;
|
|
10759
|
+
gap: var(--bs-input-gap);
|
|
10760
|
+
width: 100%;
|
|
10761
|
+
}
|
|
10762
|
+
.d-select label {
|
|
10763
|
+
display: inline-flex;
|
|
10764
|
+
flex-direction: row;
|
|
10765
|
+
gap: var(--bs-input-label-gap);
|
|
10766
|
+
align-items: center;
|
|
10767
|
+
}
|
|
10768
|
+
.d-select label .d-select-icon .d-icon {
|
|
10769
|
+
--bs-icon-color: var(--bs-focus-ring-color);
|
|
10770
|
+
}
|
|
10771
|
+
.d-select .input-group {
|
|
10772
|
+
border: var(--bs-input-group-border-width) solid var(--bs-input-group-border-color);
|
|
10773
|
+
border-radius: var(--bs-input-group-border-radius);
|
|
10774
|
+
}
|
|
10775
|
+
.d-select .input-group:not(.disabled):not(:focus-within):not(.has-validation):has(.d-select__value-container--has-value) {
|
|
10776
|
+
border-color: var(--bs-input-group-hover-border-color);
|
|
10777
|
+
}
|
|
10778
|
+
.d-select .input-group ~ .form-text {
|
|
10779
|
+
display: inline-flex;
|
|
10780
|
+
flex-direction: row;
|
|
10781
|
+
gap: var(--bs-input-form-text-gap);
|
|
10782
|
+
align-items: center;
|
|
10783
|
+
padding: var(--bs-input-form-text-padding);
|
|
10784
|
+
color: var(--bs-input-form-text-color);
|
|
10785
|
+
}
|
|
10786
|
+
.d-select .d-select-component {
|
|
10787
|
+
border-radius: var(--bs-input-group-border-radius);
|
|
10788
|
+
}
|
|
10789
|
+
.d-select .d-select__control {
|
|
10790
|
+
width: 100%;
|
|
10791
|
+
padding: var(--bs-input-padding-y) var(--bs-input-padding-x);
|
|
10792
|
+
font-family: var(--bs-input-font-family);
|
|
10793
|
+
--bs-input-font-size: 1rem;
|
|
10794
|
+
font-weight: var(--bs-input-font-weight);
|
|
10795
|
+
line-height: var(--bs-input-line-height);
|
|
10796
|
+
color: var(--bs-input-color);
|
|
10797
|
+
-webkit-appearance: none;
|
|
10798
|
+
-moz-appearance: none;
|
|
10799
|
+
appearance: none;
|
|
10800
|
+
background-color: var(--bs-input-bg);
|
|
10801
|
+
background-clip: padding-box;
|
|
10802
|
+
border-radius: 0.5rem;
|
|
10803
|
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
10804
|
+
}
|
|
10805
|
+
@media (prefers-reduced-motion: reduce) {
|
|
10806
|
+
.d-select .d-select__control {
|
|
10807
|
+
transition: none;
|
|
10808
|
+
}
|
|
10809
|
+
}
|
|
10810
|
+
.d-select .d-select__control:focus {
|
|
10811
|
+
color: var(--bs-input-focus-color);
|
|
10812
|
+
background-color: var(--bs-input-focus-bg);
|
|
10813
|
+
outline: 0;
|
|
10814
|
+
}
|
|
10815
|
+
.d-select .d-select__placeholder {
|
|
10816
|
+
color: var(--bs-input-placeholder-color);
|
|
10817
|
+
opacity: 1;
|
|
10818
|
+
}
|
|
10819
|
+
.d-select .d-select__menu-list {
|
|
10820
|
+
top: calc(var(--bs-input-group-border-width) * 2);
|
|
10821
|
+
background: var(--bs-input-bg);
|
|
10822
|
+
border-radius: var(--bs-input-group-border-radius);
|
|
10823
|
+
box-shadow: var(--bs-select-menu-shadow);
|
|
10824
|
+
}
|
|
10825
|
+
.d-select .d-select__control--menu-is-open .d-select__dropdown-indicator {
|
|
10826
|
+
transform: rotateX(180deg);
|
|
10827
|
+
}
|
|
10828
|
+
.d-select .d-select__option {
|
|
10829
|
+
display: block;
|
|
10830
|
+
padding: var(--bs-input-padding-y) var(--bs-input-padding-x);
|
|
10831
|
+
}
|
|
10832
|
+
.d-select .d-select__option--is-focused {
|
|
10833
|
+
background: var(--bs-select-option-focus-bg);
|
|
10834
|
+
}
|
|
10835
|
+
.d-select .d-select__option--is-selected {
|
|
10836
|
+
color: var(--bs-select-option-selected-color);
|
|
10837
|
+
background: var(--bs-select-option-selected-bg);
|
|
10838
|
+
}
|
|
10839
|
+
.d-select .d-select__option--is-checkbox {
|
|
10840
|
+
padding: 0;
|
|
10841
|
+
}
|
|
10842
|
+
.d-select .d-select__option--is-checkbox > label {
|
|
10843
|
+
width: 100%;
|
|
10844
|
+
padding: var(--bs-input-padding-x);
|
|
10845
|
+
}
|
|
10846
|
+
.d-select .d-select__option--is-checkbox .form-check-input {
|
|
10847
|
+
margin-right: var(--bs-input-padding-x);
|
|
10848
|
+
}
|
|
10849
|
+
.d-select .d-select__option--is-checkbox label {
|
|
10850
|
+
font-size: var(--bs-select-option-is-checkbox-font-size);
|
|
10851
|
+
font-weight: var(--bs-select-option-is-checkbox-font-weight);
|
|
10852
|
+
color: var(--bs-select-option-is-checkbox-color);
|
|
10853
|
+
}
|
|
10854
|
+
.d-select .d-select__multi-value {
|
|
10855
|
+
padding: var(--bs-select-multi-value-padding-y) var(--bs-select-multi-value-padding-x);
|
|
10856
|
+
margin-right: var(--bs-select-multi-value-margin-right);
|
|
10857
|
+
background: var(--bs-select-multi-value-background);
|
|
10858
|
+
border-radius: var(--bs-select-multi-value-border-radius);
|
|
10859
|
+
}
|
|
10860
|
+
.d-select .d-select__multi-value__label {
|
|
10861
|
+
color: var(--bs-select-multi-value-label-color);
|
|
10862
|
+
}
|
|
10863
|
+
.d-select .d-select__control--has-icon,
|
|
10864
|
+
.d-select .d-select__option--has-icon {
|
|
10865
|
+
display: flex;
|
|
10866
|
+
flex-direction: row;
|
|
10867
|
+
gap: var(--bs-input-padding-x);
|
|
10868
|
+
align-items: center;
|
|
10869
|
+
white-space: nowrap;
|
|
10870
|
+
}
|
|
10871
|
+
.d-select .d-select__control--has-icon .d-icon,
|
|
10872
|
+
.d-select .d-select__option--has-icon .d-icon {
|
|
10873
|
+
--bs-icon-size: var(--bs-select-option-has-icon-icon-size);
|
|
10874
|
+
}
|
|
10875
|
+
.d-select .d-select__indicator {
|
|
10876
|
+
display: flex;
|
|
10877
|
+
align-items: center;
|
|
10878
|
+
justify-content: center;
|
|
10879
|
+
width: var(--bs-select-indicator-width);
|
|
10880
|
+
height: var(--bs-select-indicator-height);
|
|
10881
|
+
}
|
|
10882
|
+
.d-select .d-select__indicator-separator {
|
|
10883
|
+
width: var(--bs-input-gap);
|
|
10884
|
+
}
|
|
10885
|
+
.d-select.disabled .d-select__control {
|
|
10886
|
+
background: var(--bs-input-group-disabled-bg);
|
|
10887
|
+
}
|
|
10888
|
+
.d-select.disabled .input-group {
|
|
10889
|
+
border-color: var(--bs-input-group-disabled-border-color);
|
|
10890
|
+
}
|
|
10891
|
+
|
|
10687
10892
|
.operation-group:not(:last-child) {
|
|
10688
10893
|
border-bottom: 1px solid var(--bs-gray-300);
|
|
10689
10894
|
}
|