@kumori/aurora-wui-components 0.0.269-dev4124.2 → 0.0.269-dev4124.4

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-input-base.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-input/axebow-input-base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAa,cAAc,EAAE,MAAM,KAAK,CAAC;AAIvE,OAAO,+BAA+B,CAAC;AAEvC,8BAAsB,eAAgB,SAAQ,UAAU;IACtD,MAAM,CAAC,UAAU,4BAgEf;IAE0B,KAAK,SAAM;IACX,WAAW,SAAM;IACjB,KAAK,SAAM;IACX,WAAW,SAAM;IAChB,QAAQ,UAAS;IACjB,QAAQ,UAAS;IACjB,QAAQ,UAAS;IAClB,YAAY,SAAM;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,KAAK,IAAI,CAAC;IACjC,OAAO,UAAS;IAChB,eAAe,UAAS;IAErD,SAAS,CAAC,YAAY,CAAC,CAAC,EAAE,KAAK;IAO/B,SAAS,CAAC,aAAa,CAAC,OAAO,EAAE,cAAc,GAAG,cAAc;IA2ChE,SAAS,CAAC,gBAAgB,CAAC,OAAO,EAAE,cAAc,GAAG,cAAc;CAiCpE"}
1
+ {"version":3,"file":"axebow-input-base.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-input/axebow-input-base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAa,cAAc,EAAE,MAAM,KAAK,CAAC;AAIvE,OAAO,+BAA+B,CAAC;AAEvC,8BAAsB,eAAgB,SAAQ,UAAU;IACtD,MAAM,CAAC,UAAU,4BAiEf;IAE0B,KAAK,SAAM;IACX,WAAW,SAAM;IACjB,KAAK,SAAM;IACX,WAAW,SAAM;IAChB,QAAQ,UAAS;IACjB,QAAQ,UAAS;IACjB,QAAQ,UAAS;IAClB,YAAY,SAAM;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,KAAK,IAAI,CAAC;IACjC,OAAO,UAAS;IAChB,eAAe,UAAS;IAErD,SAAS,CAAC,YAAY,CAAC,CAAC,EAAE,KAAK;IAO/B,SAAS,CAAC,aAAa,CAAC,OAAO,EAAE,cAAc,GAAG,cAAc;IA2ChE,SAAS,CAAC,gBAAgB,CAAC,OAAO,EAAE,cAAc,GAAG,cAAc;CAiCpE"}
package/dist/index.js CHANGED
@@ -86,7 +86,8 @@ var axebowTheme = css`
86
86
  sl-input:focus-within::part(base),
87
87
  sl-select:focus-within::part(combobox) {
88
88
  border-color: var(--axebow-black) !important;
89
- box-shadow: 0 0 0 1px var(--axebow-black) !important;
89
+ border-width: 1px !important;
90
+ box-shadow: none !important;
90
91
  }
91
92
  sl-select sl-option:hover::part(base) {
92
93
  background-color: #e9ecef;
@@ -1693,6 +1694,7 @@ var AxebowInputBase = class extends LitElement {
1693
1694
  --sl-input-focus-ring-color: transparent;
1694
1695
  --sl-color-primary-600: transparent;
1695
1696
  --sl-input-border-color-focus: transparent;
1697
+ border-radius: 0.375rem;
1696
1698
  }
1697
1699
  .input-error sl-input,
1698
1700
  .input-error sl-select {
@@ -1912,7 +1914,7 @@ var AxebowNumericInput = class AxebowNumericInput extends AxebowInputBase {
1912
1914
  width: 1.375rem !important;
1913
1915
  height: 2.375rem !important;
1914
1916
  border-left: 1px solid var(--axebow-gray);
1915
- border-radius: 0 var(--sl-input-border-radius-medium, 0.25rem) var(--sl-input-border-radius-medium, 0.25rem) 0;
1917
+ border-radius: 0 0.375rem 0.375rem 0;
1916
1918
  overflow: hidden;
1917
1919
  }
1918
1920
  .axebow-numeric-stepper-btn {
@@ -2845,7 +2847,7 @@ var AxebowTagsInput = class AxebowTagsInput extends LitElement {
2845
2847
  ${this.description ? html`<p class="text-base text-black mb-1.5">${this.description}</p>` : ""}
2846
2848
  <div
2847
2849
  class="flex flex-wrap items-center gap-1.5 min-h-9 px-2 py-1.5
2848
- border border-solid border-gray-300 rounded bg-white cursor-text
2850
+ border border-solid border-gray-300 rounded-md bg-white cursor-text
2849
2851
  focus-within:border-blue-500 focus-within:ring-2 focus-within:ring-blue-100
2850
2852
  transition-shadow"
2851
2853
  @click=${() => this.shadowRoot?.querySelector(".tag-field")?.focus()}