@purple/phoenix-components 4.19.1 → 4.21.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/CHANGELOG.md +39 -0
- package/README.md +1 -1
- package/dist/bundle.cjs.js +1 -1
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +2 -2
- package/dist/bundle.esm.js.map +1 -1
- package/dist/bundle.umd.js +1 -1
- package/dist/bundle.umd.js.map +1 -1
- package/dist/index.d.ts +28 -7
- package/package.json +20 -26
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,45 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [4.21.0](https://github.com/purple-technology/phoenix-components/compare/v4.20.2...v4.21.0) (2022-01-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* checkbox and radio components - error state ([139761b](https://github.com/purple-technology/phoenix-components/commit/139761be4348f45b7a3882f0073241ea450aa795))
|
|
11
|
+
* **Modal:** added prop closeOnOverlayClick ([c48383f](https://github.com/purple-technology/phoenix-components/commit/c48383fdcc69eb45a88ace46e9ac2b399b034cc5))
|
|
12
|
+
|
|
13
|
+
### [4.20.2](https://github.com/purple-technology/phoenix-components/compare/v4.20.1...v4.20.2) (2022-01-18)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* storybook arg types ([1651efb](https://github.com/purple-technology/phoenix-components/commit/1651efb832e18ca8879c23901d042af2c4ffcc62))
|
|
19
|
+
|
|
20
|
+
### [4.20.1](https://github.com/purple-technology/phoenix-components/compare/v4.20.0...v4.20.1) (2022-01-07)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* default font size defined in theme file ([485ee42](https://github.com/purple-technology/phoenix-components/commit/485ee429bd2991ec23eac12b43dd5aca5879560c))
|
|
26
|
+
|
|
27
|
+
## [4.20.0](https://github.com/purple-technology/phoenix-components/compare/v4.19.1...v4.20.0) (2022-01-06)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* bold font weight configurable in theme file ([1ffbe08](https://github.com/purple-technology/phoenix-components/commit/1ffbe08a266aecc284de63bb43a1c37128ae6930))
|
|
33
|
+
* bold font weight configurable in theme file ([89d52db](https://github.com/purple-technology/phoenix-components/commit/89d52db25d869874a763d6a8cd1102c6e95e8a7a))
|
|
34
|
+
* **FormControl:** minimal style ([504c55f](https://github.com/purple-technology/phoenix-components/commit/504c55f61460e19893c2fe47c60cd4be49cff8fb))
|
|
35
|
+
* **Tab:** primary color for selected tab ([a539d1a](https://github.com/purple-technology/phoenix-components/commit/a539d1a542f1f364a4298a9d07325c6bda9dab8f))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
* **Button:** use theme values ([06f4e35](https://github.com/purple-technology/phoenix-components/commit/06f4e35a2da6a237f0e9a131f2e4e5c7afe9c496))
|
|
41
|
+
* **Notice:** breakpoint fixes ([fbde7a4](https://github.com/purple-technology/phoenix-components/commit/fbde7a4990baec1600fc8061d7990bb22a29846b))
|
|
42
|
+
* **Spinner:** margin props fix ([5e84319](https://github.com/purple-technology/phoenix-components/commit/5e843195053bbc865f33d101b580beaf0e674c49))
|
|
43
|
+
|
|
5
44
|
### [4.19.1](https://github.com/purple-technology/phoenix-components/compare/v4.19.0...v4.19.1) (2021-12-15)
|
|
6
45
|
|
|
7
46
|
|
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ Phoenix Components takes advantage of some 3rd party libraries to create consist
|
|
|
30
30
|
|
|
31
31
|
## Usage
|
|
32
32
|
|
|
33
|
-
1. Include Roboto font with weights 400 and 500 into your project. You can use for example Google Fonts.
|
|
33
|
+
1. Include Roboto font with weights 400 and 500 into your project. You can use for example Google Fonts. (400 and 500 are default weights for regular and bold fonts. These can be changed in the theme file - `theme.fontWeight.regular` a `theme.fontWeight.bold`.)
|
|
34
34
|
|
|
35
35
|
```html
|
|
36
36
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|