@janiscommerce/ui-web 0.27.1 → 0.28.1
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 +15 -0
- package/README.md +8 -0
- package/dist/README.md +8 -0
- package/dist/index.esm.js +27855 -153
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +27858 -138
- package/dist/index.umd.js.map +1 -1
- package/dist/package.json +6 -2
- package/package.json +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.28.1] - 2025-02-13
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Import map component
|
|
15
|
+
- Script preinstall
|
|
16
|
+
|
|
17
|
+
## [0.28.0] - 2025-02-12
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- nvm file
|
|
22
|
+
- script to check installation command to avoid npm install
|
|
23
|
+
- Map component
|
|
24
|
+
|
|
10
25
|
## [0.27.1] - 2024-12-04
|
|
11
26
|
|
|
12
27
|
### Fixed
|
package/README.md
CHANGED
|
@@ -6,6 +6,14 @@ 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.
|
|
10
|
+
|
|
11
|
+
To install dependencies while developing the library:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
yarn install
|
|
15
|
+
```
|
|
16
|
+
|
|
9
17
|
### Usage
|
|
10
18
|
|
|
11
19
|
```js
|
package/dist/README.md
CHANGED
|
@@ -6,6 +6,14 @@ 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.
|
|
10
|
+
|
|
11
|
+
To install dependencies while developing the library:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
yarn install
|
|
15
|
+
```
|
|
16
|
+
|
|
9
17
|
### Usage
|
|
10
18
|
|
|
11
19
|
```js
|