@spark-web/spinner 5.1.0-rc.0 → 5.1.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.
package/CHANGELOG.md CHANGED
@@ -1,18 +1,21 @@
1
1
  # @spark-web/spinner
2
2
 
3
- ## 5.1.0-rc.0
3
+ ## 5.1.0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - update react version and other packages
7
+ - [#667](https://github.com/brighte-labs/spark-web/pull/667)
8
+ [`80d9c15`](https://github.com/brighte-labs/spark-web/commit/80d9c156a40bbcd2b1a91a2d0403b3c8e9b47b4e)
9
+ Thanks [@Leo704099](https://github.com/Leo704099)! - Support react 17 to 19
8
10
 
9
11
  ### Patch Changes
10
12
 
11
- - Updated dependencies []:
12
- - @spark-web/utils@5.1.0-rc.0
13
- - @spark-web/a11y@5.3.0-rc.0
14
- - @spark-web/icon@5.1.0-rc.0
15
- - @spark-web/box@6.0.0-rc.0
13
+ - Updated dependencies
14
+ [[`80d9c15`](https://github.com/brighte-labs/spark-web/commit/80d9c156a40bbcd2b1a91a2d0403b3c8e9b47b4e)]:
15
+ - @spark-web/utils@5.1.0
16
+ - @spark-web/a11y@5.3.0
17
+ - @spark-web/icon@5.1.0
18
+ - @spark-web/box@6.0.0
16
19
 
17
20
  ## 5.0.1
18
21
 
@@ -1,6 +1,6 @@
1
1
  import type { IconProps } from '@spark-web/icon';
2
2
  import type { DataAttributeMap } from '@spark-web/utils/internal';
3
- export declare type SpinnerProps = {
3
+ export type SpinnerProps = {
4
4
  /** Provide a tone to influence elements of the field, and its input. */
5
5
  tone?: IconProps['tone'];
6
6
  /** The size of the nested radios. */
@@ -1,2 +1,2 @@
1
- export * from "./declarations/src/index";
1
+ export * from "./declarations/src/index.js";
2
2
  //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3Bhcmstd2ViLXNwaW5uZXIuY2pzLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuL2RlY2xhcmF0aW9ucy9zcmMvaW5kZXguZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSJ9
@@ -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.1.0-rc.0",
3
+ "version": "5.1.0",
4
4
  "homepage": "https://github.com/brighte-labs/spark-web#readme",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,17 +17,17 @@
17
17
  "dependencies": {
18
18
  "@babel/runtime": "^7.25.0",
19
19
  "@emotion/react": "^11.14.0",
20
- "@spark-web/a11y": "^5.3.0-rc.0",
21
- "@spark-web/box": "^6.0.0-rc.0",
22
- "@spark-web/icon": "^5.1.0-rc.0",
23
- "@spark-web/utils": "^5.1.0-rc.0"
20
+ "@spark-web/a11y": "^5.3.0",
21
+ "@spark-web/box": "^6.0.0",
22
+ "@spark-web/icon": "^5.1.0",
23
+ "@spark-web/utils": "^5.1.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/react": "^19.1.0",
27
27
  "react": "^19.1.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "react": ">=19.1.0"
30
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
31
31
  },
32
32
  "engines": {
33
33
  "node": ">=14"