@kumori/aurora-wui-components 0.0.274-dev4142.19 → 0.0.274-dev4142.20

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.
@@ -14,6 +14,7 @@ export declare class AxebowBanner extends LitElement {
14
14
  rounded: boolean;
15
15
  compact: boolean;
16
16
  durationMs?: number;
17
+ textSize?: string;
17
18
  private autoHideTimer?;
18
19
  private visible;
19
20
  static styles: import('lit').CSSResult[];
@@ -1 +1 @@
1
- {"version":3,"file":"axebow-banner.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-banner/axebow-banner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAIvD,OAAO,+BAA+B,CAAC;AAEvC,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAElE;;;;;;GAMG;AACH,qBACa,YAAa,SAAQ,UAAU;IACd,IAAI,EAAE,UAAU,CAAU;IACzB,WAAW,EAAE,OAAO,CAAS;IAC9B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC9B,OAAO,EAAE,OAAO,CAAS;IACzB,OAAO,EAAE,OAAO,CAAS;IAC1B,UAAU,CAAC,EAAE,MAAM,CAAC;IAEhD,OAAO,CAAC,aAAa,CAAC,CAAgC;IAE7C,OAAO,CAAC,OAAO,CAAQ;IAEhC,MAAM,CAAC,MAAM,4BAQX;IAEF,oBAAoB;IAKpB,OAAO,CAAC,YAAY,EAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC;IAMtC,OAAO,CAAC,aAAa;IAYrB,OAAO,CAAC,kBAAkB;IAO1B,MAAM;IAiDN,OAAO,CAAC,cAAc;CAavB"}
1
+ {"version":3,"file":"axebow-banner.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-banner/axebow-banner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAIvD,OAAO,+BAA+B,CAAC;AAEvC,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAElE;;;;;;GAMG;AACH,qBACa,YAAa,SAAQ,UAAU;IACd,IAAI,EAAE,UAAU,CAAU;IACzB,WAAW,EAAE,OAAO,CAAS;IAC9B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC9B,OAAO,EAAE,OAAO,CAAS;IACzB,OAAO,EAAE,OAAO,CAAS;IAC1B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAE9C,OAAO,CAAC,aAAa,CAAC,CAAgC;IAE7C,OAAO,CAAC,OAAO,CAAQ;IAEhC,MAAM,CAAC,MAAM,4BAQX;IAEF,oBAAoB;IAKpB,OAAO,CAAC,YAAY,EAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC;IAMtC,OAAO,CAAC,aAAa;IAYrB,OAAO,CAAC,kBAAkB;IAO1B,MAAM;IAiDN,OAAO,CAAC,cAAc;CAavB"}
package/dist/index.js CHANGED
@@ -5167,7 +5167,7 @@ var AxebowBanner = class AxebowBanner extends LitElement {
5167
5167
  iconColor="${classes.icon}"
5168
5168
  ></axebow-icon>`}
5169
5169
  </div>
5170
- <div class="flex-1">
5170
+ <div class="flex-1" style="${this.textSize ? `font-size: ${this.textSize};` : ""}">
5171
5171
  <slot></slot>
5172
5172
  </div>
5173
5173
  </div>
@@ -5188,6 +5188,7 @@ __decorate([property({ type: String })], AxebowBanner.prototype, "iconName", voi
5188
5188
  __decorate([property({ type: Boolean })], AxebowBanner.prototype, "rounded", void 0);
5189
5189
  __decorate([property({ type: Boolean })], AxebowBanner.prototype, "compact", void 0);
5190
5190
  __decorate([property({ type: Number })], AxebowBanner.prototype, "durationMs", void 0);
5191
+ __decorate([property({ type: String })], AxebowBanner.prototype, "textSize", void 0);
5191
5192
  __decorate([state()], AxebowBanner.prototype, "visible", void 0);
5192
5193
  AxebowBanner = __decorate([customElement("axebow-banner")], AxebowBanner);
5193
5194
  //#endregion