@instructure/ui 11.6.0 → 11.6.1-snapshot-129
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 +30 -290
- package/es/{index.js → v11_6.js} +59 -59
- package/es/v11_7.js +97 -0
- package/lib/{index.js → v11_6.js} +203 -203
- package/lib/v11_7.js +1337 -0
- package/package.json +104 -82
- package/src/{index.ts → v11_6.ts} +135 -117
- package/src/v11_7.ts +502 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/{index.d.ts → v11_6.d.ts} +118 -118
- package/types/v11_6.d.ts.map +1 -0
- package/types/v11_7.d.ts +144 -0
- package/types/v11_7.d.ts.map +1 -0
- package/types/index.d.ts.map +0 -1
|
@@ -33,19 +33,19 @@ export type {
|
|
|
33
33
|
ScreenReaderContentProps,
|
|
34
34
|
PresentationContentProps
|
|
35
35
|
} from '@instructure/ui-a11y-content'
|
|
36
|
-
export { Alert } from '@instructure/ui-alerts'
|
|
37
|
-
export type { AlertProps } from '@instructure/ui-alerts'
|
|
38
|
-
export { Avatar } from '@instructure/ui-avatar'
|
|
39
|
-
export type { AvatarProps } from '@instructure/ui-avatar'
|
|
40
|
-
export { Badge } from '@instructure/ui-badge'
|
|
41
|
-
export type { BadgeProps } from '@instructure/ui-badge'
|
|
42
|
-
export { Billboard } from '@instructure/ui-billboard'
|
|
43
|
-
export type { BillboardProps } from '@instructure/ui-billboard'
|
|
44
|
-
export { Breadcrumb, BreadcrumbLink } from '@instructure/ui-breadcrumb'
|
|
36
|
+
export { Alert } from '@instructure/ui-alerts/v11_6'
|
|
37
|
+
export type { AlertProps } from '@instructure/ui-alerts/v11_6'
|
|
38
|
+
export { Avatar } from '@instructure/ui-avatar/v11_6'
|
|
39
|
+
export type { AvatarProps } from '@instructure/ui-avatar/v11_6'
|
|
40
|
+
export { Badge } from '@instructure/ui-badge/v11_6'
|
|
41
|
+
export type { BadgeProps } from '@instructure/ui-badge/v11_6'
|
|
42
|
+
export { Billboard } from '@instructure/ui-billboard/v11_6'
|
|
43
|
+
export type { BillboardProps } from '@instructure/ui-billboard/v11_6'
|
|
44
|
+
export { Breadcrumb, BreadcrumbLink } from '@instructure/ui-breadcrumb/v11_6'
|
|
45
45
|
export type {
|
|
46
46
|
BreadcrumbProps,
|
|
47
47
|
BreadcrumbLinkProps
|
|
48
|
-
} from '@instructure/ui-breadcrumb'
|
|
48
|
+
} from '@instructure/ui-breadcrumb/v11_6'
|
|
49
49
|
export {
|
|
50
50
|
BaseButton,
|
|
51
51
|
Button,
|
|
@@ -53,7 +53,7 @@ export {
|
|
|
53
53
|
CondensedButton,
|
|
54
54
|
IconButton,
|
|
55
55
|
ToggleButton
|
|
56
|
-
} from '@instructure/ui-buttons'
|
|
56
|
+
} from '@instructure/ui-buttons/v11_6'
|
|
57
57
|
export type {
|
|
58
58
|
BaseButtonOwnProps,
|
|
59
59
|
ButtonProps,
|
|
@@ -62,62 +62,65 @@ export type {
|
|
|
62
62
|
CloseButtonProps,
|
|
63
63
|
CondensedButtonProps,
|
|
64
64
|
IconButtonProps
|
|
65
|
-
} from '@instructure/ui-buttons'
|
|
66
|
-
export { Byline } from '@instructure/ui-byline'
|
|
67
|
-
export type { BylineProps } from '@instructure/ui-byline'
|
|
68
|
-
export { Calendar, CalendarDay } from '@instructure/ui-calendar'
|
|
69
|
-
export type {
|
|
65
|
+
} from '@instructure/ui-buttons/v11_6'
|
|
66
|
+
export { Byline } from '@instructure/ui-byline/v11_6'
|
|
67
|
+
export type { BylineProps } from '@instructure/ui-byline/v11_6'
|
|
68
|
+
export { Calendar, CalendarDay } from '@instructure/ui-calendar/v11_6'
|
|
69
|
+
export type {
|
|
70
|
+
CalendarDayProps,
|
|
71
|
+
CalendarProps
|
|
72
|
+
} from '@instructure/ui-calendar/v11_6'
|
|
70
73
|
export {
|
|
71
74
|
Checkbox,
|
|
72
75
|
CheckboxGroup,
|
|
73
76
|
CheckboxFacade,
|
|
74
77
|
ToggleFacade
|
|
75
|
-
} from '@instructure/ui-checkbox'
|
|
78
|
+
} from '@instructure/ui-checkbox/v11_6'
|
|
76
79
|
export type {
|
|
77
80
|
CheckboxFacadeProps,
|
|
78
81
|
ToggleFacadeProps,
|
|
79
82
|
CheckboxGroupProps,
|
|
80
83
|
CheckboxProps
|
|
81
|
-
} from '@instructure/ui-checkbox'
|
|
84
|
+
} from '@instructure/ui-checkbox/v11_6'
|
|
82
85
|
export {
|
|
83
86
|
ColorPicker,
|
|
84
87
|
ColorMixer,
|
|
85
88
|
ColorPreset,
|
|
86
89
|
ColorContrast,
|
|
87
90
|
ColorIndicator
|
|
88
|
-
} from '@instructure/ui-color-picker'
|
|
91
|
+
} from '@instructure/ui-color-picker/v11_6'
|
|
89
92
|
export type {
|
|
90
93
|
ColorContrastProps,
|
|
91
94
|
ColorIndicatorProps,
|
|
92
95
|
ColorMixerProps,
|
|
93
96
|
ColorPickerProps,
|
|
94
97
|
ColorPresetProps
|
|
95
|
-
} from '@instructure/ui-color-picker'
|
|
96
|
-
export { DateInput, DateInput2 } from '@instructure/ui-date-input'
|
|
98
|
+
} from '@instructure/ui-color-picker/v11_6'
|
|
99
|
+
export { DateInput, DateInput2 } from '@instructure/ui-date-input/v11_6'
|
|
97
100
|
export type {
|
|
98
101
|
DateInputProps,
|
|
99
102
|
DateInput2Props
|
|
100
|
-
} from '@instructure/ui-date-input'
|
|
101
|
-
export { DateTimeInput } from '@instructure/ui-date-time-input'
|
|
103
|
+
} from '@instructure/ui-date-input/v11_6'
|
|
104
|
+
export { DateTimeInput } from '@instructure/ui-date-time-input/v11_6'
|
|
102
105
|
export { Dialog } from '@instructure/ui-dialog'
|
|
103
106
|
export type { DialogProps } from '@instructure/ui-dialog'
|
|
104
107
|
export {
|
|
105
108
|
DrawerLayout,
|
|
106
109
|
DrawerContent,
|
|
107
110
|
DrawerTray
|
|
108
|
-
} from '@instructure/ui-drawer-layout'
|
|
111
|
+
} from '@instructure/ui-drawer-layout/v11_6'
|
|
109
112
|
export type {
|
|
110
113
|
DrawerLayoutProps,
|
|
111
114
|
DrawerLayoutContentProps,
|
|
112
115
|
DrawerLayoutTrayProps
|
|
113
|
-
} from '@instructure/ui-drawer-layout'
|
|
116
|
+
} from '@instructure/ui-drawer-layout/v11_6'
|
|
114
117
|
export {
|
|
115
118
|
Drilldown,
|
|
116
119
|
DrilldownGroup,
|
|
117
120
|
DrilldownOption,
|
|
118
121
|
DrilldownPage,
|
|
119
122
|
DrilldownSeparator
|
|
120
|
-
} from '@instructure/ui-drilldown'
|
|
123
|
+
} from '@instructure/ui-drilldown/v11_6'
|
|
121
124
|
export type {
|
|
122
125
|
DrilldownGroupChild,
|
|
123
126
|
DrilldownGroupProps,
|
|
@@ -129,19 +132,22 @@ export type {
|
|
|
129
132
|
DrilldownProps,
|
|
130
133
|
DrilldownSeparatorChild,
|
|
131
134
|
DrilldownSeparatorProps
|
|
132
|
-
} from '@instructure/ui-drilldown'
|
|
133
|
-
export { Editable, InPlaceEdit } from '@instructure/ui-editable'
|
|
134
|
-
export type {
|
|
135
|
+
} from '@instructure/ui-drilldown/v11_6'
|
|
136
|
+
export { Editable, InPlaceEdit } from '@instructure/ui-editable/v11_6'
|
|
137
|
+
export type {
|
|
138
|
+
EditableProps,
|
|
139
|
+
InPlaceEditProps
|
|
140
|
+
} from '@instructure/ui-editable/v11_6'
|
|
135
141
|
export { Expandable } from '@instructure/ui-expandable'
|
|
136
142
|
export type {
|
|
137
143
|
ExpandableProps,
|
|
138
144
|
RenderExpandable,
|
|
139
145
|
ExpandableToggleProps
|
|
140
146
|
} from '@instructure/ui-expandable'
|
|
141
|
-
export { FileDrop } from '@instructure/ui-file-drop'
|
|
142
|
-
export type { FileDropProps } from '@instructure/ui-file-drop'
|
|
143
|
-
export { Flex, FlexItem } from '@instructure/ui-flex'
|
|
144
|
-
export type { FlexProps, FlexItemProps } from '@instructure/ui-flex'
|
|
147
|
+
export { FileDrop } from '@instructure/ui-file-drop/v11_6'
|
|
148
|
+
export type { FileDropProps } from '@instructure/ui-file-drop/v11_6'
|
|
149
|
+
export { Flex, FlexItem } from '@instructure/ui-flex/v11_6'
|
|
150
|
+
export type { FlexProps, FlexItemProps } from '@instructure/ui-flex/v11_6'
|
|
145
151
|
export { Focusable } from '@instructure/ui-focusable'
|
|
146
152
|
export type { FocusableProps } from '@instructure/ui-focusable'
|
|
147
153
|
export {
|
|
@@ -151,7 +157,7 @@ export {
|
|
|
151
157
|
FormFieldMessages,
|
|
152
158
|
FormFieldLayout,
|
|
153
159
|
FormFieldGroup
|
|
154
|
-
} from '@instructure/ui-form-field'
|
|
160
|
+
} from '@instructure/ui-form-field/v11_6'
|
|
155
161
|
export type {
|
|
156
162
|
FormFieldGroupProps,
|
|
157
163
|
FormFieldMessageProps,
|
|
@@ -162,16 +168,16 @@ export type {
|
|
|
162
168
|
FormFieldProps,
|
|
163
169
|
FormMessage,
|
|
164
170
|
FormMessageType
|
|
165
|
-
} from '@instructure/ui-form-field'
|
|
166
|
-
export { Grid, GridRow, GridCol } from '@instructure/ui-grid'
|
|
171
|
+
} from '@instructure/ui-form-field/v11_6'
|
|
172
|
+
export { Grid, GridRow, GridCol } from '@instructure/ui-grid/v11_6'
|
|
167
173
|
export type {
|
|
168
174
|
GridProps,
|
|
169
175
|
GridRowProps,
|
|
170
176
|
GridColProps,
|
|
171
177
|
GridBreakpoints
|
|
172
|
-
} from '@instructure/ui-grid'
|
|
173
|
-
export { Heading } from '@instructure/ui-heading'
|
|
174
|
-
export type { HeadingProps } from '@instructure/ui-heading'
|
|
178
|
+
} from '@instructure/ui-grid/v11_6'
|
|
179
|
+
export { Heading } from '@instructure/ui-heading/v11_6'
|
|
180
|
+
export type { HeadingProps } from '@instructure/ui-heading/v11_6'
|
|
175
181
|
export {
|
|
176
182
|
ApplyLocale,
|
|
177
183
|
TextDirectionContext,
|
|
@@ -188,68 +194,74 @@ export type {
|
|
|
188
194
|
ApplyLocaleProps
|
|
189
195
|
} from '@instructure/ui-i18n'
|
|
190
196
|
export * from '@instructure/ui-icons'
|
|
191
|
-
export { Img } from '@instructure/ui-img'
|
|
192
|
-
export type { ImgProps } from '@instructure/ui-img'
|
|
197
|
+
export { Img } from '@instructure/ui-img/v11_6'
|
|
198
|
+
export type { ImgProps } from '@instructure/ui-img/v11_6'
|
|
193
199
|
export {
|
|
194
200
|
NutritionFacts,
|
|
195
201
|
DataPermissionLevels,
|
|
196
202
|
AiInformation
|
|
197
|
-
} from '@instructure/ui-instructure'
|
|
203
|
+
} from '@instructure/ui-instructure/v11_6'
|
|
198
204
|
export type {
|
|
199
205
|
NutritionFactsProps,
|
|
200
206
|
DataPermissionLevelsProps,
|
|
201
207
|
AiInformationProps
|
|
202
|
-
} from '@instructure/ui-instructure'
|
|
203
|
-
export { Link } from '@instructure/ui-link'
|
|
204
|
-
export type { LinkProps } from '@instructure/ui-link'
|
|
208
|
+
} from '@instructure/ui-instructure/v11_6'
|
|
209
|
+
export { Link } from '@instructure/ui-link/v11_6'
|
|
210
|
+
export type { LinkProps } from '@instructure/ui-link/v11_6'
|
|
205
211
|
export {
|
|
206
212
|
List,
|
|
207
213
|
ListItem,
|
|
208
214
|
InlineList,
|
|
209
215
|
InlineListItem
|
|
210
|
-
} from '@instructure/ui-list'
|
|
216
|
+
} from '@instructure/ui-list/v11_6'
|
|
211
217
|
export type {
|
|
212
218
|
ListProps,
|
|
213
219
|
ListItemProps,
|
|
214
220
|
InlineListProps,
|
|
215
221
|
InlineListItemProps
|
|
216
|
-
} from '@instructure/ui-list'
|
|
222
|
+
} from '@instructure/ui-list/v11_6'
|
|
217
223
|
export {
|
|
218
224
|
Menu,
|
|
219
225
|
MenuItem,
|
|
220
226
|
MenuItemGroup,
|
|
221
227
|
MenuItemSeparator
|
|
222
|
-
} from '@instructure/ui-menu'
|
|
228
|
+
} from '@instructure/ui-menu/v11_6'
|
|
223
229
|
export type {
|
|
224
230
|
MenuProps,
|
|
225
231
|
MenuItemProps,
|
|
226
232
|
MenuGroupProps,
|
|
227
233
|
MenuSeparatorProps
|
|
228
|
-
} from '@instructure/ui-menu'
|
|
229
|
-
export { MetricGroup, Metric } from '@instructure/ui-metric'
|
|
230
|
-
export type {
|
|
234
|
+
} from '@instructure/ui-menu/v11_6'
|
|
235
|
+
export { MetricGroup, Metric } from '@instructure/ui-metric/v11_6'
|
|
236
|
+
export type {
|
|
237
|
+
MetricGroupProps,
|
|
238
|
+
MetricProps
|
|
239
|
+
} from '@instructure/ui-metric/v11_6'
|
|
231
240
|
export {
|
|
232
241
|
Modal,
|
|
233
242
|
ModalBody,
|
|
234
243
|
ModalFooter,
|
|
235
244
|
ModalHeader
|
|
236
|
-
} from '@instructure/ui-modal'
|
|
245
|
+
} from '@instructure/ui-modal/v11_6'
|
|
237
246
|
export type {
|
|
238
247
|
ModalProps,
|
|
239
248
|
ModalBodyProps,
|
|
240
249
|
ModalFooterProps,
|
|
241
250
|
ModalHeaderProps
|
|
242
|
-
} from '@instructure/ui-modal'
|
|
251
|
+
} from '@instructure/ui-modal/v11_6'
|
|
243
252
|
export { Transition, BaseTransition } from '@instructure/ui-motion'
|
|
244
253
|
export type {
|
|
245
254
|
TransitionProps,
|
|
246
255
|
TransitionType,
|
|
247
256
|
BaseTransitionStatesType
|
|
248
257
|
} from '@instructure/ui-motion'
|
|
249
|
-
export { AppNav, AppNavItem } from '@instructure/ui-navigation'
|
|
250
|
-
export type {
|
|
251
|
-
|
|
252
|
-
|
|
258
|
+
export { AppNav, AppNavItem } from '@instructure/ui-navigation/v11_6'
|
|
259
|
+
export type {
|
|
260
|
+
AppNavProps,
|
|
261
|
+
AppNavItemProps
|
|
262
|
+
} from '@instructure/ui-navigation/v11_6'
|
|
263
|
+
export { NumberInput } from '@instructure/ui-number-input/v11_6'
|
|
264
|
+
export type { NumberInputProps } from '@instructure/ui-number-input/v11_6'
|
|
253
265
|
export {
|
|
254
266
|
Options,
|
|
255
267
|
OptionSeparator,
|
|
@@ -257,27 +269,30 @@ export {
|
|
|
257
269
|
optionsThemeGenerator,
|
|
258
270
|
optionsItemThemeGenerator,
|
|
259
271
|
optionsSeparatorThemeGenerator
|
|
260
|
-
} from '@instructure/ui-options'
|
|
272
|
+
} from '@instructure/ui-options/v11_6'
|
|
261
273
|
export type {
|
|
262
274
|
OptionsItemProps,
|
|
263
275
|
OptionsItemRenderProps,
|
|
264
276
|
OptionsProps,
|
|
265
277
|
OptionsSeparatorProps
|
|
266
|
-
} from '@instructure/ui-options'
|
|
267
|
-
export { Mask, Overlay } from '@instructure/ui-overlays'
|
|
268
|
-
export type { MaskProps, OverlayProps } from '@instructure/ui-overlays'
|
|
269
|
-
export { Pages, PagesPage } from '@instructure/ui-pages'
|
|
270
|
-
export type { PagesPageProps, PagesProps } from '@instructure/ui-pages'
|
|
271
|
-
export { Pagination, PaginationButton } from '@instructure/ui-pagination'
|
|
278
|
+
} from '@instructure/ui-options/v11_6'
|
|
279
|
+
export { Mask, Overlay } from '@instructure/ui-overlays/v11_6'
|
|
280
|
+
export type { MaskProps, OverlayProps } from '@instructure/ui-overlays/v11_6'
|
|
281
|
+
export { Pages, PagesPage } from '@instructure/ui-pages/v11_6'
|
|
282
|
+
export type { PagesPageProps, PagesProps } from '@instructure/ui-pages/v11_6'
|
|
283
|
+
export { Pagination, PaginationButton } from '@instructure/ui-pagination/v11_6'
|
|
272
284
|
export type {
|
|
273
285
|
PaginationNavigationProps,
|
|
274
286
|
PaginationPageProps,
|
|
275
287
|
PaginationProps
|
|
276
|
-
} from '@instructure/ui-pagination'
|
|
277
|
-
export { Pill } from '@instructure/ui-pill'
|
|
278
|
-
export type { PillProps } from '@instructure/ui-pill'
|
|
279
|
-
export { Popover } from '@instructure/ui-popover'
|
|
280
|
-
export type {
|
|
288
|
+
} from '@instructure/ui-pagination/v11_6'
|
|
289
|
+
export { Pill } from '@instructure/ui-pill/v11_6'
|
|
290
|
+
export type { PillProps } from '@instructure/ui-pill/v11_6'
|
|
291
|
+
export { Popover } from '@instructure/ui-popover/v11_6'
|
|
292
|
+
export type {
|
|
293
|
+
PopoverProps,
|
|
294
|
+
PopoverOwnProps
|
|
295
|
+
} from '@instructure/ui-popover/v11_6'
|
|
281
296
|
export { Portal } from '@instructure/ui-portal'
|
|
282
297
|
export type { PortalProps, PortalNode } from '@instructure/ui-portal'
|
|
283
298
|
export {
|
|
@@ -295,20 +310,20 @@ export type {
|
|
|
295
310
|
PlacementPropValues,
|
|
296
311
|
PositionMountNode
|
|
297
312
|
} from '@instructure/ui-position'
|
|
298
|
-
export { ProgressBar, ProgressCircle } from '@instructure/ui-progress'
|
|
313
|
+
export { ProgressBar, ProgressCircle } from '@instructure/ui-progress/v11_6'
|
|
299
314
|
export type {
|
|
300
315
|
ProgressBarProps,
|
|
301
316
|
ProgressCircleProps
|
|
302
|
-
} from '@instructure/ui-progress'
|
|
303
|
-
export { RadioInput, RadioInputGroup } from '@instructure/ui-radio-input'
|
|
317
|
+
} from '@instructure/ui-progress/v11_6'
|
|
318
|
+
export { RadioInput, RadioInputGroup } from '@instructure/ui-radio-input/v11_6'
|
|
304
319
|
export type {
|
|
305
320
|
RadioInputProps,
|
|
306
321
|
RadioInputGroupProps
|
|
307
|
-
} from '@instructure/ui-radio-input'
|
|
308
|
-
export { RangeInput } from '@instructure/ui-range-input'
|
|
309
|
-
export type { RangeInputProps } from '@instructure/ui-range-input'
|
|
310
|
-
export { Rating, RatingIcon } from '@instructure/ui-rating'
|
|
311
|
-
export type { RatingIconProps, RatingProps } from '@instructure/ui-rating'
|
|
322
|
+
} from '@instructure/ui-radio-input/v11_6'
|
|
323
|
+
export { RangeInput } from '@instructure/ui-range-input/v11_6'
|
|
324
|
+
export type { RangeInputProps } from '@instructure/ui-range-input/v11_6'
|
|
325
|
+
export { Rating, RatingIcon } from '@instructure/ui-rating/v11_6'
|
|
326
|
+
export type { RatingIconProps, RatingProps } from '@instructure/ui-rating/v11_6'
|
|
312
327
|
export {
|
|
313
328
|
Responsive,
|
|
314
329
|
ResponsivePropTypes,
|
|
@@ -316,7 +331,7 @@ export {
|
|
|
316
331
|
addMediaQueryMatchListener,
|
|
317
332
|
parseQuery,
|
|
318
333
|
jsonToMediaQuery
|
|
319
|
-
} from '@instructure/ui-responsive'
|
|
334
|
+
} from '@instructure/ui-responsive/v11_6'
|
|
320
335
|
export type {
|
|
321
336
|
ResponsiveProps,
|
|
322
337
|
ResponsivePropsObject,
|
|
@@ -325,38 +340,38 @@ export type {
|
|
|
325
340
|
Query,
|
|
326
341
|
ResponsiveByBreakpointProps,
|
|
327
342
|
ValidQueryKey
|
|
328
|
-
} from '@instructure/ui-responsive'
|
|
329
|
-
export { Select, SelectGroup, SelectOption } from '@instructure/ui-select'
|
|
343
|
+
} from '@instructure/ui-responsive/v11_6'
|
|
344
|
+
export { Select, SelectGroup, SelectOption } from '@instructure/ui-select/v11_6'
|
|
330
345
|
export type {
|
|
331
346
|
SelectOwnProps,
|
|
332
347
|
SelectGroupProps,
|
|
333
348
|
SelectOptionProps,
|
|
334
349
|
SelectProps
|
|
335
|
-
} from '@instructure/ui-select'
|
|
350
|
+
} from '@instructure/ui-select/v11_6'
|
|
336
351
|
export { Selectable } from '@instructure/ui-selectable'
|
|
337
352
|
export type {
|
|
338
353
|
SelectableRender,
|
|
339
354
|
SelectableProps
|
|
340
355
|
} from '@instructure/ui-selectable'
|
|
341
|
-
export { SideNavBar, SideNavBarItem } from '@instructure/ui-side-nav-bar'
|
|
356
|
+
export { SideNavBar, SideNavBarItem } from '@instructure/ui-side-nav-bar/v11_6'
|
|
342
357
|
export type {
|
|
343
358
|
SideNavBarProps,
|
|
344
359
|
SideNavBarItemProps
|
|
345
|
-
} from '@instructure/ui-side-nav-bar'
|
|
360
|
+
} from '@instructure/ui-side-nav-bar/v11_6'
|
|
346
361
|
export {
|
|
347
362
|
SimpleSelect,
|
|
348
363
|
SimpleSelectOption,
|
|
349
364
|
SimpleSelectGroup
|
|
350
|
-
} from '@instructure/ui-simple-select'
|
|
365
|
+
} from '@instructure/ui-simple-select/v11_6'
|
|
351
366
|
export type {
|
|
352
367
|
SimpleSelectProps,
|
|
353
368
|
SimpleSelectGroupProps,
|
|
354
369
|
SimpleSelectOptionProps
|
|
355
|
-
} from '@instructure/ui-simple-select'
|
|
356
|
-
export { SourceCodeEditor } from '@instructure/ui-source-code-editor'
|
|
357
|
-
export type { SourceCodeEditorProps } from '@instructure/ui-source-code-editor'
|
|
358
|
-
export { Spinner } from '@instructure/ui-spinner'
|
|
359
|
-
export type { SpinnerProps } from '@instructure/ui-spinner'
|
|
370
|
+
} from '@instructure/ui-simple-select/v11_6'
|
|
371
|
+
export { SourceCodeEditor } from '@instructure/ui-source-code-editor/v11_6'
|
|
372
|
+
export type { SourceCodeEditorProps } from '@instructure/ui-source-code-editor/v11_6'
|
|
373
|
+
export { Spinner } from '@instructure/ui-spinner/v11_6'
|
|
374
|
+
export type { SpinnerProps } from '@instructure/ui-spinner/v11_6'
|
|
360
375
|
export { InlineSVG, SVGIcon } from '@instructure/ui-svg-images'
|
|
361
376
|
export type { InlineSVGProps, SVGIconProps } from '@instructure/ui-svg-images'
|
|
362
377
|
export {
|
|
@@ -368,7 +383,7 @@ export {
|
|
|
368
383
|
TableRow,
|
|
369
384
|
TableColHeader,
|
|
370
385
|
TableRowHeader
|
|
371
|
-
} from '@instructure/ui-table'
|
|
386
|
+
} from '@instructure/ui-table/v11_6'
|
|
372
387
|
export type {
|
|
373
388
|
TableBodyProps,
|
|
374
389
|
TableCellProps,
|
|
@@ -377,21 +392,21 @@ export type {
|
|
|
377
392
|
TableHeadProps,
|
|
378
393
|
TableRowHeaderProps,
|
|
379
394
|
TableRowProps
|
|
380
|
-
} from '@instructure/ui-table'
|
|
381
|
-
export { Tabs, TabsPanel, TabsTab } from '@instructure/ui-tabs'
|
|
395
|
+
} from '@instructure/ui-table/v11_6'
|
|
396
|
+
export { Tabs, TabsPanel, TabsTab } from '@instructure/ui-tabs/v11_6'
|
|
382
397
|
export type {
|
|
383
398
|
TabsTabProps,
|
|
384
399
|
TabsPanelProps,
|
|
385
400
|
TabsProps
|
|
386
|
-
} from '@instructure/ui-tabs'
|
|
387
|
-
export { Tag } from '@instructure/ui-tag'
|
|
388
|
-
export type { TagProps } from '@instructure/ui-tag'
|
|
389
|
-
export { Text } from '@instructure/ui-text'
|
|
390
|
-
export type { TextProps } from '@instructure/ui-text'
|
|
391
|
-
export { TextArea } from '@instructure/ui-text-area'
|
|
392
|
-
export type { TextAreaProps } from '@instructure/ui-text-area'
|
|
393
|
-
export { TextInput } from '@instructure/ui-text-input'
|
|
394
|
-
export type { TextInputProps } from '@instructure/ui-text-input'
|
|
401
|
+
} from '@instructure/ui-tabs/v11_6'
|
|
402
|
+
export { Tag } from '@instructure/ui-tag/v11_6'
|
|
403
|
+
export type { TagProps } from '@instructure/ui-tag/v11_6'
|
|
404
|
+
export { Text } from '@instructure/ui-text/v11_6'
|
|
405
|
+
export type { TextProps } from '@instructure/ui-text/v11_6'
|
|
406
|
+
export { TextArea } from '@instructure/ui-text-area/v11_6'
|
|
407
|
+
export type { TextAreaProps } from '@instructure/ui-text-area/v11_6'
|
|
408
|
+
export { TextInput } from '@instructure/ui-text-input/v11_6'
|
|
409
|
+
export type { TextInputProps } from '@instructure/ui-text-input/v11_6'
|
|
395
410
|
export {
|
|
396
411
|
canvas,
|
|
397
412
|
canvasHighContrast,
|
|
@@ -413,18 +428,21 @@ export type {
|
|
|
413
428
|
DataVisualization,
|
|
414
429
|
UI
|
|
415
430
|
} from '@instructure/ui-themes'
|
|
416
|
-
export { TimeSelect } from '@instructure/ui-time-select'
|
|
417
|
-
export type { TimeSelectProps } from '@instructure/ui-time-select'
|
|
418
|
-
export {
|
|
431
|
+
export { TimeSelect } from '@instructure/ui-time-select/v11_6'
|
|
432
|
+
export type { TimeSelectProps } from '@instructure/ui-time-select/v11_6'
|
|
433
|
+
export {
|
|
434
|
+
ToggleDetails,
|
|
435
|
+
ToggleGroup
|
|
436
|
+
} from '@instructure/ui-toggle-details/v11_6'
|
|
419
437
|
export type {
|
|
420
438
|
ToggleDetailsProps,
|
|
421
439
|
ToggleGroupProps
|
|
422
|
-
} from '@instructure/ui-toggle-details'
|
|
423
|
-
export { Tooltip } from '@instructure/ui-tooltip'
|
|
440
|
+
} from '@instructure/ui-toggle-details/v11_6'
|
|
441
|
+
export { Tooltip } from '@instructure/ui-tooltip/v11_6'
|
|
424
442
|
export type {
|
|
425
443
|
TooltipProps,
|
|
426
444
|
TooltipRenderChildrenArgs
|
|
427
|
-
} from '@instructure/ui-tooltip'
|
|
445
|
+
} from '@instructure/ui-tooltip/v11_6'
|
|
428
446
|
export {
|
|
429
447
|
TopNavBar,
|
|
430
448
|
TopNavBarActionItems,
|
|
@@ -434,7 +452,7 @@ export {
|
|
|
434
452
|
TopNavBarLayout,
|
|
435
453
|
TopNavBarMenuItems,
|
|
436
454
|
TopNavBarUser
|
|
437
|
-
} from '@instructure/ui-top-nav-bar'
|
|
455
|
+
} from '@instructure/ui-top-nav-bar/v11_6'
|
|
438
456
|
export type {
|
|
439
457
|
TopNavBarProps,
|
|
440
458
|
TopNavBarOwnProps,
|
|
@@ -457,28 +475,28 @@ export type {
|
|
|
457
475
|
TopNavBarMenuItemsOwnProps,
|
|
458
476
|
TopNavBarUserProps,
|
|
459
477
|
TopNavBarUserOwnProps
|
|
460
|
-
} from '@instructure/ui-top-nav-bar'
|
|
461
|
-
export { Tray } from '@instructure/ui-tray'
|
|
462
|
-
export type { TrayProps } from '@instructure/ui-tray'
|
|
478
|
+
} from '@instructure/ui-top-nav-bar/v11_6'
|
|
479
|
+
export { Tray } from '@instructure/ui-tray/v11_6'
|
|
480
|
+
export type { TrayProps } from '@instructure/ui-tray/v11_6'
|
|
463
481
|
export {
|
|
464
482
|
TreeBrowser,
|
|
465
483
|
TreeNode,
|
|
466
484
|
TreeButton,
|
|
467
485
|
TreeCollection
|
|
468
|
-
} from '@instructure/ui-tree-browser'
|
|
486
|
+
} from '@instructure/ui-tree-browser/v11_6'
|
|
469
487
|
export type {
|
|
470
488
|
TreeBrowserButtonProps,
|
|
471
489
|
TreeBrowserProps,
|
|
472
490
|
TreeBrowserCollectionProps,
|
|
473
491
|
TreeBrowserNodeProps
|
|
474
|
-
} from '@instructure/ui-tree-browser'
|
|
492
|
+
} from '@instructure/ui-tree-browser/v11_6'
|
|
475
493
|
export { TruncateList } from '@instructure/ui-truncate-list'
|
|
476
494
|
export type { TruncateListProps } from '@instructure/ui-truncate-list'
|
|
477
|
-
export { TruncateText } from '@instructure/ui-truncate-text'
|
|
478
|
-
export type { TruncateTextProps } from '@instructure/ui-truncate-text'
|
|
479
|
-
export { View, ContextView } from '@instructure/ui-view'
|
|
495
|
+
export { TruncateText } from '@instructure/ui-truncate-text/v11_6'
|
|
496
|
+
export type { TruncateTextProps } from '@instructure/ui-truncate-text/v11_6'
|
|
497
|
+
export { View, ContextView } from '@instructure/ui-view/v11_6'
|
|
480
498
|
export type {
|
|
481
499
|
ViewProps,
|
|
482
500
|
ContextViewProps,
|
|
483
501
|
ViewOwnProps
|
|
484
|
-
} from '@instructure/ui-view'
|
|
502
|
+
} from '@instructure/ui-view/v11_6'
|