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