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