@kubex/zinc 1.1.158 → 1.1.159
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/custom-elements.json +23 -1
- package/dist/web-types.json +1 -1
- package/dist/zn.d.ts +3 -0
- package/dist/zn.min.js +227 -227
- package/package.json +1 -1
- package/src/components/filter-container/filter-container.component.ts +32 -48
- package/src/components/filter-container/filter-container.test.ts +25 -0
|
@@ -15773,6 +15773,15 @@
|
|
|
15773
15773
|
"default": "'filter'",
|
|
15774
15774
|
"attribute": "attr"
|
|
15775
15775
|
},
|
|
15776
|
+
{
|
|
15777
|
+
"kind": "field",
|
|
15778
|
+
"name": "_filterFrame",
|
|
15779
|
+
"type": {
|
|
15780
|
+
"text": "number"
|
|
15781
|
+
},
|
|
15782
|
+
"privacy": "private",
|
|
15783
|
+
"default": "0"
|
|
15784
|
+
},
|
|
15776
15785
|
{
|
|
15777
15786
|
"kind": "method",
|
|
15778
15787
|
"name": "handleSearchChange",
|
|
@@ -15785,6 +15794,19 @@
|
|
|
15785
15794
|
}
|
|
15786
15795
|
}
|
|
15787
15796
|
]
|
|
15797
|
+
},
|
|
15798
|
+
{
|
|
15799
|
+
"kind": "method",
|
|
15800
|
+
"name": "applyFilter",
|
|
15801
|
+
"privacy": "private",
|
|
15802
|
+
"parameters": [
|
|
15803
|
+
{
|
|
15804
|
+
"name": "searchTerm",
|
|
15805
|
+
"type": {
|
|
15806
|
+
"text": "string"
|
|
15807
|
+
}
|
|
15808
|
+
}
|
|
15809
|
+
]
|
|
15788
15810
|
}
|
|
15789
15811
|
],
|
|
15790
15812
|
"events": [
|
|
@@ -53585,7 +53607,7 @@
|
|
|
53585
53607
|
"package": {
|
|
53586
53608
|
"name": "@kubex/zinc",
|
|
53587
53609
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
53588
|
-
"version": "1.1.
|
|
53610
|
+
"version": "1.1.159",
|
|
53589
53611
|
"author": "",
|
|
53590
53612
|
"license": "MIT"
|
|
53591
53613
|
}
|
package/dist/web-types.json
CHANGED
package/dist/zn.d.ts
CHANGED
|
@@ -9112,7 +9112,10 @@ declare module "components/filter-container/filter-container.component" {
|
|
|
9112
9112
|
export default class ZnFilterContainer extends ZincElement {
|
|
9113
9113
|
static styles: CSSResultGroup;
|
|
9114
9114
|
attr: string;
|
|
9115
|
+
private _filterFrame;
|
|
9115
9116
|
handleSearchChange(event: Event): void;
|
|
9117
|
+
disconnectedCallback(): void;
|
|
9118
|
+
private applyFilter;
|
|
9116
9119
|
render(): import("lit-html").TemplateResult<1>;
|
|
9117
9120
|
}
|
|
9118
9121
|
}
|