@spark-web/row 5.0.0-rc.31 → 5.0.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +64 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,69 @@
1
1
  # @spark-web/row
2
2
 
3
+ ## 5.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#698](https://github.com/brighte-labs/spark-web/pull/698)
8
+ [`814b373`](https://github.com/brighte-labs/spark-web/commit/814b373cbe9fcf0757738c78eef6b516624df62c)
9
+ Thanks [@michtntbrighte](https://github.com/michtntbrighte)! - Bump version
10
+
11
+ - Updated dependencies
12
+ [[`814b373`](https://github.com/brighte-labs/spark-web/commit/814b373cbe9fcf0757738c78eef6b516624df62c)]:
13
+ - @spark-web/box@5.2.2
14
+ - @spark-web/theme@5.12.1
15
+
16
+ ## 5.0.1
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ [[`1995db7`](https://github.com/brighte-labs/spark-web/commit/1995db7f4342803732c7648ab3ca6d32442cc347)]:
22
+ - @spark-web/theme@5.12.0
23
+
24
+ ## 5.0.0
25
+
26
+ ### Major Changes
27
+
28
+ - This release of spark-web standardises the version across all packages to be
29
+ **`v5`**, primarily signifying the switch from `@emotion/css` to
30
+ `@emotion/react` as one of the key dependencies of the entire library, in
31
+ order to support server-side rendering / SSR.
32
+
33
+ This release also introduces support for theming, to allow for more co-branded
34
+ experiences across our web applications. It also supports component-level
35
+ theming for `<Button />`, `<ButtonLink />`, and `<Checkbox />`, which provides
36
+ the capability to override the global theme available inside an application.
37
+
38
+ To use this in an application, you can wrap the affected areas with a
39
+ `ThemeProvider`:
40
+
41
+ ```
42
+ <ThemeProvider theme="pantheon">
43
+ <Input type="text" />
44
+ <Button type="submit" />
45
+ </ThemeProvider>
46
+ ```
47
+
48
+ Part of the theming capabilities includes a new theme for `spark-web` called
49
+ "pantheon", which should map with our co-branding efforts in the Pantheon
50
+ project. It currently includes a small set of colors and its corresponding
51
+ font family.
52
+
53
+ ### Patch Changes
54
+
55
+ - [#532](https://github.com/brighte-labs/spark-web/pull/532)
56
+ [`631573c`](https://github.com/brighte-labs/spark-web/commit/631573cb72981d99b9afa4ad559123f44e47b2a9)
57
+ Thanks [@ralcoriza-brighte](https://github.com/ralcoriza-brighte)! - Fix
58
+ type-related issues
59
+
60
+ - Updated dependencies
61
+ [[`631573c`](https://github.com/brighte-labs/spark-web/commit/631573cb72981d99b9afa4ad559123f44e47b2a9)]:
62
+ - @spark-web/divider@5.0.0
63
+ - @spark-web/theme@5.0.0
64
+ - @spark-web/utils@5.0.0
65
+ - @spark-web/box@5.0.0
66
+
3
67
  ## 5.0.0-rc.31
4
68
 
5
69
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-web/row",
3
- "version": "5.0.0-rc.31",
3
+ "version": "5.0.2",
4
4
  "homepage": "https://github.com/brighte-labs/spark-web#readme",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,10 +17,10 @@
17
17
  "dependencies": {
18
18
  "@babel/runtime": "^7.25.0",
19
19
  "@emotion/react": "^11.14.0",
20
- "@spark-web/box": "^5.0.0-rc.31",
21
- "@spark-web/divider": "^5.0.0-rc.31",
22
- "@spark-web/theme": "^5.0.0-rc.31",
23
- "@spark-web/utils": "^5.0.0-rc.31"
20
+ "@spark-web/box": "^5.2.2",
21
+ "@spark-web/divider": "^5.0.0",
22
+ "@spark-web/theme": "^5.12.1",
23
+ "@spark-web/utils": "^5.0.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/react": "^18.2.0",