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