@erplora/outfitkit 0.1.13 → 0.1.15
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/base/icons.d.ts +59 -0
- package/dist/base/icons.test.d.ts +1 -0
- package/dist/components/ok-data-table/ok-data-table.d.ts +7 -0
- package/dist/components/ok-kpi/ok-kpi.d.ts +1 -1
- package/dist/ok-app-launcher.js +4 -3
- package/dist/ok-audio.js +4 -3
- package/dist/ok-calendar.js +4 -3
- package/dist/ok-carousel.js +3 -2
- package/dist/ok-chat.js +2 -1
- package/dist/ok-combo.js +2 -1
- package/dist/ok-command-palette.js +3 -2
- package/dist/ok-data-table.js +27 -16
- package/dist/ok-date-picker.js +4 -3
- package/dist/ok-drawer.js +3 -2
- package/dist/ok-dropzone.js +5 -4
- package/dist/ok-empty-state.js +2 -1
- package/dist/ok-error-page.js +2 -1
- package/dist/ok-file-manager.js +5 -4
- package/dist/ok-icon-tile.js +2 -1
- package/dist/ok-inline-feedback.js +8 -7
- package/dist/ok-kpi.js +7 -6
- package/dist/ok-lightbox.js +7 -6
- package/dist/ok-mail.js +10 -9
- package/dist/ok-menu.js +2 -1
- package/dist/ok-menubar.js +6 -5
- package/dist/ok-notification-center.js +4 -3
- package/dist/ok-pdf.js +4 -3
- package/dist/ok-pinpad.js +3 -2
- package/dist/ok-qty-stepper.js +3 -2
- package/dist/ok-rating.js +3 -2
- package/dist/ok-scheduler.js +3 -2
- package/dist/ok-select-card.js +2 -1
- package/dist/ok-signature.js +3 -2
- package/dist/ok-split-button.js +3 -2
- package/dist/ok-status-pill.js +2 -1
- package/dist/ok-stepper.js +2 -1
- package/dist/ok-tag-input.js +2 -1
- package/dist/ok-timeline.js +2 -1
- package/dist/ok-tree.js +3 -2
- package/dist/ok-video.js +5 -4
- package/dist/ok-widget-board.js +2 -1
- package/dist/outfitkit.bundle.js +3124 -3060
- package/dist/shared/icons.js +194 -0
- package/package.json +7 -2
package/dist/ok-video.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { LitElement, css, html } from "lit";
|
|
2
2
|
import { property, state, query } from "lit/decorators.js";
|
|
3
3
|
import { define } from "./define.js";
|
|
4
|
+
import { M as iconExpandOutline, o as okIcon } from "./shared/icons.js";
|
|
4
5
|
var __defProp = Object.defineProperty;
|
|
5
6
|
var __decorateClass = (decorators, target, key, kind) => {
|
|
6
7
|
var result = void 0;
|
|
@@ -272,7 +273,7 @@ class OkVideo extends LitElement {
|
|
|
272
273
|
@click=${this.togglePlay}
|
|
273
274
|
>
|
|
274
275
|
<span class="big">
|
|
275
|
-
<ion-icon
|
|
276
|
+
<ion-icon .icon=${okIcon(this.playing ? "pause" : "play")}></ion-icon>
|
|
276
277
|
</span>
|
|
277
278
|
</button>
|
|
278
279
|
|
|
@@ -283,7 +284,7 @@ class OkVideo extends LitElement {
|
|
|
283
284
|
aria-label=${this.playing ? this.t.pause : this.t.play}
|
|
284
285
|
@click=${this.togglePlay}
|
|
285
286
|
>
|
|
286
|
-
<ion-icon slot="icon-only"
|
|
287
|
+
<ion-icon slot="icon-only" .icon=${okIcon(this.playing ? "pause" : "play")}></ion-icon>
|
|
287
288
|
</ion-button>
|
|
288
289
|
|
|
289
290
|
<div class="progress" @click=${this.seek}>
|
|
@@ -300,7 +301,7 @@ class OkVideo extends LitElement {
|
|
|
300
301
|
aria-label=${this.muted ? this.t.unmute : this.t.mute}
|
|
301
302
|
@click=${this.toggleMute}
|
|
302
303
|
>
|
|
303
|
-
<ion-icon slot="icon-only"
|
|
304
|
+
<ion-icon slot="icon-only" .icon=${okIcon(volIcon)}></ion-icon>
|
|
304
305
|
</ion-button>
|
|
305
306
|
<input
|
|
306
307
|
type="range"
|
|
@@ -319,7 +320,7 @@ class OkVideo extends LitElement {
|
|
|
319
320
|
aria-label=${this.t.fullscreen}
|
|
320
321
|
@click=${this.toggleFullscreen}
|
|
321
322
|
>
|
|
322
|
-
<ion-icon slot="icon-only"
|
|
323
|
+
<ion-icon slot="icon-only" .icon=${iconExpandOutline}></ion-icon>
|
|
323
324
|
</ion-button>
|
|
324
325
|
</div>
|
|
325
326
|
</div>
|
package/dist/ok-widget-board.js
CHANGED
|
@@ -2,6 +2,7 @@ import { LitElement, css, nothing, html } from "lit";
|
|
|
2
2
|
import { property, state } from "lit/decorators.js";
|
|
3
3
|
import { repeat } from "lit/directives/repeat.js";
|
|
4
4
|
import { define } from "./define.js";
|
|
5
|
+
import { a as iconEllipsisVertical } from "./shared/icons.js";
|
|
5
6
|
var __defProp = Object.defineProperty;
|
|
6
7
|
var __decorateClass = (decorators, target, key, kind) => {
|
|
7
8
|
var result = void 0;
|
|
@@ -97,7 +98,7 @@ class OkWidgetBoard extends LitElement {
|
|
|
97
98
|
<div class="bar">
|
|
98
99
|
<slot name="title"><span class="title"></span></slot>
|
|
99
100
|
${this.editable ? html`<ion-button fill="clear" size="small" aria-label=${this.t.customize} @click=${this.openConfig}>
|
|
100
|
-
<ion-icon slot="icon-only"
|
|
101
|
+
<ion-icon slot="icon-only" .icon=${iconEllipsisVertical}></ion-icon>
|
|
101
102
|
</ion-button>` : nothing}
|
|
102
103
|
</div>
|
|
103
104
|
<div class="grid">
|