@instructure/canvas-theme 11.6.0 → 11.6.1-pr-snapshot-1779894247159

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.6.1-pr-snapshot-1779894247159](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-pr-snapshot-1779894247159) (2026-05-27)
7
+
8
+ **Note:** Version bump only for package @instructure/canvas-theme
9
+
10
+
11
+
12
+
13
+
6
14
  # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
7
15
 
8
16
  **Note:** Version bump only for package @instructure/canvas-theme
@@ -0,0 +1,37 @@
1
+ /*
2
+ * The MIT License (MIT)
3
+ *
4
+ * Copyright (c) 2015 - present Instructure, Inc.
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ * of this software and associated documentation files (the "Software"), to deal
8
+ * in the Software without restriction, including without limitation the rights
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in all
14
+ * copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ * SOFTWARE.
23
+ */
24
+
25
+ module.exports = {
26
+ presets: [
27
+ [
28
+ require('@instructure/ui-babel-preset'),
29
+ {
30
+ coverage: Boolean(process.env.COVERAGE),
31
+ esModules: Boolean(process.env.ES_MODULES),
32
+ removeConsole: process.env.NODE_ENV === 'production',
33
+ transformImports: false
34
+ }
35
+ ]
36
+ ]
37
+ }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@instructure/canvas-theme",
3
- "version": "11.6.0",
3
+ "version": "11.6.1-pr-snapshot-1779894247159",
4
+ "type": "module",
4
5
  "description": "A theme for Canvas LMS made by Instructure Inc.",
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,11 +15,11 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.27.6",
18
- "@instructure/shared-types": "11.6.0",
19
- "@instructure/ui-themes": "11.6.0"
18
+ "@instructure/shared-types": "11.6.1-pr-snapshot-1779894247159",
19
+ "@instructure/ui-themes": "11.6.1-pr-snapshot-1779894247159"
20
20
  },
21
21
  "devDependencies": {
22
- "@instructure/ui-babel-preset": "11.6.0"
22
+ "@instructure/ui-babel-preset": "11.6.1-pr-snapshot-1779894247159"
23
23
  },
24
24
  "publishConfig": {
25
25
  "access": "public"
@@ -29,10 +29,8 @@
29
29
  ".": {
30
30
  "types": "./types/index.d.ts",
31
31
  "import": "./es/index.js",
32
- "require": "./lib/index.js",
33
32
  "default": "./es/index.js"
34
33
  },
35
- "./lib/*": "./lib/*",
36
34
  "./es/*": "./es/*",
37
35
  "./types/*": "./types/*",
38
36
  "./package.json": "./package.json",
@@ -42,7 +40,7 @@
42
40
  "lint": "ui-scripts lint",
43
41
  "lint:fix": "ui-scripts lint --fix",
44
42
  "clean": "ui-scripts clean",
45
- "build": "ui-scripts build --modules es,cjs",
43
+ "build": "ui-scripts build",
46
44
  "build:watch": "ui-scripts build --watch",
47
45
  "build:types": "tsc -p tsconfig.build.json"
48
46
  }
package/lib/index.js DELETED
@@ -1,45 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.typography = exports.transitions = exports.theme = exports.stacking = exports.spacing = exports.shadows = exports.media = exports.key = exports.forms = exports.default = exports.colors = exports.breakpoints = exports.borders = void 0;
8
- var _uiThemes = _interopRequireDefault(require("@instructure/ui-themes"));
9
- /*
10
- * The MIT License (MIT)
11
- *
12
- * Copyright (c) 2015 - present Instructure, Inc.
13
- *
14
- * Permission is hereby granted, free of charge, to any person obtaining a copy
15
- * of this software and associated documentation files (the "Software"), to deal
16
- * in the Software without restriction, including without limitation the rights
17
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18
- * copies of the Software, and to permit persons to whom the Software is
19
- * furnished to do so, subject to the following conditions:
20
- *
21
- * The above copyright notice and this permission notice shall be included in all
22
- * copies or substantial portions of the Software.
23
- *
24
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30
- * SOFTWARE.
31
- */
32
-
33
- const borders = exports.borders = _uiThemes.default.borders,
34
- breakpoints = exports.breakpoints = _uiThemes.default.breakpoints,
35
- colors = exports.colors = _uiThemes.default.colors,
36
- forms = exports.forms = _uiThemes.default.forms,
37
- media = exports.media = _uiThemes.default.media,
38
- shadows = exports.shadows = _uiThemes.default.shadows,
39
- spacing = exports.spacing = _uiThemes.default.spacing,
40
- stacking = exports.stacking = _uiThemes.default.stacking,
41
- transitions = exports.transitions = _uiThemes.default.transitions,
42
- typography = exports.typography = _uiThemes.default.typography;
43
- const theme = exports.theme = _uiThemes.default;
44
- const key = exports.key = 'canvas';
45
- var _default = exports.default = _uiThemes.default;
package/lib/package.json DELETED
@@ -1 +0,0 @@
1
- {"type":"commonjs"}