@kubex/zinc 1.1.129 → 1.1.131
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 +161 -1
- package/dist/web-types.json +1 -1
- package/dist/zn.d.ts +7 -0
- package/dist/zn.min.js +79 -81
- package/package.json +1 -1
- package/src/components/data-table/data-table.component.ts +22 -26
- package/src/components/data-table/data-table.test.ts +46 -0
- package/src/components/panel/panel.component.ts +43 -5
- package/src/components/panel/panel.scss +6 -0
- package/src/components/panel/panel.test.ts +39 -3
|
@@ -9189,6 +9189,15 @@
|
|
|
9189
9189
|
"kind": "field",
|
|
9190
9190
|
"name": "searchChangeListener"
|
|
9191
9191
|
},
|
|
9192
|
+
{
|
|
9193
|
+
"kind": "field",
|
|
9194
|
+
"name": "isNarrowed",
|
|
9195
|
+
"type": {
|
|
9196
|
+
"text": "boolean"
|
|
9197
|
+
},
|
|
9198
|
+
"privacy": "private",
|
|
9199
|
+
"readonly": true
|
|
9200
|
+
},
|
|
9192
9201
|
{
|
|
9193
9202
|
"kind": "method",
|
|
9194
9203
|
"name": "emptyState"
|
|
@@ -23715,6 +23724,63 @@
|
|
|
23715
23724
|
"name": "ZnPanel",
|
|
23716
23725
|
"module": "components/panel/panel.js"
|
|
23717
23726
|
}
|
|
23727
|
+
},
|
|
23728
|
+
{
|
|
23729
|
+
"kind": "field",
|
|
23730
|
+
"name": "bodyEmpty",
|
|
23731
|
+
"type": {
|
|
23732
|
+
"text": "boolean"
|
|
23733
|
+
},
|
|
23734
|
+
"privacy": "private",
|
|
23735
|
+
"default": "false",
|
|
23736
|
+
"inheritedFrom": {
|
|
23737
|
+
"name": "ZnPanel",
|
|
23738
|
+
"module": "components/panel/panel.js"
|
|
23739
|
+
}
|
|
23740
|
+
},
|
|
23741
|
+
{
|
|
23742
|
+
"kind": "field",
|
|
23743
|
+
"name": "resizeObserver",
|
|
23744
|
+
"type": {
|
|
23745
|
+
"text": "ResizeObserver | null"
|
|
23746
|
+
},
|
|
23747
|
+
"privacy": "private",
|
|
23748
|
+
"default": "null",
|
|
23749
|
+
"inheritedFrom": {
|
|
23750
|
+
"name": "ZnPanel",
|
|
23751
|
+
"module": "components/panel/panel.js"
|
|
23752
|
+
}
|
|
23753
|
+
},
|
|
23754
|
+
{
|
|
23755
|
+
"kind": "field",
|
|
23756
|
+
"name": "bodySlot",
|
|
23757
|
+
"type": {
|
|
23758
|
+
"text": "HTMLSlotElement | null"
|
|
23759
|
+
},
|
|
23760
|
+
"privacy": "private",
|
|
23761
|
+
"readonly": true,
|
|
23762
|
+
"inheritedFrom": {
|
|
23763
|
+
"name": "ZnPanel",
|
|
23764
|
+
"module": "components/panel/panel.js"
|
|
23765
|
+
}
|
|
23766
|
+
},
|
|
23767
|
+
{
|
|
23768
|
+
"kind": "method",
|
|
23769
|
+
"name": "observeBodyContent",
|
|
23770
|
+
"privacy": "private",
|
|
23771
|
+
"inheritedFrom": {
|
|
23772
|
+
"name": "ZnPanel",
|
|
23773
|
+
"module": "components/panel/panel.js"
|
|
23774
|
+
}
|
|
23775
|
+
},
|
|
23776
|
+
{
|
|
23777
|
+
"kind": "method",
|
|
23778
|
+
"name": "measureBodyContent",
|
|
23779
|
+
"privacy": "private",
|
|
23780
|
+
"inheritedFrom": {
|
|
23781
|
+
"name": "ZnPanel",
|
|
23782
|
+
"module": "components/panel/panel.js"
|
|
23783
|
+
}
|
|
23718
23784
|
}
|
|
23719
23785
|
],
|
|
23720
23786
|
"events": [
|
|
@@ -31054,6 +31120,43 @@
|
|
|
31054
31120
|
"text": "boolean"
|
|
31055
31121
|
},
|
|
31056
31122
|
"attribute": "shadow"
|
|
31123
|
+
},
|
|
31124
|
+
{
|
|
31125
|
+
"kind": "field",
|
|
31126
|
+
"name": "bodyEmpty",
|
|
31127
|
+
"type": {
|
|
31128
|
+
"text": "boolean"
|
|
31129
|
+
},
|
|
31130
|
+
"privacy": "private",
|
|
31131
|
+
"default": "false"
|
|
31132
|
+
},
|
|
31133
|
+
{
|
|
31134
|
+
"kind": "field",
|
|
31135
|
+
"name": "resizeObserver",
|
|
31136
|
+
"type": {
|
|
31137
|
+
"text": "ResizeObserver | null"
|
|
31138
|
+
},
|
|
31139
|
+
"privacy": "private",
|
|
31140
|
+
"default": "null"
|
|
31141
|
+
},
|
|
31142
|
+
{
|
|
31143
|
+
"kind": "field",
|
|
31144
|
+
"name": "bodySlot",
|
|
31145
|
+
"type": {
|
|
31146
|
+
"text": "HTMLSlotElement | null"
|
|
31147
|
+
},
|
|
31148
|
+
"privacy": "private",
|
|
31149
|
+
"readonly": true
|
|
31150
|
+
},
|
|
31151
|
+
{
|
|
31152
|
+
"kind": "method",
|
|
31153
|
+
"name": "observeBodyContent",
|
|
31154
|
+
"privacy": "private"
|
|
31155
|
+
},
|
|
31156
|
+
{
|
|
31157
|
+
"kind": "method",
|
|
31158
|
+
"name": "measureBodyContent",
|
|
31159
|
+
"privacy": "private"
|
|
31057
31160
|
}
|
|
31058
31161
|
],
|
|
31059
31162
|
"attributes": [
|
|
@@ -51429,6 +51532,63 @@
|
|
|
51429
51532
|
"name": "ZnPanel",
|
|
51430
51533
|
"module": "components/panel/panel.js"
|
|
51431
51534
|
}
|
|
51535
|
+
},
|
|
51536
|
+
{
|
|
51537
|
+
"kind": "field",
|
|
51538
|
+
"name": "bodyEmpty",
|
|
51539
|
+
"type": {
|
|
51540
|
+
"text": "boolean"
|
|
51541
|
+
},
|
|
51542
|
+
"privacy": "private",
|
|
51543
|
+
"default": "false",
|
|
51544
|
+
"inheritedFrom": {
|
|
51545
|
+
"name": "ZnPanel",
|
|
51546
|
+
"module": "components/panel/panel.js"
|
|
51547
|
+
}
|
|
51548
|
+
},
|
|
51549
|
+
{
|
|
51550
|
+
"kind": "field",
|
|
51551
|
+
"name": "resizeObserver",
|
|
51552
|
+
"type": {
|
|
51553
|
+
"text": "ResizeObserver | null"
|
|
51554
|
+
},
|
|
51555
|
+
"privacy": "private",
|
|
51556
|
+
"default": "null",
|
|
51557
|
+
"inheritedFrom": {
|
|
51558
|
+
"name": "ZnPanel",
|
|
51559
|
+
"module": "components/panel/panel.js"
|
|
51560
|
+
}
|
|
51561
|
+
},
|
|
51562
|
+
{
|
|
51563
|
+
"kind": "field",
|
|
51564
|
+
"name": "bodySlot",
|
|
51565
|
+
"type": {
|
|
51566
|
+
"text": "HTMLSlotElement | null"
|
|
51567
|
+
},
|
|
51568
|
+
"privacy": "private",
|
|
51569
|
+
"readonly": true,
|
|
51570
|
+
"inheritedFrom": {
|
|
51571
|
+
"name": "ZnPanel",
|
|
51572
|
+
"module": "components/panel/panel.js"
|
|
51573
|
+
}
|
|
51574
|
+
},
|
|
51575
|
+
{
|
|
51576
|
+
"kind": "method",
|
|
51577
|
+
"name": "observeBodyContent",
|
|
51578
|
+
"privacy": "private",
|
|
51579
|
+
"inheritedFrom": {
|
|
51580
|
+
"name": "ZnPanel",
|
|
51581
|
+
"module": "components/panel/panel.js"
|
|
51582
|
+
}
|
|
51583
|
+
},
|
|
51584
|
+
{
|
|
51585
|
+
"kind": "method",
|
|
51586
|
+
"name": "measureBodyContent",
|
|
51587
|
+
"privacy": "private",
|
|
51588
|
+
"inheritedFrom": {
|
|
51589
|
+
"name": "ZnPanel",
|
|
51590
|
+
"module": "components/panel/panel.js"
|
|
51591
|
+
}
|
|
51432
51592
|
}
|
|
51433
51593
|
],
|
|
51434
51594
|
"events": [
|
|
@@ -52701,7 +52861,7 @@
|
|
|
52701
52861
|
"package": {
|
|
52702
52862
|
"name": "@kubex/zinc",
|
|
52703
52863
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
52704
|
-
"version": "1.1.
|
|
52864
|
+
"version": "1.1.131",
|
|
52705
52865
|
"author": "",
|
|
52706
52866
|
"license": "MIT"
|
|
52707
52867
|
}
|
package/dist/web-types.json
CHANGED
package/dist/zn.d.ts
CHANGED
|
@@ -3867,8 +3867,14 @@ declare module "components/panel/panel.component" {
|
|
|
3867
3867
|
flushFooter: boolean;
|
|
3868
3868
|
transparent: boolean;
|
|
3869
3869
|
shadow: boolean;
|
|
3870
|
+
private bodyEmpty;
|
|
3871
|
+
private resizeObserver;
|
|
3870
3872
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
3871
3873
|
connectedCallback(): void;
|
|
3874
|
+
disconnectedCallback(): void;
|
|
3875
|
+
private get bodySlot();
|
|
3876
|
+
private observeBodyContent;
|
|
3877
|
+
private measureBodyContent;
|
|
3872
3878
|
protected render(): unknown;
|
|
3873
3879
|
}
|
|
3874
3880
|
}
|
|
@@ -4177,6 +4183,7 @@ declare module "components/data-table/data-table.component" {
|
|
|
4177
4183
|
filterClearListener: (e: Event) => void;
|
|
4178
4184
|
filterChangeListener: (e: ZnFilterChangeEvent) => void;
|
|
4179
4185
|
searchChangeListener: (e: ZnSearchChangeEvent) => void;
|
|
4186
|
+
private get isNarrowed();
|
|
4180
4187
|
emptyState(): TemplateResult<1>;
|
|
4181
4188
|
renderTable(data: Response): TemplateResult<1>;
|
|
4182
4189
|
private renderErrorAlert;
|