@synergy-design-system/react 1.0.0-main.3 → 1.0.0-main.4

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.
@@ -0,0 +1,21 @@
1
+ // ../react/src/components/syn-icon/index.ts
2
+ import * as React from "react";
3
+ import { createComponent } from "@lit/react";
4
+ import Component from "@synergy-design-system/components/components/icon/icon.component.js";
5
+ var tagName = "syn-icon";
6
+ Component.define("syn-icon");
7
+ var SynIcon = createComponent({
8
+ displayName: "SynIcon",
9
+ elementClass: Component,
10
+ events: {
11
+ onSynLoad: "syn-load",
12
+ onSynError: "syn-error"
13
+ },
14
+ react: React,
15
+ tagName
16
+ });
17
+
18
+ export {
19
+ SynIcon
20
+ };
21
+ //# sourceMappingURL=chunk.2EPAOLHW.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/components/syn-icon/index.ts"],
4
+ "sourcesContent": ["// ---------------------------------------------------------------------\n// \uD83D\uDD12 AUTOGENERATED @lit/react wrappers for @synergy-design-system/components\n// Please do not edit this file directly!\n// It will get recreated when running pnpm build.\n// ---------------------------------------------------------------------\nimport * as React from 'react';\nimport { createComponent } from '@lit/react';\nimport Component from '@synergy-design-system/components/components/icon/icon.component.js';\n\nimport { type EventName } from '@lit/react';\nimport type { SynErrorEvent, SynLoadEvent } from '@synergy-design-system/components';\n\nconst tagName = 'syn-icon';\nComponent.define('syn-icon');\n\n/**\n * @summary Icons are symbols that can be used to represent various options within an application.\n * @documentation https://synergy.style/components/icon\n * @status stable\n * @since 2.0\n *\n * @event syn-load - Emitted when the icon has loaded. When using `spriteSheet: true` this will not emit.\n * @event syn-error - Emitted when the icon fails to load due to an error. When using `spriteSheet: true` this will not emit.\n *\n * @csspart svg - The internal SVG element.\n * @csspart use - The <use> element generated when using `spriteSheet: true`\n */\nexport const SynIcon = createComponent({\n displayName: 'SynIcon',\n elementClass: Component,\n events: {\n onSynLoad: 'syn-load' as EventName<SynLoadEvent>,\n onSynError: 'syn-error' as EventName<SynErrorEvent>,\n },\n react: React,\n tagName,\n});\n\nexport type { SynLoadEvent } from '@synergy-design-system/components';\nexport type { SynErrorEvent } from '@synergy-design-system/components';\n"],
5
+ "mappings": ";AAKA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAChC,OAAO,eAAe;AAKtB,IAAM,UAAU;AAChB,UAAU,OAAO,UAAU;AAcpB,IAAM,UAAU,gBAAgB;AAAA,EACrC,aAAa;AAAA,EACb,cAAc;AAAA,EACd,QAAQ;AAAA,IACN,WAAW;AAAA,IACX,YAAY;AAAA,EACd;AAAA,EACA,OAAO;AAAA,EACP;AACF,CAAC;",
6
+ "names": []
7
+ }
@@ -0,0 +1,18 @@
1
+ // ../react/src/components/syn-spinner/index.ts
2
+ import * as React from "react";
3
+ import { createComponent } from "@lit/react";
4
+ import Component from "@synergy-design-system/components/components/spinner/spinner.component.js";
5
+ var tagName = "syn-spinner";
6
+ Component.define("syn-spinner");
7
+ var SynSpinner = createComponent({
8
+ displayName: "SynSpinner",
9
+ elementClass: Component,
10
+ events: {},
11
+ react: React,
12
+ tagName
13
+ });
14
+
15
+ export {
16
+ SynSpinner
17
+ };
18
+ //# sourceMappingURL=chunk.4Y6NTHZU.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/components/syn-spinner/index.ts"],
4
+ "sourcesContent": ["// ---------------------------------------------------------------------\n// \uD83D\uDD12 AUTOGENERATED @lit/react wrappers for @synergy-design-system/components\n// Please do not edit this file directly!\n// It will get recreated when running pnpm build.\n// ---------------------------------------------------------------------\nimport * as React from 'react';\nimport { createComponent } from '@lit/react';\nimport Component from '@synergy-design-system/components/components/spinner/spinner.component.js';\n\nconst tagName = 'syn-spinner';\nComponent.define('syn-spinner');\n\n/**\n * @summary Spinners are used to show the progress of an indeterminate operation.\n * @documentation https://synergy.style/components/spinner\n * @status stable\n * @since 2.0\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --track-width - The width of the track.\n * @cssproperty --track-color - The color of the track.\n * @cssproperty --indicator-color - The color of the spinner's indicator.\n * @cssproperty --speed - The time it takes for the spinner to complete one animation cycle.\n */\nexport const SynSpinner = createComponent({\n displayName: 'SynSpinner',\n elementClass: Component,\n events: {\n\n },\n react: React,\n tagName,\n});\n"],
5
+ "mappings": ";AAKA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAChC,OAAO,eAAe;AAEtB,IAAM,UAAU;AAChB,UAAU,OAAO,aAAa;AAevB,IAAM,aAAa,gBAAgB;AAAA,EACxC,aAAa;AAAA,EACb,cAAc;AAAA,EACd,QAAQ,CAER;AAAA,EACA,OAAO;AAAA,EACP;AACF,CAAC;",
6
+ "names": []
7
+ }
@@ -0,0 +1,25 @@
1
+ // ../react/src/components/syn-input/index.ts
2
+ import * as React from "react";
3
+ import { createComponent } from "@lit/react";
4
+ import Component from "@synergy-design-system/components/components/input/input.component.js";
5
+ var tagName = "syn-input";
6
+ Component.define("syn-input");
7
+ var SynInput = createComponent({
8
+ displayName: "SynInput",
9
+ elementClass: Component,
10
+ events: {
11
+ onSynBlur: "syn-blur",
12
+ onSynChange: "syn-change",
13
+ onSynClear: "syn-clear",
14
+ onSynFocus: "syn-focus",
15
+ onSynInput: "syn-input",
16
+ onSynInvalid: "syn-invalid"
17
+ },
18
+ react: React,
19
+ tagName
20
+ });
21
+
22
+ export {
23
+ SynInput
24
+ };
25
+ //# sourceMappingURL=chunk.ARMKNKPL.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/components/syn-input/index.ts"],
4
+ "sourcesContent": ["// ---------------------------------------------------------------------\n// \uD83D\uDD12 AUTOGENERATED @lit/react wrappers for @synergy-design-system/components\n// Please do not edit this file directly!\n// It will get recreated when running pnpm build.\n// ---------------------------------------------------------------------\nimport * as React from 'react';\nimport { createComponent } from '@lit/react';\nimport Component from '@synergy-design-system/components/components/input/input.component.js';\n\nimport { type EventName } from '@lit/react';\nimport type {\n SynBlurEvent, SynChangeEvent, SynClearEvent, SynFocusEvent, SynInputEvent, SynInvalidEvent,\n} from '@synergy-design-system/components';\n\nconst tagName = 'syn-input';\nComponent.define('syn-input');\n\n/**\n * @summary Inputs collect data from the user.\n * @documentation https://synergy.style/components/input\n * @status stable\n * @since 2.0\n *\n * @dependency syn-icon\n *\n * @slot label - The input's label. Alternatively, you can use the `label` attribute.\n * @slot prefix - Used to prepend a presentational icon or similar element to the input.\n * @slot suffix - Used to append a presentational icon or similar element to the input.\n * @slot clear-icon - An icon to use in lieu of the default clear icon.\n * @slot show-password-icon - An icon to use in lieu of the default show password icon.\n * @slot hide-password-icon - An icon to use in lieu of the default hide password icon.\n * @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n *\n * @event syn-blur - Emitted when the control loses focus.\n * @event syn-change - Emitted when an alteration to the control's value is committed by the user.\n * @event syn-clear - Emitted when the clear button is activated.\n * @event syn-focus - Emitted when the control gains focus.\n * @event syn-input - Emitted when the control receives input.\n * @event syn-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n *\n * @csspart form-control - The form control that wraps the label, input, and help text.\n * @csspart form-control-label - The label's wrapper.\n * @csspart form-control-input - The input's wrapper.\n * @csspart form-control-help-text - The help text's wrapper.\n * @csspart base - The component's base wrapper.\n * @csspart input - The internal `<input>` control.\n * @csspart prefix - The container that wraps the prefix.\n * @csspart clear-button - The clear button.\n * @csspart password-toggle-button - The password toggle button.\n * @csspart suffix - The container that wraps the suffix.\n */\nexport const SynInput = createComponent({\n displayName: 'SynInput',\n elementClass: Component,\n events: {\n onSynBlur: 'syn-blur' as EventName<SynBlurEvent>,\n onSynChange: 'syn-change' as EventName<SynChangeEvent>,\n onSynClear: 'syn-clear' as EventName<SynClearEvent>,\n onSynFocus: 'syn-focus' as EventName<SynFocusEvent>,\n onSynInput: 'syn-input' as EventName<SynInputEvent>,\n onSynInvalid: 'syn-invalid' as EventName<SynInvalidEvent>,\n },\n react: React,\n tagName,\n});\n\nexport type { SynBlurEvent } from '@synergy-design-system/components';\nexport type { SynChangeEvent } from '@synergy-design-system/components';\nexport type { SynClearEvent } from '@synergy-design-system/components';\nexport type { SynFocusEvent } from '@synergy-design-system/components';\nexport type { SynInputEvent } from '@synergy-design-system/components';\nexport type { SynInvalidEvent } from '@synergy-design-system/components';\n"],
5
+ "mappings": ";AAKA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAChC,OAAO,eAAe;AAOtB,IAAM,UAAU;AAChB,UAAU,OAAO,WAAW;AAoCrB,IAAM,WAAW,gBAAgB;AAAA,EACtC,aAAa;AAAA,EACb,cAAc;AAAA,EACd,QAAQ;AAAA,IACN,WAAW;AAAA,IACX,aAAa;AAAA,IACb,YAAY;AAAA,IACZ,YAAY;AAAA,IACZ,YAAY;AAAA,IACZ,cAAc;AAAA,EAChB;AAAA,EACA,OAAO;AAAA,EACP;AACF,CAAC;",
6
+ "names": []
7
+ }
@@ -0,0 +1,22 @@
1
+ // ../react/src/components/syn-button/index.ts
2
+ import * as React from "react";
3
+ import { createComponent } from "@lit/react";
4
+ import Component from "@synergy-design-system/components/components/button/button.component.js";
5
+ var tagName = "syn-button";
6
+ Component.define("syn-button");
7
+ var SynButton = createComponent({
8
+ displayName: "SynButton",
9
+ elementClass: Component,
10
+ events: {
11
+ onSynBlur: "syn-blur",
12
+ onSynFocus: "syn-focus",
13
+ onSynInvalid: "syn-invalid"
14
+ },
15
+ react: React,
16
+ tagName
17
+ });
18
+
19
+ export {
20
+ SynButton
21
+ };
22
+ //# sourceMappingURL=chunk.TQ24YTHD.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/components/syn-button/index.ts"],
4
+ "sourcesContent": ["// ---------------------------------------------------------------------\n// \uD83D\uDD12 AUTOGENERATED @lit/react wrappers for @synergy-design-system/components\n// Please do not edit this file directly!\n// It will get recreated when running pnpm build.\n// ---------------------------------------------------------------------\nimport * as React from 'react';\nimport { createComponent } from '@lit/react';\nimport Component from '@synergy-design-system/components/components/button/button.component.js';\n\nimport { type EventName } from '@lit/react';\nimport type { SynBlurEvent, SynFocusEvent, SynInvalidEvent } from '@synergy-design-system/components';\n\nconst tagName = 'syn-button';\nComponent.define('syn-button');\n\n/**\n * @summary Buttons represent actions that are available to the user.\n * @documentation https://synergy.style/components/button\n * @status stable\n * @since 2.0\n *\n * @dependency syn-icon\n * @dependency syn-spinner\n *\n * @event syn-blur - Emitted when the button loses focus.\n * @event syn-focus - Emitted when the button gains focus.\n * @event syn-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n *\n * @slot - The button's label.\n * @slot prefix - A presentational prefix icon or similar element.\n * @slot suffix - A presentational suffix icon or similar element.\n *\n * @csspart base - The component's base wrapper.\n * @csspart prefix - The container that wraps the prefix.\n * @csspart label - The button's label.\n * @csspart suffix - The container that wraps the suffix.\n * @csspart caret - The button's caret icon, an `<syn-icon>` element.\n * @csspart spinner - The spinner that shows when the button is in the loading state.\n */\nexport const SynButton = createComponent({\n displayName: 'SynButton',\n elementClass: Component,\n events: {\n onSynBlur: 'syn-blur' as EventName<SynBlurEvent>,\n onSynFocus: 'syn-focus' as EventName<SynFocusEvent>,\n onSynInvalid: 'syn-invalid' as EventName<SynInvalidEvent>,\n },\n react: React,\n tagName,\n});\n\nexport type { SynBlurEvent } from '@synergy-design-system/components';\nexport type { SynFocusEvent } from '@synergy-design-system/components';\nexport type { SynInvalidEvent } from '@synergy-design-system/components';\n"],
5
+ "mappings": ";AAKA,YAAY,WAAW;AACvB,SAAS,uBAAuB;AAChC,OAAO,eAAe;AAKtB,IAAM,UAAU;AAChB,UAAU,OAAO,YAAY;AA0BtB,IAAM,YAAY,gBAAgB;AAAA,EACvC,aAAa;AAAA,EACb,cAAc;AAAA,EACd,QAAQ;AAAA,IACN,WAAW;AAAA,IACX,YAAY;AAAA,IACZ,cAAc;AAAA,EAChB;AAAA,EACA,OAAO;AAAA,EACP;AACF,CAAC;",
6
+ "names": []
7
+ }
@@ -0,0 +1,35 @@
1
+ import Component from '@synergy-design-system/components/components/button/button.component.js';
2
+ import { type EventName } from '@lit/react';
3
+ import type { SynBlurEvent, SynFocusEvent, SynInvalidEvent } from '@synergy-design-system/components';
4
+ /**
5
+ * @summary Buttons represent actions that are available to the user.
6
+ * @documentation https://synergy.style/components/button
7
+ * @status stable
8
+ * @since 2.0
9
+ *
10
+ * @dependency syn-icon
11
+ * @dependency syn-spinner
12
+ *
13
+ * @event syn-blur - Emitted when the button loses focus.
14
+ * @event syn-focus - Emitted when the button gains focus.
15
+ * @event syn-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.
16
+ *
17
+ * @slot - The button's label.
18
+ * @slot prefix - A presentational prefix icon or similar element.
19
+ * @slot suffix - A presentational suffix icon or similar element.
20
+ *
21
+ * @csspart base - The component's base wrapper.
22
+ * @csspart prefix - The container that wraps the prefix.
23
+ * @csspart label - The button's label.
24
+ * @csspart suffix - The container that wraps the suffix.
25
+ * @csspart caret - The button's caret icon, an `<syn-icon>` element.
26
+ * @csspart spinner - The spinner that shows when the button is in the loading state.
27
+ */
28
+ export declare const SynButton: import("@lit/react").ReactWebComponent<Component, {
29
+ onSynBlur: EventName<SynBlurEvent>;
30
+ onSynFocus: EventName<SynFocusEvent>;
31
+ onSynInvalid: EventName<SynInvalidEvent>;
32
+ }>;
33
+ export type { SynBlurEvent } from '@synergy-design-system/components';
34
+ export type { SynFocusEvent } from '@synergy-design-system/components';
35
+ export type { SynInvalidEvent } from '@synergy-design-system/components';
@@ -0,0 +1,7 @@
1
+ import {
2
+ SynButton
3
+ } from "../../chunks/chunk.TQ24YTHD.js";
4
+ export {
5
+ SynButton
6
+ };
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
@@ -0,0 +1,21 @@
1
+ import Component from '@synergy-design-system/components/components/icon/icon.component.js';
2
+ import { type EventName } from '@lit/react';
3
+ import type { SynErrorEvent, SynLoadEvent } from '@synergy-design-system/components';
4
+ /**
5
+ * @summary Icons are symbols that can be used to represent various options within an application.
6
+ * @documentation https://synergy.style/components/icon
7
+ * @status stable
8
+ * @since 2.0
9
+ *
10
+ * @event syn-load - Emitted when the icon has loaded. When using `spriteSheet: true` this will not emit.
11
+ * @event syn-error - Emitted when the icon fails to load due to an error. When using `spriteSheet: true` this will not emit.
12
+ *
13
+ * @csspart svg - The internal SVG element.
14
+ * @csspart use - The <use> element generated when using `spriteSheet: true`
15
+ */
16
+ export declare const SynIcon: import("@lit/react").ReactWebComponent<Component, {
17
+ onSynLoad: EventName<SynLoadEvent>;
18
+ onSynError: EventName<SynErrorEvent>;
19
+ }>;
20
+ export type { SynLoadEvent } from '@synergy-design-system/components';
21
+ export type { SynErrorEvent } from '@synergy-design-system/components';
@@ -0,0 +1,7 @@
1
+ import {
2
+ SynIcon
3
+ } from "../../chunks/chunk.2EPAOLHW.js";
4
+ export {
5
+ SynIcon
6
+ };
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
@@ -0,0 +1,51 @@
1
+ import Component from '@synergy-design-system/components/components/input/input.component.js';
2
+ import { type EventName } from '@lit/react';
3
+ import type { SynBlurEvent, SynChangeEvent, SynClearEvent, SynFocusEvent, SynInputEvent, SynInvalidEvent } from '@synergy-design-system/components';
4
+ /**
5
+ * @summary Inputs collect data from the user.
6
+ * @documentation https://synergy.style/components/input
7
+ * @status stable
8
+ * @since 2.0
9
+ *
10
+ * @dependency syn-icon
11
+ *
12
+ * @slot label - The input's label. Alternatively, you can use the `label` attribute.
13
+ * @slot prefix - Used to prepend a presentational icon or similar element to the input.
14
+ * @slot suffix - Used to append a presentational icon or similar element to the input.
15
+ * @slot clear-icon - An icon to use in lieu of the default clear icon.
16
+ * @slot show-password-icon - An icon to use in lieu of the default show password icon.
17
+ * @slot hide-password-icon - An icon to use in lieu of the default hide password icon.
18
+ * @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.
19
+ *
20
+ * @event syn-blur - Emitted when the control loses focus.
21
+ * @event syn-change - Emitted when an alteration to the control's value is committed by the user.
22
+ * @event syn-clear - Emitted when the clear button is activated.
23
+ * @event syn-focus - Emitted when the control gains focus.
24
+ * @event syn-input - Emitted when the control receives input.
25
+ * @event syn-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.
26
+ *
27
+ * @csspart form-control - The form control that wraps the label, input, and help text.
28
+ * @csspart form-control-label - The label's wrapper.
29
+ * @csspart form-control-input - The input's wrapper.
30
+ * @csspart form-control-help-text - The help text's wrapper.
31
+ * @csspart base - The component's base wrapper.
32
+ * @csspart input - The internal `<input>` control.
33
+ * @csspart prefix - The container that wraps the prefix.
34
+ * @csspart clear-button - The clear button.
35
+ * @csspart password-toggle-button - The password toggle button.
36
+ * @csspart suffix - The container that wraps the suffix.
37
+ */
38
+ export declare const SynInput: import("@lit/react").ReactWebComponent<Component, {
39
+ onSynBlur: EventName<SynBlurEvent>;
40
+ onSynChange: EventName<SynChangeEvent>;
41
+ onSynClear: EventName<SynClearEvent>;
42
+ onSynFocus: EventName<SynFocusEvent>;
43
+ onSynInput: EventName<SynInputEvent>;
44
+ onSynInvalid: EventName<SynInvalidEvent>;
45
+ }>;
46
+ export type { SynBlurEvent } from '@synergy-design-system/components';
47
+ export type { SynChangeEvent } from '@synergy-design-system/components';
48
+ export type { SynClearEvent } from '@synergy-design-system/components';
49
+ export type { SynFocusEvent } from '@synergy-design-system/components';
50
+ export type { SynInputEvent } from '@synergy-design-system/components';
51
+ export type { SynInvalidEvent } from '@synergy-design-system/components';
@@ -0,0 +1,7 @@
1
+ import {
2
+ SynInput
3
+ } from "../../chunks/chunk.ARMKNKPL.js";
4
+ export {
5
+ SynInput
6
+ };
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
@@ -0,0 +1,15 @@
1
+ import Component from '@synergy-design-system/components/components/spinner/spinner.component.js';
2
+ /**
3
+ * @summary Spinners are used to show the progress of an indeterminate operation.
4
+ * @documentation https://synergy.style/components/spinner
5
+ * @status stable
6
+ * @since 2.0
7
+ *
8
+ * @csspart base - The component's base wrapper.
9
+ *
10
+ * @cssproperty --track-width - The width of the track.
11
+ * @cssproperty --track-color - The color of the track.
12
+ * @cssproperty --indicator-color - The color of the spinner's indicator.
13
+ * @cssproperty --speed - The time it takes for the spinner to complete one animation cycle.
14
+ */
15
+ export declare const SynSpinner: import("@lit/react").ReactWebComponent<Component, {}>;
@@ -0,0 +1,7 @@
1
+ import {
2
+ SynSpinner
3
+ } from "../../chunks/chunk.4Y6NTHZU.js";
4
+ export {
5
+ SynSpinner
6
+ };
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
@@ -0,0 +1,4 @@
1
+ export { SynButton } from './components/syn-button/index.js';
2
+ export { SynIcon } from './components/syn-icon/index.js';
3
+ export { SynInput } from './components/syn-input/index.js';
4
+ export { SynSpinner } from './components/syn-spinner/index.js';
package/dist/index.js ADDED
@@ -0,0 +1,19 @@
1
+ import {
2
+ SynButton
3
+ } from "./chunks/chunk.TQ24YTHD.js";
4
+ import {
5
+ SynIcon
6
+ } from "./chunks/chunk.2EPAOLHW.js";
7
+ import {
8
+ SynSpinner
9
+ } from "./chunks/chunk.4Y6NTHZU.js";
10
+ import {
11
+ SynInput
12
+ } from "./chunks/chunk.ARMKNKPL.js";
13
+ export {
14
+ SynButton,
15
+ SynIcon,
16
+ SynInput,
17
+ SynSpinner
18
+ };
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "dependencies": {
7
7
  "@lit/react": "^1.0.0",
8
- "@synergy-design-system/components": "1.0.0-main.3"
8
+ "@synergy-design-system/components": "1.0.0-main.4"
9
9
  },
10
10
  "description": "React wrappers for the Synergy Design System",
11
11
  "exports": {
@@ -39,7 +39,7 @@
39
39
  "directory": "packages/react"
40
40
  },
41
41
  "type": "module",
42
- "version": "1.0.0-main.3",
42
+ "version": "1.0.0-main.4",
43
43
  "devDependencies": {
44
44
  "@types/react": "^18.2.31",
45
45
  "react": "^18.2.0"