@kumori/aurora-wui-components 0.0.117 → 0.0.118

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.
@@ -3,6 +3,7 @@ export interface ResourceCardRow {
3
3
  icon: string;
4
4
  label: string;
5
5
  count: number;
6
+ freeCount?: string;
6
7
  onSeeInNewTab?: () => void;
7
8
  onSeeHere?: () => void;
8
9
  }
@@ -1 +1 @@
1
- {"version":3,"file":"axebow-resource-card.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-resource-card/axebow-resource-card.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAa,MAAM,KAAK,CAAC;AAEvD,OAAO,+BAA+B,CAAC;AAGvC,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB;AAED;;;;;GAKG;AACH,qBACa,kBAAmB,SAAQ,UAAU;IACpB,UAAU,SAAM;IACjB,IAAI,EAAE,eAAe,EAAE,CAAM;IAC5B,gBAAgB,SAAM;IACtB,YAAY,SAAM;IAE9C,MAAM,CAAC,MAAM,4BAOX;IAEF,MAAM;CAyDP"}
1
+ {"version":3,"file":"axebow-resource-card.d.ts","sourceRoot":"","sources":["../../../src/components/axebow-resource-card/axebow-resource-card.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAa,MAAM,KAAK,CAAC;AAEvD,OAAO,+BAA+B,CAAC;AAGvC,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB;AAED;;;;;GAKG;AACH,qBACa,kBAAmB,SAAQ,UAAU;IACpB,UAAU,SAAM;IACjB,IAAI,EAAE,eAAe,EAAE,CAAM;IAC5B,gBAAgB,SAAM;IACtB,YAAY,SAAM;IAE9C,MAAM,CAAC,MAAM,4BAOX;IAEF,MAAM;CA8DP"}
package/dist/index.js CHANGED
@@ -4319,7 +4319,10 @@ var AxebowResourceCard = class AxebowResourceCard extends LitElement {
4319
4319
  <span class="font-bold text-(--axebow-primary) truncate">${row.label}</span>
4320
4320
  </div>
4321
4321
 
4322
- <span class="w-18.75 h-4.25 font-bold text-(--axebow-gray) text-center shrink-0">${row.count}</span>
4322
+ <div class="flex items-center gap-1 shrink-0">
4323
+ <span class="w-18.75 h-4.25 font-bold text-(--axebow-gray) text-center shrink-0">${row.count}</span>
4324
+ ${row.freeCount ? html`<span class="text-(--axebow-gray) whitespace-nowrap">${row.freeCount}</span>` : ""}
4325
+ </div>
4323
4326
 
4324
4327
  <button
4325
4328
  class="w-26.25 h-8 box-border flex items-center justify-center gap-1 bg-transparent border-none cursor-pointer rounded whitespace-nowrap text-(--axebow-gray) hover:bg-(--axebow-anti-flash-white) shrink-0"