@synergy-design-system/react 1.17.2 → 1.18.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.
- package/dist/chunks/chunk.FGMVRUPR.js +18 -0
- package/dist/chunks/chunk.FGMVRUPR.js.map +7 -0
- package/dist/components/progress-ring.d.ts +20 -0
- package/dist/components/progress-ring.js +7 -0
- package/dist/components/progress-ring.js.map +7 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +7 -3
- package/package.json +2 -2
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// ../react/src/components/progress-ring.ts
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import { createComponent } from "@lit/react";
|
|
4
|
+
import Component from "@synergy-design-system/components/components/progress-ring/progress-ring.component.js";
|
|
5
|
+
var tagName = "syn-progress-ring";
|
|
6
|
+
Component.define("syn-progress-ring");
|
|
7
|
+
var SynProgressRing = createComponent({
|
|
8
|
+
displayName: "SynProgressRing",
|
|
9
|
+
elementClass: Component,
|
|
10
|
+
events: {},
|
|
11
|
+
react: React,
|
|
12
|
+
tagName
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export {
|
|
16
|
+
SynProgressRing
|
|
17
|
+
};
|
|
18
|
+
//# sourceMappingURL=chunk.FGMVRUPR.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/components/progress-ring.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/progress-ring/progress-ring.component.js';\n\nconst tagName = 'syn-progress-ring';\nComponent.define('syn-progress-ring');\n\n/**\n * @summary Progress rings are used to show the progress of a determinate operation in a circular fashion.\n * @documentation https://synergy.style/components/progress-ring\n * @status stable\n * @since 2.0\n *\n * @slot - A label to show inside the ring.\n *\n * @csspart base - The component's base wrapper.\n * @csspart label - The progress ring label.\n *\n * @cssproperty --size - The diameter of the progress ring (cannot be a percentage).\n * @cssproperty --track-width - The width of the track.\n * @cssproperty --track-color - The color of the track.\n * @cssproperty --indicator-width - The width of the indicator. Defaults to the track width.\n * @cssproperty --indicator-color - The color of the indicator.\n * @cssproperty --indicator-transition-duration - The duration of the indicator's transition when the value changes.\n */\nexport const SynProgressRing = createComponent({\n displayName: 'SynProgressRing',\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,mBAAmB;AAoB7B,IAAM,kBAAkB,gBAAgB;AAAA,EAC7C,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/progress-ring/progress-ring.component.js';
|
|
2
|
+
/**
|
|
3
|
+
* @summary Progress rings are used to show the progress of a determinate operation in a circular fashion.
|
|
4
|
+
* @documentation https://synergy.style/components/progress-ring
|
|
5
|
+
* @status stable
|
|
6
|
+
* @since 2.0
|
|
7
|
+
*
|
|
8
|
+
* @slot - A label to show inside the ring.
|
|
9
|
+
*
|
|
10
|
+
* @csspart base - The component's base wrapper.
|
|
11
|
+
* @csspart label - The progress ring label.
|
|
12
|
+
*
|
|
13
|
+
* @cssproperty --size - The diameter of the progress ring (cannot be a percentage).
|
|
14
|
+
* @cssproperty --track-width - The width of the track.
|
|
15
|
+
* @cssproperty --track-color - The color of the track.
|
|
16
|
+
* @cssproperty --indicator-width - The width of the indicator. Defaults to the track width.
|
|
17
|
+
* @cssproperty --indicator-color - The color of the indicator.
|
|
18
|
+
* @cssproperty --indicator-transition-duration - The duration of the indicator's transition when the value changes.
|
|
19
|
+
*/
|
|
20
|
+
export declare const SynProgressRing: import("@lit/react").ReactWebComponent<Component, {}>;
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { SynOptgroup } from './components/optgroup.js';
|
|
|
17
17
|
export { SynOption } from './components/option.js';
|
|
18
18
|
export { SynPopup } from './components/popup.js';
|
|
19
19
|
export { SynPrioNav } from './components/prio-nav.js';
|
|
20
|
+
export { SynProgressRing } from './components/progress-ring.js';
|
|
20
21
|
export { SynRadio } from './components/radio.js';
|
|
21
22
|
export { SynRadioButton } from './components/radio-button.js';
|
|
22
23
|
export { SynRadioGroup } from './components/radio-group.js';
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import {
|
|
2
|
+
SynSelect
|
|
3
|
+
} from "./chunks/chunk.FB24BPQZ.js";
|
|
1
4
|
import {
|
|
2
5
|
SynSideNav
|
|
3
6
|
} from "./chunks/chunk.6BJ6XSFN.js";
|
|
@@ -22,6 +25,9 @@ import {
|
|
|
22
25
|
import {
|
|
23
26
|
SynPrioNav
|
|
24
27
|
} from "./chunks/chunk.7732PJEC.js";
|
|
28
|
+
import {
|
|
29
|
+
SynProgressRing
|
|
30
|
+
} from "./chunks/chunk.FGMVRUPR.js";
|
|
25
31
|
import {
|
|
26
32
|
SynRadioButton
|
|
27
33
|
} from "./chunks/chunk.QBD4EIK5.js";
|
|
@@ -31,9 +37,6 @@ import {
|
|
|
31
37
|
import {
|
|
32
38
|
SynRadio
|
|
33
39
|
} from "./chunks/chunk.AFCMSVBY.js";
|
|
34
|
-
import {
|
|
35
|
-
SynSelect
|
|
36
|
-
} from "./chunks/chunk.FB24BPQZ.js";
|
|
37
40
|
import {
|
|
38
41
|
SynHeader
|
|
39
42
|
} from "./chunks/chunk.BD6VWV24.js";
|
|
@@ -99,6 +102,7 @@ export {
|
|
|
99
102
|
SynOption,
|
|
100
103
|
SynPopup,
|
|
101
104
|
SynPrioNav,
|
|
105
|
+
SynProgressRing,
|
|
102
106
|
SynRadio,
|
|
103
107
|
SynRadioButton,
|
|
104
108
|
SynRadioGroup,
|
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.
|
|
8
|
+
"@synergy-design-system/components": "^1.18.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.
|
|
43
|
+
"version": "1.18.0",
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/react": "^18.2.79",
|
|
46
46
|
"react": "^18.2.0"
|