@kumori/aurora-wui-components 0.0.281-dev4205.6 → 0.0.281-dev4205.7

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/index.js CHANGED
@@ -13640,7 +13640,7 @@ var AxebowCallToActionRow = class AxebowCallToActionRow extends LitElement {
13640
13640
  render() {
13641
13641
  const { bg, color, iconName } = CRITICALITY_STYLES[this.criticality] ?? CRITICALITY_STYLES.low;
13642
13642
  return html`
13643
- <div class="w-full box-border border border-solid border-(--axebow-table-header-border) bg-white p-4 flex flex-row items-center gap-4">
13643
+ <div class="w-full box-border border-t border-solid border-(--axebow-table-header-border) bg-white p-4 flex flex-row items-center gap-4">
13644
13644
  <div class="w-10 h-10 rounded-md shrink-0 flex items-center justify-center" style="background-color: ${bg};">
13645
13645
  <div class="w-6 h-6 flex items-center justify-center">
13646
13646
  <axebow-icon iconName=${iconName} iconColor=${color} size="2xl"></axebow-icon>
@@ -13762,7 +13762,7 @@ var AxebowCallToActionFeature = class AxebowCallToActionFeature extends LitEleme
13762
13762
  const chevronIconName = this.expanded ? "keyboard_arrow_down" : "chevron_right";
13763
13763
  const hasCallToActions = this.callToActions.length > 0;
13764
13764
  return html`
13765
- <div class="w-full box-border border border-solid border-(--axebow-table-header-border) flex flex-col">
13765
+ <div class="w-full box-border border border-solid border-(--axebow-table-header-border) rounded-lg overflow-hidden flex flex-col">
13766
13766
  <div
13767
13767
  class="w-full box-border py-3 px-5 flex flex-row items-center justify-between"
13768
13768
  style="background-color: ${this.expanded ? "var(--axebow-base)" : "var(--axebow-white)"};"