@instructure/ui 8.56.0 → 9.0.1-snapshot-0
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 +19 -0
- package/README.md +0 -3
- package/es/index.js +3 -3
- package/lib/index.js +0 -21
- package/package.json +76 -76
- package/src/index.ts +3 -11
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/index.d.ts +3 -3
- package/types/index.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [9.0.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v9.0.0...v9.0.1-snapshot-0) (2024-05-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **shared-types,ui,ui-navigation:** remove deprecated component Navigation ([0173c76](https://github.com/instructure/instructure-ui/commit/0173c761f050d801f4191b823d423e6e29abedd5))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @instructure/ui
|
package/README.md
CHANGED
|
@@ -18,7 +18,6 @@ The `ui` package contains the following:
|
|
|
18
18
|
- Alert
|
|
19
19
|
- All ui-icons
|
|
20
20
|
- ApplyLocale
|
|
21
|
-
- ApplyTextDirection
|
|
22
21
|
- AppNav
|
|
23
22
|
- Avatar
|
|
24
23
|
- Badge
|
|
@@ -37,7 +36,6 @@ The `ui` package contains the following:
|
|
|
37
36
|
- Dialog
|
|
38
37
|
- DrawerLayout
|
|
39
38
|
- Editable
|
|
40
|
-
- EmotionThemeProvider
|
|
41
39
|
- FileDrop
|
|
42
40
|
- Flex
|
|
43
41
|
- Focusable
|
|
@@ -62,7 +60,6 @@ The `ui` package contains the following:
|
|
|
62
60
|
- Metric
|
|
63
61
|
- MetricGroup
|
|
64
62
|
- Modal
|
|
65
|
-
- Navigation
|
|
66
63
|
- NumberInput
|
|
67
64
|
- Options
|
|
68
65
|
- Overlay
|
package/es/index.js
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
export {
|
|
25
|
+
export { InstUISettingsProvider, withStyle } from '@instructure/emotion';
|
|
26
26
|
export { AccessibleContent, PresentationContent, ScreenReaderContent } from '@instructure/ui-a11y-content';
|
|
27
27
|
export { Alert } from '@instructure/ui-alerts';
|
|
28
28
|
export { Avatar } from '@instructure/ui-avatar';
|
|
@@ -48,7 +48,7 @@ export { Focusable } from '@instructure/ui-focusable';
|
|
|
48
48
|
export { FormField, FormFieldLabel, FormFieldMessage, FormFieldMessages, FormFieldLayout, FormFieldGroup } from '@instructure/ui-form-field';
|
|
49
49
|
export { Grid, GridRow, GridCol } from '@instructure/ui-grid';
|
|
50
50
|
export { Heading } from '@instructure/ui-heading';
|
|
51
|
-
export { ApplyLocale,
|
|
51
|
+
export { ApplyLocale, TextDirectionContext } from '@instructure/ui-i18n';
|
|
52
52
|
export * from '@instructure/ui-icons';
|
|
53
53
|
export { Img } from '@instructure/ui-img';
|
|
54
54
|
export { Link } from '@instructure/ui-link';
|
|
@@ -57,7 +57,7 @@ export { Menu, MenuItem, MenuItemGroup, MenuItemSeparator } from '@instructure/u
|
|
|
57
57
|
export { MetricGroup, Metric } from '@instructure/ui-metric';
|
|
58
58
|
export { Modal } from '@instructure/ui-modal';
|
|
59
59
|
export { Transition } from '@instructure/ui-motion';
|
|
60
|
-
export {
|
|
60
|
+
export { AppNav } from '@instructure/ui-navigation';
|
|
61
61
|
export { NumberInput } from '@instructure/ui-number-input';
|
|
62
62
|
export { Options } from '@instructure/ui-options';
|
|
63
63
|
export { Mask, Overlay } from '@instructure/ui-overlays';
|
package/lib/index.js
CHANGED
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
var _exportNames = {
|
|
7
|
-
EmotionThemeProvider: true,
|
|
8
7
|
InstUISettingsProvider: true,
|
|
9
8
|
withStyle: true,
|
|
10
9
|
AccessibleContent: true,
|
|
@@ -57,7 +56,6 @@ var _exportNames = {
|
|
|
57
56
|
GridCol: true,
|
|
58
57
|
Heading: true,
|
|
59
58
|
ApplyLocale: true,
|
|
60
|
-
ApplyTextDirection: true,
|
|
61
59
|
TextDirectionContext: true,
|
|
62
60
|
Img: true,
|
|
63
61
|
Link: true,
|
|
@@ -72,7 +70,6 @@ var _exportNames = {
|
|
|
72
70
|
Metric: true,
|
|
73
71
|
Modal: true,
|
|
74
72
|
Transition: true,
|
|
75
|
-
Navigation: true,
|
|
76
73
|
AppNav: true,
|
|
77
74
|
NumberInput: true,
|
|
78
75
|
Options: true,
|
|
@@ -144,12 +141,6 @@ Object.defineProperty(exports, "ApplyLocale", {
|
|
|
144
141
|
return _uiI18n.ApplyLocale;
|
|
145
142
|
}
|
|
146
143
|
});
|
|
147
|
-
Object.defineProperty(exports, "ApplyTextDirection", {
|
|
148
|
-
enumerable: true,
|
|
149
|
-
get: function () {
|
|
150
|
-
return _uiI18n.ApplyTextDirection;
|
|
151
|
-
}
|
|
152
|
-
});
|
|
153
144
|
Object.defineProperty(exports, "Avatar", {
|
|
154
145
|
enumerable: true,
|
|
155
146
|
get: function () {
|
|
@@ -312,12 +303,6 @@ Object.defineProperty(exports, "Editable", {
|
|
|
312
303
|
return _uiEditable.Editable;
|
|
313
304
|
}
|
|
314
305
|
});
|
|
315
|
-
Object.defineProperty(exports, "EmotionThemeProvider", {
|
|
316
|
-
enumerable: true,
|
|
317
|
-
get: function () {
|
|
318
|
-
return _emotion.EmotionThemeProvider;
|
|
319
|
-
}
|
|
320
|
-
});
|
|
321
306
|
Object.defineProperty(exports, "Expandable", {
|
|
322
307
|
enumerable: true,
|
|
323
308
|
get: function () {
|
|
@@ -510,12 +495,6 @@ Object.defineProperty(exports, "Modal", {
|
|
|
510
495
|
return _uiModal.Modal;
|
|
511
496
|
}
|
|
512
497
|
});
|
|
513
|
-
Object.defineProperty(exports, "Navigation", {
|
|
514
|
-
enumerable: true,
|
|
515
|
-
get: function () {
|
|
516
|
-
return _uiNavigation.Navigation;
|
|
517
|
-
}
|
|
518
|
-
});
|
|
519
498
|
Object.defineProperty(exports, "NumberInput", {
|
|
520
499
|
enumerable: true,
|
|
521
500
|
get: function () {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.1-snapshot-0",
|
|
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",
|
|
@@ -25,83 +25,83 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@babel/runtime": "^7.23.2",
|
|
28
|
-
"@instructure/emotion": "
|
|
29
|
-
"@instructure/ui-a11y-content": "
|
|
30
|
-
"@instructure/ui-alerts": "
|
|
31
|
-
"@instructure/ui-avatar": "
|
|
32
|
-
"@instructure/ui-badge": "
|
|
33
|
-
"@instructure/ui-billboard": "
|
|
34
|
-
"@instructure/ui-breadcrumb": "
|
|
35
|
-
"@instructure/ui-buttons": "
|
|
36
|
-
"@instructure/ui-byline": "
|
|
37
|
-
"@instructure/ui-calendar": "
|
|
38
|
-
"@instructure/ui-checkbox": "
|
|
39
|
-
"@instructure/ui-code-editor": "
|
|
40
|
-
"@instructure/ui-color-picker": "
|
|
41
|
-
"@instructure/ui-date-input": "
|
|
42
|
-
"@instructure/ui-date-time-input": "
|
|
43
|
-
"@instructure/ui-dialog": "
|
|
44
|
-
"@instructure/ui-drawer-layout": "
|
|
45
|
-
"@instructure/ui-drilldown": "
|
|
46
|
-
"@instructure/ui-editable": "
|
|
47
|
-
"@instructure/ui-expandable": "
|
|
48
|
-
"@instructure/ui-file-drop": "
|
|
49
|
-
"@instructure/ui-flex": "
|
|
50
|
-
"@instructure/ui-focusable": "
|
|
51
|
-
"@instructure/ui-form-field": "
|
|
52
|
-
"@instructure/ui-grid": "
|
|
53
|
-
"@instructure/ui-heading": "
|
|
54
|
-
"@instructure/ui-i18n": "
|
|
55
|
-
"@instructure/ui-icons": "
|
|
56
|
-
"@instructure/ui-img": "
|
|
57
|
-
"@instructure/ui-link": "
|
|
58
|
-
"@instructure/ui-list": "
|
|
59
|
-
"@instructure/ui-menu": "
|
|
60
|
-
"@instructure/ui-metric": "
|
|
61
|
-
"@instructure/ui-modal": "
|
|
62
|
-
"@instructure/ui-motion": "
|
|
63
|
-
"@instructure/ui-navigation": "
|
|
64
|
-
"@instructure/ui-number-input": "
|
|
65
|
-
"@instructure/ui-options": "
|
|
66
|
-
"@instructure/ui-overlays": "
|
|
67
|
-
"@instructure/ui-pages": "
|
|
68
|
-
"@instructure/ui-pagination": "
|
|
69
|
-
"@instructure/ui-pill": "
|
|
70
|
-
"@instructure/ui-popover": "
|
|
71
|
-
"@instructure/ui-portal": "
|
|
72
|
-
"@instructure/ui-position": "
|
|
73
|
-
"@instructure/ui-progress": "
|
|
74
|
-
"@instructure/ui-radio-input": "
|
|
75
|
-
"@instructure/ui-range-input": "
|
|
76
|
-
"@instructure/ui-rating": "
|
|
77
|
-
"@instructure/ui-responsive": "
|
|
78
|
-
"@instructure/ui-select": "
|
|
79
|
-
"@instructure/ui-selectable": "
|
|
80
|
-
"@instructure/ui-side-nav-bar": "
|
|
81
|
-
"@instructure/ui-simple-select": "
|
|
82
|
-
"@instructure/ui-source-code-editor": "
|
|
83
|
-
"@instructure/ui-spinner": "
|
|
84
|
-
"@instructure/ui-svg-images": "
|
|
85
|
-
"@instructure/ui-table": "
|
|
86
|
-
"@instructure/ui-tabs": "
|
|
87
|
-
"@instructure/ui-tag": "
|
|
88
|
-
"@instructure/ui-text": "
|
|
89
|
-
"@instructure/ui-text-area": "
|
|
90
|
-
"@instructure/ui-text-input": "
|
|
91
|
-
"@instructure/ui-themes": "
|
|
92
|
-
"@instructure/ui-time-select": "
|
|
93
|
-
"@instructure/ui-toggle-details": "
|
|
94
|
-
"@instructure/ui-tooltip": "
|
|
95
|
-
"@instructure/ui-top-nav-bar": "
|
|
96
|
-
"@instructure/ui-tray": "
|
|
97
|
-
"@instructure/ui-tree-browser": "
|
|
98
|
-
"@instructure/ui-truncate-list": "
|
|
99
|
-
"@instructure/ui-truncate-text": "
|
|
100
|
-
"@instructure/ui-view": "
|
|
28
|
+
"@instructure/emotion": "9.0.1-snapshot-0",
|
|
29
|
+
"@instructure/ui-a11y-content": "9.0.1-snapshot-0",
|
|
30
|
+
"@instructure/ui-alerts": "9.0.1-snapshot-0",
|
|
31
|
+
"@instructure/ui-avatar": "9.0.1-snapshot-0",
|
|
32
|
+
"@instructure/ui-badge": "9.0.1-snapshot-0",
|
|
33
|
+
"@instructure/ui-billboard": "9.0.1-snapshot-0",
|
|
34
|
+
"@instructure/ui-breadcrumb": "9.0.1-snapshot-0",
|
|
35
|
+
"@instructure/ui-buttons": "9.0.1-snapshot-0",
|
|
36
|
+
"@instructure/ui-byline": "9.0.1-snapshot-0",
|
|
37
|
+
"@instructure/ui-calendar": "9.0.1-snapshot-0",
|
|
38
|
+
"@instructure/ui-checkbox": "9.0.1-snapshot-0",
|
|
39
|
+
"@instructure/ui-code-editor": "9.0.1-snapshot-0",
|
|
40
|
+
"@instructure/ui-color-picker": "9.0.1-snapshot-0",
|
|
41
|
+
"@instructure/ui-date-input": "9.0.1-snapshot-0",
|
|
42
|
+
"@instructure/ui-date-time-input": "9.0.1-snapshot-0",
|
|
43
|
+
"@instructure/ui-dialog": "9.0.1-snapshot-0",
|
|
44
|
+
"@instructure/ui-drawer-layout": "9.0.1-snapshot-0",
|
|
45
|
+
"@instructure/ui-drilldown": "9.0.1-snapshot-0",
|
|
46
|
+
"@instructure/ui-editable": "9.0.1-snapshot-0",
|
|
47
|
+
"@instructure/ui-expandable": "9.0.1-snapshot-0",
|
|
48
|
+
"@instructure/ui-file-drop": "9.0.1-snapshot-0",
|
|
49
|
+
"@instructure/ui-flex": "9.0.1-snapshot-0",
|
|
50
|
+
"@instructure/ui-focusable": "9.0.1-snapshot-0",
|
|
51
|
+
"@instructure/ui-form-field": "9.0.1-snapshot-0",
|
|
52
|
+
"@instructure/ui-grid": "9.0.1-snapshot-0",
|
|
53
|
+
"@instructure/ui-heading": "9.0.1-snapshot-0",
|
|
54
|
+
"@instructure/ui-i18n": "9.0.1-snapshot-0",
|
|
55
|
+
"@instructure/ui-icons": "9.0.1-snapshot-0",
|
|
56
|
+
"@instructure/ui-img": "9.0.1-snapshot-0",
|
|
57
|
+
"@instructure/ui-link": "9.0.1-snapshot-0",
|
|
58
|
+
"@instructure/ui-list": "9.0.1-snapshot-0",
|
|
59
|
+
"@instructure/ui-menu": "9.0.1-snapshot-0",
|
|
60
|
+
"@instructure/ui-metric": "9.0.1-snapshot-0",
|
|
61
|
+
"@instructure/ui-modal": "9.0.1-snapshot-0",
|
|
62
|
+
"@instructure/ui-motion": "9.0.1-snapshot-0",
|
|
63
|
+
"@instructure/ui-navigation": "9.0.1-snapshot-0",
|
|
64
|
+
"@instructure/ui-number-input": "9.0.1-snapshot-0",
|
|
65
|
+
"@instructure/ui-options": "9.0.1-snapshot-0",
|
|
66
|
+
"@instructure/ui-overlays": "9.0.1-snapshot-0",
|
|
67
|
+
"@instructure/ui-pages": "9.0.1-snapshot-0",
|
|
68
|
+
"@instructure/ui-pagination": "9.0.1-snapshot-0",
|
|
69
|
+
"@instructure/ui-pill": "9.0.1-snapshot-0",
|
|
70
|
+
"@instructure/ui-popover": "9.0.1-snapshot-0",
|
|
71
|
+
"@instructure/ui-portal": "9.0.1-snapshot-0",
|
|
72
|
+
"@instructure/ui-position": "9.0.1-snapshot-0",
|
|
73
|
+
"@instructure/ui-progress": "9.0.1-snapshot-0",
|
|
74
|
+
"@instructure/ui-radio-input": "9.0.1-snapshot-0",
|
|
75
|
+
"@instructure/ui-range-input": "9.0.1-snapshot-0",
|
|
76
|
+
"@instructure/ui-rating": "9.0.1-snapshot-0",
|
|
77
|
+
"@instructure/ui-responsive": "9.0.1-snapshot-0",
|
|
78
|
+
"@instructure/ui-select": "9.0.1-snapshot-0",
|
|
79
|
+
"@instructure/ui-selectable": "9.0.1-snapshot-0",
|
|
80
|
+
"@instructure/ui-side-nav-bar": "9.0.1-snapshot-0",
|
|
81
|
+
"@instructure/ui-simple-select": "9.0.1-snapshot-0",
|
|
82
|
+
"@instructure/ui-source-code-editor": "9.0.1-snapshot-0",
|
|
83
|
+
"@instructure/ui-spinner": "9.0.1-snapshot-0",
|
|
84
|
+
"@instructure/ui-svg-images": "9.0.1-snapshot-0",
|
|
85
|
+
"@instructure/ui-table": "9.0.1-snapshot-0",
|
|
86
|
+
"@instructure/ui-tabs": "9.0.1-snapshot-0",
|
|
87
|
+
"@instructure/ui-tag": "9.0.1-snapshot-0",
|
|
88
|
+
"@instructure/ui-text": "9.0.1-snapshot-0",
|
|
89
|
+
"@instructure/ui-text-area": "9.0.1-snapshot-0",
|
|
90
|
+
"@instructure/ui-text-input": "9.0.1-snapshot-0",
|
|
91
|
+
"@instructure/ui-themes": "9.0.1-snapshot-0",
|
|
92
|
+
"@instructure/ui-time-select": "9.0.1-snapshot-0",
|
|
93
|
+
"@instructure/ui-toggle-details": "9.0.1-snapshot-0",
|
|
94
|
+
"@instructure/ui-tooltip": "9.0.1-snapshot-0",
|
|
95
|
+
"@instructure/ui-top-nav-bar": "9.0.1-snapshot-0",
|
|
96
|
+
"@instructure/ui-tray": "9.0.1-snapshot-0",
|
|
97
|
+
"@instructure/ui-tree-browser": "9.0.1-snapshot-0",
|
|
98
|
+
"@instructure/ui-truncate-list": "9.0.1-snapshot-0",
|
|
99
|
+
"@instructure/ui-truncate-text": "9.0.1-snapshot-0",
|
|
100
|
+
"@instructure/ui-view": "9.0.1-snapshot-0"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
|
-
"@instructure/ui-babel-preset": "
|
|
104
|
-
"@instructure/ui-test-utils": "
|
|
103
|
+
"@instructure/ui-babel-preset": "9.0.1-snapshot-0",
|
|
104
|
+
"@instructure/ui-test-utils": "9.0.1-snapshot-0",
|
|
105
105
|
"jest": "^29.7.0"
|
|
106
106
|
},
|
|
107
107
|
"publishConfig": {
|
package/src/index.ts
CHANGED
|
@@ -22,11 +22,7 @@
|
|
|
22
22
|
* SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
export {
|
|
26
|
-
EmotionThemeProvider,
|
|
27
|
-
InstUISettingsProvider,
|
|
28
|
-
withStyle
|
|
29
|
-
} from '@instructure/emotion'
|
|
25
|
+
export { InstUISettingsProvider, withStyle } from '@instructure/emotion'
|
|
30
26
|
export {
|
|
31
27
|
AccessibleContent,
|
|
32
28
|
PresentationContent,
|
|
@@ -82,11 +78,7 @@ export {
|
|
|
82
78
|
} from '@instructure/ui-form-field'
|
|
83
79
|
export { Grid, GridRow, GridCol } from '@instructure/ui-grid'
|
|
84
80
|
export { Heading } from '@instructure/ui-heading'
|
|
85
|
-
export {
|
|
86
|
-
ApplyLocale,
|
|
87
|
-
ApplyTextDirection,
|
|
88
|
-
TextDirectionContext
|
|
89
|
-
} from '@instructure/ui-i18n'
|
|
81
|
+
export { ApplyLocale, TextDirectionContext } from '@instructure/ui-i18n'
|
|
90
82
|
export * from '@instructure/ui-icons'
|
|
91
83
|
export { Img } from '@instructure/ui-img'
|
|
92
84
|
export { Link } from '@instructure/ui-link'
|
|
@@ -100,7 +92,7 @@ export {
|
|
|
100
92
|
export { MetricGroup, Metric } from '@instructure/ui-metric'
|
|
101
93
|
export { Modal } from '@instructure/ui-modal'
|
|
102
94
|
export { Transition } from '@instructure/ui-motion'
|
|
103
|
-
export {
|
|
95
|
+
export { AppNav } from '@instructure/ui-navigation'
|
|
104
96
|
export { NumberInput } from '@instructure/ui-number-input'
|
|
105
97
|
export { Options } from '@instructure/ui-options'
|
|
106
98
|
export { Mask, Overlay } from '@instructure/ui-overlays'
|