@kubex/zinc 1.0.22 → 1.0.24

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.
@@ -26851,13 +26851,23 @@
26851
26851
  "attribute": "required",
26852
26852
  "reflects": true
26853
26853
  },
26854
+ {
26855
+ "kind": "field",
26856
+ "name": "flush",
26857
+ "type": {
26858
+ "text": "boolean"
26859
+ },
26860
+ "default": "false",
26861
+ "attribute": "flush",
26862
+ "reflects": true
26863
+ },
26854
26864
  {
26855
26865
  "kind": "field",
26856
26866
  "name": "languages",
26857
26867
  "type": {
26858
26868
  "text": "Record<string, string>"
26859
26869
  },
26860
- "default": "{ 'en': 'English' }",
26870
+ "default": "{ 'en': 'EN' }",
26861
26871
  "attribute": "languages"
26862
26872
  },
26863
26873
  {
@@ -26979,12 +26989,20 @@
26979
26989
  "default": "false",
26980
26990
  "fieldName": "required"
26981
26991
  },
26992
+ {
26993
+ "name": "flush",
26994
+ "type": {
26995
+ "text": "boolean"
26996
+ },
26997
+ "default": "false",
26998
+ "fieldName": "flush"
26999
+ },
26982
27000
  {
26983
27001
  "name": "languages",
26984
27002
  "type": {
26985
27003
  "text": "Record<string, string>"
26986
27004
  },
26987
- "default": "{ 'en': 'English' }",
27005
+ "default": "{ 'en': 'EN' }",
26988
27006
  "fieldName": "languages"
26989
27007
  },
26990
27008
  {
@@ -27257,7 +27275,7 @@
27257
27275
  "package": {
27258
27276
  "name": "@kubex/zinc",
27259
27277
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
27260
- "version": "1.0.22",
27278
+ "version": "1.0.24",
27261
27279
  "author": "",
27262
27280
  "license": "MIT"
27263
27281
  }
@@ -3013,6 +3013,7 @@
3013
3013
  { "name": "label", "values": [] },
3014
3014
  { "name": "disabled", "values": [] },
3015
3015
  { "name": "required", "values": [] },
3016
+ { "name": "flush", "values": [] },
3016
3017
  {
3017
3018
  "name": "languages",
3018
3019
  "values": [{ "name": "Record<string" }, { "name": "string>" }]
@@ -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.0.22",
4
+ "version": "1.0.24",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -6990,11 +6990,15 @@
6990
6990
  "name": "required",
6991
6991
  "value": { "type": "boolean", "default": "false" }
6992
6992
  },
6993
+ {
6994
+ "name": "flush",
6995
+ "value": { "type": "boolean", "default": "false" }
6996
+ },
6993
6997
  {
6994
6998
  "name": "languages",
6995
6999
  "value": {
6996
7000
  "type": "Record<string, string>",
6997
- "default": "{ 'en': 'English' }"
7001
+ "default": "{ 'en': 'EN' }"
6998
7002
  }
6999
7003
  },
7000
7004
  {
@@ -7010,6 +7014,7 @@
7010
7014
  { "name": "label", "type": "string" },
7011
7015
  { "name": "disabled", "type": "boolean" },
7012
7016
  { "name": "required", "type": "boolean" },
7017
+ { "name": "flush", "type": "boolean" },
7013
7018
  { "name": "languages", "type": "Record<string, string>" },
7014
7019
  { "name": "values", "type": "Record<string, string>" },
7015
7020
  { "name": "validity", "type": "ValidityState" },
package/dist/zn.d.ts CHANGED
@@ -6688,12 +6688,12 @@ declare module "components/audio-select/index" {
6688
6688
  }
6689
6689
  }
6690
6690
  declare module "components/translations/translations.component" {
6691
+ import type { PropertyValues } from 'lit';
6692
+ import type { ZincFormControl } from "internal/zinc-element";
6691
6693
  import ZincElement from "internal/zinc-element";
6692
6694
  import ZnInlineEdit from "components/inline-edit/index";
6693
6695
  import ZnInput from "components/input/index";
6694
6696
  import ZnNavbar from "components/navbar/index";
6695
- import type { PropertyValues } from 'lit';
6696
- import type { ZincFormControl } from "internal/zinc-element";
6697
6697
  export default class ZnTranslations extends ZincElement implements ZincFormControl {
6698
6698
  static styles: import("lit").CSSResult;
6699
6699
  static dependencies: {
@@ -6708,6 +6708,7 @@ declare module "components/translations/translations.component" {
6708
6708
  label: string;
6709
6709
  disabled: boolean;
6710
6710
  required: boolean;
6711
+ flush: boolean;
6711
6712
  languages: Record<string, string>;
6712
6713
  values: Record<string, string>;
6713
6714
  private _activeLanguage;