@everymatrix/user-transaction-history 1.76.9 → 1.76.11
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/cjs/user-transaction-history_2.cjs.entry.js +6660 -1
- package/dist/collection/components/internal/filters.js +2 -1
- package/dist/esm/user-transaction-history_2.entry.js +6660 -1
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/packages/stencil/user-transaction-history/stencil.config.d.ts +2 -0
- package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/packages/stencil/user-transaction-history/stencil.config.dev.d.ts +2 -0
- package/dist/types/components/internal/filters.d.ts +1 -0
- package/dist/user-transaction-history/user-transaction-history_2.entry.js +6656 -1
- package/package.json +1 -1
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/packages/stencil/user-transaction-history/stencil.config.d.ts +0 -2
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/packages/stencil/user-transaction-history/stencil.config.dev.d.ts +0 -2
- /package/dist/types/{Users/adrian.pripon/Documents/Work → builds/emfe-widgets}/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/libs/common/src/storybook/storybook-utils.d.ts +0 -0
- /package/dist/types/{Users/adrian.pripon/Documents/Work → builds/emfe-widgets}/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/packages/stencil/user-transaction-history/storybook/main.d.ts +0 -0
- /package/dist/types/{Users/adrian.pripon/Documents/Work → builds/emfe-widgets}/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/packages/stencil/user-transaction-history/storybook/preview.d.ts +0 -0
- /package/dist/types/{Users/adrian.pripon/Documents/Work → builds/emfe-widgets}/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/tools/plugins/index.d.ts +0 -0
- /package/dist/types/{Users/adrian.pripon/Documents/Work → builds/emfe-widgets}/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
- /package/dist/types/{Users/adrian.pripon/Documents/Work → builds/emfe-widgets}/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
- /package/dist/types/{Users/adrian.pripon/Documents/Work → builds/emfe-widgets}/widgets-monorepo/packages/stencil/user-transaction-history/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
|
@@ -2,6 +2,7 @@ import { h } from "@stencil/core";
|
|
|
2
2
|
import { Localization } from "../../utils/locale.util";
|
|
3
3
|
import dateFnsFormat from "date-fns/format";
|
|
4
4
|
import dateFnsParse from "date-fns/parse";
|
|
5
|
+
import "../../../../../../../libs/vaadin-facade/index";
|
|
5
6
|
export class Filters {
|
|
6
7
|
constructor() {
|
|
7
8
|
this.startDateChange = () => {
|
|
@@ -38,7 +39,7 @@ export class Filters {
|
|
|
38
39
|
this.applyFilters.emit({ from: this.startDate, to: this.endDate });
|
|
39
40
|
}
|
|
40
41
|
render() {
|
|
41
|
-
return (h("div", { key: '
|
|
42
|
+
return (h("div", { key: '5cd1b3d5f8e9c18e546c657cedd0923c2394508e', class: "period" }, h("div", { key: 'c9a37f4d4265594277ca73c3a929107a83c8e1b8', class: "period-content" }, h("div", { key: '6c81e7cc31bdc4f0e25377bdaa0dd162e8ad7805', class: "date-input" }, h("vaadin-date-picker", { key: '2842f491b88b1f482ca4be068e0da721568af1e0', value: this.startDate, placeholder: this.startDate, ref: (el) => (this.startDatePicker = el), label: Localization.translate('from', this.language), onChange: this.startDateChange })), h("span", { key: 'dda5f883cfa94dea18cfb868b4162c5c40592a40' }, h("svg", { key: '6181900f60dceebd97bdfab69a36ade1a6ce377f', width: "24px", viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg" }, h("path", { key: '39bd58d353885e15a8720ff730a2a040328529b6', d: "m21 11.75c0-.414-.336-.75-.75-.75h-16.5c-.414 0-.75.336-.75.75s.336.75.75.75h16.5c.414 0 .75-.336.75-.75z", "fill-rule": "nonzero", fill: "5d687b" }))), h("div", { key: '5a06d7e6e8d2a95262cdf46620f5e162a068ba09', class: "date-input" }, h("vaadin-date-picker", { key: '8fd6250bc8ff6936fef8efef52caea51e96c48bf', value: this.endDate, placeholder: this.endDate, ref: (el) => (this.endDatePicker = el), label: Localization.translate('to', this.language), onChange: this.endDateChange })), h("button", { key: '8d793ce5748cf44238c88735b5559472ef0435f2', class: "filter-btn", onClick: this.handleApplyFilters.bind(this) }, Localization.translate('filter', this.language)))));
|
|
42
43
|
}
|
|
43
44
|
static get is() { return "user-transaction-history-filter"; }
|
|
44
45
|
static get properties() {
|