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