@synergy-design-system/components 1.0.0-main.4 → 1.0.0-main.5

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.
Files changed (25) hide show
  1. package/dist/chunks/{chunk.SLLG4KJR.js → chunk.54FCEBNA.js} +2 -2
  2. package/dist/chunks/{chunk.SLLG4KJR.js.map → chunk.54FCEBNA.js.map} +1 -1
  3. package/dist/chunks/{chunk.7EGSHKGV.js → chunk.AWMJNMQS.js} +2 -2
  4. package/dist/chunks/{chunk.BQPK6UKU.js → chunk.CV726VL5.js} +3 -3
  5. package/dist/chunks/{chunk.EW2JZPYV.js → chunk.GK7WWJOJ.js} +2 -2
  6. package/dist/chunks/{chunk.2FIY3TX5.js → chunk.HRC6YF27.js} +2 -2
  7. package/dist/chunks/{chunk.FUYWF5Y2.js → chunk.P44HUIHR.js} +4 -4
  8. package/dist/chunks/{chunk.5PZUAKCS.js → chunk.ZC2SKYJO.js} +2 -2
  9. package/dist/components/button/button.component.js +4 -4
  10. package/dist/components/button/button.js +5 -5
  11. package/dist/components/icon/icon.component.js +2 -2
  12. package/dist/components/icon/icon.js +2 -2
  13. package/dist/components/input/input.component.js +3 -3
  14. package/dist/components/input/input.js +4 -4
  15. package/dist/components/spinner/spinner.component.js +2 -2
  16. package/dist/custom-elements.json +1 -1
  17. package/dist/synergy.js +7 -7
  18. package/dist/web-types.json +1 -1
  19. package/package.json +5 -6
  20. /package/dist/chunks/{chunk.7EGSHKGV.js.map → chunk.AWMJNMQS.js.map} +0 -0
  21. /package/dist/chunks/{chunk.BQPK6UKU.js.map → chunk.CV726VL5.js.map} +0 -0
  22. /package/dist/chunks/{chunk.EW2JZPYV.js.map → chunk.GK7WWJOJ.js.map} +0 -0
  23. /package/dist/chunks/{chunk.2FIY3TX5.js.map → chunk.HRC6YF27.js.map} +0 -0
  24. /package/dist/chunks/{chunk.FUYWF5Y2.js.map → chunk.P44HUIHR.js.map} +0 -0
  25. /package/dist/chunks/{chunk.5PZUAKCS.js.map → chunk.ZC2SKYJO.js.map} +0 -0
@@ -48,7 +48,7 @@ var SynergyElement = class extends LitElement {
48
48
  };
49
49
  /* eslint-disable */
50
50
  // @ts-expect-error This is auto-injected at build time.
51
- SynergyElement.version = "1.0.0-main.3";
51
+ SynergyElement.version = "1.0.0-main.5";
52
52
  SynergyElement.dependencies = {};
53
53
  __decorateClass([
54
54
  property()
@@ -60,4 +60,4 @@ __decorateClass([
60
60
  export {
61
61
  SynergyElement
62
62
  };
63
- //# sourceMappingURL=chunk.SLLG4KJR.js.map
63
+ //# sourceMappingURL=chunk.54FCEBNA.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/internal/synergy-element.ts"],
4
- "sourcesContent": ["// ---------------------------------------------------------------------\n// \uD83D\uDD12 AUTOGENERATED BY VENDORISM\n// Removing this comment will prevent it from being managed by it.\n// ---------------------------------------------------------------------\n\n/* eslint-disable */\nimport { LitElement } from 'lit';\nimport { property } from 'lit/decorators.js';\n\n// Match event type name strings that are registered on GlobalEventHandlersEventMap...\ntype EventTypeRequiresDetail<T> = T extends keyof GlobalEventHandlersEventMap\n ? // ...where the event detail is an object...\n GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, unknown>>\n ? // ...that is non-empty...\n GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, never>>\n ? never\n : // ...and has at least one non-optional property\n Partial<GlobalEventHandlersEventMap[T]['detail']> extends GlobalEventHandlersEventMap[T]['detail']\n ? never\n : T\n : never\n : never;\n\n// The inverse of the above (match any type that doesn't match EventTypeRequiresDetail)\ntype EventTypeDoesNotRequireDetail<T> = T extends keyof GlobalEventHandlersEventMap\n ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, unknown>>\n ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, never>>\n ? T\n : Partial<GlobalEventHandlersEventMap[T]['detail']> extends GlobalEventHandlersEventMap[T]['detail']\n ? T\n : never\n : T\n : T;\n\n// `keyof EventTypesWithRequiredDetail` lists all registered event types that require detail\ntype EventTypesWithRequiredDetail = {\n [EventType in keyof GlobalEventHandlersEventMap as EventTypeRequiresDetail<EventType>]: true;\n};\n\n// `keyof EventTypesWithoutRequiredDetail` lists all registered event types that do NOT require detail\ntype EventTypesWithoutRequiredDetail = {\n [EventType in keyof GlobalEventHandlersEventMap as EventTypeDoesNotRequireDetail<EventType>]: true;\n};\n\n// Helper to make a specific property of an object non-optional\ntype WithRequired<T, K extends keyof T> = T & { [P in K]-?: T[P] };\n\n// Given an event name string, get a valid type for the options to initialize the event that is more restrictive than\n// just CustomEventInit when appropriate (validate the type of the event detail, and require it to be provided if the\n// event requires it)\ntype SynEventInit<T> = T extends keyof GlobalEventHandlersEventMap\n ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, unknown>>\n ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, never>>\n ? CustomEventInit<GlobalEventHandlersEventMap[T]['detail']>\n : Partial<GlobalEventHandlersEventMap[T]['detail']> extends GlobalEventHandlersEventMap[T]['detail']\n ? CustomEventInit<GlobalEventHandlersEventMap[T]['detail']>\n : WithRequired<CustomEventInit<GlobalEventHandlersEventMap[T]['detail']>, 'detail'>\n : CustomEventInit\n : CustomEventInit;\n\n// Given an event name string, get the type of the event\ntype GetCustomEventType<T> = T extends keyof GlobalEventHandlersEventMap\n ? GlobalEventHandlersEventMap[T] extends CustomEvent<unknown>\n ? GlobalEventHandlersEventMap[T]\n : CustomEvent<unknown>\n : CustomEvent<unknown>;\n\n// `keyof ValidEventTypeMap` is equivalent to `keyof GlobalEventHandlersEventMap` but gives a nicer error message\ntype ValidEventTypeMap = EventTypesWithRequiredDetail | EventTypesWithoutRequiredDetail;\n\nexport default class SynergyElement extends LitElement {\n // Make localization attributes reactive\n @property() dir: string;\n @property() lang: string;\n\n /** Emits a custom event with more convenient defaults. */\n emit<T extends string & keyof EventTypesWithoutRequiredDetail>(\n name: EventTypeDoesNotRequireDetail<T>,\n options?: SynEventInit<T> | undefined\n ): GetCustomEventType<T>;\n emit<T extends string & keyof EventTypesWithRequiredDetail>(\n name: EventTypeRequiresDetail<T>,\n options: SynEventInit<T>\n ): GetCustomEventType<T>;\n emit<T extends string & keyof ValidEventTypeMap>(\n name: T,\n options?: SynEventInit<T> | undefined\n ): GetCustomEventType<T> {\n const event = new CustomEvent(name, {\n bubbles: true,\n cancelable: false,\n composed: true,\n detail: {},\n ...options\n });\n\n this.dispatchEvent(event);\n\n return event as GetCustomEventType<T>;\n }\n\n /* eslint-disable */\n // @ts-expect-error This is auto-injected at build time.\n static version = \"1.0.0-main.3\";\n \n\n static define(name: string, elementConstructor = this, options: ElementDefinitionOptions = {}) {\n const currentlyRegisteredConstructor = customElements.get(name) as\n | CustomElementConstructor\n | typeof SynergyElement;\n\n if (!currentlyRegisteredConstructor) {\n customElements.define(name, class extends elementConstructor {} as unknown as CustomElementConstructor, options);\n return;\n }\n\n let newVersion = ' (unknown version)';\n let existingVersion = newVersion;\n\n if ('version' in elementConstructor && elementConstructor.version) {\n newVersion = ' v' + elementConstructor.version;\n }\n\n if ('version' in currentlyRegisteredConstructor && currentlyRegisteredConstructor.version) {\n existingVersion = ' v' + currentlyRegisteredConstructor.version;\n }\n\n // Need to make sure we're not working with null or empty strings before doing version comparisons.\n if (newVersion && existingVersion && newVersion === existingVersion) {\n // If versions match, we don't need to warn anyone. Carry on.\n return;\n }\n\n console.warn(\n `Attempted to register <${name}>${newVersion}, but <${name}>${existingVersion} has already been registered.`\n );\n }\n\n static dependencies: Record<string, typeof SynergyElement> = {};\n\n constructor() {\n super();\n Object.entries((this.constructor as typeof SynergyElement).dependencies).forEach(([name, component]) => {\n (this.constructor as typeof SynergyElement).define(name, component);\n });\n }\n}\n\nexport interface SynergyFormControl extends SynergyElement {\n // Form attributes\n name: string;\n value: unknown;\n disabled?: boolean;\n defaultValue?: unknown;\n defaultChecked?: boolean;\n form?: string;\n\n // Constraint validation attributes\n pattern?: string;\n min?: number | string | Date;\n max?: number | string | Date;\n step?: number | 'any';\n required?: boolean;\n minlength?: number;\n maxlength?: number;\n\n // Form validation properties\n readonly validity: ValidityState;\n readonly validationMessage: string;\n\n // Form validation methods\n checkValidity: () => boolean;\n getForm: () => HTMLFormElement | null;\n reportValidity: () => boolean;\n setCustomValidity: (message: string) => void;\n}\n"],
4
+ "sourcesContent": ["// ---------------------------------------------------------------------\n// \uD83D\uDD12 AUTOGENERATED BY VENDORISM\n// Removing this comment will prevent it from being managed by it.\n// ---------------------------------------------------------------------\n\n/* eslint-disable */\nimport { LitElement } from 'lit';\nimport { property } from 'lit/decorators.js';\n\n// Match event type name strings that are registered on GlobalEventHandlersEventMap...\ntype EventTypeRequiresDetail<T> = T extends keyof GlobalEventHandlersEventMap\n ? // ...where the event detail is an object...\n GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, unknown>>\n ? // ...that is non-empty...\n GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, never>>\n ? never\n : // ...and has at least one non-optional property\n Partial<GlobalEventHandlersEventMap[T]['detail']> extends GlobalEventHandlersEventMap[T]['detail']\n ? never\n : T\n : never\n : never;\n\n// The inverse of the above (match any type that doesn't match EventTypeRequiresDetail)\ntype EventTypeDoesNotRequireDetail<T> = T extends keyof GlobalEventHandlersEventMap\n ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, unknown>>\n ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, never>>\n ? T\n : Partial<GlobalEventHandlersEventMap[T]['detail']> extends GlobalEventHandlersEventMap[T]['detail']\n ? T\n : never\n : T\n : T;\n\n// `keyof EventTypesWithRequiredDetail` lists all registered event types that require detail\ntype EventTypesWithRequiredDetail = {\n [EventType in keyof GlobalEventHandlersEventMap as EventTypeRequiresDetail<EventType>]: true;\n};\n\n// `keyof EventTypesWithoutRequiredDetail` lists all registered event types that do NOT require detail\ntype EventTypesWithoutRequiredDetail = {\n [EventType in keyof GlobalEventHandlersEventMap as EventTypeDoesNotRequireDetail<EventType>]: true;\n};\n\n// Helper to make a specific property of an object non-optional\ntype WithRequired<T, K extends keyof T> = T & { [P in K]-?: T[P] };\n\n// Given an event name string, get a valid type for the options to initialize the event that is more restrictive than\n// just CustomEventInit when appropriate (validate the type of the event detail, and require it to be provided if the\n// event requires it)\ntype SynEventInit<T> = T extends keyof GlobalEventHandlersEventMap\n ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, unknown>>\n ? GlobalEventHandlersEventMap[T] extends CustomEvent<Record<PropertyKey, never>>\n ? CustomEventInit<GlobalEventHandlersEventMap[T]['detail']>\n : Partial<GlobalEventHandlersEventMap[T]['detail']> extends GlobalEventHandlersEventMap[T]['detail']\n ? CustomEventInit<GlobalEventHandlersEventMap[T]['detail']>\n : WithRequired<CustomEventInit<GlobalEventHandlersEventMap[T]['detail']>, 'detail'>\n : CustomEventInit\n : CustomEventInit;\n\n// Given an event name string, get the type of the event\ntype GetCustomEventType<T> = T extends keyof GlobalEventHandlersEventMap\n ? GlobalEventHandlersEventMap[T] extends CustomEvent<unknown>\n ? GlobalEventHandlersEventMap[T]\n : CustomEvent<unknown>\n : CustomEvent<unknown>;\n\n// `keyof ValidEventTypeMap` is equivalent to `keyof GlobalEventHandlersEventMap` but gives a nicer error message\ntype ValidEventTypeMap = EventTypesWithRequiredDetail | EventTypesWithoutRequiredDetail;\n\nexport default class SynergyElement extends LitElement {\n // Make localization attributes reactive\n @property() dir: string;\n @property() lang: string;\n\n /** Emits a custom event with more convenient defaults. */\n emit<T extends string & keyof EventTypesWithoutRequiredDetail>(\n name: EventTypeDoesNotRequireDetail<T>,\n options?: SynEventInit<T> | undefined\n ): GetCustomEventType<T>;\n emit<T extends string & keyof EventTypesWithRequiredDetail>(\n name: EventTypeRequiresDetail<T>,\n options: SynEventInit<T>\n ): GetCustomEventType<T>;\n emit<T extends string & keyof ValidEventTypeMap>(\n name: T,\n options?: SynEventInit<T> | undefined\n ): GetCustomEventType<T> {\n const event = new CustomEvent(name, {\n bubbles: true,\n cancelable: false,\n composed: true,\n detail: {},\n ...options\n });\n\n this.dispatchEvent(event);\n\n return event as GetCustomEventType<T>;\n }\n\n /* eslint-disable */\n // @ts-expect-error This is auto-injected at build time.\n static version = \"1.0.0-main.5\";\n \n\n static define(name: string, elementConstructor = this, options: ElementDefinitionOptions = {}) {\n const currentlyRegisteredConstructor = customElements.get(name) as\n | CustomElementConstructor\n | typeof SynergyElement;\n\n if (!currentlyRegisteredConstructor) {\n customElements.define(name, class extends elementConstructor {} as unknown as CustomElementConstructor, options);\n return;\n }\n\n let newVersion = ' (unknown version)';\n let existingVersion = newVersion;\n\n if ('version' in elementConstructor && elementConstructor.version) {\n newVersion = ' v' + elementConstructor.version;\n }\n\n if ('version' in currentlyRegisteredConstructor && currentlyRegisteredConstructor.version) {\n existingVersion = ' v' + currentlyRegisteredConstructor.version;\n }\n\n // Need to make sure we're not working with null or empty strings before doing version comparisons.\n if (newVersion && existingVersion && newVersion === existingVersion) {\n // If versions match, we don't need to warn anyone. Carry on.\n return;\n }\n\n console.warn(\n `Attempted to register <${name}>${newVersion}, but <${name}>${existingVersion} has already been registered.`\n );\n }\n\n static dependencies: Record<string, typeof SynergyElement> = {};\n\n constructor() {\n super();\n Object.entries((this.constructor as typeof SynergyElement).dependencies).forEach(([name, component]) => {\n (this.constructor as typeof SynergyElement).define(name, component);\n });\n }\n}\n\nexport interface SynergyFormControl extends SynergyElement {\n // Form attributes\n name: string;\n value: unknown;\n disabled?: boolean;\n defaultValue?: unknown;\n defaultChecked?: boolean;\n form?: string;\n\n // Constraint validation attributes\n pattern?: string;\n min?: number | string | Date;\n max?: number | string | Date;\n step?: number | 'any';\n required?: boolean;\n minlength?: number;\n maxlength?: number;\n\n // Form validation properties\n readonly validity: ValidityState;\n readonly validationMessage: string;\n\n // Form validation methods\n checkValidity: () => boolean;\n getForm: () => HTMLFormElement | null;\n reportValidity: () => boolean;\n setCustomValidity: (message: string) => void;\n}\n"],
5
5
  "mappings": ";;;;;;AAMA,SAAS,kBAAkB;AAC3B,SAAS,gBAAgB;AA+DzB,IAAqB,iBAArB,cAA4C,WAAW;AAAA,EAsErD,cAAc;AACZ,UAAM;AACN,WAAO,QAAS,KAAK,YAAsC,YAAY,EAAE,QAAQ,CAAC,CAAC,MAAM,SAAS,MAAM;AACtG,MAAC,KAAK,YAAsC,OAAO,MAAM,SAAS;AAAA,IACpE,CAAC;AAAA,EACH;AAAA,EA7DA,KACE,MACA,SACuB;AACvB,UAAM,QAAQ,IAAI,YAAY,MAAM;AAAA,MAClC,SAAS;AAAA,MACT,YAAY;AAAA,MACZ,UAAU;AAAA,MACV,QAAQ,CAAC;AAAA,OACN,QACJ;AAED,SAAK,cAAc,KAAK;AAExB,WAAO;AAAA,EACT;AAAA,EAOA,OAAO,OAAO,MAAc,qBAAqB,MAAM,UAAoC,CAAC,GAAG;AAC7F,UAAM,iCAAiC,eAAe,IAAI,IAAI;AAI9D,QAAI,CAAC,gCAAgC;AACnC,qBAAe,OAAO,MAAM,cAAc,mBAAmB;AAAA,MAAC,GAA0C,OAAO;AAC/G;AAAA,IACF;AAEA,QAAI,aAAa;AACjB,QAAI,kBAAkB;AAEtB,QAAI,aAAa,sBAAsB,mBAAmB,SAAS;AACjE,mBAAa,OAAO,mBAAmB;AAAA,IACzC;AAEA,QAAI,aAAa,kCAAkC,+BAA+B,SAAS;AACzF,wBAAkB,OAAO,+BAA+B;AAAA,IAC1D;AAGA,QAAI,cAAc,mBAAmB,eAAe,iBAAiB;AAEnE;AAAA,IACF;AAEA,YAAQ;AAAA,MACN,0BAA0B,IAAI,IAAI,UAAU,UAAU,IAAI,IAAI,eAAe;AAAA,IAC/E;AAAA,EACF;AAUF;AAAA;AAAA;AA5EqB,eAiCZ,UAAU;AAjCE,eAoEZ,eAAsD,CAAC;AAlElD;AAAA,EAAX,SAAS;AAAA,GAFS,eAEP;AACA;AAAA,EAAX,SAAS;AAAA,GAHS,eAGP;",
6
6
  "names": []
7
7
  }
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  SynButton
3
- } from "./chunk.FUYWF5Y2.js";
3
+ } from "./chunk.P44HUIHR.js";
4
4
 
5
5
  // src/components/button/button.ts
6
6
  var button_default = SynButton;
@@ -9,4 +9,4 @@ SynButton.define("syn-button");
9
9
  export {
10
10
  button_default
11
11
  };
12
- //# sourceMappingURL=chunk.7EGSHKGV.js.map
12
+ //# sourceMappingURL=chunk.AWMJNMQS.js.map
@@ -13,10 +13,10 @@ import {
13
13
  import {
14
14
  SynIcon,
15
15
  watch
16
- } from "./chunk.5PZUAKCS.js";
16
+ } from "./chunk.ZC2SKYJO.js";
17
17
  import {
18
18
  SynergyElement
19
- } from "./chunk.SLLG4KJR.js";
19
+ } from "./chunk.54FCEBNA.js";
20
20
  import {
21
21
  __decorateClass
22
22
  } from "./chunk.DJOAQ4JU.js";
@@ -495,4 +495,4 @@ __decorateClass([
495
495
  export {
496
496
  SynInput
497
497
  };
498
- //# sourceMappingURL=chunk.BQPK6UKU.js.map
498
+ //# sourceMappingURL=chunk.CV726VL5.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  SynInput
3
- } from "./chunk.BQPK6UKU.js";
3
+ } from "./chunk.CV726VL5.js";
4
4
 
5
5
  // src/components/input/input.ts
6
6
  var input_default = SynInput;
@@ -9,4 +9,4 @@ SynInput.define("syn-input");
9
9
  export {
10
10
  input_default
11
11
  };
12
- //# sourceMappingURL=chunk.EW2JZPYV.js.map
12
+ //# sourceMappingURL=chunk.GK7WWJOJ.js.map
@@ -6,7 +6,7 @@ import {
6
6
  } from "./chunk.R6VNLE6N.js";
7
7
  import {
8
8
  SynergyElement
9
- } from "./chunk.SLLG4KJR.js";
9
+ } from "./chunk.54FCEBNA.js";
10
10
 
11
11
  // src/components/spinner/spinner.component.ts
12
12
  import { html } from "lit";
@@ -29,4 +29,4 @@ SynSpinner.styles = spinner_styles_default;
29
29
  export {
30
30
  SynSpinner
31
31
  };
32
- //# sourceMappingURL=chunk.2FIY3TX5.js.map
32
+ //# sourceMappingURL=chunk.HRC6YF27.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  SynSpinner
3
- } from "./chunk.2FIY3TX5.js";
3
+ } from "./chunk.HRC6YF27.js";
4
4
  import {
5
5
  HasSlotController
6
6
  } from "./chunk.XGXFE6IF.js";
@@ -17,10 +17,10 @@ import {
17
17
  import {
18
18
  SynIcon,
19
19
  watch
20
- } from "./chunk.5PZUAKCS.js";
20
+ } from "./chunk.ZC2SKYJO.js";
21
21
  import {
22
22
  SynergyElement
23
- } from "./chunk.SLLG4KJR.js";
23
+ } from "./chunk.54FCEBNA.js";
24
24
  import {
25
25
  __decorateClass
26
26
  } from "./chunk.DJOAQ4JU.js";
@@ -275,4 +275,4 @@ __decorateClass([
275
275
  export {
276
276
  SynButton
277
277
  };
278
- //# sourceMappingURL=chunk.FUYWF5Y2.js.map
278
+ //# sourceMappingURL=chunk.P44HUIHR.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  SynergyElement
3
- } from "./chunk.SLLG4KJR.js";
3
+ } from "./chunk.54FCEBNA.js";
4
4
  import {
5
5
  icon_styles_default
6
6
  } from "./chunk.BREU4ILT.js";
@@ -199,4 +199,4 @@ export {
199
199
  watch,
200
200
  SynIcon
201
201
  };
202
- //# sourceMappingURL=chunk.5PZUAKCS.js.map
202
+ //# sourceMappingURL=chunk.ZC2SKYJO.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  SynButton
3
- } from "../../chunks/chunk.FUYWF5Y2.js";
4
- import "../../chunks/chunk.2FIY3TX5.js";
3
+ } from "../../chunks/chunk.P44HUIHR.js";
4
+ import "../../chunks/chunk.HRC6YF27.js";
5
5
  import "../../chunks/chunk.N2I6HVX3.js";
6
6
  import "../../chunks/chunk.XGXFE6IF.js";
7
7
  import "../../chunks/chunk.R6VNLE6N.js";
@@ -9,8 +9,8 @@ import "../../chunks/chunk.A3SKDWCT.js";
9
9
  import "../../chunks/chunk.WDCAHRYG.js";
10
10
  import "../../chunks/chunk.P22LQI5J.js";
11
11
  import "../../chunks/chunk.DREO4ZTN.js";
12
- import "../../chunks/chunk.5PZUAKCS.js";
13
- import "../../chunks/chunk.SLLG4KJR.js";
12
+ import "../../chunks/chunk.ZC2SKYJO.js";
13
+ import "../../chunks/chunk.54FCEBNA.js";
14
14
  import "../../chunks/chunk.BREU4ILT.js";
15
15
  import "../../chunks/chunk.5OIEI73E.js";
16
16
  import "../../chunks/chunk.6C4JXZZN.js";
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  button_default
3
- } from "../../chunks/chunk.7EGSHKGV.js";
4
- import "../../chunks/chunk.FUYWF5Y2.js";
5
- import "../../chunks/chunk.2FIY3TX5.js";
3
+ } from "../../chunks/chunk.AWMJNMQS.js";
4
+ import "../../chunks/chunk.P44HUIHR.js";
5
+ import "../../chunks/chunk.HRC6YF27.js";
6
6
  import "../../chunks/chunk.N2I6HVX3.js";
7
7
  import "../../chunks/chunk.XGXFE6IF.js";
8
8
  import "../../chunks/chunk.R6VNLE6N.js";
@@ -10,8 +10,8 @@ import "../../chunks/chunk.A3SKDWCT.js";
10
10
  import "../../chunks/chunk.WDCAHRYG.js";
11
11
  import "../../chunks/chunk.P22LQI5J.js";
12
12
  import "../../chunks/chunk.DREO4ZTN.js";
13
- import "../../chunks/chunk.5PZUAKCS.js";
14
- import "../../chunks/chunk.SLLG4KJR.js";
13
+ import "../../chunks/chunk.ZC2SKYJO.js";
14
+ import "../../chunks/chunk.54FCEBNA.js";
15
15
  import "../../chunks/chunk.BREU4ILT.js";
16
16
  import "../../chunks/chunk.5OIEI73E.js";
17
17
  import "../../chunks/chunk.6C4JXZZN.js";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  SynIcon
3
- } from "../../chunks/chunk.5PZUAKCS.js";
4
- import "../../chunks/chunk.SLLG4KJR.js";
3
+ } from "../../chunks/chunk.ZC2SKYJO.js";
4
+ import "../../chunks/chunk.54FCEBNA.js";
5
5
  import "../../chunks/chunk.BREU4ILT.js";
6
6
  import "../../chunks/chunk.5OIEI73E.js";
7
7
  import "../../chunks/chunk.6C4JXZZN.js";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  SynIcon
3
- } from "../../chunks/chunk.5PZUAKCS.js";
4
- import "../../chunks/chunk.SLLG4KJR.js";
3
+ } from "../../chunks/chunk.ZC2SKYJO.js";
4
+ import "../../chunks/chunk.54FCEBNA.js";
5
5
  import "../../chunks/chunk.BREU4ILT.js";
6
6
  import "../../chunks/chunk.5OIEI73E.js";
7
7
  import "../../chunks/chunk.6C4JXZZN.js";
@@ -1,14 +1,14 @@
1
1
  import {
2
2
  SynInput
3
- } from "../../chunks/chunk.BQPK6UKU.js";
3
+ } from "../../chunks/chunk.CV726VL5.js";
4
4
  import "../../chunks/chunk.Q77OTWF2.js";
5
5
  import "../../chunks/chunk.ILONRPL4.js";
6
6
  import "../../chunks/chunk.XGXFE6IF.js";
7
7
  import "../../chunks/chunk.R6VNLE6N.js";
8
8
  import "../../chunks/chunk.A3SKDWCT.js";
9
9
  import "../../chunks/chunk.WDCAHRYG.js";
10
- import "../../chunks/chunk.5PZUAKCS.js";
11
- import "../../chunks/chunk.SLLG4KJR.js";
10
+ import "../../chunks/chunk.ZC2SKYJO.js";
11
+ import "../../chunks/chunk.54FCEBNA.js";
12
12
  import "../../chunks/chunk.BREU4ILT.js";
13
13
  import "../../chunks/chunk.5OIEI73E.js";
14
14
  import "../../chunks/chunk.6C4JXZZN.js";
@@ -1,15 +1,15 @@
1
1
  import {
2
2
  input_default
3
- } from "../../chunks/chunk.EW2JZPYV.js";
4
- import "../../chunks/chunk.BQPK6UKU.js";
3
+ } from "../../chunks/chunk.GK7WWJOJ.js";
4
+ import "../../chunks/chunk.CV726VL5.js";
5
5
  import "../../chunks/chunk.Q77OTWF2.js";
6
6
  import "../../chunks/chunk.ILONRPL4.js";
7
7
  import "../../chunks/chunk.XGXFE6IF.js";
8
8
  import "../../chunks/chunk.R6VNLE6N.js";
9
9
  import "../../chunks/chunk.A3SKDWCT.js";
10
10
  import "../../chunks/chunk.WDCAHRYG.js";
11
- import "../../chunks/chunk.5PZUAKCS.js";
12
- import "../../chunks/chunk.SLLG4KJR.js";
11
+ import "../../chunks/chunk.ZC2SKYJO.js";
12
+ import "../../chunks/chunk.54FCEBNA.js";
13
13
  import "../../chunks/chunk.BREU4ILT.js";
14
14
  import "../../chunks/chunk.5OIEI73E.js";
15
15
  import "../../chunks/chunk.6C4JXZZN.js";
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  SynSpinner
3
- } from "../../chunks/chunk.2FIY3TX5.js";
3
+ } from "../../chunks/chunk.HRC6YF27.js";
4
4
  import "../../chunks/chunk.N2I6HVX3.js";
5
5
  import "../../chunks/chunk.R6VNLE6N.js";
6
6
  import "../../chunks/chunk.A3SKDWCT.js";
7
- import "../../chunks/chunk.SLLG4KJR.js";
7
+ import "../../chunks/chunk.54FCEBNA.js";
8
8
  import "../../chunks/chunk.O7USYXBT.js";
9
9
  import "../../chunks/chunk.DJOAQ4JU.js";
10
10
  export {
@@ -1859,7 +1859,7 @@
1859
1859
  "package": {
1860
1860
  "name": "@synergy-design-system/components",
1861
1861
  "description": "",
1862
- "version": "1.0.0-main.3",
1862
+ "version": "1.0.0-main.5",
1863
1863
  "author": {
1864
1864
  "name": "SICK Global UX Foundation",
1865
1865
  "url": "https://www.sick.com"
package/dist/synergy.js CHANGED
@@ -1,18 +1,18 @@
1
1
  import {
2
2
  input_default
3
- } from "./chunks/chunk.EW2JZPYV.js";
3
+ } from "./chunks/chunk.GK7WWJOJ.js";
4
4
  import {
5
5
  getFormControls,
6
6
  serialize
7
7
  } from "./chunks/chunk.WTCUSH7V.js";
8
- import "./chunks/chunk.BQPK6UKU.js";
8
+ import "./chunks/chunk.CV726VL5.js";
9
9
  import "./chunks/chunk.Q77OTWF2.js";
10
10
  import "./chunks/chunk.ILONRPL4.js";
11
11
  import {
12
12
  button_default
13
- } from "./chunks/chunk.7EGSHKGV.js";
14
- import "./chunks/chunk.FUYWF5Y2.js";
15
- import "./chunks/chunk.2FIY3TX5.js";
13
+ } from "./chunks/chunk.AWMJNMQS.js";
14
+ import "./chunks/chunk.P44HUIHR.js";
15
+ import "./chunks/chunk.HRC6YF27.js";
16
16
  import "./chunks/chunk.N2I6HVX3.js";
17
17
  import "./chunks/chunk.XGXFE6IF.js";
18
18
  import "./chunks/chunk.R6VNLE6N.js";
@@ -20,8 +20,8 @@ import "./chunks/chunk.A3SKDWCT.js";
20
20
  import "./chunks/chunk.WDCAHRYG.js";
21
21
  import "./chunks/chunk.P22LQI5J.js";
22
22
  import "./chunks/chunk.DREO4ZTN.js";
23
- import "./chunks/chunk.5PZUAKCS.js";
24
- import "./chunks/chunk.SLLG4KJR.js";
23
+ import "./chunks/chunk.ZC2SKYJO.js";
24
+ import "./chunks/chunk.54FCEBNA.js";
25
25
  import "./chunks/chunk.BREU4ILT.js";
26
26
  import "./chunks/chunk.5OIEI73E.js";
27
27
  import "./chunks/chunk.6C4JXZZN.js";
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "name": "@synergy-design-system/components",
4
- "version": "1.0.0-main.3",
4
+ "version": "1.0.0-main.5",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "url": "https://www.sick.com"
5
5
  },
6
6
  "name": "@synergy-design-system/components",
7
- "version": "1.0.0-main.4",
7
+ "version": "1.0.0-main.5",
8
8
  "description": "",
9
9
  "repository": {
10
10
  "type": "git",
@@ -115,15 +115,15 @@
115
115
  }
116
116
  ],
117
117
  [
118
- "@semantic-release/exec",
118
+ "@semantic-release/npm",
119
119
  {
120
- "prepareCmd": "pnpm build"
120
+ "npmPublish": false
121
121
  }
122
122
  ],
123
123
  [
124
- "@semantic-release/npm",
124
+ "@semantic-release/exec",
125
125
  {
126
- "npmPublish": false
126
+ "prepareCmd": "pnpm build && git add ../react && git commit -m \"chore: Create new version of @synergy-design-system/react [skip actions]\""
127
127
  }
128
128
  ],
129
129
  [
@@ -131,7 +131,6 @@
131
131
  {
132
132
  "message": "chore(release/components): ${nextRelease.version} [skip actions]\n\n${nextRelease.notes}",
133
133
  "assets": [
134
- "../react/**",
135
134
  "CHANGELOG.md",
136
135
  "package.json"
137
136
  ]