@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
package/src/v11_7.ts
ADDED
|
@@ -0,0 +1,502 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* The MIT License (MIT)
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2015 - present Instructure, Inc.
|
|
5
|
+
*
|
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
* furnished to do so, subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
* copies or substantial portions of the Software.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
* SOFTWARE.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
export { InstUISettingsProvider, withStyle } from '@instructure/emotion'
|
|
26
|
+
export {
|
|
27
|
+
AccessibleContent,
|
|
28
|
+
PresentationContent,
|
|
29
|
+
ScreenReaderContent
|
|
30
|
+
} from '@instructure/ui-a11y-content'
|
|
31
|
+
export type {
|
|
32
|
+
AccessibleContentProps,
|
|
33
|
+
ScreenReaderContentProps,
|
|
34
|
+
PresentationContentProps
|
|
35
|
+
} from '@instructure/ui-a11y-content'
|
|
36
|
+
export { Alert } from '@instructure/ui-alerts/v11_7'
|
|
37
|
+
export type { AlertProps } from '@instructure/ui-alerts/v11_7'
|
|
38
|
+
export { Avatar } from '@instructure/ui-avatar/v11_7'
|
|
39
|
+
export type { AvatarProps } from '@instructure/ui-avatar/v11_7'
|
|
40
|
+
export { Badge } from '@instructure/ui-badge/v11_7'
|
|
41
|
+
export type { BadgeProps } from '@instructure/ui-badge/v11_7'
|
|
42
|
+
export { Billboard } from '@instructure/ui-billboard/v11_7'
|
|
43
|
+
export type { BillboardProps } from '@instructure/ui-billboard/v11_7'
|
|
44
|
+
export { Breadcrumb, BreadcrumbLink } from '@instructure/ui-breadcrumb/v11_7'
|
|
45
|
+
export type {
|
|
46
|
+
BreadcrumbProps,
|
|
47
|
+
BreadcrumbLinkProps
|
|
48
|
+
} from '@instructure/ui-breadcrumb/v11_7'
|
|
49
|
+
export {
|
|
50
|
+
BaseButton,
|
|
51
|
+
Button,
|
|
52
|
+
CloseButton,
|
|
53
|
+
CondensedButton,
|
|
54
|
+
IconButton,
|
|
55
|
+
ToggleButton
|
|
56
|
+
} from '@instructure/ui-buttons/v11_7'
|
|
57
|
+
export type {
|
|
58
|
+
BaseButtonOwnProps,
|
|
59
|
+
ButtonProps,
|
|
60
|
+
BaseButtonProps,
|
|
61
|
+
ToggleButtonProps,
|
|
62
|
+
CloseButtonProps,
|
|
63
|
+
CondensedButtonProps,
|
|
64
|
+
IconButtonProps
|
|
65
|
+
} from '@instructure/ui-buttons/v11_7'
|
|
66
|
+
export { Byline } from '@instructure/ui-byline/v11_7'
|
|
67
|
+
export type { BylineProps } from '@instructure/ui-byline/v11_7'
|
|
68
|
+
export { Calendar, CalendarDay } from '@instructure/ui-calendar/v11_7'
|
|
69
|
+
export type {
|
|
70
|
+
CalendarDayProps,
|
|
71
|
+
CalendarProps
|
|
72
|
+
} from '@instructure/ui-calendar/v11_7'
|
|
73
|
+
export {
|
|
74
|
+
Checkbox,
|
|
75
|
+
CheckboxGroup,
|
|
76
|
+
CheckboxFacade,
|
|
77
|
+
ToggleFacade
|
|
78
|
+
} from '@instructure/ui-checkbox/v11_7'
|
|
79
|
+
export type {
|
|
80
|
+
CheckboxFacadeProps,
|
|
81
|
+
ToggleFacadeProps,
|
|
82
|
+
CheckboxGroupProps,
|
|
83
|
+
CheckboxProps
|
|
84
|
+
} from '@instructure/ui-checkbox/v11_7'
|
|
85
|
+
export {
|
|
86
|
+
ColorPicker,
|
|
87
|
+
ColorMixer,
|
|
88
|
+
ColorPreset,
|
|
89
|
+
ColorContrast,
|
|
90
|
+
ColorIndicator
|
|
91
|
+
} from '@instructure/ui-color-picker/v11_7'
|
|
92
|
+
export type {
|
|
93
|
+
ColorContrastProps,
|
|
94
|
+
ColorIndicatorProps,
|
|
95
|
+
ColorMixerProps,
|
|
96
|
+
ColorPickerProps,
|
|
97
|
+
ColorPresetProps
|
|
98
|
+
} from '@instructure/ui-color-picker/v11_7'
|
|
99
|
+
export { DateInput, DateInput2 } from '@instructure/ui-date-input/v11_7'
|
|
100
|
+
export type {
|
|
101
|
+
DateInputProps,
|
|
102
|
+
DateInput2Props
|
|
103
|
+
} from '@instructure/ui-date-input/v11_7'
|
|
104
|
+
export { DateTimeInput } from '@instructure/ui-date-time-input/v11_7'
|
|
105
|
+
export { Dialog } from '@instructure/ui-dialog'
|
|
106
|
+
export type { DialogProps } from '@instructure/ui-dialog'
|
|
107
|
+
export {
|
|
108
|
+
DrawerLayout,
|
|
109
|
+
DrawerContent,
|
|
110
|
+
DrawerTray
|
|
111
|
+
} from '@instructure/ui-drawer-layout/v11_7'
|
|
112
|
+
export type {
|
|
113
|
+
DrawerLayoutProps,
|
|
114
|
+
DrawerLayoutContentProps,
|
|
115
|
+
DrawerLayoutTrayProps
|
|
116
|
+
} from '@instructure/ui-drawer-layout/v11_7'
|
|
117
|
+
export {
|
|
118
|
+
Drilldown,
|
|
119
|
+
DrilldownGroup,
|
|
120
|
+
DrilldownOption,
|
|
121
|
+
DrilldownPage,
|
|
122
|
+
DrilldownSeparator
|
|
123
|
+
} from '@instructure/ui-drilldown/v11_7'
|
|
124
|
+
export type {
|
|
125
|
+
DrilldownGroupChild,
|
|
126
|
+
DrilldownGroupProps,
|
|
127
|
+
DrilldownOptionChild,
|
|
128
|
+
DrilldownOptionProps,
|
|
129
|
+
DrilldownPageChild,
|
|
130
|
+
DrilldownPageChildren,
|
|
131
|
+
DrilldownPageProps,
|
|
132
|
+
DrilldownProps,
|
|
133
|
+
DrilldownSeparatorChild,
|
|
134
|
+
DrilldownSeparatorProps
|
|
135
|
+
} from '@instructure/ui-drilldown/v11_7'
|
|
136
|
+
export { Editable, InPlaceEdit } from '@instructure/ui-editable/v11_7'
|
|
137
|
+
export type {
|
|
138
|
+
EditableProps,
|
|
139
|
+
InPlaceEditProps
|
|
140
|
+
} from '@instructure/ui-editable/v11_7'
|
|
141
|
+
export { Expandable } from '@instructure/ui-expandable'
|
|
142
|
+
export type {
|
|
143
|
+
ExpandableProps,
|
|
144
|
+
RenderExpandable,
|
|
145
|
+
ExpandableToggleProps
|
|
146
|
+
} from '@instructure/ui-expandable'
|
|
147
|
+
export { FileDrop } from '@instructure/ui-file-drop/v11_7'
|
|
148
|
+
export type { FileDropProps } from '@instructure/ui-file-drop/v11_7'
|
|
149
|
+
export { Flex, FlexItem } from '@instructure/ui-flex/v11_7'
|
|
150
|
+
export type { FlexProps, FlexItemProps } from '@instructure/ui-flex/v11_7'
|
|
151
|
+
export { Focusable } from '@instructure/ui-focusable'
|
|
152
|
+
export type { FocusableProps } from '@instructure/ui-focusable'
|
|
153
|
+
export {
|
|
154
|
+
FormField,
|
|
155
|
+
FormFieldLabel,
|
|
156
|
+
FormFieldMessage,
|
|
157
|
+
FormFieldMessages,
|
|
158
|
+
FormFieldLayout,
|
|
159
|
+
FormFieldGroup
|
|
160
|
+
} from '@instructure/ui-form-field/v11_7'
|
|
161
|
+
export type {
|
|
162
|
+
FormFieldGroupProps,
|
|
163
|
+
FormFieldMessageProps,
|
|
164
|
+
FormFieldLabelProps,
|
|
165
|
+
FormFieldMessagesProps,
|
|
166
|
+
FormFieldLayoutProps,
|
|
167
|
+
FormFieldOwnProps,
|
|
168
|
+
FormFieldProps,
|
|
169
|
+
FormMessage,
|
|
170
|
+
FormMessageType
|
|
171
|
+
} from '@instructure/ui-form-field/v11_7'
|
|
172
|
+
export { Grid, GridRow, GridCol } from '@instructure/ui-grid/v11_7'
|
|
173
|
+
export type {
|
|
174
|
+
GridProps,
|
|
175
|
+
GridRowProps,
|
|
176
|
+
GridColProps,
|
|
177
|
+
GridBreakpoints
|
|
178
|
+
} from '@instructure/ui-grid/v11_7'
|
|
179
|
+
export { Heading } from '@instructure/ui-heading/v11_7'
|
|
180
|
+
export type { HeadingProps } from '@instructure/ui-heading/v11_7'
|
|
181
|
+
export {
|
|
182
|
+
ApplyLocale,
|
|
183
|
+
TextDirectionContext,
|
|
184
|
+
ApplyLocaleContext,
|
|
185
|
+
textDirectionContextConsumer,
|
|
186
|
+
DateTime,
|
|
187
|
+
getTextDirection,
|
|
188
|
+
Locale,
|
|
189
|
+
DIRECTION
|
|
190
|
+
} from '@instructure/ui-i18n'
|
|
191
|
+
export type {
|
|
192
|
+
Moment,
|
|
193
|
+
TextDirectionContextConsumerProps,
|
|
194
|
+
ApplyLocaleProps
|
|
195
|
+
} from '@instructure/ui-i18n'
|
|
196
|
+
export * from '@instructure/ui-icons'
|
|
197
|
+
export { Img } from '@instructure/ui-img/v11_7'
|
|
198
|
+
export type { ImgProps } from '@instructure/ui-img/v11_7'
|
|
199
|
+
export {
|
|
200
|
+
NutritionFacts,
|
|
201
|
+
DataPermissionLevels,
|
|
202
|
+
AiInformation
|
|
203
|
+
} from '@instructure/ui-instructure/v11_7'
|
|
204
|
+
export type {
|
|
205
|
+
NutritionFactsProps,
|
|
206
|
+
DataPermissionLevelsProps,
|
|
207
|
+
AiInformationProps
|
|
208
|
+
} from '@instructure/ui-instructure/v11_7'
|
|
209
|
+
export { Link } from '@instructure/ui-link/v11_7'
|
|
210
|
+
export type { LinkProps } from '@instructure/ui-link/v11_7'
|
|
211
|
+
export {
|
|
212
|
+
List,
|
|
213
|
+
ListItem,
|
|
214
|
+
InlineList,
|
|
215
|
+
InlineListItem
|
|
216
|
+
} from '@instructure/ui-list/v11_7'
|
|
217
|
+
export type {
|
|
218
|
+
ListProps,
|
|
219
|
+
ListItemProps,
|
|
220
|
+
InlineListProps,
|
|
221
|
+
InlineListItemProps
|
|
222
|
+
} from '@instructure/ui-list/v11_7'
|
|
223
|
+
export {
|
|
224
|
+
Menu,
|
|
225
|
+
MenuItem,
|
|
226
|
+
MenuItemGroup,
|
|
227
|
+
MenuItemSeparator
|
|
228
|
+
} from '@instructure/ui-menu/v11_7'
|
|
229
|
+
export type {
|
|
230
|
+
MenuProps,
|
|
231
|
+
MenuItemProps,
|
|
232
|
+
MenuGroupProps,
|
|
233
|
+
MenuSeparatorProps
|
|
234
|
+
} from '@instructure/ui-menu/v11_7'
|
|
235
|
+
export { MetricGroup, Metric } from '@instructure/ui-metric/v11_7'
|
|
236
|
+
export type {
|
|
237
|
+
MetricGroupProps,
|
|
238
|
+
MetricProps
|
|
239
|
+
} from '@instructure/ui-metric/v11_7'
|
|
240
|
+
export {
|
|
241
|
+
Modal,
|
|
242
|
+
ModalBody,
|
|
243
|
+
ModalFooter,
|
|
244
|
+
ModalHeader
|
|
245
|
+
} from '@instructure/ui-modal/v11_7'
|
|
246
|
+
export type {
|
|
247
|
+
ModalProps,
|
|
248
|
+
ModalBodyProps,
|
|
249
|
+
ModalFooterProps,
|
|
250
|
+
ModalHeaderProps
|
|
251
|
+
} from '@instructure/ui-modal/v11_7'
|
|
252
|
+
export { Transition, BaseTransition } from '@instructure/ui-motion'
|
|
253
|
+
export type {
|
|
254
|
+
TransitionProps,
|
|
255
|
+
TransitionType,
|
|
256
|
+
BaseTransitionStatesType
|
|
257
|
+
} from '@instructure/ui-motion'
|
|
258
|
+
export { AppNav, AppNavItem } from '@instructure/ui-navigation/v11_7'
|
|
259
|
+
export type {
|
|
260
|
+
AppNavProps,
|
|
261
|
+
AppNavItemProps
|
|
262
|
+
} from '@instructure/ui-navigation/v11_7'
|
|
263
|
+
export { NumberInput } from '@instructure/ui-number-input/v11_7'
|
|
264
|
+
export type { NumberInputProps } from '@instructure/ui-number-input/v11_7'
|
|
265
|
+
export {
|
|
266
|
+
Options,
|
|
267
|
+
OptionSeparator,
|
|
268
|
+
OptionItem,
|
|
269
|
+
optionsThemeGenerator,
|
|
270
|
+
optionsItemThemeGenerator,
|
|
271
|
+
optionsSeparatorThemeGenerator
|
|
272
|
+
} from '@instructure/ui-options/v11_7'
|
|
273
|
+
export type {
|
|
274
|
+
OptionsItemProps,
|
|
275
|
+
OptionsItemRenderProps,
|
|
276
|
+
OptionsProps,
|
|
277
|
+
OptionsSeparatorProps
|
|
278
|
+
} from '@instructure/ui-options/v11_7'
|
|
279
|
+
export { Mask, Overlay } from '@instructure/ui-overlays/v11_7'
|
|
280
|
+
export type { MaskProps, OverlayProps } from '@instructure/ui-overlays/v11_7'
|
|
281
|
+
export { Pages, PagesPage } from '@instructure/ui-pages/v11_7'
|
|
282
|
+
export type { PagesPageProps, PagesProps } from '@instructure/ui-pages/v11_7'
|
|
283
|
+
export { Pagination, PaginationButton } from '@instructure/ui-pagination/v11_7'
|
|
284
|
+
export type {
|
|
285
|
+
PaginationNavigationProps,
|
|
286
|
+
PaginationPageProps,
|
|
287
|
+
PaginationProps
|
|
288
|
+
} from '@instructure/ui-pagination/v11_7'
|
|
289
|
+
export { Pill } from '@instructure/ui-pill/v11_7'
|
|
290
|
+
export type { PillProps } from '@instructure/ui-pill/v11_7'
|
|
291
|
+
export { Popover } from '@instructure/ui-popover/v11_7'
|
|
292
|
+
export type {
|
|
293
|
+
PopoverProps,
|
|
294
|
+
PopoverOwnProps
|
|
295
|
+
} from '@instructure/ui-popover/v11_7'
|
|
296
|
+
export { Portal } from '@instructure/ui-portal'
|
|
297
|
+
export type { PortalProps, PortalNode } from '@instructure/ui-portal'
|
|
298
|
+
export {
|
|
299
|
+
Position,
|
|
300
|
+
calculateElementPosition,
|
|
301
|
+
executeMirrorFunction,
|
|
302
|
+
mirrorHorizontalPlacement,
|
|
303
|
+
mirrorPlacement,
|
|
304
|
+
parsePlacement
|
|
305
|
+
} from '@instructure/ui-position'
|
|
306
|
+
export type {
|
|
307
|
+
PositionConstraint,
|
|
308
|
+
PositionObject,
|
|
309
|
+
PositionProps,
|
|
310
|
+
PlacementPropValues,
|
|
311
|
+
PositionMountNode
|
|
312
|
+
} from '@instructure/ui-position'
|
|
313
|
+
export { ProgressBar, ProgressCircle } from '@instructure/ui-progress/v11_7'
|
|
314
|
+
export type {
|
|
315
|
+
ProgressBarProps,
|
|
316
|
+
ProgressCircleProps
|
|
317
|
+
} from '@instructure/ui-progress/v11_7'
|
|
318
|
+
export { RadioInput, RadioInputGroup } from '@instructure/ui-radio-input/v11_7'
|
|
319
|
+
export type {
|
|
320
|
+
RadioInputProps,
|
|
321
|
+
RadioInputGroupProps
|
|
322
|
+
} from '@instructure/ui-radio-input/v11_7'
|
|
323
|
+
export { RangeInput } from '@instructure/ui-range-input/v11_7'
|
|
324
|
+
export type { RangeInputProps } from '@instructure/ui-range-input/v11_7'
|
|
325
|
+
export { Rating, RatingIcon } from '@instructure/ui-rating/v11_7'
|
|
326
|
+
export type { RatingIconProps, RatingProps } from '@instructure/ui-rating/v11_7'
|
|
327
|
+
export {
|
|
328
|
+
Responsive,
|
|
329
|
+
ResponsivePropTypes,
|
|
330
|
+
addElementQueryMatchListener,
|
|
331
|
+
addMediaQueryMatchListener,
|
|
332
|
+
parseQuery,
|
|
333
|
+
jsonToMediaQuery
|
|
334
|
+
} from '@instructure/ui-responsive/v11_7'
|
|
335
|
+
export type {
|
|
336
|
+
ResponsiveProps,
|
|
337
|
+
ResponsivePropsObject,
|
|
338
|
+
BreakpointQueries,
|
|
339
|
+
QueriesMatching,
|
|
340
|
+
Query,
|
|
341
|
+
ResponsiveByBreakpointProps,
|
|
342
|
+
ValidQueryKey
|
|
343
|
+
} from '@instructure/ui-responsive/v11_7'
|
|
344
|
+
export { Select, SelectGroup, SelectOption } from '@instructure/ui-select/v11_7'
|
|
345
|
+
export type {
|
|
346
|
+
SelectOwnProps,
|
|
347
|
+
SelectGroupProps,
|
|
348
|
+
SelectOptionProps,
|
|
349
|
+
SelectProps
|
|
350
|
+
} from '@instructure/ui-select/v11_7'
|
|
351
|
+
export { Selectable } from '@instructure/ui-selectable'
|
|
352
|
+
export type {
|
|
353
|
+
SelectableRender,
|
|
354
|
+
SelectableProps
|
|
355
|
+
} from '@instructure/ui-selectable'
|
|
356
|
+
export { SideNavBar, SideNavBarItem } from '@instructure/ui-side-nav-bar/v11_7'
|
|
357
|
+
export type {
|
|
358
|
+
SideNavBarProps,
|
|
359
|
+
SideNavBarItemProps
|
|
360
|
+
} from '@instructure/ui-side-nav-bar/v11_7'
|
|
361
|
+
export {
|
|
362
|
+
SimpleSelect,
|
|
363
|
+
SimpleSelectOption,
|
|
364
|
+
SimpleSelectGroup
|
|
365
|
+
} from '@instructure/ui-simple-select/v11_7'
|
|
366
|
+
export type {
|
|
367
|
+
SimpleSelectProps,
|
|
368
|
+
SimpleSelectGroupProps,
|
|
369
|
+
SimpleSelectOptionProps
|
|
370
|
+
} from '@instructure/ui-simple-select/v11_7'
|
|
371
|
+
export { SourceCodeEditor } from '@instructure/ui-source-code-editor/v11_7'
|
|
372
|
+
export type { SourceCodeEditorProps } from '@instructure/ui-source-code-editor/v11_7'
|
|
373
|
+
export { Spinner } from '@instructure/ui-spinner/v11_7'
|
|
374
|
+
export type { SpinnerProps } from '@instructure/ui-spinner/v11_7'
|
|
375
|
+
export { InlineSVG, SVGIcon } from '@instructure/ui-svg-images'
|
|
376
|
+
export type { InlineSVGProps, SVGIconProps } from '@instructure/ui-svg-images'
|
|
377
|
+
export {
|
|
378
|
+
Table,
|
|
379
|
+
TableContext,
|
|
380
|
+
TableBody,
|
|
381
|
+
TableHead,
|
|
382
|
+
TableCell,
|
|
383
|
+
TableRow,
|
|
384
|
+
TableColHeader,
|
|
385
|
+
TableRowHeader
|
|
386
|
+
} from '@instructure/ui-table/v11_7'
|
|
387
|
+
export type {
|
|
388
|
+
TableBodyProps,
|
|
389
|
+
TableCellProps,
|
|
390
|
+
TableProps,
|
|
391
|
+
TableColHeaderProps,
|
|
392
|
+
TableHeadProps,
|
|
393
|
+
TableRowHeaderProps,
|
|
394
|
+
TableRowProps
|
|
395
|
+
} from '@instructure/ui-table/v11_7'
|
|
396
|
+
export { Tabs, TabsPanel, TabsTab } from '@instructure/ui-tabs/v11_7'
|
|
397
|
+
export type {
|
|
398
|
+
TabsTabProps,
|
|
399
|
+
TabsPanelProps,
|
|
400
|
+
TabsProps
|
|
401
|
+
} from '@instructure/ui-tabs/v11_7'
|
|
402
|
+
export { Tag } from '@instructure/ui-tag/v11_7'
|
|
403
|
+
export type { TagProps } from '@instructure/ui-tag/v11_7'
|
|
404
|
+
export { Text } from '@instructure/ui-text/v11_7'
|
|
405
|
+
export type { TextProps } from '@instructure/ui-text/v11_7'
|
|
406
|
+
export { TextArea } from '@instructure/ui-text-area/v11_7'
|
|
407
|
+
export type { TextAreaProps } from '@instructure/ui-text-area/v11_7'
|
|
408
|
+
export { TextInput } from '@instructure/ui-text-input/v11_7'
|
|
409
|
+
export type { TextInputProps } from '@instructure/ui-text-input/v11_7'
|
|
410
|
+
export {
|
|
411
|
+
canvas,
|
|
412
|
+
canvasHighContrast,
|
|
413
|
+
primitives,
|
|
414
|
+
additionalPrimitives,
|
|
415
|
+
dataVisualization
|
|
416
|
+
} from '@instructure/ui-themes'
|
|
417
|
+
export type {
|
|
418
|
+
ThemeMap,
|
|
419
|
+
BaseTheme,
|
|
420
|
+
Theme,
|
|
421
|
+
ThemeKeys,
|
|
422
|
+
ThemeSpecificStyle,
|
|
423
|
+
CanvasTheme,
|
|
424
|
+
CanvasBrandVariables,
|
|
425
|
+
CanvasHighContrastTheme,
|
|
426
|
+
Primitives,
|
|
427
|
+
AdditionalPrimitives,
|
|
428
|
+
DataVisualization,
|
|
429
|
+
UI
|
|
430
|
+
} from '@instructure/ui-themes'
|
|
431
|
+
export { TimeSelect } from '@instructure/ui-time-select/v11_7'
|
|
432
|
+
export type { TimeSelectProps } from '@instructure/ui-time-select/v11_7'
|
|
433
|
+
export {
|
|
434
|
+
ToggleDetails,
|
|
435
|
+
ToggleGroup
|
|
436
|
+
} from '@instructure/ui-toggle-details/v11_7'
|
|
437
|
+
export type {
|
|
438
|
+
ToggleDetailsProps,
|
|
439
|
+
ToggleGroupProps
|
|
440
|
+
} from '@instructure/ui-toggle-details/v11_7'
|
|
441
|
+
export { Tooltip } from '@instructure/ui-tooltip/v11_7'
|
|
442
|
+
export type {
|
|
443
|
+
TooltipProps,
|
|
444
|
+
TooltipRenderChildrenArgs
|
|
445
|
+
} from '@instructure/ui-tooltip/v11_7'
|
|
446
|
+
export {
|
|
447
|
+
TopNavBar,
|
|
448
|
+
TopNavBarActionItems,
|
|
449
|
+
TopNavBarBrand,
|
|
450
|
+
TopNavBarBreadcrumb,
|
|
451
|
+
TopNavBarItem,
|
|
452
|
+
TopNavBarLayout,
|
|
453
|
+
TopNavBarMenuItems,
|
|
454
|
+
TopNavBarUser
|
|
455
|
+
} from '@instructure/ui-top-nav-bar/v11_7'
|
|
456
|
+
export type {
|
|
457
|
+
TopNavBarProps,
|
|
458
|
+
TopNavBarOwnProps,
|
|
459
|
+
TopNavBarActionItemsProps,
|
|
460
|
+
TopNavBarActionItemsOwnProps,
|
|
461
|
+
TopNavBarBrandProps,
|
|
462
|
+
TopNavBarBrandOwnProps,
|
|
463
|
+
TopNavBarItemProps,
|
|
464
|
+
TopNavBarItemOwnProps,
|
|
465
|
+
TopNavBarItemTooltipType,
|
|
466
|
+
TopNavBarLayoutProps,
|
|
467
|
+
CommonTopNavBarLayoutProps,
|
|
468
|
+
TopNavBarDesktopLayoutProps,
|
|
469
|
+
TopNavBarDesktopLayoutOwnProps,
|
|
470
|
+
DesktopLayoutOwnProps,
|
|
471
|
+
TopNavBarSmallViewportLayoutProps,
|
|
472
|
+
TopNavBarSmallViewportLayoutOwnProps,
|
|
473
|
+
SmallViewportLayoutOwnProps,
|
|
474
|
+
TopNavBarMenuItemsProps,
|
|
475
|
+
TopNavBarMenuItemsOwnProps,
|
|
476
|
+
TopNavBarUserProps,
|
|
477
|
+
TopNavBarUserOwnProps
|
|
478
|
+
} from '@instructure/ui-top-nav-bar/v11_7'
|
|
479
|
+
export { Tray } from '@instructure/ui-tray/v11_7'
|
|
480
|
+
export type { TrayProps } from '@instructure/ui-tray/v11_7'
|
|
481
|
+
export {
|
|
482
|
+
TreeBrowser,
|
|
483
|
+
TreeNode,
|
|
484
|
+
TreeButton,
|
|
485
|
+
TreeCollection
|
|
486
|
+
} from '@instructure/ui-tree-browser/v11_7'
|
|
487
|
+
export type {
|
|
488
|
+
TreeBrowserButtonProps,
|
|
489
|
+
TreeBrowserProps,
|
|
490
|
+
TreeBrowserCollectionProps,
|
|
491
|
+
TreeBrowserNodeProps
|
|
492
|
+
} from '@instructure/ui-tree-browser/v11_7'
|
|
493
|
+
export { TruncateList } from '@instructure/ui-truncate-list'
|
|
494
|
+
export type { TruncateListProps } from '@instructure/ui-truncate-list'
|
|
495
|
+
export { TruncateText } from '@instructure/ui-truncate-text/v11_7'
|
|
496
|
+
export type { TruncateTextProps } from '@instructure/ui-truncate-text/v11_7'
|
|
497
|
+
export { View, ContextView } from '@instructure/ui-view/v11_7'
|
|
498
|
+
export type {
|
|
499
|
+
ViewProps,
|
|
500
|
+
ContextViewProps,
|
|
501
|
+
ViewOwnProps
|
|
502
|
+
} from '@instructure/ui-view/v11_7'
|