@kumori/aurora-wui-components 0.0.273-dev4131.23 → 0.0.273-dev4131.25
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-empty-state.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-empty-state/axebow-empty-state.ts"],"names":[],"mappings":"AACA,OAAO,EAAQ,UAAU,EAAa,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"axebow-empty-state.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-empty-state/axebow-empty-state.ts"],"names":[],"mappings":"AACA,OAAO,EAAQ,UAAU,EAAa,MAAM,KAAK,CAAC;AAElD,OAAO,mCAAmC,CAAC;AAE3C,qBACa,gBAAiB,SAAQ,UAAU;IAC5C,MAAM,CAAC,MAAM,0BAA0B;IAEX,OAAO,SAAM;IACb,aAAa,SAAM;IACnB,UAAU,SAAM;IAChB,YAAY,SAAM;IAE9C,OAAO,CAAC,kBAAkB;IAS1B,MAAM;CAyBT"}
|
package/dist/index.js
CHANGED
|
@@ -8347,9 +8347,9 @@ var AxebowTenantResourceTable = class AxebowTenantResourceTable extends LitEleme
|
|
|
8347
8347
|
</div>
|
|
8348
8348
|
`;
|
|
8349
8349
|
return html`
|
|
8350
|
-
<div class="flex items-center justify-center gap-6">
|
|
8350
|
+
<div class="flex items-center justify-center gap-6 px-2">
|
|
8351
8351
|
<usage-chart
|
|
8352
|
-
class="
|
|
8352
|
+
class="flex-1 shrink-0"
|
|
8353
8353
|
height=${ifDefined(this.chartHeight)}
|
|
8354
8354
|
chartId=${idPrefix}
|
|
8355
8355
|
chartType="line"
|
|
@@ -13160,15 +13160,15 @@ var AxebowEmptyState = class AxebowEmptyState extends LitElement {
|
|
|
13160
13160
|
<div class="w-full min-h-14 py-4 px-4 rounded-md bg-(--axebow-base) flex items-center justify-center text-center box-border">
|
|
13161
13161
|
<slot>
|
|
13162
13162
|
${Boolean(this.messageBefore || this.actionText || this.messageAfter) ? html`
|
|
13163
|
-
<span class="text-(--axebow-secondary)
|
|
13163
|
+
<span class="text-(--axebow-secondary) font-normal">
|
|
13164
13164
|
${this.messageBefore ? html`${this.messageBefore} ` : ""}
|
|
13165
|
-
${this.actionText ? html`<
|
|
13166
|
-
|
|
13165
|
+
${this.actionText ? html`<axebow-button
|
|
13166
|
+
variant="text"
|
|
13167
13167
|
@click=${this._handleActionClick}
|
|
13168
|
-
>${this.actionText}</
|
|
13168
|
+
>${this.actionText}</axebow-button>` : ""}
|
|
13169
13169
|
${this.messageAfter ? html` ${this.messageAfter}` : ""}
|
|
13170
13170
|
</span>
|
|
13171
|
-
` : html`<span class="text-(--axebow-secondary)
|
|
13171
|
+
` : html`<span class="text-(--axebow-secondary) font-normal">${this.message}</span>`}
|
|
13172
13172
|
</slot>
|
|
13173
13173
|
</div>
|
|
13174
13174
|
`;
|