@kumori/aurora-wui-components 0.0.269-dev4124.3 → 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
@@ -1694,6 +1694,7 @@ var AxebowInputBase = class extends LitElement {
1694
1694
  --sl-input-focus-ring-color: transparent;
1695
1695
  --sl-color-primary-600: transparent;
1696
1696
  --sl-input-border-color-focus: transparent;
1697
+ border-radius: 0.375rem;
1697
1698
  }
1698
1699
  .input-error sl-input,
1699
1700
  .input-error sl-select {
@@ -1913,7 +1914,7 @@ var AxebowNumericInput = class AxebowNumericInput extends AxebowInputBase {
1913
1914
  width: 1.375rem !important;
1914
1915
  height: 2.375rem !important;
1915
1916
  border-left: 1px solid var(--axebow-gray);
1916
- 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;
1917
1918
  overflow: hidden;
1918
1919
  }
1919
1920
  .axebow-numeric-stepper-btn {
@@ -2846,7 +2847,7 @@ var AxebowTagsInput = class AxebowTagsInput extends LitElement {
2846
2847
  ${this.description ? html`<p class="text-base text-black mb-1.5">${this.description}</p>` : ""}
2847
2848
  <div
2848
2849
  class="flex flex-wrap items-center gap-1.5 min-h-9 px-2 py-1.5
2849
- border border-solid border-gray-300 rounded bg-white cursor-text
2850
+ border border-solid border-gray-300 rounded-md bg-white cursor-text
2850
2851
  focus-within:border-blue-500 focus-within:ring-2 focus-within:ring-blue-100
2851
2852
  transition-shadow"
2852
2853
  @click=${() => this.shadowRoot?.querySelector(".tag-field")?.focus()}