@kumori/aurora-wui-components 0.0.2 → 0.0.3
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/components/aurora-button.d.ts +2 -2
- package/dist/components/cards/aurora-base-card.d.ts +2 -8
- package/dist/components/cards/aurora-base-card.d.ts.map +1 -1
- package/dist/components/cards/aurora-more-actions.d.ts +2 -2
- package/dist/components/cards/aurora-more-actions.d.ts.map +1 -1
- package/dist/components/cards/aurora-runtime-card.d.ts +2 -3
- package/dist/components/cards/aurora-runtime-card.d.ts.map +1 -1
- package/dist/components/cards/parts/aurora-card-action-banner.d.ts +2 -2
- package/dist/components/cards/parts/aurora-card-action-banner.d.ts.map +1 -1
- package/dist/components/cards/parts/aurora-card-attention-banner.d.ts +2 -2
- package/dist/components/cards/parts/aurora-card-attention-banner.d.ts.map +1 -1
- package/dist/components/cards/parts/aurora-card-filter-item.d.ts +2 -2
- package/dist/components/cards/parts/aurora-card-filter-item.d.ts.map +1 -1
- package/dist/components/cards/parts/aurora-card-filter.d.ts +2 -3
- package/dist/components/cards/parts/aurora-card-filter.d.ts.map +1 -1
- package/dist/components/cards/parts/aurora-card-header.d.ts +2 -2
- package/dist/components/cards/parts/aurora-card-header.d.ts.map +1 -1
- package/dist/components/cards/parts/aurora-card-resource-table.d.ts +2 -4
- package/dist/components/cards/parts/aurora-card-resource-table.d.ts.map +1 -1
- package/dist/components/cards/parts/aurora-card-stat-item.d.ts +2 -2
- package/dist/components/cards/parts/aurora-card-stat-item.d.ts.map +1 -1
- package/dist/components/cards/parts/aurora-card-stats-row.d.ts +2 -3
- package/dist/components/cards/parts/aurora-card-stats-row.d.ts.map +1 -1
- package/dist/components/cards/parts/aurora-card-status-bar.d.ts +2 -3
- package/dist/components/cards/parts/aurora-card-status-bar.d.ts.map +1 -1
- package/dist/index.js +1222 -15
- package/dist/index.js.map +1 -1
- package/dist/styles/aurora-theme.d.ts +1 -1
- package/package.json +10 -4
- package/dist/components/aurora-button.js +0 -49
- package/dist/components/aurora-button.js.map +0 -1
- package/dist/components/cards/aurora-base-card.js +0 -299
- package/dist/components/cards/aurora-base-card.js.map +0 -1
- package/dist/components/cards/aurora-more-actions.js +0 -194
- package/dist/components/cards/aurora-more-actions.js.map +0 -1
- package/dist/components/cards/aurora-runtime-card.js +0 -427
- package/dist/components/cards/aurora-runtime-card.js.map +0 -1
- package/dist/components/cards/card.types.js +0 -2
- package/dist/components/cards/card.types.js.map +0 -1
- package/dist/components/cards/parts/aurora-card-action-banner.js +0 -61
- package/dist/components/cards/parts/aurora-card-action-banner.js.map +0 -1
- package/dist/components/cards/parts/aurora-card-attention-banner.js +0 -111
- package/dist/components/cards/parts/aurora-card-attention-banner.js.map +0 -1
- package/dist/components/cards/parts/aurora-card-filter-item.js +0 -53
- package/dist/components/cards/parts/aurora-card-filter-item.js.map +0 -1
- package/dist/components/cards/parts/aurora-card-filter.js +0 -168
- package/dist/components/cards/parts/aurora-card-filter.js.map +0 -1
- package/dist/components/cards/parts/aurora-card-header.js +0 -161
- package/dist/components/cards/parts/aurora-card-header.js.map +0 -1
- package/dist/components/cards/parts/aurora-card-resource-table.js +0 -210
- package/dist/components/cards/parts/aurora-card-resource-table.js.map +0 -1
- package/dist/components/cards/parts/aurora-card-stat-item.js +0 -69
- package/dist/components/cards/parts/aurora-card-stat-item.js.map +0 -1
- package/dist/components/cards/parts/aurora-card-stats-row.js +0 -56
- package/dist/components/cards/parts/aurora-card-stats-row.js.map +0 -1
- package/dist/components/cards/parts/aurora-card-status-bar.js +0 -87
- package/dist/components/cards/parts/aurora-card-status-bar.js.map +0 -1
- package/dist/styles/aurora-theme.js +0 -43
- package/dist/styles/aurora-theme.js.map +0 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
export declare class AuroraButton extends LitElement {
|
|
3
|
-
static styles: import(
|
|
3
|
+
static styles: import('lit').CSSResult;
|
|
4
4
|
disabled: boolean;
|
|
5
|
-
render(): import(
|
|
5
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
6
6
|
}
|
|
7
7
|
declare global {
|
|
8
8
|
interface HTMLElementTagNameMap {
|
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import { ActionMenuItem, CardBadge, CardFilterItem, MainStatsType, TableStatsType } from './card.types.js';
|
|
3
|
-
import './aurora-more-actions.js';
|
|
4
|
-
import './parts/aurora-card-header.js';
|
|
5
|
-
import './parts/aurora-card-stats-row.js';
|
|
6
|
-
import './parts/aurora-card-filter.js';
|
|
7
|
-
import './parts/aurora-card-resource-table.js';
|
|
8
|
-
import './parts/aurora-card-status-bar.js';
|
|
9
3
|
export declare class AuroraBaseCard extends LitElement {
|
|
10
|
-
static styles: import(
|
|
4
|
+
static styles: import('lit').CSSResult[];
|
|
11
5
|
cardType: 'account' | 'environment' | 'tenant';
|
|
12
6
|
name: string;
|
|
13
7
|
logoSrc: string | null;
|
|
@@ -46,6 +40,6 @@ export declare class AuroraBaseCard extends LitElement {
|
|
|
46
40
|
freeIaasDesc: string;
|
|
47
41
|
haLabel: string;
|
|
48
42
|
haTitle: string;
|
|
49
|
-
render(): import(
|
|
43
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
50
44
|
}
|
|
51
45
|
//# sourceMappingURL=aurora-base-card.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-base-card.d.ts","sourceRoot":"","sources":["../../../src/components/cards/aurora-base-card.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-base-card.d.ts","sourceRoot":"","sources":["../../../src/components/cards/aurora-base-card.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,EAAE,cAAc,EAAE,SAAS,EAAE,cAAc,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAC3G,OAAO,0BAA0B,CAAC;AAClC,OAAO,+BAA+B,CAAC;AACvC,OAAO,kCAAkC,CAAC;AAC1C,OAAO,+BAA+B,CAAC;AACvC,OAAO,uCAAuC,CAAC;AAC/C,OAAO,mCAAmC,CAAC;AAE3C,qBACa,cAAe,SAAQ,UAAU;IAC5C,MAAM,CAAC,MAAM,4BAaX;IAE0B,QAAQ,EAAE,SAAS,GAAG,aAAa,GAAG,QAAQ,CAAa;IAC3D,IAAI,SAAM;IACV,OAAO,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC9B,eAAe,SAAM;IACrB,KAAK,EAAE,SAAS,CAAU;IAC1B,QAAQ,SAAM;IAEf,SAAS,EAAE,aAAa,EAAE,CAAM;IAC9B,OAAO,UAAS;IAElB,UAAU,EAAE,cAAc,EAAE,CAAM;IACjC,kBAAkB,SAAM;IAEzB,WAAW,EAAE,cAAc,EAAE,CAAM;IAClC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC9B,YAAY,UAAS;IACtB,UAAU,SAAM;IAChB,gBAAgB,SAAM;IACtB,cAAc,SAAsB;IACnC,aAAa,UAAS;IACtB,WAAW,UAAS;IACpB,UAAU,UAAS;IACnB,UAAU,UAAS;IAEnB,gBAAgB,UAAS;IACzB,iBAAiB,UAAS;IAC3B,WAAW,SAAY;IACvB,aAAa,SAAoB;IACjC,iBAAiB,SAA0B;IAC3C,iBAAiB,SAAoB;IACrC,QAAQ,SAAS;IACjB,iBAAiB,SAAM;IAEtB,eAAe,UAAS;IAC1B,kBAAkB,EAAE,cAAc,EAAE,CAAM;IACxC,UAAU,UAAS;IACpB,UAAU,SAAW;IACrB,gBAAgB,SAAU;IAE1B,aAAa,SAAe;IAC5B,aAAa,SAAyB;IACtC,YAAY,SAAgD;IAC5D,OAAO,SAAsB;IAC7B,OAAO,SAA+B;IAElE,MAAM;CAyFP"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import { ActionMenuItem } from './card.types.js';
|
|
3
3
|
export declare class AuroraMoreActions extends LitElement {
|
|
4
|
-
static styles: import(
|
|
4
|
+
static styles: import('lit').CSSResult[];
|
|
5
5
|
open: boolean;
|
|
6
6
|
placement: 'top' | 'bottom';
|
|
7
7
|
disabled: boolean;
|
|
@@ -18,6 +18,6 @@ export declare class AuroraMoreActions extends LitElement {
|
|
|
18
18
|
private _handleScroll;
|
|
19
19
|
private _toggle;
|
|
20
20
|
private _handleSlotClick;
|
|
21
|
-
render(): import(
|
|
21
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
22
22
|
}
|
|
23
23
|
//# sourceMappingURL=aurora-more-actions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-more-actions.d.ts","sourceRoot":"","sources":["../../../src/components/cards/aurora-more-actions.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-more-actions.d.ts","sourceRoot":"","sources":["../../../src/components/cards/aurora-more-actions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAEjD,qBACa,iBAAkB,SAAQ,UAAU;IAC/C,MAAM,CAAC,MAAM,4BAGX;IAE2B,IAAI,UAAS;IACd,SAAS,EAAE,KAAK,GAAG,QAAQ,CAAY;IACtC,QAAQ,UAAS;IACnB,OAAO,EAAE,cAAc,EAAE,CAAM;IAC9B,KAAK,SAAM;IACX,QAAQ,SAAM;IACb,WAAW,UAAS;IACrB,UAAU,SAAW;IACrB,gBAAgB,SAAU;IAE7C,OAAO,CAAC,SAAS,CAAwB;IAElD,iBAAiB;IAMjB,oBAAoB;IAMpB,OAAO,CAAC,mBAAmB,CAKzB;IAEF,OAAO,CAAC,aAAa,CAKnB;IAEF,OAAO,CAAC,OAAO;IAcf,OAAO,CAAC,gBAAgB;IAKxB,MAAM;CAkDP"}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import { TableStatsType, RuntimeFilterRole } from './card.types.js';
|
|
3
|
-
import './parts/aurora-card-resource-table.js';
|
|
4
3
|
export declare class AuroraRuntimeCard extends LitElement {
|
|
5
|
-
static styles: import(
|
|
4
|
+
static styles: import('lit').CSSResult[];
|
|
6
5
|
name: string;
|
|
7
6
|
logo: string;
|
|
8
7
|
revisions: Array<{
|
|
@@ -30,7 +29,7 @@ export declare class AuroraRuntimeCard extends LitElement {
|
|
|
30
29
|
invalidCredsLabel: string;
|
|
31
30
|
limitReachedLabel: string;
|
|
32
31
|
andLabel: string;
|
|
33
|
-
render(): import(
|
|
32
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
34
33
|
private _renderHeader;
|
|
35
34
|
private _renderDeployInfo;
|
|
36
35
|
private _renderTable;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-runtime-card.d.ts","sourceRoot":"","sources":["../../../src/components/cards/aurora-runtime-card.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-runtime-card.d.ts","sourceRoot":"","sources":["../../../src/components/cards/aurora-runtime-card.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACpE,OAAO,uCAAuC,CAAC;AAE/C,qBACa,iBAAkB,SAAQ,UAAU;IAC/C,MAAM,CAAC,MAAM,4BAqCX;IAE0B,IAAI,SAAM;IACV,IAAI,SAAM;IACX,SAAS,EAAE,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC,CAAM;IACrC,iBAAiB,SAAM;IACvB,YAAY,SAAM;IACjB,UAAU,UAAS;IACrB,UAAU,EAAE,cAAc,EAAE,CAAM;IACjC,kBAAkB,SAAM;IACvB,YAAY,UAAS;IACtB,iBAAiB,SAAM;IACxB,WAAW,EAAE,iBAAiB,EAAE,CAAM;IACpC,aAAa,UAAS;IACvB,WAAW,SAAM;IACjB,UAAU,SAAM;IAChB,aAAa,SAAM;IAClB,UAAU,UAAS;IAEpB,aAAa,SAAc;IAC3B,QAAQ,SAA2B;IACnC,cAAc,SAAsB;IACpC,kBAAkB,SAAoB;IACtC,WAAW,SAAY;IACvB,aAAa,SAAoB;IACjC,iBAAiB,SAA0B;IAC3C,iBAAiB,SAAoB;IACrC,QAAQ,SAAS;IAE7C,MAAM;IAoBN,OAAO,CAAC,aAAa;IAsBrB,OAAO,CAAC,iBAAiB;IAWzB,OAAO,CAAC,YAAY;IA2DpB,OAAO,CAAC,aAAa;IAqBrB,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,iBAAiB;IAKzB,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,gBAAgB;CAGzB"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
export declare class AuroraCardActionBanner extends LitElement {
|
|
3
|
-
static styles: import(
|
|
3
|
+
static styles: import('lit').CSSResult[];
|
|
4
4
|
label: string;
|
|
5
|
-
render(): import(
|
|
5
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
6
6
|
private _onClick;
|
|
7
7
|
}
|
|
8
8
|
//# sourceMappingURL=aurora-card-action-banner.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-card-action-banner.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-action-banner.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-card-action-banner.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-action-banner.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAGvD,qBACa,sBAAuB,SAAQ,UAAU;IACpD,MAAM,CAAC,MAAM,4BAQX;IAE0B,KAAK,SAAkB;IAEnD,MAAM;IAWN,OAAO,CAAC,QAAQ;CAGjB"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import { TableStatsType } from '../card.types.js';
|
|
3
3
|
export declare class AuroraCardAttentionBanner extends LitElement {
|
|
4
|
-
static styles: import(
|
|
4
|
+
static styles: import('lit').CSSResult[];
|
|
5
5
|
cardType: 'account' | 'environment' | 'tenant';
|
|
6
6
|
tableStats: TableStatsType[];
|
|
7
7
|
threshold: number;
|
|
@@ -14,7 +14,7 @@ export declare class AuroraCardAttentionBanner extends LitElement {
|
|
|
14
14
|
andLabel: string;
|
|
15
15
|
private _getExceeded;
|
|
16
16
|
private _formatList;
|
|
17
|
-
render(): import(
|
|
17
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
18
18
|
private _onManage;
|
|
19
19
|
}
|
|
20
20
|
//# sourceMappingURL=aurora-card-attention-banner.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-card-attention-banner.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-attention-banner.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-card-attention-banner.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-attention-banner.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,qBACa,yBAA0B,SAAQ,UAAU;IACvD,MAAM,CAAC,MAAM,4BAMX;IAE0B,QAAQ,EAAE,SAAS,GAAG,aAAa,GAAG,QAAQ,CAAa;IAC5D,UAAU,EAAE,cAAc,EAAE,CAAM;IACjC,SAAS,SAAM;IACd,WAAW,UAAS;IACpB,kBAAkB,UAAS;IAC5B,WAAW,SAAY;IACvB,aAAa,SAAoB;IACjC,iBAAiB,SAA0B;IAC3C,iBAAiB,SAAoB;IACrC,QAAQ,SAAS;IAE7C,OAAO,CAAC,YAAY;IAOpB,OAAO,CAAC,WAAW;IAMnB,MAAM;IAuBN,OAAO,CAAC,SAAS;CAGlB"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
export declare class AuroraCardFilterItem extends LitElement {
|
|
3
|
-
static styles: import(
|
|
3
|
+
static styles: import('lit').CSSResult[];
|
|
4
4
|
name: string;
|
|
5
5
|
showAttention: boolean;
|
|
6
|
-
render(): import(
|
|
6
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
7
7
|
private _onClick;
|
|
8
8
|
}
|
|
9
9
|
//# sourceMappingURL=aurora-card-filter-item.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-card-filter-item.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-filter-item.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-card-filter-item.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-filter-item.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAGvD,qBACa,oBAAqB,SAAQ,UAAU;IAClD,MAAM,CAAC,MAAM,4BAGX;IAE0B,IAAI,SAAM;IACT,aAAa,UAAS;IAEnD,MAAM;IAcN,OAAO,CAAC,QAAQ;CAKjB"}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import { CardFilterItem } from '../card.types.js';
|
|
3
|
-
import './aurora-card-filter-item.js';
|
|
4
3
|
export declare class AuroraCardFilter extends LitElement {
|
|
5
|
-
static styles: import(
|
|
4
|
+
static styles: import('lit').CSSResult[];
|
|
6
5
|
items: CardFilterItem[];
|
|
7
6
|
selected: string | null;
|
|
8
7
|
emptyLabel: string;
|
|
@@ -12,7 +11,7 @@ export declare class AuroraCardFilter extends LitElement {
|
|
|
12
11
|
opened: boolean;
|
|
13
12
|
isPlainRole: boolean;
|
|
14
13
|
isDisabled: boolean;
|
|
15
|
-
render(): import(
|
|
14
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
16
15
|
private _onToggle;
|
|
17
16
|
private _onSelect;
|
|
18
17
|
private _onEmptyAction;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-card-filter.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-filter.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-card-filter.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-filter.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,8BAA8B,CAAC;AAEtC,qBACa,gBAAiB,SAAQ,UAAU;IAC9C,MAAM,CAAC,MAAM,4BAGX;IAEyB,KAAK,EAAE,cAAc,EAAE,CAAM;IAC5B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC/B,UAAU,SAAM;IAChB,gBAAgB,SAAM;IACtB,cAAc,SAAsB;IACnC,aAAa,UAAS;IACtB,MAAM,UAAS;IACf,WAAW,UAAS;IACpB,UAAU,UAAS;IAEhD,MAAM;IAiDN,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,cAAc;CAGvB"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import { CardBadge } from '../card.types.js';
|
|
3
3
|
export declare class AuroraCardHeader extends LitElement {
|
|
4
|
-
static styles: import(
|
|
4
|
+
static styles: import('lit').CSSResult[];
|
|
5
5
|
logoSrc: string | null;
|
|
6
6
|
tenantOrAccount: string;
|
|
7
7
|
name: string;
|
|
@@ -14,6 +14,6 @@ export declare class AuroraCardHeader extends LitElement {
|
|
|
14
14
|
haLabel: string;
|
|
15
15
|
haTitle: string;
|
|
16
16
|
private _renderBadge;
|
|
17
|
-
render(): import(
|
|
17
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
18
18
|
}
|
|
19
19
|
//# sourceMappingURL=aurora-card-header.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-card-header.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-header.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-card-header.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-header.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAE7C,qBACa,gBAAiB,SAAQ,UAAU;IAC9C,MAAM,CAAC,MAAM,4BAMX;IAE0B,OAAO,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC9B,eAAe,SAAM;IACrB,IAAI,SAAM;IACV,KAAK,EAAE,SAAS,CAAU;IAC1B,QAAQ,SAAM;IACd,QAAQ,EAAE,SAAS,GAAG,aAAa,GAAG,QAAQ,CAAa;IAC3D,aAAa,SAAe;IAC5B,aAAa,SAAyB;IACtC,YAAY,SAAgD;IAC5D,OAAO,SAAsB;IAC7B,OAAO,SAA+B;IAElE,OAAO,CAAC,YAAY;IAyBpB,MAAM;CAkDP"}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import { TableStatsType } from '../card.types.js';
|
|
3
|
-
import './aurora-card-attention-banner.js';
|
|
4
|
-
import './aurora-card-action-banner.js';
|
|
5
3
|
export declare class AuroraCardResourceTable extends LitElement {
|
|
6
|
-
static styles: import(
|
|
4
|
+
static styles: import('lit').CSSResult[];
|
|
7
5
|
rows: TableStatsType[];
|
|
8
6
|
attentionThreshold: number;
|
|
9
7
|
cardType: 'account' | 'environment' | 'tenant';
|
|
@@ -17,6 +15,6 @@ export declare class AuroraCardResourceTable extends LitElement {
|
|
|
17
15
|
andLabel: string;
|
|
18
16
|
actionBannerLabel: string;
|
|
19
17
|
private _hasAttention;
|
|
20
|
-
render(): import(
|
|
18
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
21
19
|
}
|
|
22
20
|
//# sourceMappingURL=aurora-card-resource-table.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-card-resource-table.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-resource-table.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-card-resource-table.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-resource-table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,mCAAmC,CAAC;AAC3C,OAAO,gCAAgC,CAAC;AAExC,qBACa,uBAAwB,SAAQ,UAAU;IACrD,MAAM,CAAC,MAAM,4BAGX;IAEyB,IAAI,EAAE,cAAc,EAAE,CAAM;IAC3B,kBAAkB,SAAM;IACxB,QAAQ,EAAE,SAAS,GAAG,aAAa,GAAG,QAAQ,CAAa;IAC1D,WAAW,UAAS;IACpB,gBAAgB,UAAS;IACzB,iBAAiB,UAAS;IAC3B,WAAW,SAAY;IACvB,aAAa,SAAoB;IACjC,iBAAiB,SAA0B;IAC3C,iBAAiB,SAAoB;IACrC,QAAQ,SAAS;IACjB,iBAAiB,SAAM;IAEnD,OAAO,CAAC,aAAa;IAKrB,MAAM;CA8FP"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
export declare class AuroraCardStatItem extends LitElement {
|
|
3
|
-
static styles: import(
|
|
3
|
+
static styles: import('lit').CSSResult[];
|
|
4
4
|
value: number;
|
|
5
5
|
title: string;
|
|
6
6
|
label: string;
|
|
7
7
|
active: boolean;
|
|
8
8
|
compact: boolean;
|
|
9
|
-
render(): import(
|
|
9
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
10
10
|
private _onClick;
|
|
11
11
|
}
|
|
12
12
|
//# sourceMappingURL=aurora-card-stat-item.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-card-stat-item.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-stat-item.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-card-stat-item.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-stat-item.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAGvD,qBACa,kBAAmB,SAAQ,UAAU;IAChD,MAAM,CAAC,MAAM,4BAGX;IAE0B,KAAK,EAAE,MAAM,CAAK;IAClB,KAAK,SAAM;IACX,KAAK,SAAM;IACV,MAAM,UAAQ;IACd,OAAO,UAAS;IAE7C,MAAM;IAaN,OAAO,CAAC,QAAQ;CAKjB"}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import { MainStatsType } from '../card.types.js';
|
|
3
|
-
import './aurora-card-stat-item.js';
|
|
4
3
|
export declare class AuroraCardStatsRow extends LitElement {
|
|
5
|
-
static styles: import(
|
|
4
|
+
static styles: import('lit').CSSResult[];
|
|
6
5
|
stats: MainStatsType[];
|
|
7
6
|
compact: boolean;
|
|
8
|
-
render(): import(
|
|
7
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
9
8
|
private _handleLabelClick;
|
|
10
9
|
}
|
|
11
10
|
//# sourceMappingURL=aurora-card-stats-row.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-card-stats-row.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-stats-row.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-card-stats-row.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-stats-row.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,4BAA4B,CAAC;AAEpC,qBACa,kBAAmB,SAAQ,UAAU;IAChD,MAAM,CAAC,MAAM,4BAGX;IAEyB,KAAK,EAAE,aAAa,EAAE,CAAM;IAC1B,OAAO,UAAS;IAE7C,MAAM;IAmBN,OAAO,CAAC,iBAAiB;CAK1B"}
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
2
|
import { ActionMenuItem } from '../card.types.js';
|
|
3
|
-
import '../aurora-more-actions.js';
|
|
4
3
|
export declare class AuroraCardStatusBar extends LitElement {
|
|
5
|
-
static styles: import(
|
|
4
|
+
static styles: import('lit').CSSResult[];
|
|
6
5
|
isFreeIaaS: boolean;
|
|
7
6
|
isPlainRole: boolean;
|
|
8
7
|
moreActionsOpen: boolean;
|
|
9
8
|
moreActionsOptions: ActionMenuItem[];
|
|
10
9
|
closeLabel: string;
|
|
11
10
|
moreActionsLabel: string;
|
|
12
|
-
render(): import(
|
|
11
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
13
12
|
private _onToggled;
|
|
14
13
|
}
|
|
15
14
|
//# sourceMappingURL=aurora-card-status-bar.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aurora-card-status-bar.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-status-bar.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aurora-card-status-bar.d.ts","sourceRoot":"","sources":["../../../../src/components/cards/parts/aurora-card-status-bar.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAEvD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,2BAA2B,CAAC;AAEnC,qBACa,mBAAoB,SAAQ,UAAU;IACjD,MAAM,CAAC,MAAM,4BAGX;IAE2B,UAAU,UAAS;IACnB,WAAW,UAAS;IACpB,eAAe,UAAS;IAC1B,kBAAkB,EAAE,cAAc,EAAE,CAAM;IACzC,UAAU,SAAW;IACrB,gBAAgB,SAAU;IAEtD,MAAM;IAsBN,OAAO,CAAC,UAAU;CAKnB"}
|