@instructure/ui-themes 11.7.1-snapshot-4 → 11.7.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
@@ -3,7 +3,7 @@
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.1-snapshot-4](https://github.com/instructure/instructure-ui/compare/v11.7.0...v11.7.1-snapshot-4) (2026-03-19)
6
+ ## [11.7.1](https://github.com/instructure/instructure-ui/compare/v11.7.0...v11.7.1) (2026-03-20)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-themes
9
9
 
@@ -28,7 +28,7 @@ const key = 'dark';
28
28
  const theme = {
29
29
  newTheme: dark,
30
30
  key,
31
- description: 'This theme meets WCAG 2.1 AA rules for color contrast.',
31
+ description: 'Only usable with v11.7 or newer components! This theme meets WCAG 2.1 AA rules for color contrast.',
32
32
  ...sharedThemeTokens,
33
33
  colors
34
34
  };
@@ -28,7 +28,7 @@ const key = 'light';
28
28
  const theme = {
29
29
  newTheme: light,
30
30
  key,
31
- description: 'This theme meets WCAG 2.1 AA rules for color contrast.',
31
+ description: 'Only usable with v11.7 or newer components! This theme meets WCAG 2.1 AA rules for color contrast.',
32
32
  ...sharedThemeTokens,
33
33
  colors
34
34
  };
@@ -36,7 +36,7 @@ const key = 'dark';
36
36
  const theme = {
37
37
  newTheme: _newThemes.dark,
38
38
  key,
39
- description: 'This theme meets WCAG 2.1 AA rules for color contrast.',
39
+ description: 'Only usable with v11.7 or newer components! This theme meets WCAG 2.1 AA rules for color contrast.',
40
40
  ..._sharedThemeTokens.default,
41
41
  colors: _colors.colors
42
42
  };
@@ -36,7 +36,7 @@ const key = 'light';
36
36
  const theme = {
37
37
  newTheme: _newThemes.light,
38
38
  key,
39
- description: 'This theme meets WCAG 2.1 AA rules for color contrast.',
39
+ description: 'Only usable with v11.7 or newer components! This theme meets WCAG 2.1 AA rules for color contrast.',
40
40
  ..._sharedThemeTokens.default,
41
41
  colors: _colors.colors
42
42
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-themes",
3
- "version": "11.7.1-snapshot-4",
3
+ "version": "11.7.1",
4
4
  "description": "A library of instructure themes",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -17,11 +17,11 @@
17
17
  "@testing-library/jest-dom": "^6.6.3",
18
18
  "@testing-library/react": "15.0.7",
19
19
  "vitest": "^3.2.2",
20
- "@instructure/ui-babel-preset": "11.7.1-snapshot-4"
20
+ "@instructure/ui-babel-preset": "11.7.1"
21
21
  },
22
22
  "dependencies": {
23
23
  "@tokens-studio/types": "^0.5.2",
24
- "@instructure/shared-types": "11.7.1-snapshot-4"
24
+ "@instructure/shared-types": "11.7.1"
25
25
  },
26
26
  "publishConfig": {
27
27
  "access": "public"
@@ -38,7 +38,8 @@ export type DarkTheme = Theme<Dark, 'dark'> &
38
38
  const theme: DarkTheme = {
39
39
  newTheme: dark,
40
40
  key,
41
- description: 'This theme meets WCAG 2.1 AA rules for color contrast.',
41
+ description:
42
+ 'Only usable with v11.7 or newer components! This theme meets WCAG 2.1 AA rules for color contrast.',
42
43
  ...sharedThemeTokens,
43
44
  colors
44
45
  }
@@ -38,7 +38,8 @@ export type LightTheme = Theme<Light, 'light'> &
38
38
  const theme: LightTheme = {
39
39
  newTheme: light,
40
40
  key,
41
- description: 'This theme meets WCAG 2.1 AA rules for color contrast.',
41
+ description:
42
+ 'Only usable with v11.7 or newer components! This theme meets WCAG 2.1 AA rules for color contrast.',
42
43
  ...sharedThemeTokens,
43
44
  colors
44
45
  }