@instructure/ui-options 11.7.2-snapshot-18 → 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 +12 -2
- package/es/exports/b.js +1 -4
- package/lib/exports/b.js +1 -22
- package/package.json +11 -11
- package/src/exports/b.ts +0 -4
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/exports/b.d.ts +0 -3
- package/types/exports/b.d.ts.map +1 -1
- package/es/Options/v2/Item/theme.js +0 -72
- package/es/Options/v2/Separator/theme.js +0 -45
- package/es/Options/v2/theme.js +0 -47
- package/lib/Options/v2/Item/theme.js +0 -78
- package/lib/Options/v2/Separator/theme.js +0 -51
- package/lib/Options/v2/theme.js +0 -53
- package/src/Options/v2/Item/theme.ts +0 -79
- package/src/Options/v2/Separator/theme.ts +0 -48
- package/src/Options/v2/theme.ts +0 -52
- package/types/Options/v2/Item/theme.d.ts +0 -11
- package/types/Options/v2/Item/theme.d.ts.map +0 -1
- package/types/Options/v2/Separator/theme.d.ts +0 -11
- package/types/Options/v2/Separator/theme.d.ts.map +0 -1
- package/types/Options/v2/theme.d.ts +0 -11
- package/types/Options/v2/theme.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,19 @@
|
|
|
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
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **ui,ui-options,ui-drilldown:** rework Drilldown ([0562fe2](https://github.com/instructure/instructure-ui/commit/0562fe2b43e3235fc78c4981ada504c1a2f10d1a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### BREAKING CHANGES
|
|
15
|
+
|
|
16
|
+
* **ui,ui-options,ui-drilldown:** contains breaking changes due to component using the new theming system
|
|
17
|
+
|
|
18
|
+
INSTUI-4792
|
|
9
19
|
|
|
10
20
|
|
|
11
21
|
|
package/es/exports/b.js
CHANGED
|
@@ -23,7 +23,4 @@
|
|
|
23
23
|
*/
|
|
24
24
|
export { Options } from "../Options/v2/index.js";
|
|
25
25
|
export { Item as OptionItem } from "../Options/v2/Item/index.js";
|
|
26
|
-
export { Separator as OptionSeparator } from "../Options/v2/Separator/index.js";
|
|
27
|
-
export { optionsThemeGenerator } from "../Options/v2/theme.js";
|
|
28
|
-
export { optionsItemThemeGenerator } from "../Options/v2/Item/theme.js";
|
|
29
|
-
export { optionsSeparatorThemeGenerator } from "../Options/v2/Separator/theme.js";
|
|
26
|
+
export { Separator as OptionSeparator } from "../Options/v2/Separator/index.js";
|
package/lib/exports/b.js
CHANGED
|
@@ -21,27 +21,6 @@ Object.defineProperty(exports, "Options", {
|
|
|
21
21
|
return _v.Options;
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
|
-
Object.defineProperty(exports, "optionsItemThemeGenerator", {
|
|
25
|
-
enumerable: true,
|
|
26
|
-
get: function () {
|
|
27
|
-
return _theme2.optionsItemThemeGenerator;
|
|
28
|
-
}
|
|
29
|
-
});
|
|
30
|
-
Object.defineProperty(exports, "optionsSeparatorThemeGenerator", {
|
|
31
|
-
enumerable: true,
|
|
32
|
-
get: function () {
|
|
33
|
-
return _theme3.optionsSeparatorThemeGenerator;
|
|
34
|
-
}
|
|
35
|
-
});
|
|
36
|
-
Object.defineProperty(exports, "optionsThemeGenerator", {
|
|
37
|
-
enumerable: true,
|
|
38
|
-
get: function () {
|
|
39
|
-
return _theme.optionsThemeGenerator;
|
|
40
|
-
}
|
|
41
|
-
});
|
|
42
24
|
var _v = require("../Options/v2");
|
|
43
25
|
var _Item = require("../Options/v2/Item");
|
|
44
|
-
var _Separator = require("../Options/v2/Separator");
|
|
45
|
-
var _theme = require("../Options/v2/theme");
|
|
46
|
-
var _theme2 = require("../Options/v2/Item/theme");
|
|
47
|
-
var _theme3 = require("../Options/v2/Separator/theme");
|
|
26
|
+
var _Separator = require("../Options/v2/Separator");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-options",
|
|
3
|
-
"version": "11.7.2-snapshot-
|
|
3
|
+
"version": "11.7.2-snapshot-19",
|
|
4
4
|
"description": "A view-only component for composing interactive lists and menus.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -15,22 +15,22 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.27.6",
|
|
18
|
-
"@instructure/emotion": "11.7.2-snapshot-
|
|
19
|
-
"@instructure/
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/ui-
|
|
22
|
-
"@instructure/ui-utils": "11.7.2-snapshot-
|
|
23
|
-
"@instructure/ui-view": "11.7.2-snapshot-
|
|
18
|
+
"@instructure/emotion": "11.7.2-snapshot-19",
|
|
19
|
+
"@instructure/ui-icons": "11.7.2-snapshot-19",
|
|
20
|
+
"@instructure/shared-types": "11.7.2-snapshot-19",
|
|
21
|
+
"@instructure/ui-utils": "11.7.2-snapshot-19",
|
|
22
|
+
"@instructure/ui-react-utils": "11.7.2-snapshot-19",
|
|
23
|
+
"@instructure/ui-view": "11.7.2-snapshot-19"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@testing-library/jest-dom": "^6.6.3",
|
|
27
27
|
"@testing-library/react": "15.0.7",
|
|
28
28
|
"@testing-library/user-event": "^14.6.1",
|
|
29
29
|
"vitest": "^3.2.2",
|
|
30
|
-
"@instructure/ui-
|
|
31
|
-
"@instructure/ui-
|
|
32
|
-
"@instructure/ui-
|
|
33
|
-
"@instructure/ui-themes": "11.7.2-snapshot-
|
|
30
|
+
"@instructure/ui-babel-preset": "11.7.2-snapshot-19",
|
|
31
|
+
"@instructure/ui-color-utils": "11.7.2-snapshot-19",
|
|
32
|
+
"@instructure/ui-axe-check": "11.7.2-snapshot-19",
|
|
33
|
+
"@instructure/ui-themes": "11.7.2-snapshot-19"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"react": ">=18 <=19"
|
package/src/exports/b.ts
CHANGED
|
@@ -26,10 +26,6 @@ export { Options } from '../Options/v2'
|
|
|
26
26
|
export { Item as OptionItem } from '../Options/v2/Item'
|
|
27
27
|
export { Separator as OptionSeparator } from '../Options/v2/Separator'
|
|
28
28
|
|
|
29
|
-
export { optionsThemeGenerator } from '../Options/v2/theme'
|
|
30
|
-
export { optionsItemThemeGenerator } from '../Options/v2/Item/theme'
|
|
31
|
-
export { optionsSeparatorThemeGenerator } from '../Options/v2/Separator/theme'
|
|
32
|
-
|
|
33
29
|
export type { OptionsProps } from '../Options/v2/props'
|
|
34
30
|
export type {
|
|
35
31
|
OptionsItemProps,
|