@synergy-design-system/react 1.25.0 → 1.26.0

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,18 @@
1
+ // ../react/src/components/breadcrumb-item.ts
2
+ import * as React from "react";
3
+ import { createComponent } from "@lit/react";
4
+ import Component from "@synergy-design-system/components/components/breadcrumb-item/breadcrumb-item.component.js";
5
+ var tagName = "syn-breadcrumb-item";
6
+ Component.define("syn-breadcrumb-item");
7
+ var SynBreadcrumbItem = createComponent({
8
+ displayName: "SynBreadcrumbItem",
9
+ elementClass: Component,
10
+ events: {},
11
+ react: React,
12
+ tagName
13
+ });
14
+
15
+ export {
16
+ SynBreadcrumbItem
17
+ };
18
+ //# sourceMappingURL=chunk.EHCKPQR2.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/components/breadcrumb-item.ts"],
4
+ "sourcesContent": ["// ---------------------------------------------------------------------\n// \uD83D\uDD12 AUTOGENERATED @synergy-design-system/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/breadcrumb-item/breadcrumb-item.component.js';\n\nconst tagName = 'syn-breadcrumb-item';\nComponent.define('syn-breadcrumb-item');\n\n/**\n * @summary Breadcrumb Items are used inside [breadcrumbs](/components/breadcrumb) to represent different links.\n * @documentation https://synergy.style/components/breadcrumb-item\n * @status stable\n * @since 2.0\n *\n * @slot - The breadcrumb item's label.\n * @slot prefix - An optional prefix, usually an icon or icon button.\n * @slot suffix - An optional suffix, usually an icon or icon button.\n * @slot separator - The separator to use for the breadcrumb item. This will only change the separator for this item. If\n * you want to change it for all items in the group, set the separator on `<syn-breadcrumb>` instead.\n *\n * @csspart base - The component's base wrapper.\n * @csspart label - The breadcrumb item's label.\n * @csspart prefix - The container that wraps the prefix.\n * @csspart suffix - The container that wraps the suffix.\n * @csspart separator - The container that wraps the separator.\n */\nexport const SynBreadcrumbItem = createComponent({\n displayName: 'SynBreadcrumbItem',\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,qBAAqB;AAoB/B,IAAM,oBAAoB,gBAAgB;AAAA,EAC/C,aAAa;AAAA,EACb,cAAc;AAAA,EACd,QAAQ,CAER;AAAA,EACA,OAAO;AAAA,EACP;AACF,CAAC;",
6
+ "names": []
7
+ }
@@ -0,0 +1,18 @@
1
+ // ../react/src/components/breadcrumb.ts
2
+ import * as React from "react";
3
+ import { createComponent } from "@lit/react";
4
+ import Component from "@synergy-design-system/components/components/breadcrumb/breadcrumb.component.js";
5
+ var tagName = "syn-breadcrumb";
6
+ Component.define("syn-breadcrumb");
7
+ var SynBreadcrumb = createComponent({
8
+ displayName: "SynBreadcrumb",
9
+ elementClass: Component,
10
+ events: {},
11
+ react: React,
12
+ tagName
13
+ });
14
+
15
+ export {
16
+ SynBreadcrumb
17
+ };
18
+ //# sourceMappingURL=chunk.MZVUU463.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/components/breadcrumb.ts"],
4
+ "sourcesContent": ["// ---------------------------------------------------------------------\n// \uD83D\uDD12 AUTOGENERATED @synergy-design-system/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/breadcrumb/breadcrumb.component.js';\n\nconst tagName = 'syn-breadcrumb';\nComponent.define('syn-breadcrumb');\n\n/**\n * @summary Breadcrumbs provide a group of links so users can easily navigate a website's hierarchy.\n * @documentation https://synergy.style/components/breadcrumb\n * @status stable\n * @since 2.0\n *\n * @slot - One or more breadcrumb items to display.\n * @slot separator - The separator to use between breadcrumb items. Works best with `<syn-icon>`.\n *\n * @dependency syn-icon\n *\n * @csspart base - The component's base wrapper.\n */\nexport const SynBreadcrumb = createComponent({\n displayName: 'SynBreadcrumb',\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,gBAAgB;AAe1B,IAAM,gBAAgB,gBAAgB;AAAA,EAC3C,aAAa;AAAA,EACb,cAAc;AAAA,EACd,QAAQ,CAER;AAAA,EACA,OAAO;AAAA,EACP;AACF,CAAC;",
6
+ "names": []
7
+ }
@@ -0,0 +1,20 @@
1
+ import Component from '@synergy-design-system/components/components/breadcrumb-item/breadcrumb-item.component.js';
2
+ /**
3
+ * @summary Breadcrumb Items are used inside [breadcrumbs](/components/breadcrumb) to represent different links.
4
+ * @documentation https://synergy.style/components/breadcrumb-item
5
+ * @status stable
6
+ * @since 2.0
7
+ *
8
+ * @slot - The breadcrumb item's label.
9
+ * @slot prefix - An optional prefix, usually an icon or icon button.
10
+ * @slot suffix - An optional suffix, usually an icon or icon button.
11
+ * @slot separator - The separator to use for the breadcrumb item. This will only change the separator for this item. If
12
+ * you want to change it for all items in the group, set the separator on `<syn-breadcrumb>` instead.
13
+ *
14
+ * @csspart base - The component's base wrapper.
15
+ * @csspart label - The breadcrumb item's label.
16
+ * @csspart prefix - The container that wraps the prefix.
17
+ * @csspart suffix - The container that wraps the suffix.
18
+ * @csspart separator - The container that wraps the separator.
19
+ */
20
+ export declare const SynBreadcrumbItem: import("@lit/react").ReactWebComponent<Component, {}>;
@@ -0,0 +1,7 @@
1
+ import {
2
+ SynBreadcrumbItem
3
+ } from "../chunks/chunk.EHCKPQR2.js";
4
+ export {
5
+ SynBreadcrumbItem
6
+ };
7
+ //# sourceMappingURL=breadcrumb-item.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/breadcrumb/breadcrumb.component.js';
2
+ /**
3
+ * @summary Breadcrumbs provide a group of links so users can easily navigate a website's hierarchy.
4
+ * @documentation https://synergy.style/components/breadcrumb
5
+ * @status stable
6
+ * @since 2.0
7
+ *
8
+ * @slot - One or more breadcrumb items to display.
9
+ * @slot separator - The separator to use between breadcrumb items. Works best with `<syn-icon>`.
10
+ *
11
+ * @dependency syn-icon
12
+ *
13
+ * @csspart base - The component's base wrapper.
14
+ */
15
+ export declare const SynBreadcrumb: import("@lit/react").ReactWebComponent<Component, {}>;
@@ -0,0 +1,7 @@
1
+ import {
2
+ SynBreadcrumb
3
+ } from "../chunks/chunk.MZVUU463.js";
4
+ export {
5
+ SynBreadcrumb
6
+ };
7
+ //# sourceMappingURL=breadcrumb.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
+ "names": []
7
+ }
package/dist/index.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  export { SynAlert } from './components/alert.js';
2
2
  export { SynBadge } from './components/badge.js';
3
+ export { SynBreadcrumb } from './components/breadcrumb.js';
4
+ export { SynBreadcrumbItem } from './components/breadcrumb-item.js';
3
5
  export { SynButton } from './components/button.js';
4
6
  export { SynButtonGroup } from './components/button-group.js';
5
7
  export { SynCard } from './components/card.js';
package/dist/index.js CHANGED
@@ -1,3 +1,9 @@
1
+ import {
2
+ SynSpinner
3
+ } from "./chunks/chunk.CAHU6MAK.js";
4
+ import {
5
+ SynSwitch
6
+ } from "./chunks/chunk.7IZW5FRR.js";
1
7
  import {
2
8
  SynTag
3
9
  } from "./chunks/chunk.7T7PO2AE.js";
@@ -7,6 +13,12 @@ import {
7
13
  import {
8
14
  SynTooltip
9
15
  } from "./chunks/chunk.BU4SKSAF.js";
16
+ import {
17
+ SynPrioNav
18
+ } from "./chunks/chunk.7732PJEC.js";
19
+ import {
20
+ SynProgressBar
21
+ } from "./chunks/chunk.U44M2PKP.js";
10
22
  import {
11
23
  SynProgressRing
12
24
  } from "./chunks/chunk.FGMVRUPR.js";
@@ -26,11 +38,11 @@ import {
26
38
  SynSideNav
27
39
  } from "./chunks/chunk.A3DZYM6Z.js";
28
40
  import {
29
- SynSpinner
30
- } from "./chunks/chunk.CAHU6MAK.js";
41
+ SynInput
42
+ } from "./chunks/chunk.N6QQSQTB.js";
31
43
  import {
32
- SynSwitch
33
- } from "./chunks/chunk.7IZW5FRR.js";
44
+ SynMenuItem
45
+ } from "./chunks/chunk.KLI3DNUO.js";
34
46
  import {
35
47
  SynMenuLabel
36
48
  } from "./chunks/chunk.EOLGRN43.js";
@@ -50,11 +62,11 @@ import {
50
62
  SynPopup
51
63
  } from "./chunks/chunk.UJGZNEKT.js";
52
64
  import {
53
- SynPrioNav
54
- } from "./chunks/chunk.7732PJEC.js";
65
+ SynCheckbox
66
+ } from "./chunks/chunk.RU33PYCK.js";
55
67
  import {
56
- SynProgressBar
57
- } from "./chunks/chunk.U44M2PKP.js";
68
+ SynDialog
69
+ } from "./chunks/chunk.IRQRZGIS.js";
58
70
  import {
59
71
  SynDivider
60
72
  } from "./chunks/chunk.HKOGDFA5.js";
@@ -73,18 +85,18 @@ import {
73
85
  import {
74
86
  SynIcon
75
87
  } from "./chunks/chunk.6CO3KAZG.js";
76
- import {
77
- SynInput
78
- } from "./chunks/chunk.N6QQSQTB.js";
79
- import {
80
- SynMenuItem
81
- } from "./chunks/chunk.KLI3DNUO.js";
82
88
  import {
83
89
  SynAlert
84
90
  } from "./chunks/chunk.NCB462OR.js";
85
91
  import {
86
92
  SynBadge
87
93
  } from "./chunks/chunk.XRVA7P2R.js";
94
+ import {
95
+ SynBreadcrumbItem
96
+ } from "./chunks/chunk.EHCKPQR2.js";
97
+ import {
98
+ SynBreadcrumb
99
+ } from "./chunks/chunk.MZVUU463.js";
88
100
  import {
89
101
  SynButtonGroup
90
102
  } from "./chunks/chunk.6OTEQXZW.js";
@@ -94,15 +106,11 @@ import {
94
106
  import {
95
107
  SynCard
96
108
  } from "./chunks/chunk.JTJSVPDC.js";
97
- import {
98
- SynCheckbox
99
- } from "./chunks/chunk.RU33PYCK.js";
100
- import {
101
- SynDialog
102
- } from "./chunks/chunk.IRQRZGIS.js";
103
109
  export {
104
110
  SynAlert,
105
111
  SynBadge,
112
+ SynBreadcrumb,
113
+ SynBreadcrumbItem,
106
114
  SynButton,
107
115
  SynButtonGroup,
108
116
  SynCard,
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "dependencies": {
7
7
  "@lit/react": "^1.0.4",
8
- "@synergy-design-system/components": "^1.25.0"
8
+ "@synergy-design-system/components": "^1.26.0"
9
9
  },
10
10
  "description": "React wrappers for the Synergy Design System",
11
11
  "exports": {
@@ -40,7 +40,7 @@
40
40
  "directory": "packages/react"
41
41
  },
42
42
  "type": "module",
43
- "version": "1.25.0",
43
+ "version": "1.26.0",
44
44
  "devDependencies": {
45
45
  "@types/react": "^18.2.79",
46
46
  "react": "^18.2.0"