@instructure/ui-spinner 11.7.3 → 11.7.4-pr-snapshot-1781695314229

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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.7.4-pr-snapshot-1781695314229](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-pr-snapshot-1781695314229) (2026-06-17)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-spinner
9
+
10
+
11
+
12
+
13
+
6
14
  ## [11.7.3](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3) (2026-05-07)
7
15
 
8
16
 
package/LICENSE.md CHANGED
@@ -2,6 +2,7 @@
2
2
  title: The MIT License (MIT)
3
3
  category: Getting Started
4
4
  order: 9
5
+ isWIP: true
5
6
  ---
6
7
 
7
8
  # The MIT License (MIT)
@@ -1,9 +1,3 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.allowedProps = void 0;
7
1
  /*
8
2
  * The MIT License (MIT)
9
3
  *
@@ -28,4 +22,15 @@ exports.allowedProps = void 0;
28
22
  * SOFTWARE.
29
23
  */
30
24
 
31
- const allowedProps = exports.allowedProps = ['delay', 'renderTitle', 'size', 'variant', 'margin'];
25
+ module.exports = {
26
+ presets: [
27
+ [
28
+ require('@instructure/ui-babel-preset'),
29
+ {
30
+ esModules: Boolean(process.env.ES_MODULES),
31
+ removeConsole: process.env.NODE_ENV === 'production',
32
+ transformImports: Boolean(process.env.TRANSFORM_IMPORTS)
33
+ }
34
+ ]
35
+ ]
36
+ }
@@ -28,9 +28,10 @@ import { View } from '@instructure/ui-view/v11_6';
28
28
  import { callRenderProp, omitProps, withDeterministicId } from '@instructure/ui-react-utils';
29
29
  import { logError as error } from '@instructure/console';
30
30
  import { withStyle } from '@instructure/emotion';
31
- import generateStyle from "./styles.js";
32
- import generateComponentTheme from "./theme.js";
33
- import { allowedProps } from "./props.js";
31
+ import generateStyle from './styles.js';
32
+ import generateComponentTheme from './theme.js';
33
+ import { allowedProps } from './props.js';
34
+
34
35
  /**
35
36
  ---
36
37
  category: components
@@ -38,7 +39,7 @@ category: components
38
39
  **/
39
40
  import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
40
41
  let Spinner = (_dec = withDeterministicId(), _dec2 = withStyle(generateStyle, generateComponentTheme), _dec(_class = _dec2(_class = class Spinner extends Component {
41
- static displayName = "Spinner";
42
+ static displayName = 'Spinner';
42
43
  static componentId = 'Spinner';
43
44
  static allowedProps = allowedProps;
44
45
  static defaultProps = {
@@ -26,8 +26,9 @@ import { useState, useEffect, forwardRef } from 'react';
26
26
  import { useStyleNew } from '@instructure/emotion';
27
27
  import { callRenderProp, omitProps, useDeterministicId } from '@instructure/ui-react-utils';
28
28
  import { logError as error } from '@instructure/console';
29
- import generateStyle from "./styles.js";
30
- import { allowedProps } from "./props.js";
29
+ import generateStyle from './styles.js';
30
+ import { allowedProps } from './props.js';
31
+
31
32
  /**
32
33
  ---
33
34
  category: components
package/es/exports/a.js CHANGED
@@ -21,4 +21,5 @@
21
21
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
22
  * SOFTWARE.
23
23
  */
24
- export { Spinner } from "../Spinner/v1/index.js";
24
+
25
+ export { Spinner } from '../Spinner/v1/index.js';
package/es/exports/b.js CHANGED
@@ -21,4 +21,5 @@
21
21
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
22
  * SOFTWARE.
23
23
  */
24
- export { Spinner } from "../Spinner/v2/index.js";
24
+
25
+ export { Spinner } from '../Spinner/v2/index.js';
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@instructure/ui-spinner",
3
- "version": "11.7.3",
3
+ "version": "11.7.4-pr-snapshot-1781695314229",
4
+ "type": "module",
4
5
  "description": "A spinner/loading component",
5
6
  "author": "Instructure, Inc. Engineering and Product Design",
6
7
  "module": "./es/index.js",
7
- "main": "./lib/index.js",
8
8
  "types": "./types/index.d.ts",
9
9
  "repository": {
10
10
  "type": "git",
@@ -15,22 +15,22 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.29.2",
18
- "@instructure/console": "11.7.3",
19
- "@instructure/shared-types": "11.7.3",
20
- "@instructure/emotion": "11.7.3",
21
- "@instructure/ui-color-utils": "11.7.3",
22
- "@instructure/ui-react-utils": "11.7.3",
23
- "@instructure/ui-themes": "11.7.3",
24
- "@instructure/ui-utils": "11.7.3",
25
- "@instructure/ui-view": "11.7.3",
26
- "@instructure/uid": "11.7.3"
18
+ "@instructure/emotion": "11.7.4-pr-snapshot-1781695314229",
19
+ "@instructure/console": "11.7.4-pr-snapshot-1781695314229",
20
+ "@instructure/ui-react-utils": "11.7.4-pr-snapshot-1781695314229",
21
+ "@instructure/ui-color-utils": "11.7.4-pr-snapshot-1781695314229",
22
+ "@instructure/shared-types": "11.7.4-pr-snapshot-1781695314229",
23
+ "@instructure/ui-themes": "11.7.4-pr-snapshot-1781695314229",
24
+ "@instructure/ui-view": "11.7.4-pr-snapshot-1781695314229",
25
+ "@instructure/ui-utils": "11.7.4-pr-snapshot-1781695314229",
26
+ "@instructure/uid": "11.7.4-pr-snapshot-1781695314229"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@testing-library/jest-dom": "^6.6.3",
30
30
  "@testing-library/react": "15.0.7",
31
31
  "vitest": "^3.2.2",
32
- "@instructure/ui-axe-check": "11.7.3",
33
- "@instructure/ui-babel-preset": "11.7.3"
32
+ "@instructure/ui-axe-check": "11.7.4-pr-snapshot-1781695314229",
33
+ "@instructure/ui-babel-preset": "11.7.4-pr-snapshot-1781695314229"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "react": ">=18 <=19"
@@ -40,7 +40,6 @@
40
40
  },
41
41
  "sideEffects": false,
42
42
  "exports": {
43
- "./lib/*": "./lib/*",
44
43
  "./es/*": "./es/*",
45
44
  "./types/*": "./types/*",
46
45
  "./package.json": "./package.json",
@@ -49,28 +48,24 @@
49
48
  "src": "./src/exports/a.ts",
50
49
  "types": "./types/exports/a.d.ts",
51
50
  "import": "./es/exports/a.js",
52
- "require": "./lib/exports/a.js",
53
51
  "default": "./es/exports/a.js"
54
52
  },
55
53
  "./v11_6": {
56
54
  "src": "./src/exports/a.ts",
57
55
  "types": "./types/exports/a.d.ts",
58
56
  "import": "./es/exports/a.js",
59
- "require": "./lib/exports/a.js",
60
57
  "default": "./es/exports/a.js"
61
58
  },
62
59
  "./v11_7": {
63
60
  "src": "./src/exports/b.ts",
64
61
  "types": "./types/exports/b.d.ts",
65
62
  "import": "./es/exports/b.js",
66
- "require": "./lib/exports/b.js",
67
63
  "default": "./es/exports/b.js"
68
64
  },
69
65
  "./latest": {
70
66
  "src": "./src/exports/b.ts",
71
67
  "types": "./types/exports/b.d.ts",
72
68
  "import": "./es/exports/b.js",
73
- "require": "./lib/exports/b.js",
74
69
  "default": "./es/exports/b.js"
75
70
  }
76
71
  },
@@ -78,7 +73,7 @@
78
73
  "lint": "ui-scripts lint",
79
74
  "lint:fix": "ui-scripts lint --fix",
80
75
  "clean": "ui-scripts clean",
81
- "build": "ui-scripts build --modules es,cjs",
76
+ "build": "ui-scripts build",
82
77
  "build:watch": "pnpm run ts:check -- --watch & ui-scripts build --watch",
83
78
  "build:types": "tsc -p tsconfig.build.json",
84
79
  "ts:check": "tsc -p tsconfig.build.json --noEmit --emitDeclarationOnly false"
@@ -34,10 +34,10 @@ import { logError as error } from '@instructure/console'
34
34
 
35
35
  import { withStyle } from '@instructure/emotion'
36
36
 
37
- import generateStyle from './styles'
38
- import generateComponentTheme from './theme'
37
+ import generateStyle from './styles.js'
38
+ import generateComponentTheme from './theme.js'
39
39
  import type { SpinnerProps, SpinnerState } from './props'
40
- import { allowedProps } from './props'
40
+ import { allowedProps } from './props.js'
41
41
 
42
42
  /**
43
43
  ---
@@ -47,6 +47,7 @@ category: components
47
47
  @withDeterministicId()
48
48
  @withStyle(generateStyle, generateComponentTheme)
49
49
  class Spinner extends Component<SpinnerProps, SpinnerState> {
50
+ static displayName = 'Spinner'
50
51
  static readonly componentId = 'Spinner'
51
52
  static allowedProps = allowedProps
52
53
  static defaultProps = {
@@ -32,9 +32,9 @@ import {
32
32
  } from '@instructure/ui-react-utils'
33
33
  import { logError as error } from '@instructure/console'
34
34
 
35
- import generateStyle from './styles'
35
+ import generateStyle from './styles.js'
36
36
  import type { SpinnerProps } from './props'
37
- import { allowedProps } from './props'
37
+ import { allowedProps } from './props.js'
38
38
 
39
39
  /**
40
40
  ---
package/src/exports/a.ts CHANGED
@@ -22,5 +22,5 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- export { Spinner } from '../Spinner/v1'
25
+ export { Spinner } from '../Spinner/v1/index.js'
26
26
  export type { SpinnerProps } from '../Spinner/v1/props'
package/src/exports/b.ts CHANGED
@@ -22,5 +22,5 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- export { Spinner } from '../Spinner/v2'
25
+ export { Spinner } from '../Spinner/v2/index.js'
26
26
  export type { SpinnerProps } from '../Spinner/v2/props'