@spark-web/spinner 5.0.0-rc.31 → 5.0.1

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,57 @@
1
1
  # @spark-web/spinner
2
2
 
3
+ ## 5.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#623](https://github.com/brighte-labs/spark-web/pull/623)
8
+ [`439f6dc`](https://github.com/brighte-labs/spark-web/commit/439f6dcebc40b65193606f990e5a246cdb6ede4d)
9
+ Thanks [@michtntbrighte](https://github.com/michtntbrighte)! - Fix loading
10
+ indicator message
11
+
12
+ ## 5.0.0
13
+
14
+ ### Major Changes
15
+
16
+ - This release of spark-web standardises the version across all packages to be
17
+ **`v5`**, primarily signifying the switch from `@emotion/css` to
18
+ `@emotion/react` as one of the key dependencies of the entire library, in
19
+ order to support server-side rendering / SSR.
20
+
21
+ This release also introduces support for theming, to allow for more co-branded
22
+ experiences across our web applications. It also supports component-level
23
+ theming for `<Button />`, `<ButtonLink />`, and `<Checkbox />`, which provides
24
+ the capability to override the global theme available inside an application.
25
+
26
+ To use this in an application, you can wrap the affected areas with a
27
+ `ThemeProvider`:
28
+
29
+ ```
30
+ <ThemeProvider theme="pantheon">
31
+ <Input type="text" />
32
+ <Button type="submit" />
33
+ </ThemeProvider>
34
+ ```
35
+
36
+ Part of the theming capabilities includes a new theme for `spark-web` called
37
+ "pantheon", which should map with our co-branding efforts in the Pantheon
38
+ project. It currently includes a small set of colors and its corresponding
39
+ font family.
40
+
41
+ ### Patch Changes
42
+
43
+ - [#532](https://github.com/brighte-labs/spark-web/pull/532)
44
+ [`631573c`](https://github.com/brighte-labs/spark-web/commit/631573cb72981d99b9afa4ad559123f44e47b2a9)
45
+ Thanks [@ralcoriza-brighte](https://github.com/ralcoriza-brighte)! - Fix
46
+ type-related issues
47
+
48
+ - Updated dependencies
49
+ [[`631573c`](https://github.com/brighte-labs/spark-web/commit/631573cb72981d99b9afa4ad559123f44e47b2a9)]:
50
+ - @spark-web/utils@5.0.0
51
+ - @spark-web/a11y@5.0.0
52
+ - @spark-web/icon@5.0.0
53
+ - @spark-web/box@5.0.0
54
+
3
55
  ## 5.0.0-rc.31
4
56
 
5
57
  ### Patch Changes
@@ -28,7 +28,7 @@ function Spinner(_ref) {
28
28
  justifyContent: "center",
29
29
  data: data,
30
30
  children: [jsxRuntime.jsx(a11y.VisuallyHidden, {
31
- children: "Image of a partial circle indicating \"loading\"."
31
+ children: "is loading"
32
32
  }), jsxRuntime.jsx(SpinnerIcon, {
33
33
  size: size,
34
34
  tone: tone,
@@ -28,7 +28,7 @@ function Spinner(_ref) {
28
28
  justifyContent: "center",
29
29
  data: data,
30
30
  children: [jsxRuntime.jsx(a11y.VisuallyHidden, {
31
- children: "Image of a partial circle indicating \"loading\"."
31
+ children: "is loading"
32
32
  }), jsxRuntime.jsx(SpinnerIcon, {
33
33
  size: size,
34
34
  tone: tone,
@@ -24,7 +24,7 @@ function Spinner(_ref) {
24
24
  justifyContent: "center",
25
25
  data: data,
26
26
  children: [jsx(VisuallyHidden, {
27
- children: "Image of a partial circle indicating \"loading\"."
27
+ children: "is loading"
28
28
  }), jsx(SpinnerIcon, {
29
29
  size: size,
30
30
  tone: tone,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-web/spinner",
3
- "version": "5.0.0-rc.31",
3
+ "version": "5.0.1",
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/a11y": "^5.0.0-rc.31",
21
- "@spark-web/box": "^5.0.0-rc.31",
22
- "@spark-web/icon": "^5.0.0-rc.31",
23
- "@spark-web/utils": "^5.0.0-rc.31"
20
+ "@spark-web/a11y": "^5.0.0",
21
+ "@spark-web/box": "^5.0.0",
22
+ "@spark-web/icon": "^5.0.0",
23
+ "@spark-web/utils": "^5.0.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/react": "^18.2.0",