@kumori/aurora-wui-components 0.0.267-dev4121.10 → 0.0.267-dev4121.12
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"axebow-select-input-with-divider.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-input/axebow-select-input-with-divider.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAE7D,qBACa,4BAA6B,SAAQ,iBAAiB;IACjE,MAAM,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"axebow-select-input-with-divider.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-input/axebow-select-input-with-divider.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAE7D,qBACa,4BAA6B,SAAQ,iBAAiB;IACjE,MAAM,CAAC,MAAM,4BA2CX;CACH;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,kCAAkC,EAAE,4BAA4B,CAAC;KAClE;CACF"}
|
package/dist/index.js
CHANGED
|
@@ -2454,32 +2454,40 @@ AxebowSelectInput = __decorate([customElement("axebow-select-input")], AxebowSel
|
|
|
2454
2454
|
var AxebowSelectInputWithDivider = class AxebowSelectInputWithDivider extends AxebowSelectInput {
|
|
2455
2455
|
static {
|
|
2456
2456
|
this.styles = [...AxebowSelectInput.styles, css`
|
|
2457
|
+
sl-select {
|
|
2458
|
+
--sl-color-primary-600: var(--axebow-white, #ffffff);
|
|
2459
|
+
}
|
|
2457
2460
|
sl-select::part(listbox) {
|
|
2458
2461
|
border: 1px solid var(--axebow-tertiary) !important;
|
|
2462
|
+
padding-bottom: 0 !important;
|
|
2459
2463
|
}
|
|
2460
2464
|
sl-option::part(base):hover {
|
|
2461
2465
|
background-color: var(--axebow-base) !important;
|
|
2462
2466
|
}
|
|
2463
|
-
sl-option
|
|
2467
|
+
sl-option::part(checked-icon) {
|
|
2468
|
+
display: none !important;
|
|
2469
|
+
}
|
|
2470
|
+
sl-select sl-option[aria-selected='true']::part(base) {
|
|
2464
2471
|
background-color: var(--axebow-white, #ffffff) !important;
|
|
2472
|
+
color: var(--axebow-black, #000000) !important;
|
|
2465
2473
|
}
|
|
2466
2474
|
sl-option[aria-selected='true']::part(label) {
|
|
2467
2475
|
font-weight: 600 !important;
|
|
2468
2476
|
color: var(--axebow-black, #000000) !important;
|
|
2469
2477
|
}
|
|
2470
2478
|
sl-option.add-option::part(base) {
|
|
2471
|
-
border-top: 1px solid var(--axebow-
|
|
2479
|
+
border-top: 1px solid var(--axebow-gray) !important;
|
|
2472
2480
|
margin-top: 0.25rem;
|
|
2473
2481
|
box-sizing: border-box;
|
|
2474
2482
|
width: 35.6875rem;
|
|
2475
2483
|
height: 2.5rem;
|
|
2476
2484
|
margin-inline: auto;
|
|
2477
|
-
padding
|
|
2478
|
-
padding-bottom: 0;
|
|
2485
|
+
padding: 0.25rem 0;
|
|
2479
2486
|
justify-content: center;
|
|
2480
2487
|
}
|
|
2481
|
-
sl-option.add-option::part(
|
|
2482
|
-
|
|
2488
|
+
sl-option.add-option::part(label) {
|
|
2489
|
+
flex: none;
|
|
2490
|
+
text-align: center;
|
|
2483
2491
|
}
|
|
2484
2492
|
sl-option.add-option::part(base):hover {
|
|
2485
2493
|
background-color: var(--axebow-base) !important;
|