@kubex/zinc 1.1.130 → 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 +152 -1
- package/dist/web-types.json +1 -1
- package/dist/zn.d.ts +6 -0
- package/dist/zn.min.js +66 -66
- package/package.json +1 -1
- 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
|
@@ -23724,6 +23724,63 @@
|
|
|
23724
23724
|
"name": "ZnPanel",
|
|
23725
23725
|
"module": "components/panel/panel.js"
|
|
23726
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
|
+
}
|
|
23727
23784
|
}
|
|
23728
23785
|
],
|
|
23729
23786
|
"events": [
|
|
@@ -31063,6 +31120,43 @@
|
|
|
31063
31120
|
"text": "boolean"
|
|
31064
31121
|
},
|
|
31065
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"
|
|
31066
31160
|
}
|
|
31067
31161
|
],
|
|
31068
31162
|
"attributes": [
|
|
@@ -51438,6 +51532,63 @@
|
|
|
51438
51532
|
"name": "ZnPanel",
|
|
51439
51533
|
"module": "components/panel/panel.js"
|
|
51440
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
|
+
}
|
|
51441
51592
|
}
|
|
51442
51593
|
],
|
|
51443
51594
|
"events": [
|
|
@@ -52710,7 +52861,7 @@
|
|
|
52710
52861
|
"package": {
|
|
52711
52862
|
"name": "@kubex/zinc",
|
|
52712
52863
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
52713
|
-
"version": "1.1.
|
|
52864
|
+
"version": "1.1.131",
|
|
52714
52865
|
"author": "",
|
|
52715
52866
|
"license": "MIT"
|
|
52716
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
|
}
|