@erplora/outfitkit 0.1.9 → 0.1.10

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.
@@ -681,13 +681,14 @@ class OkDataTable extends LitElement {
681
681
  <ion-select
682
682
  label=${col.header}
683
683
  label-placement="stacked"
684
+ fill="outline"
684
685
  ?multiple=${multi}
685
686
  interface="modal"
686
687
  .interfaceOptions=${{ cssClass: "ok-overlay" }}
687
- placeholder=${col.header}
688
+ placeholder=${this.t.select}
688
689
  @ionChange=${(e) => this.onFilterSelect(col, e.detail.value, multi)}
689
690
  >
690
- ${multi ? nothing : html`<ion-select-option value="">${col.header}</ion-select-option>`}
691
+ ${multi ? nothing : html`<ion-select-option value="">${this.t.select}</ion-select-option>`}
691
692
  ${opts.map((o) => html`<ion-select-option value=${o.value}>${o.label}</ion-select-option>`)}
692
693
  </ion-select>
693
694
  `;
@@ -1513,13 +1513,14 @@ class _ extends g {
1513
1513
  <ion-select
1514
1514
  label=${e.header}
1515
1515
  label-placement="stacked"
1516
+ fill="outline"
1516
1517
  ?multiple=${o}
1517
1518
  interface="modal"
1518
1519
  .interfaceOptions=${{ cssClass: "ok-overlay" }}
1519
- placeholder=${e.header}
1520
+ placeholder=${this.t.select}
1520
1521
  @ionChange=${(i) => this.onFilterSelect(e, i.detail.value, o)}
1521
1522
  >
1522
- ${o ? m : s`<ion-select-option value="">${e.header}</ion-select-option>`}
1523
+ ${o ? m : s`<ion-select-option value="">${this.t.select}</ion-select-option>`}
1523
1524
  ${a.map((i) => s`<ion-select-option value=${i.value}>${i.label}</ion-select-option>`)}
1524
1525
  </ion-select>
1525
1526
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erplora/outfitkit",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "OutfitKit — librería de Web Components (Lit) que CONSTRUYE lo que Ionic no tiene (tree, data-table rica, inline-feedback, kpi/stat, stepper/wizard, calendar, kanban…) sobre primitivos de Ionic. Ionic es la base; OutfitKit cubre los huecos. npm + CDN, imports individuales, CSP-safe. Tema vía tokens --ok-* (fallback a --ion-*).",
5
5
  "type": "module",
6
6
  "license": "MIT",