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