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