@purple/phoenix-components 5.0.0-alpha.0 → 5.0.0-alpha.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 CHANGED
@@ -2,6 +2,13 @@
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
+ ## [5.0.0-alpha.1](https://github.com/purple-technology/phoenix-components/compare/v5.0.0-alpha.0...v5.0.0-alpha.1) (2023-01-12)
6
+
7
+
8
+ ### Features
9
+
10
+ * **Paragraph:** default size sm ([692d444](https://github.com/purple-technology/phoenix-components/commit/692d444c00085c783bbded5db1c42d7fab57c6cd))
11
+
5
12
  ## [5.0.0-alpha.0](https://github.com/purple-technology/phoenix-components/compare/v4.32.0...v5.0.0-alpha.0) (2023-01-10)
6
13
 
7
14
 
package/README.md CHANGED
@@ -201,8 +201,11 @@ Previously, this component had only a single style. Currently, there are 3 style
201
201
 
202
202
  Prop `colorTheme` has been removed and there's only `color` prop now excepting all text colors (primary, secondary, tertiary, quaternary), color theme colors (brand, success, warning, error, info, neutral) and any valid CSS value.
203
203
 
204
+ Instead of 3 sizes (small, medium, large), these components now include 4 sizes - xs, sm, md, lg. For Text and Paragraph components, default value is now `sm`. Since there's one more size, original size `small` is now `xs`.
205
+
204
206
  > #### What to do?
205
- > Search all instances of Text, Paragraph and Heading and replace `colorTheme` with `color`.
207
+ > - Search all instances of Text, Paragraph and Heading and replace `colorTheme` with `color`.
208
+ > - Replace `size="small"` with `size="xs"`. (If you already replaced sizing with new sizes, you have to search for `size="sm"`.)
206
209
 
207
210
  ### List and ListItem
208
211
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purple/phoenix-components",
3
- "version": "5.0.0-alpha.0",
3
+ "version": "5.0.0-alpha.1",
4
4
  "description": "",
5
5
  "main": "dist/bundle.umd.js",
6
6
  "module": "dist/bundle.esm.js",