@kubex/zinc 1.1.128 → 1.1.130

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.
@@ -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"
@@ -28792,6 +28801,26 @@
28792
28801
  ],
28793
28802
  "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
28803
  },
28804
+ {
28805
+ "kind": "method",
28806
+ "name": "_onColumnsEntered",
28807
+ "privacy": "private",
28808
+ "parameters": [
28809
+ {
28810
+ "name": "section",
28811
+ "type": {
28812
+ "text": "PageSection"
28813
+ }
28814
+ },
28815
+ {
28816
+ "name": "input",
28817
+ "type": {
28818
+ "text": "ZnInput"
28819
+ }
28820
+ }
28821
+ ],
28822
+ "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."
28823
+ },
28795
28824
  {
28796
28825
  "kind": "method",
28797
28826
  "name": "_removeSection",
@@ -52681,7 +52710,7 @@
52681
52710
  "package": {
52682
52711
  "name": "@kubex/zinc",
52683
52712
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
52684
- "version": "1.1.128",
52713
+ "version": "1.1.130",
52685
52714
  "author": "",
52686
52715
  "license": "MIT"
52687
52716
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "name": "@kubex/zinc",
4
- "version": "1.1.128",
4
+ "version": "1.1.130",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
package/dist/zn.d.ts CHANGED
@@ -4177,6 +4177,7 @@ declare module "components/data-table/data-table.component" {
4177
4177
  filterClearListener: (e: Event) => void;
4178
4178
  filterChangeListener: (e: ZnFilterChangeEvent) => void;
4179
4179
  searchChangeListener: (e: ZnSearchChangeEvent) => void;
4180
+ private get isNarrowed();
4180
4181
  emptyState(): TemplateResult<1>;
4181
4182
  renderTable(data: Response): TemplateResult<1>;
4182
4183
  private renderErrorAlert;
@@ -11770,6 +11771,12 @@ declare module "components/page-builder/page-builder.component" {
11770
11771
  * new width, so nothing is lost by narrowing one.
11771
11772
  */
11772
11773
  setSectionColumns(id: string, columns: number): void;
11774
+ /**
11775
+ * Snaps the field back to the width the container will use. A re-render alone
11776
+ * would not: once the state already sits at a bound, an out-of-range entry
11777
+ * changes nothing to re-render from.
11778
+ */
11779
+ private _onColumnsEntered;
11773
11780
  private _removeSection;
11774
11781
  private _duplicateSection;
11775
11782
  /** Moves a section (top-level or slotted) to a top-level position. */