@janiscommerce/ui-web 1.9.0 → 1.11.0-beta.3
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/CHANGELOG.md +24 -0
- package/README.md +5 -3
- package/dist/README.md +5 -3
- package/dist/index.esm.js +14181 -2101
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +14116 -2036
- package/dist/index.umd.js.map +1 -1
- package/package.json +13 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.11.0-beta.3] - 2026-06-22
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Pin `node-releases` to `2.0.19` via `resolutions` to keep the build installable on Node 14 (newer `browserslist` pulled `node-releases@2.0.48`, which requires Node >= 18)
|
|
15
|
+
|
|
16
|
+
## [1.11.0-beta.2] - 2026-06-22
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Add css build for rollup and custom plugin to include files for react-flow
|
|
21
|
+
|
|
22
|
+
## [1.11.0-beta.1] - 2026-06-22
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- `DiagramCanvas` component: controlled model with custom nodes, configurable edges, edit mode, node resize, delete confirmation via `onBeforeDelete`, external selection actions via `onSelectionChange`, and imperative zoom/selection API [JMV-4083](https://janiscommerce.atlassian.net/browse/JMV-4083)
|
|
27
|
+
|
|
28
|
+
## [1.10.0] - 2026-06-05
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
32
|
+
- New icons: apparel, backpack, shoe [JMV-4078](https://janiscommerce.atlassian.net/browse/JMV-4078)
|
|
33
|
+
|
|
10
34
|
## [1.9.0] - 2026-04-14
|
|
11
35
|
|
|
12
36
|
### Added
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ A package for use generic components from Janis
|
|
|
6
6
|
|
|
7
7
|
`npm install @janiscommerce/ui-web`
|
|
8
8
|
|
|
9
|
-
> **Important:** When developing or contributing to this library, please make sure to use `yarn` to install dependencies. Do **not** use `npm` as it might cause issues.
|
|
9
|
+
> **Important:** When developing or contributing to this library, please make sure to use `yarn` to install dependencies. Do **not** use `npm` as it might cause issues.
|
|
10
10
|
|
|
11
11
|
To install dependencies while developing the library:
|
|
12
12
|
|
|
@@ -27,7 +27,9 @@ const MyComponent = () => {
|
|
|
27
27
|
|
|
28
28
|
return (
|
|
29
29
|
<div>
|
|
30
|
-
<Button onClick={handleClick} variant="contained">
|
|
30
|
+
<Button onClick={handleClick} variant="contained">
|
|
31
|
+
Click
|
|
32
|
+
</Button>
|
|
31
33
|
<Icon name="box" color="primary" />
|
|
32
34
|
</div>
|
|
33
35
|
);
|
|
@@ -38,4 +40,4 @@ export default MyComponent;
|
|
|
38
40
|
|
|
39
41
|
### Important
|
|
40
42
|
|
|
41
|
-
All the components that can be used and other documentation can be found at
|
|
43
|
+
All the components that can be used and other documentation can be found at **_[https://janis-commerce.github.io/ui-web](https://janis-commerce.github.io/ui-web)_**
|
package/dist/README.md
CHANGED
|
@@ -6,7 +6,7 @@ A package for use generic components from Janis
|
|
|
6
6
|
|
|
7
7
|
`npm install @janiscommerce/ui-web`
|
|
8
8
|
|
|
9
|
-
> **Important:** When developing or contributing to this library, please make sure to use `yarn` to install dependencies. Do **not** use `npm` as it might cause issues.
|
|
9
|
+
> **Important:** When developing or contributing to this library, please make sure to use `yarn` to install dependencies. Do **not** use `npm` as it might cause issues.
|
|
10
10
|
|
|
11
11
|
To install dependencies while developing the library:
|
|
12
12
|
|
|
@@ -27,7 +27,9 @@ const MyComponent = () => {
|
|
|
27
27
|
|
|
28
28
|
return (
|
|
29
29
|
<div>
|
|
30
|
-
<Button onClick={handleClick} variant="contained">
|
|
30
|
+
<Button onClick={handleClick} variant="contained">
|
|
31
|
+
Click
|
|
32
|
+
</Button>
|
|
31
33
|
<Icon name="box" color="primary" />
|
|
32
34
|
</div>
|
|
33
35
|
);
|
|
@@ -38,4 +40,4 @@ export default MyComponent;
|
|
|
38
40
|
|
|
39
41
|
### Important
|
|
40
42
|
|
|
41
|
-
All the components that can be used and other documentation can be found at
|
|
43
|
+
All the components that can be used and other documentation can be found at **_[https://janis-commerce.github.io/ui-web](https://janis-commerce.github.io/ui-web)_**
|