@instructure/ui 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 +13 -1
- package/es/v11_7.js +1 -1
- package/lib/v11_7.js +0 -21
- package/package.json +75 -75
- package/src/v11_7.ts +1 -4
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/v11_7.d.ts +1 -1
- package/types/v11_7.d.ts.map +1 -1
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.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
9
|
### Bug Fixes
|
|
@@ -11,6 +11,18 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
11
11
|
* **many:** small fixes for doc and fix component directory mapping in "dev" script ([39f0c99](https://github.com/instructure/instructure-ui/commit/39f0c991315e39d30e1f24b3142b986d5b9041ee))
|
|
12
12
|
|
|
13
13
|
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **ui,ui-options,ui-drilldown:** rework Drilldown ([0562fe2](https://github.com/instructure/instructure-ui/commit/0562fe2b43e3235fc78c4981ada504c1a2f10d1a))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### BREAKING CHANGES
|
|
20
|
+
|
|
21
|
+
* **ui,ui-options,ui-drilldown:** contains breaking changes due to component using the new theming system
|
|
22
|
+
|
|
23
|
+
INSTUI-4792
|
|
24
|
+
|
|
25
|
+
|
|
14
26
|
|
|
15
27
|
|
|
16
28
|
|
package/es/v11_7.js
CHANGED
|
@@ -59,7 +59,7 @@ export { Modal, ModalBody, ModalFooter, ModalHeader } from '@instructure/ui-moda
|
|
|
59
59
|
export { Transition, BaseTransition } from '@instructure/ui-motion';
|
|
60
60
|
export { AppNav, AppNavItem } from '@instructure/ui-navigation/v11_7';
|
|
61
61
|
export { NumberInput } from '@instructure/ui-number-input/v11_7';
|
|
62
|
-
export { Options, OptionSeparator, OptionItem
|
|
62
|
+
export { Options, OptionSeparator, OptionItem } from '@instructure/ui-options/v11_7';
|
|
63
63
|
export { Mask, Overlay } from '@instructure/ui-overlays/v11_7';
|
|
64
64
|
export { Pages, PagesPage } from '@instructure/ui-pages/v11_7';
|
|
65
65
|
export { Pagination, PaginationButton } from '@instructure/ui-pagination/v11_7';
|
package/lib/v11_7.js
CHANGED
|
@@ -97,9 +97,6 @@ var _exportNames = {
|
|
|
97
97
|
Options: true,
|
|
98
98
|
OptionSeparator: true,
|
|
99
99
|
OptionItem: true,
|
|
100
|
-
optionsThemeGenerator: true,
|
|
101
|
-
optionsItemThemeGenerator: true,
|
|
102
|
-
optionsSeparatorThemeGenerator: true,
|
|
103
100
|
Mask: true,
|
|
104
101
|
Overlay: true,
|
|
105
102
|
Pages: true,
|
|
@@ -1217,24 +1214,6 @@ Object.defineProperty(exports, "mirrorPlacement", {
|
|
|
1217
1214
|
return _uiPosition.mirrorPlacement;
|
|
1218
1215
|
}
|
|
1219
1216
|
});
|
|
1220
|
-
Object.defineProperty(exports, "optionsItemThemeGenerator", {
|
|
1221
|
-
enumerable: true,
|
|
1222
|
-
get: function () {
|
|
1223
|
-
return _v11_28.optionsItemThemeGenerator;
|
|
1224
|
-
}
|
|
1225
|
-
});
|
|
1226
|
-
Object.defineProperty(exports, "optionsSeparatorThemeGenerator", {
|
|
1227
|
-
enumerable: true,
|
|
1228
|
-
get: function () {
|
|
1229
|
-
return _v11_28.optionsSeparatorThemeGenerator;
|
|
1230
|
-
}
|
|
1231
|
-
});
|
|
1232
|
-
Object.defineProperty(exports, "optionsThemeGenerator", {
|
|
1233
|
-
enumerable: true,
|
|
1234
|
-
get: function () {
|
|
1235
|
-
return _v11_28.optionsThemeGenerator;
|
|
1236
|
-
}
|
|
1237
|
-
});
|
|
1238
1217
|
Object.defineProperty(exports, "parsePlacement", {
|
|
1239
1218
|
enumerable: true,
|
|
1240
1219
|
get: function () {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui",
|
|
3
|
-
"version": "11.7.2-snapshot-
|
|
3
|
+
"version": "11.7.2-snapshot-19",
|
|
4
4
|
"description": "A meta package exporting all UI components",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -15,82 +15,82 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.27.6",
|
|
18
|
-
"@instructure/emotion": "11.7.2-snapshot-
|
|
19
|
-
"@instructure/ui-a11y-content": "11.7.2-snapshot-
|
|
20
|
-
"@instructure/ui-
|
|
21
|
-
"@instructure/ui-
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/ui-
|
|
24
|
-
"@instructure/ui-
|
|
25
|
-
"@instructure/ui-
|
|
26
|
-
"@instructure/ui-
|
|
27
|
-
"@instructure/ui-
|
|
28
|
-
"@instructure/ui-
|
|
29
|
-
"@instructure/ui-date-input": "11.7.2-snapshot-
|
|
30
|
-
"@instructure/ui-
|
|
31
|
-
"@instructure/ui-
|
|
32
|
-
"@instructure/ui-
|
|
33
|
-
"@instructure/ui-
|
|
34
|
-
"@instructure/ui-
|
|
35
|
-
"@instructure/ui-
|
|
36
|
-
"@instructure/ui-
|
|
37
|
-
"@instructure/ui-
|
|
38
|
-
"@instructure/ui-
|
|
39
|
-
"@instructure/ui-
|
|
40
|
-
"@instructure/ui-
|
|
41
|
-
"@instructure/ui-
|
|
42
|
-
"@instructure/ui-
|
|
43
|
-
"@instructure/ui-
|
|
44
|
-
"@instructure/ui-
|
|
45
|
-
"@instructure/ui-
|
|
46
|
-
"@instructure/ui-
|
|
47
|
-
"@instructure/ui-metric": "11.7.2-snapshot-
|
|
48
|
-
"@instructure/ui-modal": "11.7.2-snapshot-
|
|
49
|
-
"@instructure/ui-
|
|
50
|
-
"@instructure/ui-
|
|
51
|
-
"@instructure/ui-motion": "11.7.2-snapshot-
|
|
52
|
-
"@instructure/ui-navigation": "11.7.2-snapshot-
|
|
53
|
-
"@instructure/ui-number-input": "11.7.2-snapshot-
|
|
54
|
-
"@instructure/ui-options": "11.7.2-snapshot-
|
|
55
|
-
"@instructure/ui-overlays": "11.7.2-snapshot-
|
|
56
|
-
"@instructure/ui-pages": "11.7.2-snapshot-
|
|
57
|
-
"@instructure/ui-
|
|
58
|
-
"@instructure/ui-pagination": "11.7.2-snapshot-
|
|
59
|
-
"@instructure/ui-
|
|
60
|
-
"@instructure/ui-
|
|
61
|
-
"@instructure/ui-
|
|
62
|
-
"@instructure/ui-
|
|
63
|
-
"@instructure/ui-
|
|
64
|
-
"@instructure/ui-
|
|
65
|
-
"@instructure/ui-
|
|
66
|
-
"@instructure/ui-radio-input": "11.7.2-snapshot-
|
|
67
|
-
"@instructure/ui-
|
|
68
|
-
"@instructure/ui-select": "11.7.2-snapshot-
|
|
69
|
-
"@instructure/ui-
|
|
70
|
-
"@instructure/ui-
|
|
71
|
-
"@instructure/ui-
|
|
72
|
-
"@instructure/ui-
|
|
73
|
-
"@instructure/ui-
|
|
74
|
-
"@instructure/ui-
|
|
75
|
-
"@instructure/ui-
|
|
76
|
-
"@instructure/ui-
|
|
77
|
-
"@instructure/ui-
|
|
78
|
-
"@instructure/ui-text": "11.7.2-snapshot-
|
|
79
|
-
"@instructure/ui-text-
|
|
80
|
-
"@instructure/ui-
|
|
81
|
-
"@instructure/ui-
|
|
82
|
-
"@instructure/ui-
|
|
83
|
-
"@instructure/ui-
|
|
84
|
-
"@instructure/ui-
|
|
85
|
-
"@instructure/ui-
|
|
86
|
-
"@instructure/ui-
|
|
87
|
-
"@instructure/ui-
|
|
88
|
-
"@instructure/ui-
|
|
89
|
-
"@instructure/ui-
|
|
90
|
-
"@instructure/ui-
|
|
18
|
+
"@instructure/emotion": "11.7.2-snapshot-19",
|
|
19
|
+
"@instructure/ui-a11y-content": "11.7.2-snapshot-19",
|
|
20
|
+
"@instructure/ui-alerts": "11.7.2-snapshot-19",
|
|
21
|
+
"@instructure/ui-avatar": "11.7.2-snapshot-19",
|
|
22
|
+
"@instructure/ui-badge": "11.7.2-snapshot-19",
|
|
23
|
+
"@instructure/ui-breadcrumb": "11.7.2-snapshot-19",
|
|
24
|
+
"@instructure/ui-buttons": "11.7.2-snapshot-19",
|
|
25
|
+
"@instructure/ui-calendar": "11.7.2-snapshot-19",
|
|
26
|
+
"@instructure/ui-checkbox": "11.7.2-snapshot-19",
|
|
27
|
+
"@instructure/ui-color-picker": "11.7.2-snapshot-19",
|
|
28
|
+
"@instructure/ui-date-input": "11.7.2-snapshot-19",
|
|
29
|
+
"@instructure/ui-date-time-input": "11.7.2-snapshot-19",
|
|
30
|
+
"@instructure/ui-billboard": "11.7.2-snapshot-19",
|
|
31
|
+
"@instructure/ui-byline": "11.7.2-snapshot-19",
|
|
32
|
+
"@instructure/ui-drilldown": "11.7.2-snapshot-19",
|
|
33
|
+
"@instructure/ui-expandable": "11.7.2-snapshot-19",
|
|
34
|
+
"@instructure/ui-file-drop": "11.7.2-snapshot-19",
|
|
35
|
+
"@instructure/ui-drawer-layout": "11.7.2-snapshot-19",
|
|
36
|
+
"@instructure/ui-dialog": "11.7.2-snapshot-19",
|
|
37
|
+
"@instructure/ui-focusable": "11.7.2-snapshot-19",
|
|
38
|
+
"@instructure/ui-flex": "11.7.2-snapshot-19",
|
|
39
|
+
"@instructure/ui-heading": "11.7.2-snapshot-19",
|
|
40
|
+
"@instructure/ui-grid": "11.7.2-snapshot-19",
|
|
41
|
+
"@instructure/ui-editable": "11.7.2-snapshot-19",
|
|
42
|
+
"@instructure/ui-icons": "11.7.2-snapshot-19",
|
|
43
|
+
"@instructure/ui-img": "11.7.2-snapshot-19",
|
|
44
|
+
"@instructure/ui-form-field": "11.7.2-snapshot-19",
|
|
45
|
+
"@instructure/ui-instructure": "11.7.2-snapshot-19",
|
|
46
|
+
"@instructure/ui-i18n": "11.7.2-snapshot-19",
|
|
47
|
+
"@instructure/ui-metric": "11.7.2-snapshot-19",
|
|
48
|
+
"@instructure/ui-modal": "11.7.2-snapshot-19",
|
|
49
|
+
"@instructure/ui-list": "11.7.2-snapshot-19",
|
|
50
|
+
"@instructure/ui-menu": "11.7.2-snapshot-19",
|
|
51
|
+
"@instructure/ui-motion": "11.7.2-snapshot-19",
|
|
52
|
+
"@instructure/ui-navigation": "11.7.2-snapshot-19",
|
|
53
|
+
"@instructure/ui-number-input": "11.7.2-snapshot-19",
|
|
54
|
+
"@instructure/ui-options": "11.7.2-snapshot-19",
|
|
55
|
+
"@instructure/ui-overlays": "11.7.2-snapshot-19",
|
|
56
|
+
"@instructure/ui-pages": "11.7.2-snapshot-19",
|
|
57
|
+
"@instructure/ui-popover": "11.7.2-snapshot-19",
|
|
58
|
+
"@instructure/ui-pagination": "11.7.2-snapshot-19",
|
|
59
|
+
"@instructure/ui-portal": "11.7.2-snapshot-19",
|
|
60
|
+
"@instructure/ui-pill": "11.7.2-snapshot-19",
|
|
61
|
+
"@instructure/ui-link": "11.7.2-snapshot-19",
|
|
62
|
+
"@instructure/ui-position": "11.7.2-snapshot-19",
|
|
63
|
+
"@instructure/ui-range-input": "11.7.2-snapshot-19",
|
|
64
|
+
"@instructure/ui-responsive": "11.7.2-snapshot-19",
|
|
65
|
+
"@instructure/ui-rating": "11.7.2-snapshot-19",
|
|
66
|
+
"@instructure/ui-radio-input": "11.7.2-snapshot-19",
|
|
67
|
+
"@instructure/ui-progress": "11.7.2-snapshot-19",
|
|
68
|
+
"@instructure/ui-simple-select": "11.7.2-snapshot-19",
|
|
69
|
+
"@instructure/ui-source-code-editor": "11.7.2-snapshot-19",
|
|
70
|
+
"@instructure/ui-select": "11.7.2-snapshot-19",
|
|
71
|
+
"@instructure/ui-spinner": "11.7.2-snapshot-19",
|
|
72
|
+
"@instructure/ui-svg-images": "11.7.2-snapshot-19",
|
|
73
|
+
"@instructure/ui-table": "11.7.2-snapshot-19",
|
|
74
|
+
"@instructure/ui-selectable": "11.7.2-snapshot-19",
|
|
75
|
+
"@instructure/ui-side-nav-bar": "11.7.2-snapshot-19",
|
|
76
|
+
"@instructure/ui-text-area": "11.7.2-snapshot-19",
|
|
77
|
+
"@instructure/ui-tabs": "11.7.2-snapshot-19",
|
|
78
|
+
"@instructure/ui-text": "11.7.2-snapshot-19",
|
|
79
|
+
"@instructure/ui-text-input": "11.7.2-snapshot-19",
|
|
80
|
+
"@instructure/ui-tooltip": "11.7.2-snapshot-19",
|
|
81
|
+
"@instructure/ui-top-nav-bar": "11.7.2-snapshot-19",
|
|
82
|
+
"@instructure/ui-toggle-details": "11.7.2-snapshot-19",
|
|
83
|
+
"@instructure/ui-tray": "11.7.2-snapshot-19",
|
|
84
|
+
"@instructure/ui-tag": "11.7.2-snapshot-19",
|
|
85
|
+
"@instructure/ui-tree-browser": "11.7.2-snapshot-19",
|
|
86
|
+
"@instructure/ui-themes": "11.7.2-snapshot-19",
|
|
87
|
+
"@instructure/ui-truncate-list": "11.7.2-snapshot-19",
|
|
88
|
+
"@instructure/ui-view": "11.7.2-snapshot-19",
|
|
89
|
+
"@instructure/ui-truncate-text": "11.7.2-snapshot-19",
|
|
90
|
+
"@instructure/ui-time-select": "11.7.2-snapshot-19"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@instructure/ui-babel-preset": "11.7.2-snapshot-
|
|
93
|
+
"@instructure/ui-babel-preset": "11.7.2-snapshot-19"
|
|
94
94
|
},
|
|
95
95
|
"peerDependencies": {
|
|
96
96
|
"react": ">=18 <=19",
|
package/src/v11_7.ts
CHANGED
|
@@ -265,10 +265,7 @@ export type { NumberInputProps } from '@instructure/ui-number-input/v11_7'
|
|
|
265
265
|
export {
|
|
266
266
|
Options,
|
|
267
267
|
OptionSeparator,
|
|
268
|
-
OptionItem
|
|
269
|
-
optionsThemeGenerator,
|
|
270
|
-
optionsItemThemeGenerator,
|
|
271
|
-
optionsSeparatorThemeGenerator
|
|
268
|
+
OptionItem
|
|
272
269
|
} from '@instructure/ui-options/v11_7'
|
|
273
270
|
export type {
|
|
274
271
|
OptionsItemProps,
|