@instructure/ui 10.26.1-snapshot-2 → 10.26.2
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 -18
- package/es/index.js +6 -5
- package/lib/index.js +50 -0
- package/package.json +78 -77
- package/src/index.ts +13 -2
- package/tsconfig.build.json +3 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/index.d.ts +7 -5
- package/types/index.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,30 +3,17 @@
|
|
|
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
|
-
## [10.26.
|
|
6
|
+
## [10.26.2](https://github.com/instructure/instructure-ui/compare/v10.26.1...v10.26.2) (2025-10-13)
|
|
7
7
|
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui
|
|
8
9
|
|
|
9
|
-
### Features
|
|
10
10
|
|
|
11
|
-
* **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
|
|
12
11
|
|
|
13
12
|
|
|
14
|
-
### BREAKING CHANGES
|
|
15
13
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
- remove `CodeEditor` component
|
|
20
|
-
- remove `@instui/theme-registry` package
|
|
21
|
-
- remove `@testable`, `@experimental`, `@hack` decorators
|
|
22
|
-
- InstUISettingsProvider's `as` prop is removed
|
|
23
|
-
- `canvas.use()`, `canvasHighContrast.use()` functions are removed
|
|
24
|
-
- `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
|
|
25
|
-
- `variables` field on theme objects are removed
|
|
26
|
-
- remove deprecated props from Table: Row's `isStacked`, Body's
|
|
27
|
-
`isStacked`, `hover`, and `headers`
|
|
28
|
-
- `Table`'s `caption` prop is now required
|
|
29
|
-
- `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
|
|
14
|
+
## [10.26.1](https://github.com/instructure/instructure-ui/compare/v10.26.0...v10.26.1) (2025-10-06)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @instructure/ui
|
|
30
17
|
|
|
31
18
|
|
|
32
19
|
|
package/es/index.js
CHANGED
|
@@ -33,6 +33,7 @@ export { BaseButton, Button, CloseButton, CondensedButton, IconButton, ToggleBut
|
|
|
33
33
|
export { Byline } from '@instructure/ui-byline';
|
|
34
34
|
export { Calendar, CalendarDay } from '@instructure/ui-calendar';
|
|
35
35
|
export { Checkbox, CheckboxGroup, CheckboxFacade, ToggleFacade } from '@instructure/ui-checkbox';
|
|
36
|
+
export { CodeEditor } from '@instructure/ui-code-editor';
|
|
36
37
|
export { ColorPicker, ColorMixer, ColorPreset, ColorContrast, ColorIndicator } from '@instructure/ui-color-picker';
|
|
37
38
|
export { DateInput, DateInput2 } from '@instructure/ui-date-input';
|
|
38
39
|
export { DateTimeInput } from '@instructure/ui-date-time-input';
|
|
@@ -44,10 +45,10 @@ export { Expandable } from '@instructure/ui-expandable';
|
|
|
44
45
|
export { FileDrop } from '@instructure/ui-file-drop';
|
|
45
46
|
export { Flex, FlexItem } from '@instructure/ui-flex';
|
|
46
47
|
export { Focusable } from '@instructure/ui-focusable';
|
|
47
|
-
export { FormField, FormFieldLabel, FormFieldMessage, FormFieldMessages, FormFieldLayout, FormFieldGroup } from '@instructure/ui-form-field';
|
|
48
|
+
export { FormField, FormFieldLabel, FormFieldMessage, FormFieldMessages, FormFieldLayout, FormFieldGroup, FormPropTypes } from '@instructure/ui-form-field';
|
|
48
49
|
export { Grid, GridRow, GridCol } from '@instructure/ui-grid';
|
|
49
50
|
export { Heading } from '@instructure/ui-heading';
|
|
50
|
-
export { ApplyLocale, TextDirectionContext, ApplyLocaleContext, textDirectionContextConsumer, DateTime, getTextDirection, Locale, DIRECTION } from '@instructure/ui-i18n';
|
|
51
|
+
export { ApplyLocale, TextDirectionContext, ApplyLocaleContext, textDirectionContextConsumer, DateTime, getTextDirection, I18nPropTypes, Locale, DIRECTION } from '@instructure/ui-i18n';
|
|
51
52
|
export * from '@instructure/ui-icons';
|
|
52
53
|
export { Img } from '@instructure/ui-img';
|
|
53
54
|
export { NutritionFacts, DataPermissionLevels, AiInformation } from '@instructure/ui-instructure';
|
|
@@ -56,7 +57,7 @@ export { List, ListItem, InlineList, InlineListItem } from '@instructure/ui-list
|
|
|
56
57
|
export { Menu, MenuItem, MenuItemGroup, MenuItemSeparator } from '@instructure/ui-menu';
|
|
57
58
|
export { MetricGroup, Metric } from '@instructure/ui-metric';
|
|
58
59
|
export { Modal, ModalBody, ModalFooter, ModalHeader } from '@instructure/ui-modal';
|
|
59
|
-
export { Transition, BaseTransition } from '@instructure/ui-motion';
|
|
60
|
+
export { Transition, transitionTypePropType, BaseTransition } from '@instructure/ui-motion';
|
|
60
61
|
export { AppNav, AppNavItem } from '@instructure/ui-navigation';
|
|
61
62
|
export { NumberInput } from '@instructure/ui-number-input';
|
|
62
63
|
export { Options, OptionSeparator, OptionItem, optionsThemeGenerator, optionsItemThemeGenerator, optionsSeparatorThemeGenerator } from '@instructure/ui-options';
|
|
@@ -66,7 +67,7 @@ export { Pagination, PaginationButton } from '@instructure/ui-pagination';
|
|
|
66
67
|
export { Pill } from '@instructure/ui-pill';
|
|
67
68
|
export { Popover } from '@instructure/ui-popover';
|
|
68
69
|
export { Portal } from '@instructure/ui-portal';
|
|
69
|
-
export { Position, calculateElementPosition, executeMirrorFunction, mirrorHorizontalPlacement, mirrorPlacement, parsePlacement } from '@instructure/ui-position';
|
|
70
|
+
export { Position, PositionPropTypes, calculateElementPosition, executeMirrorFunction, mirrorHorizontalPlacement, mirrorPlacement, parsePlacement } from '@instructure/ui-position';
|
|
70
71
|
export { ProgressBar, ProgressCircle } from '@instructure/ui-progress';
|
|
71
72
|
export { RadioInput, RadioInputGroup } from '@instructure/ui-radio-input';
|
|
72
73
|
export { RangeInput } from '@instructure/ui-range-input';
|
|
@@ -85,7 +86,7 @@ export { Tag } from '@instructure/ui-tag';
|
|
|
85
86
|
export { Text } from '@instructure/ui-text';
|
|
86
87
|
export { TextArea } from '@instructure/ui-text-area';
|
|
87
88
|
export { TextInput } from '@instructure/ui-text-input';
|
|
88
|
-
export { canvas, canvasHighContrast, primitives, additionalPrimitives, dataVisualization } from '@instructure/ui-themes';
|
|
89
|
+
export { canvas, canvasThemeLocal, canvasHighContrast, canvasHighContrastThemeLocal, primitives, additionalPrimitives, dataVisualization } from '@instructure/ui-themes';
|
|
89
90
|
export { TimeSelect } from '@instructure/ui-time-select';
|
|
90
91
|
export { ToggleDetails, ToggleGroup } from '@instructure/ui-toggle-details';
|
|
91
92
|
export { Tooltip } from '@instructure/ui-tooltip';
|
package/lib/index.js
CHANGED
|
@@ -28,6 +28,7 @@ var _exportNames = {
|
|
|
28
28
|
CheckboxGroup: true,
|
|
29
29
|
CheckboxFacade: true,
|
|
30
30
|
ToggleFacade: true,
|
|
31
|
+
CodeEditor: true,
|
|
31
32
|
ColorPicker: true,
|
|
32
33
|
ColorMixer: true,
|
|
33
34
|
ColorPreset: true,
|
|
@@ -58,6 +59,7 @@ var _exportNames = {
|
|
|
58
59
|
FormFieldMessages: true,
|
|
59
60
|
FormFieldLayout: true,
|
|
60
61
|
FormFieldGroup: true,
|
|
62
|
+
FormPropTypes: true,
|
|
61
63
|
Grid: true,
|
|
62
64
|
GridRow: true,
|
|
63
65
|
GridCol: true,
|
|
@@ -68,6 +70,7 @@ var _exportNames = {
|
|
|
68
70
|
textDirectionContextConsumer: true,
|
|
69
71
|
DateTime: true,
|
|
70
72
|
getTextDirection: true,
|
|
73
|
+
I18nPropTypes: true,
|
|
71
74
|
Locale: true,
|
|
72
75
|
DIRECTION: true,
|
|
73
76
|
Img: true,
|
|
@@ -90,6 +93,7 @@ var _exportNames = {
|
|
|
90
93
|
ModalFooter: true,
|
|
91
94
|
ModalHeader: true,
|
|
92
95
|
Transition: true,
|
|
96
|
+
transitionTypePropType: true,
|
|
93
97
|
BaseTransition: true,
|
|
94
98
|
AppNav: true,
|
|
95
99
|
AppNavItem: true,
|
|
@@ -110,6 +114,7 @@ var _exportNames = {
|
|
|
110
114
|
Popover: true,
|
|
111
115
|
Portal: true,
|
|
112
116
|
Position: true,
|
|
117
|
+
PositionPropTypes: true,
|
|
113
118
|
calculateElementPosition: true,
|
|
114
119
|
executeMirrorFunction: true,
|
|
115
120
|
mirrorHorizontalPlacement: true,
|
|
@@ -157,7 +162,9 @@ var _exportNames = {
|
|
|
157
162
|
TextArea: true,
|
|
158
163
|
TextInput: true,
|
|
159
164
|
canvas: true,
|
|
165
|
+
canvasThemeLocal: true,
|
|
160
166
|
canvasHighContrast: true,
|
|
167
|
+
canvasHighContrastThemeLocal: true,
|
|
161
168
|
primitives: true,
|
|
162
169
|
additionalPrimitives: true,
|
|
163
170
|
dataVisualization: true,
|
|
@@ -315,6 +322,12 @@ Object.defineProperty(exports, "CloseButton", {
|
|
|
315
322
|
return _uiButtons.CloseButton;
|
|
316
323
|
}
|
|
317
324
|
});
|
|
325
|
+
Object.defineProperty(exports, "CodeEditor", {
|
|
326
|
+
enumerable: true,
|
|
327
|
+
get: function () {
|
|
328
|
+
return _uiCodeEditor.CodeEditor;
|
|
329
|
+
}
|
|
330
|
+
});
|
|
318
331
|
Object.defineProperty(exports, "ColorContrast", {
|
|
319
332
|
enumerable: true,
|
|
320
333
|
get: function () {
|
|
@@ -519,6 +532,12 @@ Object.defineProperty(exports, "FormFieldMessages", {
|
|
|
519
532
|
return _uiFormField.FormFieldMessages;
|
|
520
533
|
}
|
|
521
534
|
});
|
|
535
|
+
Object.defineProperty(exports, "FormPropTypes", {
|
|
536
|
+
enumerable: true,
|
|
537
|
+
get: function () {
|
|
538
|
+
return _uiFormField.FormPropTypes;
|
|
539
|
+
}
|
|
540
|
+
});
|
|
522
541
|
Object.defineProperty(exports, "Grid", {
|
|
523
542
|
enumerable: true,
|
|
524
543
|
get: function () {
|
|
@@ -543,6 +562,12 @@ Object.defineProperty(exports, "Heading", {
|
|
|
543
562
|
return _uiHeading.Heading;
|
|
544
563
|
}
|
|
545
564
|
});
|
|
565
|
+
Object.defineProperty(exports, "I18nPropTypes", {
|
|
566
|
+
enumerable: true,
|
|
567
|
+
get: function () {
|
|
568
|
+
return _uiI18n.I18nPropTypes;
|
|
569
|
+
}
|
|
570
|
+
});
|
|
546
571
|
Object.defineProperty(exports, "IconButton", {
|
|
547
572
|
enumerable: true,
|
|
548
573
|
get: function () {
|
|
@@ -759,6 +784,12 @@ Object.defineProperty(exports, "Position", {
|
|
|
759
784
|
return _uiPosition.Position;
|
|
760
785
|
}
|
|
761
786
|
});
|
|
787
|
+
Object.defineProperty(exports, "PositionPropTypes", {
|
|
788
|
+
enumerable: true,
|
|
789
|
+
get: function () {
|
|
790
|
+
return _uiPosition.PositionPropTypes;
|
|
791
|
+
}
|
|
792
|
+
});
|
|
762
793
|
Object.defineProperty(exports, "PresentationContent", {
|
|
763
794
|
enumerable: true,
|
|
764
795
|
get: function () {
|
|
@@ -1167,6 +1198,18 @@ Object.defineProperty(exports, "canvasHighContrast", {
|
|
|
1167
1198
|
return _uiThemes.canvasHighContrast;
|
|
1168
1199
|
}
|
|
1169
1200
|
});
|
|
1201
|
+
Object.defineProperty(exports, "canvasHighContrastThemeLocal", {
|
|
1202
|
+
enumerable: true,
|
|
1203
|
+
get: function () {
|
|
1204
|
+
return _uiThemes.canvasHighContrastThemeLocal;
|
|
1205
|
+
}
|
|
1206
|
+
});
|
|
1207
|
+
Object.defineProperty(exports, "canvasThemeLocal", {
|
|
1208
|
+
enumerable: true,
|
|
1209
|
+
get: function () {
|
|
1210
|
+
return _uiThemes.canvasThemeLocal;
|
|
1211
|
+
}
|
|
1212
|
+
});
|
|
1170
1213
|
Object.defineProperty(exports, "dataVisualization", {
|
|
1171
1214
|
enumerable: true,
|
|
1172
1215
|
get: function () {
|
|
@@ -1245,6 +1288,12 @@ Object.defineProperty(exports, "textDirectionContextConsumer", {
|
|
|
1245
1288
|
return _uiI18n.textDirectionContextConsumer;
|
|
1246
1289
|
}
|
|
1247
1290
|
});
|
|
1291
|
+
Object.defineProperty(exports, "transitionTypePropType", {
|
|
1292
|
+
enumerable: true,
|
|
1293
|
+
get: function () {
|
|
1294
|
+
return _uiMotion.transitionTypePropType;
|
|
1295
|
+
}
|
|
1296
|
+
});
|
|
1248
1297
|
Object.defineProperty(exports, "withStyle", {
|
|
1249
1298
|
enumerable: true,
|
|
1250
1299
|
get: function () {
|
|
@@ -1262,6 +1311,7 @@ var _uiButtons = require("@instructure/ui-buttons");
|
|
|
1262
1311
|
var _uiByline = require("@instructure/ui-byline");
|
|
1263
1312
|
var _uiCalendar = require("@instructure/ui-calendar");
|
|
1264
1313
|
var _uiCheckbox = require("@instructure/ui-checkbox");
|
|
1314
|
+
var _uiCodeEditor = require("@instructure/ui-code-editor");
|
|
1265
1315
|
var _uiColorPicker = require("@instructure/ui-color-picker");
|
|
1266
1316
|
var _uiDateInput = require("@instructure/ui-date-input");
|
|
1267
1317
|
var _uiDateTimeInput = require("@instructure/ui-date-time-input");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui",
|
|
3
|
-
"version": "10.26.
|
|
3
|
+
"version": "10.26.2",
|
|
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",
|
|
@@ -24,89 +24,90 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.27.6",
|
|
27
|
-
"@instructure/emotion": "10.26.
|
|
28
|
-
"@instructure/ui-a11y-content": "10.26.
|
|
29
|
-
"@instructure/ui-alerts": "10.26.
|
|
30
|
-
"@instructure/ui-avatar": "10.26.
|
|
31
|
-
"@instructure/ui-badge": "10.26.
|
|
32
|
-
"@instructure/ui-billboard": "10.26.
|
|
33
|
-
"@instructure/ui-breadcrumb": "10.26.
|
|
34
|
-
"@instructure/ui-buttons": "10.26.
|
|
35
|
-
"@instructure/ui-byline": "10.26.
|
|
36
|
-
"@instructure/ui-calendar": "10.26.
|
|
37
|
-
"@instructure/ui-checkbox": "10.26.
|
|
38
|
-
"@instructure/ui-
|
|
39
|
-
"@instructure/ui-
|
|
40
|
-
"@instructure/ui-date-
|
|
41
|
-
"@instructure/ui-
|
|
42
|
-
"@instructure/ui-
|
|
43
|
-
"@instructure/ui-
|
|
44
|
-
"@instructure/ui-
|
|
45
|
-
"@instructure/ui-
|
|
46
|
-
"@instructure/ui-
|
|
47
|
-
"@instructure/ui-
|
|
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-
|
|
66
|
-
"@instructure/ui-
|
|
67
|
-
"@instructure/ui-
|
|
68
|
-
"@instructure/ui-
|
|
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-
|
|
79
|
-
"@instructure/ui-
|
|
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-text
|
|
89
|
-
"@instructure/ui-text-
|
|
90
|
-
"@instructure/ui-
|
|
91
|
-
"@instructure/ui-
|
|
92
|
-
"@instructure/ui-
|
|
93
|
-
"@instructure/ui-
|
|
94
|
-
"@instructure/ui-
|
|
95
|
-
"@instructure/ui-
|
|
96
|
-
"@instructure/ui-
|
|
97
|
-
"@instructure/ui-
|
|
98
|
-
"@instructure/ui-truncate-
|
|
99
|
-
"@instructure/ui-
|
|
27
|
+
"@instructure/emotion": "10.26.2",
|
|
28
|
+
"@instructure/ui-a11y-content": "10.26.2",
|
|
29
|
+
"@instructure/ui-alerts": "10.26.2",
|
|
30
|
+
"@instructure/ui-avatar": "10.26.2",
|
|
31
|
+
"@instructure/ui-badge": "10.26.2",
|
|
32
|
+
"@instructure/ui-billboard": "10.26.2",
|
|
33
|
+
"@instructure/ui-breadcrumb": "10.26.2",
|
|
34
|
+
"@instructure/ui-buttons": "10.26.2",
|
|
35
|
+
"@instructure/ui-byline": "10.26.2",
|
|
36
|
+
"@instructure/ui-calendar": "10.26.2",
|
|
37
|
+
"@instructure/ui-checkbox": "10.26.2",
|
|
38
|
+
"@instructure/ui-code-editor": "10.26.2",
|
|
39
|
+
"@instructure/ui-color-picker": "10.26.2",
|
|
40
|
+
"@instructure/ui-date-input": "10.26.2",
|
|
41
|
+
"@instructure/ui-date-time-input": "10.26.2",
|
|
42
|
+
"@instructure/ui-dialog": "10.26.2",
|
|
43
|
+
"@instructure/ui-drawer-layout": "10.26.2",
|
|
44
|
+
"@instructure/ui-drilldown": "10.26.2",
|
|
45
|
+
"@instructure/ui-editable": "10.26.2",
|
|
46
|
+
"@instructure/ui-expandable": "10.26.2",
|
|
47
|
+
"@instructure/ui-file-drop": "10.26.2",
|
|
48
|
+
"@instructure/ui-flex": "10.26.2",
|
|
49
|
+
"@instructure/ui-focusable": "10.26.2",
|
|
50
|
+
"@instructure/ui-form-field": "10.26.2",
|
|
51
|
+
"@instructure/ui-grid": "10.26.2",
|
|
52
|
+
"@instructure/ui-heading": "10.26.2",
|
|
53
|
+
"@instructure/ui-i18n": "10.26.2",
|
|
54
|
+
"@instructure/ui-icons": "10.26.2",
|
|
55
|
+
"@instructure/ui-img": "10.26.2",
|
|
56
|
+
"@instructure/ui-instructure": "10.26.2",
|
|
57
|
+
"@instructure/ui-link": "10.26.2",
|
|
58
|
+
"@instructure/ui-list": "10.26.2",
|
|
59
|
+
"@instructure/ui-menu": "10.26.2",
|
|
60
|
+
"@instructure/ui-metric": "10.26.2",
|
|
61
|
+
"@instructure/ui-modal": "10.26.2",
|
|
62
|
+
"@instructure/ui-motion": "10.26.2",
|
|
63
|
+
"@instructure/ui-navigation": "10.26.2",
|
|
64
|
+
"@instructure/ui-number-input": "10.26.2",
|
|
65
|
+
"@instructure/ui-options": "10.26.2",
|
|
66
|
+
"@instructure/ui-overlays": "10.26.2",
|
|
67
|
+
"@instructure/ui-pages": "10.26.2",
|
|
68
|
+
"@instructure/ui-pagination": "10.26.2",
|
|
69
|
+
"@instructure/ui-pill": "10.26.2",
|
|
70
|
+
"@instructure/ui-popover": "10.26.2",
|
|
71
|
+
"@instructure/ui-portal": "10.26.2",
|
|
72
|
+
"@instructure/ui-position": "10.26.2",
|
|
73
|
+
"@instructure/ui-progress": "10.26.2",
|
|
74
|
+
"@instructure/ui-radio-input": "10.26.2",
|
|
75
|
+
"@instructure/ui-range-input": "10.26.2",
|
|
76
|
+
"@instructure/ui-rating": "10.26.2",
|
|
77
|
+
"@instructure/ui-responsive": "10.26.2",
|
|
78
|
+
"@instructure/ui-select": "10.26.2",
|
|
79
|
+
"@instructure/ui-selectable": "10.26.2",
|
|
80
|
+
"@instructure/ui-side-nav-bar": "10.26.2",
|
|
81
|
+
"@instructure/ui-simple-select": "10.26.2",
|
|
82
|
+
"@instructure/ui-source-code-editor": "10.26.2",
|
|
83
|
+
"@instructure/ui-spinner": "10.26.2",
|
|
84
|
+
"@instructure/ui-svg-images": "10.26.2",
|
|
85
|
+
"@instructure/ui-table": "10.26.2",
|
|
86
|
+
"@instructure/ui-tabs": "10.26.2",
|
|
87
|
+
"@instructure/ui-tag": "10.26.2",
|
|
88
|
+
"@instructure/ui-text": "10.26.2",
|
|
89
|
+
"@instructure/ui-text-area": "10.26.2",
|
|
90
|
+
"@instructure/ui-text-input": "10.26.2",
|
|
91
|
+
"@instructure/ui-themes": "10.26.2",
|
|
92
|
+
"@instructure/ui-time-select": "10.26.2",
|
|
93
|
+
"@instructure/ui-toggle-details": "10.26.2",
|
|
94
|
+
"@instructure/ui-tooltip": "10.26.2",
|
|
95
|
+
"@instructure/ui-top-nav-bar": "10.26.2",
|
|
96
|
+
"@instructure/ui-tray": "10.26.2",
|
|
97
|
+
"@instructure/ui-tree-browser": "10.26.2",
|
|
98
|
+
"@instructure/ui-truncate-list": "10.26.2",
|
|
99
|
+
"@instructure/ui-truncate-text": "10.26.2",
|
|
100
|
+
"@instructure/ui-view": "10.26.2"
|
|
100
101
|
},
|
|
101
102
|
"devDependencies": {
|
|
102
|
-
"@instructure/ui-babel-preset": "10.26.
|
|
103
|
+
"@instructure/ui-babel-preset": "10.26.2"
|
|
103
104
|
},
|
|
104
105
|
"publishConfig": {
|
|
105
106
|
"access": "public"
|
|
106
107
|
},
|
|
107
108
|
"sideEffects": false,
|
|
108
109
|
"peerDependencies": {
|
|
109
|
-
"react": ">=
|
|
110
|
-
"react-dom": ">=
|
|
110
|
+
"react": ">= 16.14 <= 18",
|
|
111
|
+
"react-dom": ">= 16.14 <= 18"
|
|
111
112
|
}
|
|
112
113
|
}
|
package/src/index.ts
CHANGED
|
@@ -79,6 +79,8 @@ export type {
|
|
|
79
79
|
CheckboxGroupProps,
|
|
80
80
|
CheckboxProps
|
|
81
81
|
} from '@instructure/ui-checkbox'
|
|
82
|
+
export { CodeEditor } from '@instructure/ui-code-editor'
|
|
83
|
+
export type { CodeEditorProps } from '@instructure/ui-code-editor'
|
|
82
84
|
export {
|
|
83
85
|
ColorPicker,
|
|
84
86
|
ColorMixer,
|
|
@@ -150,7 +152,8 @@ export {
|
|
|
150
152
|
FormFieldMessage,
|
|
151
153
|
FormFieldMessages,
|
|
152
154
|
FormFieldLayout,
|
|
153
|
-
FormFieldGroup
|
|
155
|
+
FormFieldGroup,
|
|
156
|
+
FormPropTypes
|
|
154
157
|
} from '@instructure/ui-form-field'
|
|
155
158
|
export type {
|
|
156
159
|
FormFieldGroupProps,
|
|
@@ -179,6 +182,7 @@ export {
|
|
|
179
182
|
textDirectionContextConsumer,
|
|
180
183
|
DateTime,
|
|
181
184
|
getTextDirection,
|
|
185
|
+
I18nPropTypes,
|
|
182
186
|
Locale,
|
|
183
187
|
DIRECTION
|
|
184
188
|
} from '@instructure/ui-i18n'
|
|
@@ -240,7 +244,11 @@ export type {
|
|
|
240
244
|
ModalFooterProps,
|
|
241
245
|
ModalHeaderProps
|
|
242
246
|
} from '@instructure/ui-modal'
|
|
243
|
-
export {
|
|
247
|
+
export {
|
|
248
|
+
Transition,
|
|
249
|
+
transitionTypePropType,
|
|
250
|
+
BaseTransition
|
|
251
|
+
} from '@instructure/ui-motion'
|
|
244
252
|
export type {
|
|
245
253
|
TransitionProps,
|
|
246
254
|
TransitionType,
|
|
@@ -282,6 +290,7 @@ export { Portal } from '@instructure/ui-portal'
|
|
|
282
290
|
export type { PortalProps, PortalNode } from '@instructure/ui-portal'
|
|
283
291
|
export {
|
|
284
292
|
Position,
|
|
293
|
+
PositionPropTypes,
|
|
285
294
|
calculateElementPosition,
|
|
286
295
|
executeMirrorFunction,
|
|
287
296
|
mirrorHorizontalPlacement,
|
|
@@ -394,7 +403,9 @@ export { TextInput } from '@instructure/ui-text-input'
|
|
|
394
403
|
export type { TextInputProps } from '@instructure/ui-text-input'
|
|
395
404
|
export {
|
|
396
405
|
canvas,
|
|
406
|
+
canvasThemeLocal,
|
|
397
407
|
canvasHighContrast,
|
|
408
|
+
canvasHighContrastThemeLocal,
|
|
398
409
|
primitives,
|
|
399
410
|
additionalPrimitives,
|
|
400
411
|
dataVisualization
|