@instructure/ui-themes 11.7.2-snapshot-17 → 11.7.2-snapshot-19
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 +5 -2
- package/package.json +3 -3
- package/src/index.ts +4 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/index.d.ts +3 -1
- package/types/index.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,12 @@
|
|
|
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.2-snapshot-
|
|
6
|
+
## [11.7.2-snapshot-19](https://github.com/instructure/instructure-ui/compare/v11.7.1...v11.7.2-snapshot-19) (2026-04-01)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **many:** small fixes for doc and fix component directory mapping in "dev" script ([39f0c99](https://github.com/instructure/instructure-ui/commit/39f0c991315e39d30e1f24b3142b986d5b9041ee))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-themes",
|
|
3
|
-
"version": "11.7.2-snapshot-
|
|
3
|
+
"version": "11.7.2-snapshot-19",
|
|
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.2-snapshot-
|
|
20
|
+
"@instructure/ui-babel-preset": "11.7.2-snapshot-19"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@tokens-studio/types": "^0.5.2",
|
|
24
|
-
"@instructure/shared-types": "11.7.2-snapshot-
|
|
24
|
+
"@instructure/shared-types": "11.7.2-snapshot-19"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "public"
|
package/src/index.ts
CHANGED
|
@@ -30,6 +30,8 @@ import type {
|
|
|
30
30
|
} from './themes/newThemes/commonTypes'
|
|
31
31
|
import type { CanvasHighContrastTheme } from './themes/canvasHighContrast'
|
|
32
32
|
import type { CanvasTheme, CanvasBrandVariables } from './themes/canvas'
|
|
33
|
+
import type { DarkTheme } from './themes/dark'
|
|
34
|
+
import type { LightTheme } from './themes/light'
|
|
33
35
|
import type {
|
|
34
36
|
BaseTheme,
|
|
35
37
|
Primitives,
|
|
@@ -99,6 +101,8 @@ export type {
|
|
|
99
101
|
CanvasTheme,
|
|
100
102
|
CanvasBrandVariables,
|
|
101
103
|
CanvasHighContrastTheme,
|
|
104
|
+
DarkTheme,
|
|
105
|
+
LightTheme,
|
|
102
106
|
Primitives,
|
|
103
107
|
AdditionalPrimitives,
|
|
104
108
|
DataVisualization,
|