@instructure/ui 8.30.1-snapshot-1 → 8.30.1-snapshot-15
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 -2
- package/es/index.js +1 -0
- package/lib/index.js +9 -0
- package/package.json +75 -74
- package/src/index.ts +1 -0
- package/tsconfig.build.json +1 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/index.d.ts +1 -0
- package/types/index.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,12 @@
|
|
|
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
|
-
## [8.30.1-snapshot-
|
|
6
|
+
## [8.30.1-snapshot-15](https://github.com/instructure/instructure-ui/compare/v8.30.0...v8.30.1-snapshot-15) (2022-11-21)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **shared-types,ui,ui-top-nav-bar:** add new `TopNavBar` component ([3f27257](https://github.com/instructure/instructure-ui/commit/3f272572276fb62d7b06005dd46206604c890db2))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/es/index.js
CHANGED
|
@@ -87,6 +87,7 @@ export { canvas, canvasHighContrast, instructure } from '@instructure/ui-themes'
|
|
|
87
87
|
export { TimeSelect } from '@instructure/ui-time-select';
|
|
88
88
|
export { ToggleDetails, ToggleGroup } from '@instructure/ui-toggle-details';
|
|
89
89
|
export { Tooltip } from '@instructure/ui-tooltip';
|
|
90
|
+
export { TopNavBar } from '@instructure/ui-top-nav-bar';
|
|
90
91
|
export { Tray } from '@instructure/ui-tray';
|
|
91
92
|
export { TreeBrowser } from '@instructure/ui-tree-browser';
|
|
92
93
|
export { TruncateList } from '@instructure/ui-truncate-list';
|
package/lib/index.js
CHANGED
|
@@ -111,6 +111,7 @@ var _exportNames = {
|
|
|
111
111
|
ToggleDetails: true,
|
|
112
112
|
ToggleGroup: true,
|
|
113
113
|
Tooltip: true,
|
|
114
|
+
TopNavBar: true,
|
|
114
115
|
Tray: true,
|
|
115
116
|
TreeBrowser: true,
|
|
116
117
|
TruncateList: true,
|
|
@@ -736,6 +737,12 @@ Object.defineProperty(exports, "Tooltip", {
|
|
|
736
737
|
return _uiTooltip.Tooltip;
|
|
737
738
|
}
|
|
738
739
|
});
|
|
740
|
+
Object.defineProperty(exports, "TopNavBar", {
|
|
741
|
+
enumerable: true,
|
|
742
|
+
get: function () {
|
|
743
|
+
return _uiTopNavBar.TopNavBar;
|
|
744
|
+
}
|
|
745
|
+
});
|
|
739
746
|
Object.defineProperty(exports, "Transition", {
|
|
740
747
|
enumerable: true,
|
|
741
748
|
get: function () {
|
|
@@ -941,6 +948,8 @@ var _uiToggleDetails = require("@instructure/ui-toggle-details");
|
|
|
941
948
|
|
|
942
949
|
var _uiTooltip = require("@instructure/ui-tooltip");
|
|
943
950
|
|
|
951
|
+
var _uiTopNavBar = require("@instructure/ui-top-nav-bar");
|
|
952
|
+
|
|
944
953
|
var _uiTray = require("@instructure/ui-tray");
|
|
945
954
|
|
|
946
955
|
var _uiTreeBrowser = require("@instructure/ui-tree-browser");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui",
|
|
3
|
-
"version": "8.30.1-snapshot-
|
|
3
|
+
"version": "8.30.1-snapshot-15",
|
|
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,81 +25,82 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@babel/runtime": "^7.13.10",
|
|
28
|
-
"@instructure/emotion": "8.30.1-snapshot-
|
|
29
|
-
"@instructure/ui-a11y-content": "8.30.1-snapshot-
|
|
30
|
-
"@instructure/ui-alerts": "8.30.1-snapshot-
|
|
31
|
-
"@instructure/ui-avatar": "8.30.1-snapshot-
|
|
32
|
-
"@instructure/ui-badge": "8.30.1-snapshot-
|
|
33
|
-
"@instructure/ui-billboard": "8.30.1-snapshot-
|
|
34
|
-
"@instructure/ui-breadcrumb": "8.30.1-snapshot-
|
|
35
|
-
"@instructure/ui-buttons": "8.30.1-snapshot-
|
|
36
|
-
"@instructure/ui-byline": "8.30.1-snapshot-
|
|
37
|
-
"@instructure/ui-calendar": "8.30.1-snapshot-
|
|
38
|
-
"@instructure/ui-checkbox": "8.30.1-snapshot-
|
|
39
|
-
"@instructure/ui-code-editor": "8.30.1-snapshot-
|
|
40
|
-
"@instructure/ui-color-picker": "8.30.1-snapshot-
|
|
41
|
-
"@instructure/ui-date-input": "8.30.1-snapshot-
|
|
42
|
-
"@instructure/ui-date-time-input": "8.30.1-snapshot-
|
|
43
|
-
"@instructure/ui-dialog": "8.30.1-snapshot-
|
|
44
|
-
"@instructure/ui-drawer-layout": "8.30.1-snapshot-
|
|
45
|
-
"@instructure/ui-drilldown": "8.30.1-snapshot-
|
|
46
|
-
"@instructure/ui-editable": "8.30.1-snapshot-
|
|
47
|
-
"@instructure/ui-expandable": "8.30.1-snapshot-
|
|
48
|
-
"@instructure/ui-file-drop": "8.30.1-snapshot-
|
|
49
|
-
"@instructure/ui-flex": "8.30.1-snapshot-
|
|
50
|
-
"@instructure/ui-focusable": "8.30.1-snapshot-
|
|
51
|
-
"@instructure/ui-form-field": "8.30.1-snapshot-
|
|
52
|
-
"@instructure/ui-grid": "8.30.1-snapshot-
|
|
53
|
-
"@instructure/ui-heading": "8.30.1-snapshot-
|
|
54
|
-
"@instructure/ui-i18n": "8.30.1-snapshot-
|
|
55
|
-
"@instructure/ui-icons": "8.30.1-snapshot-
|
|
56
|
-
"@instructure/ui-img": "8.30.1-snapshot-
|
|
57
|
-
"@instructure/ui-link": "8.30.1-snapshot-
|
|
58
|
-
"@instructure/ui-list": "8.30.1-snapshot-
|
|
59
|
-
"@instructure/ui-menu": "8.30.1-snapshot-
|
|
60
|
-
"@instructure/ui-metric": "8.30.1-snapshot-
|
|
61
|
-
"@instructure/ui-modal": "8.30.1-snapshot-
|
|
62
|
-
"@instructure/ui-motion": "8.30.1-snapshot-
|
|
63
|
-
"@instructure/ui-navigation": "8.30.1-snapshot-
|
|
64
|
-
"@instructure/ui-number-input": "8.30.1-snapshot-
|
|
65
|
-
"@instructure/ui-options": "8.30.1-snapshot-
|
|
66
|
-
"@instructure/ui-overlays": "8.30.1-snapshot-
|
|
67
|
-
"@instructure/ui-pages": "8.30.1-snapshot-
|
|
68
|
-
"@instructure/ui-pagination": "8.30.1-snapshot-
|
|
69
|
-
"@instructure/ui-pill": "8.30.1-snapshot-
|
|
70
|
-
"@instructure/ui-popover": "8.30.1-snapshot-
|
|
71
|
-
"@instructure/ui-portal": "8.30.1-snapshot-
|
|
72
|
-
"@instructure/ui-position": "8.30.1-snapshot-
|
|
73
|
-
"@instructure/ui-progress": "8.30.1-snapshot-
|
|
74
|
-
"@instructure/ui-radio-input": "8.30.1-snapshot-
|
|
75
|
-
"@instructure/ui-range-input": "8.30.1-snapshot-
|
|
76
|
-
"@instructure/ui-rating": "8.30.1-snapshot-
|
|
77
|
-
"@instructure/ui-responsive": "8.30.1-snapshot-
|
|
78
|
-
"@instructure/ui-select": "8.30.1-snapshot-
|
|
79
|
-
"@instructure/ui-selectable": "8.30.1-snapshot-
|
|
80
|
-
"@instructure/ui-simple-select": "8.30.1-snapshot-
|
|
81
|
-
"@instructure/ui-source-code-editor": "8.30.1-snapshot-
|
|
82
|
-
"@instructure/ui-spinner": "8.30.1-snapshot-
|
|
83
|
-
"@instructure/ui-svg-images": "8.30.1-snapshot-
|
|
84
|
-
"@instructure/ui-table": "8.30.1-snapshot-
|
|
85
|
-
"@instructure/ui-tabs": "8.30.1-snapshot-
|
|
86
|
-
"@instructure/ui-tag": "8.30.1-snapshot-
|
|
87
|
-
"@instructure/ui-text": "8.30.1-snapshot-
|
|
88
|
-
"@instructure/ui-text-area": "8.30.1-snapshot-
|
|
89
|
-
"@instructure/ui-text-input": "8.30.1-snapshot-
|
|
90
|
-
"@instructure/ui-themes": "8.30.1-snapshot-
|
|
91
|
-
"@instructure/ui-time-select": "8.30.1-snapshot-
|
|
92
|
-
"@instructure/ui-toggle-details": "8.30.1-snapshot-
|
|
93
|
-
"@instructure/ui-tooltip": "8.30.1-snapshot-
|
|
94
|
-
"@instructure/ui-
|
|
95
|
-
"@instructure/ui-
|
|
96
|
-
"@instructure/ui-
|
|
97
|
-
"@instructure/ui-truncate-
|
|
98
|
-
"@instructure/ui-
|
|
28
|
+
"@instructure/emotion": "8.30.1-snapshot-15",
|
|
29
|
+
"@instructure/ui-a11y-content": "8.30.1-snapshot-15",
|
|
30
|
+
"@instructure/ui-alerts": "8.30.1-snapshot-15",
|
|
31
|
+
"@instructure/ui-avatar": "8.30.1-snapshot-15",
|
|
32
|
+
"@instructure/ui-badge": "8.30.1-snapshot-15",
|
|
33
|
+
"@instructure/ui-billboard": "8.30.1-snapshot-15",
|
|
34
|
+
"@instructure/ui-breadcrumb": "8.30.1-snapshot-15",
|
|
35
|
+
"@instructure/ui-buttons": "8.30.1-snapshot-15",
|
|
36
|
+
"@instructure/ui-byline": "8.30.1-snapshot-15",
|
|
37
|
+
"@instructure/ui-calendar": "8.30.1-snapshot-15",
|
|
38
|
+
"@instructure/ui-checkbox": "8.30.1-snapshot-15",
|
|
39
|
+
"@instructure/ui-code-editor": "8.30.1-snapshot-15",
|
|
40
|
+
"@instructure/ui-color-picker": "8.30.1-snapshot-15",
|
|
41
|
+
"@instructure/ui-date-input": "8.30.1-snapshot-15",
|
|
42
|
+
"@instructure/ui-date-time-input": "8.30.1-snapshot-15",
|
|
43
|
+
"@instructure/ui-dialog": "8.30.1-snapshot-15",
|
|
44
|
+
"@instructure/ui-drawer-layout": "8.30.1-snapshot-15",
|
|
45
|
+
"@instructure/ui-drilldown": "8.30.1-snapshot-15",
|
|
46
|
+
"@instructure/ui-editable": "8.30.1-snapshot-15",
|
|
47
|
+
"@instructure/ui-expandable": "8.30.1-snapshot-15",
|
|
48
|
+
"@instructure/ui-file-drop": "8.30.1-snapshot-15",
|
|
49
|
+
"@instructure/ui-flex": "8.30.1-snapshot-15",
|
|
50
|
+
"@instructure/ui-focusable": "8.30.1-snapshot-15",
|
|
51
|
+
"@instructure/ui-form-field": "8.30.1-snapshot-15",
|
|
52
|
+
"@instructure/ui-grid": "8.30.1-snapshot-15",
|
|
53
|
+
"@instructure/ui-heading": "8.30.1-snapshot-15",
|
|
54
|
+
"@instructure/ui-i18n": "8.30.1-snapshot-15",
|
|
55
|
+
"@instructure/ui-icons": "8.30.1-snapshot-15",
|
|
56
|
+
"@instructure/ui-img": "8.30.1-snapshot-15",
|
|
57
|
+
"@instructure/ui-link": "8.30.1-snapshot-15",
|
|
58
|
+
"@instructure/ui-list": "8.30.1-snapshot-15",
|
|
59
|
+
"@instructure/ui-menu": "8.30.1-snapshot-15",
|
|
60
|
+
"@instructure/ui-metric": "8.30.1-snapshot-15",
|
|
61
|
+
"@instructure/ui-modal": "8.30.1-snapshot-15",
|
|
62
|
+
"@instructure/ui-motion": "8.30.1-snapshot-15",
|
|
63
|
+
"@instructure/ui-navigation": "8.30.1-snapshot-15",
|
|
64
|
+
"@instructure/ui-number-input": "8.30.1-snapshot-15",
|
|
65
|
+
"@instructure/ui-options": "8.30.1-snapshot-15",
|
|
66
|
+
"@instructure/ui-overlays": "8.30.1-snapshot-15",
|
|
67
|
+
"@instructure/ui-pages": "8.30.1-snapshot-15",
|
|
68
|
+
"@instructure/ui-pagination": "8.30.1-snapshot-15",
|
|
69
|
+
"@instructure/ui-pill": "8.30.1-snapshot-15",
|
|
70
|
+
"@instructure/ui-popover": "8.30.1-snapshot-15",
|
|
71
|
+
"@instructure/ui-portal": "8.30.1-snapshot-15",
|
|
72
|
+
"@instructure/ui-position": "8.30.1-snapshot-15",
|
|
73
|
+
"@instructure/ui-progress": "8.30.1-snapshot-15",
|
|
74
|
+
"@instructure/ui-radio-input": "8.30.1-snapshot-15",
|
|
75
|
+
"@instructure/ui-range-input": "8.30.1-snapshot-15",
|
|
76
|
+
"@instructure/ui-rating": "8.30.1-snapshot-15",
|
|
77
|
+
"@instructure/ui-responsive": "8.30.1-snapshot-15",
|
|
78
|
+
"@instructure/ui-select": "8.30.1-snapshot-15",
|
|
79
|
+
"@instructure/ui-selectable": "8.30.1-snapshot-15",
|
|
80
|
+
"@instructure/ui-simple-select": "8.30.1-snapshot-15",
|
|
81
|
+
"@instructure/ui-source-code-editor": "8.30.1-snapshot-15",
|
|
82
|
+
"@instructure/ui-spinner": "8.30.1-snapshot-15",
|
|
83
|
+
"@instructure/ui-svg-images": "8.30.1-snapshot-15",
|
|
84
|
+
"@instructure/ui-table": "8.30.1-snapshot-15",
|
|
85
|
+
"@instructure/ui-tabs": "8.30.1-snapshot-15",
|
|
86
|
+
"@instructure/ui-tag": "8.30.1-snapshot-15",
|
|
87
|
+
"@instructure/ui-text": "8.30.1-snapshot-15",
|
|
88
|
+
"@instructure/ui-text-area": "8.30.1-snapshot-15",
|
|
89
|
+
"@instructure/ui-text-input": "8.30.1-snapshot-15",
|
|
90
|
+
"@instructure/ui-themes": "8.30.1-snapshot-15",
|
|
91
|
+
"@instructure/ui-time-select": "8.30.1-snapshot-15",
|
|
92
|
+
"@instructure/ui-toggle-details": "8.30.1-snapshot-15",
|
|
93
|
+
"@instructure/ui-tooltip": "8.30.1-snapshot-15",
|
|
94
|
+
"@instructure/ui-top-nav-bar": "8.30.1-snapshot-15",
|
|
95
|
+
"@instructure/ui-tray": "8.30.1-snapshot-15",
|
|
96
|
+
"@instructure/ui-tree-browser": "8.30.1-snapshot-15",
|
|
97
|
+
"@instructure/ui-truncate-list": "8.30.1-snapshot-15",
|
|
98
|
+
"@instructure/ui-truncate-text": "8.30.1-snapshot-15",
|
|
99
|
+
"@instructure/ui-view": "8.30.1-snapshot-15"
|
|
99
100
|
},
|
|
100
101
|
"devDependencies": {
|
|
101
|
-
"@instructure/ui-babel-preset": "8.30.1-snapshot-
|
|
102
|
-
"@instructure/ui-test-utils": "8.30.1-snapshot-
|
|
102
|
+
"@instructure/ui-babel-preset": "8.30.1-snapshot-15",
|
|
103
|
+
"@instructure/ui-test-utils": "8.30.1-snapshot-15",
|
|
103
104
|
"jest": "^24.9.0"
|
|
104
105
|
},
|
|
105
106
|
"publishConfig": {
|
package/src/index.ts
CHANGED
|
@@ -131,6 +131,7 @@ export { canvas, canvasHighContrast, instructure } from '@instructure/ui-themes'
|
|
|
131
131
|
export { TimeSelect } from '@instructure/ui-time-select'
|
|
132
132
|
export { ToggleDetails, ToggleGroup } from '@instructure/ui-toggle-details'
|
|
133
133
|
export { Tooltip } from '@instructure/ui-tooltip'
|
|
134
|
+
export { TopNavBar } from '@instructure/ui-top-nav-bar'
|
|
134
135
|
export { Tray } from '@instructure/ui-tray'
|
|
135
136
|
export { TreeBrowser } from '@instructure/ui-tree-browser'
|
|
136
137
|
export { TruncateList } from '@instructure/ui-truncate-list'
|
package/tsconfig.build.json
CHANGED
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
{ "path": "../ui-time-select/tsconfig.build.json" },
|
|
73
73
|
{ "path": "../ui-toggle-details/tsconfig.build.json" },
|
|
74
74
|
{ "path": "../ui-tooltip/tsconfig.build.json" },
|
|
75
|
+
{ "path": "../ui-top-nav-bar/tsconfig.build.json" },
|
|
75
76
|
{ "path": "../ui-tray/tsconfig.build.json" },
|
|
76
77
|
{ "path": "../ui-tree-browser/tsconfig.build.json" },
|
|
77
78
|
{ "path": "../ui-truncate-list/tsconfig.build.json" },
|