svelte-multiselect
Advanced tools
Comparing version 1.2.2 to 1.2.3
@@ -8,3 +8,3 @@ { | ||
"license": "MIT", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"type": "module", | ||
@@ -11,0 +11,0 @@ "svelte": "MultiSelect.svelte", |
@@ -137,6 +137,7 @@ <div class="maybe-hide"> | ||
- `color: var(--sms-text-color, inherit)`: Input text color. | ||
- `border: var(--sms-focus-border, 1pt solid var(--sms-active-color, cornflowerblue))`: `div.multiselect` border when focused. | ||
- `border: var(--sms-focus-border, 1pt solid var(--sms-active-color, cornflowerblue))`: `div.multiselect` border when focused. Falls back to `--sms-active-color` if not set which in turn falls back on `cornflowerblue`. | ||
- `background: var(--sms-readonly-bg, lightgray)`: Background when in readonly state. | ||
- `background: var(--sms-token-bg, var(--sms-active-color, cornflowerblue))`: Background of selected tokens. | ||
- `color: var(--sms-remove-x-hover-color, lightgray)`: Hover color of cross icon to remove selected tokens. | ||
- `color: var(--sms-remove-x-hover+focus-color, lightgray)`: Hover color of cross icon to remove selected tokens. | ||
- `color: var(--sms-remove-x-hover-focus-color, lightskyblue)`: Color of the cross-icon buttons for removing all or individual selected options when in `:focus` or `:hover` state. | ||
- `background: var(--sms-options-bg, white)`: Background of options list. | ||
@@ -216,5 +217,7 @@ - `background: var(--sms-li-selected-bg, inherit)`: Background of selected list items in options pane. | ||
:global(.multiselect ul.options li.selected.active) { | ||
/* both active and already selected, pressing enter now will deselect the element again */ | ||
} | ||
:global(.multiselect ul.options li.disabled) { | ||
/* this option is one included in disabledOptions (see props above) */ | ||
} | ||
``` |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27711
222