@kubex/zinc 1.1.128 → 1.1.129
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 +21 -1
- package/dist/web-types.json +1 -1
- package/dist/zn.d.ts +6 -0
- package/dist/zn.min.js +57 -57
- package/package.json +1 -1
- package/src/components/page-builder/page-builder.component.ts +15 -2
- package/src/components/page-builder/page-builder.test.ts +32 -0
- package/src/components/page-builder/page.types.ts +2 -1
|
@@ -28792,6 +28792,26 @@
|
|
|
28792
28792
|
],
|
|
28793
28793
|
"description": "Sets how many slots per row a container whose type allows a choice lays out,\nclamped to the declared bounds. Children keep their order and reflow into the\nnew width, so nothing is lost by narrowing one."
|
|
28794
28794
|
},
|
|
28795
|
+
{
|
|
28796
|
+
"kind": "method",
|
|
28797
|
+
"name": "_onColumnsEntered",
|
|
28798
|
+
"privacy": "private",
|
|
28799
|
+
"parameters": [
|
|
28800
|
+
{
|
|
28801
|
+
"name": "section",
|
|
28802
|
+
"type": {
|
|
28803
|
+
"text": "PageSection"
|
|
28804
|
+
}
|
|
28805
|
+
},
|
|
28806
|
+
{
|
|
28807
|
+
"name": "input",
|
|
28808
|
+
"type": {
|
|
28809
|
+
"text": "ZnInput"
|
|
28810
|
+
}
|
|
28811
|
+
}
|
|
28812
|
+
],
|
|
28813
|
+
"description": "Snaps the field back to the width the container will use. A re-render alone\nwould not: once the state already sits at a bound, an out-of-range entry\nchanges nothing to re-render from."
|
|
28814
|
+
},
|
|
28795
28815
|
{
|
|
28796
28816
|
"kind": "method",
|
|
28797
28817
|
"name": "_removeSection",
|
|
@@ -52681,7 +52701,7 @@
|
|
|
52681
52701
|
"package": {
|
|
52682
52702
|
"name": "@kubex/zinc",
|
|
52683
52703
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
52684
|
-
"version": "1.1.
|
|
52704
|
+
"version": "1.1.129",
|
|
52685
52705
|
"author": "",
|
|
52686
52706
|
"license": "MIT"
|
|
52687
52707
|
}
|
package/dist/web-types.json
CHANGED
package/dist/zn.d.ts
CHANGED
|
@@ -11770,6 +11770,12 @@ declare module "components/page-builder/page-builder.component" {
|
|
|
11770
11770
|
* new width, so nothing is lost by narrowing one.
|
|
11771
11771
|
*/
|
|
11772
11772
|
setSectionColumns(id: string, columns: number): void;
|
|
11773
|
+
/**
|
|
11774
|
+
* Snaps the field back to the width the container will use. A re-render alone
|
|
11775
|
+
* would not: once the state already sits at a bound, an out-of-range entry
|
|
11776
|
+
* changes nothing to re-render from.
|
|
11777
|
+
*/
|
|
11778
|
+
private _onColumnsEntered;
|
|
11773
11779
|
private _removeSection;
|
|
11774
11780
|
private _duplicateSection;
|
|
11775
11781
|
/** Moves a section (top-level or slotted) to a top-level position. */
|