@instructure/ui 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 +17 -2
- package/es/v11_7.js +2 -2
- package/lib/v11_7.js +14 -21
- package/package.json +75 -75
- package/src/v11_7.ts +8 -5
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/v11_7.d.ts +3 -3
- package/types/v11_7.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,24 @@
|
|
|
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))
|
|
12
|
+
|
|
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
|
|
9
24
|
|
|
10
25
|
|
|
11
26
|
|
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';
|
|
@@ -85,7 +85,7 @@ export { Tag } from '@instructure/ui-tag/v11_7';
|
|
|
85
85
|
export { Text } from '@instructure/ui-text/v11_7';
|
|
86
86
|
export { TextArea } from '@instructure/ui-text-area/v11_7';
|
|
87
87
|
export { TextInput } from '@instructure/ui-text-input/v11_7';
|
|
88
|
-
export { canvas, canvasHighContrast, primitives, additionalPrimitives, dataVisualization } from '@instructure/ui-themes';
|
|
88
|
+
export { canvas, canvasHighContrast, dark, light, primitives, additionalPrimitives, dataVisualization } from '@instructure/ui-themes';
|
|
89
89
|
export { TimeSelect } from '@instructure/ui-time-select/v11_7';
|
|
90
90
|
export { ToggleDetails, ToggleGroup } from '@instructure/ui-toggle-details/v11_7';
|
|
91
91
|
export { Tooltip } from '@instructure/ui-tooltip/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,
|
|
@@ -158,6 +155,8 @@ var _exportNames = {
|
|
|
158
155
|
TextInput: true,
|
|
159
156
|
canvas: true,
|
|
160
157
|
canvasHighContrast: true,
|
|
158
|
+
dark: true,
|
|
159
|
+
light: true,
|
|
161
160
|
primitives: true,
|
|
162
161
|
additionalPrimitives: true,
|
|
163
162
|
dataVisualization: true,
|
|
@@ -1167,6 +1166,12 @@ Object.defineProperty(exports, "canvasHighContrast", {
|
|
|
1167
1166
|
return _uiThemes.canvasHighContrast;
|
|
1168
1167
|
}
|
|
1169
1168
|
});
|
|
1169
|
+
Object.defineProperty(exports, "dark", {
|
|
1170
|
+
enumerable: true,
|
|
1171
|
+
get: function () {
|
|
1172
|
+
return _uiThemes.dark;
|
|
1173
|
+
}
|
|
1174
|
+
});
|
|
1170
1175
|
Object.defineProperty(exports, "dataVisualization", {
|
|
1171
1176
|
enumerable: true,
|
|
1172
1177
|
get: function () {
|
|
@@ -1191,34 +1196,22 @@ Object.defineProperty(exports, "jsonToMediaQuery", {
|
|
|
1191
1196
|
return _v11_38.jsonToMediaQuery;
|
|
1192
1197
|
}
|
|
1193
1198
|
});
|
|
1194
|
-
Object.defineProperty(exports, "
|
|
1195
|
-
enumerable: true,
|
|
1196
|
-
get: function () {
|
|
1197
|
-
return _uiPosition.mirrorHorizontalPlacement;
|
|
1198
|
-
}
|
|
1199
|
-
});
|
|
1200
|
-
Object.defineProperty(exports, "mirrorPlacement", {
|
|
1201
|
-
enumerable: true,
|
|
1202
|
-
get: function () {
|
|
1203
|
-
return _uiPosition.mirrorPlacement;
|
|
1204
|
-
}
|
|
1205
|
-
});
|
|
1206
|
-
Object.defineProperty(exports, "optionsItemThemeGenerator", {
|
|
1199
|
+
Object.defineProperty(exports, "light", {
|
|
1207
1200
|
enumerable: true,
|
|
1208
1201
|
get: function () {
|
|
1209
|
-
return
|
|
1202
|
+
return _uiThemes.light;
|
|
1210
1203
|
}
|
|
1211
1204
|
});
|
|
1212
|
-
Object.defineProperty(exports, "
|
|
1205
|
+
Object.defineProperty(exports, "mirrorHorizontalPlacement", {
|
|
1213
1206
|
enumerable: true,
|
|
1214
1207
|
get: function () {
|
|
1215
|
-
return
|
|
1208
|
+
return _uiPosition.mirrorHorizontalPlacement;
|
|
1216
1209
|
}
|
|
1217
1210
|
});
|
|
1218
|
-
Object.defineProperty(exports, "
|
|
1211
|
+
Object.defineProperty(exports, "mirrorPlacement", {
|
|
1219
1212
|
enumerable: true,
|
|
1220
1213
|
get: function () {
|
|
1221
|
-
return
|
|
1214
|
+
return _uiPosition.mirrorPlacement;
|
|
1222
1215
|
}
|
|
1223
1216
|
});
|
|
1224
1217
|
Object.defineProperty(exports, "parsePlacement", {
|
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-avatar": "11.7.2-snapshot-
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/ui-
|
|
24
|
-
"@instructure/ui-
|
|
25
|
-
"@instructure/ui-
|
|
26
|
-
"@instructure/ui-
|
|
27
|
-
"@instructure/ui-
|
|
28
|
-
"@instructure/ui-
|
|
29
|
-
"@instructure/ui-
|
|
30
|
-
"@instructure/ui-
|
|
31
|
-
"@instructure/ui-
|
|
32
|
-
"@instructure/ui-
|
|
33
|
-
"@instructure/ui-
|
|
34
|
-
"@instructure/ui-file-drop": "11.7.2-snapshot-
|
|
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-
|
|
49
|
-
"@instructure/ui-
|
|
50
|
-
"@instructure/ui-
|
|
51
|
-
"@instructure/ui-
|
|
52
|
-
"@instructure/ui-
|
|
53
|
-
"@instructure/ui-
|
|
54
|
-
"@instructure/ui-
|
|
55
|
-
"@instructure/ui-
|
|
56
|
-
"@instructure/ui-
|
|
57
|
-
"@instructure/ui-
|
|
58
|
-
"@instructure/ui-
|
|
59
|
-
"@instructure/ui-
|
|
60
|
-
"@instructure/ui-
|
|
61
|
-
"@instructure/ui-
|
|
62
|
-
"@instructure/ui-
|
|
63
|
-
"@instructure/ui-
|
|
64
|
-
"@instructure/ui-
|
|
65
|
-
"@instructure/ui-rating": "11.7.2-snapshot-
|
|
66
|
-
"@instructure/ui-
|
|
67
|
-
"@instructure/ui-
|
|
68
|
-
"@instructure/ui-simple-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
|
|
79
|
-
"@instructure/ui-
|
|
80
|
-
"@instructure/ui-tooltip": "11.7.2-snapshot-
|
|
81
|
-
"@instructure/ui-
|
|
82
|
-
"@instructure/ui-
|
|
83
|
-
"@instructure/ui-
|
|
84
|
-
"@instructure/ui-
|
|
85
|
-
"@instructure/ui-tree-browser": "11.7.2-snapshot-
|
|
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,
|
|
@@ -410,6 +407,8 @@ export type { TextInputProps } from '@instructure/ui-text-input/v11_7'
|
|
|
410
407
|
export {
|
|
411
408
|
canvas,
|
|
412
409
|
canvasHighContrast,
|
|
410
|
+
dark,
|
|
411
|
+
light,
|
|
413
412
|
primitives,
|
|
414
413
|
additionalPrimitives,
|
|
415
414
|
dataVisualization
|
|
@@ -426,7 +425,11 @@ export type {
|
|
|
426
425
|
Primitives,
|
|
427
426
|
AdditionalPrimitives,
|
|
428
427
|
DataVisualization,
|
|
429
|
-
UI
|
|
428
|
+
UI,
|
|
429
|
+
Dark,
|
|
430
|
+
DarkTheme,
|
|
431
|
+
Light,
|
|
432
|
+
LightTheme
|
|
430
433
|
} from '@instructure/ui-themes'
|
|
431
434
|
export { TimeSelect } from '@instructure/ui-time-select/v11_7'
|
|
432
435
|
export type { TimeSelectProps } from '@instructure/ui-time-select/v11_7'
|