@instructure/ui 8.25.1-snapshot-17 → 8.25.1-snapshot-19
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 +72 -71
- 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.25.1-snapshot-
|
|
6
|
+
## [8.25.1-snapshot-19](https://github.com/instructure/instructure-ui/compare/v8.25.0...v8.25.1-snapshot-19) (2022-06-28)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **ui-source-code-editor,ui-code-editor,ui:** add new `SourceCodeEditor` component ([b5064f5](https://github.com/instructure/instructure-ui/commit/b5064f5c767eb2d5c5a6d7f5bb6d05bd689418b5))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
package/es/index.js
CHANGED
|
@@ -73,6 +73,7 @@ export { Responsive } from '@instructure/ui-responsive';
|
|
|
73
73
|
export { Select } from '@instructure/ui-select';
|
|
74
74
|
export { Selectable } from '@instructure/ui-selectable';
|
|
75
75
|
export { SimpleSelect } from '@instructure/ui-simple-select';
|
|
76
|
+
export { SourceCodeEditor } from '@instructure/ui-source-code-editor';
|
|
76
77
|
export { Spinner } from '@instructure/ui-spinner';
|
|
77
78
|
export { InlineSVG, SVGIcon } from '@instructure/ui-svg-images';
|
|
78
79
|
export { Table } from '@instructure/ui-table';
|
package/lib/index.js
CHANGED
|
@@ -89,6 +89,7 @@ var _exportNames = {
|
|
|
89
89
|
Select: true,
|
|
90
90
|
Selectable: true,
|
|
91
91
|
SimpleSelect: true,
|
|
92
|
+
SourceCodeEditor: true,
|
|
92
93
|
Spinner: true,
|
|
93
94
|
InlineSVG: true,
|
|
94
95
|
SVGIcon: true,
|
|
@@ -609,6 +610,12 @@ Object.defineProperty(exports, "SimpleSelect", {
|
|
|
609
610
|
return _uiSimpleSelect.SimpleSelect;
|
|
610
611
|
}
|
|
611
612
|
});
|
|
613
|
+
Object.defineProperty(exports, "SourceCodeEditor", {
|
|
614
|
+
enumerable: true,
|
|
615
|
+
get: function () {
|
|
616
|
+
return _uiSourceCodeEditor.SourceCodeEditor;
|
|
617
|
+
}
|
|
618
|
+
});
|
|
612
619
|
Object.defineProperty(exports, "Spinner", {
|
|
613
620
|
enumerable: true,
|
|
614
621
|
get: function () {
|
|
@@ -864,6 +871,8 @@ var _uiSelectable = require("@instructure/ui-selectable");
|
|
|
864
871
|
|
|
865
872
|
var _uiSimpleSelect = require("@instructure/ui-simple-select");
|
|
866
873
|
|
|
874
|
+
var _uiSourceCodeEditor = require("@instructure/ui-source-code-editor");
|
|
875
|
+
|
|
867
876
|
var _uiSpinner = require("@instructure/ui-spinner");
|
|
868
877
|
|
|
869
878
|
var _uiSvgImages = require("@instructure/ui-svg-images");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui",
|
|
3
|
-
"version": "8.25.1-snapshot-
|
|
3
|
+
"version": "8.25.1-snapshot-19",
|
|
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,78 +25,79 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@babel/runtime": "^7.13.10",
|
|
28
|
-
"@instructure/emotion": "8.25.1-snapshot-
|
|
29
|
-
"@instructure/ui-a11y-content": "8.25.1-snapshot-
|
|
30
|
-
"@instructure/ui-alerts": "8.25.1-snapshot-
|
|
31
|
-
"@instructure/ui-avatar": "8.25.1-snapshot-
|
|
32
|
-
"@instructure/ui-badge": "8.25.1-snapshot-
|
|
33
|
-
"@instructure/ui-billboard": "8.25.1-snapshot-
|
|
34
|
-
"@instructure/ui-breadcrumb": "8.25.1-snapshot-
|
|
35
|
-
"@instructure/ui-buttons": "8.25.1-snapshot-
|
|
36
|
-
"@instructure/ui-byline": "8.25.1-snapshot-
|
|
37
|
-
"@instructure/ui-calendar": "8.25.1-snapshot-
|
|
38
|
-
"@instructure/ui-checkbox": "8.25.1-snapshot-
|
|
39
|
-
"@instructure/ui-code-editor": "8.25.1-snapshot-
|
|
40
|
-
"@instructure/ui-date-input": "8.25.1-snapshot-
|
|
41
|
-
"@instructure/ui-date-time-input": "8.25.1-snapshot-
|
|
42
|
-
"@instructure/ui-dialog": "8.25.1-snapshot-
|
|
43
|
-
"@instructure/ui-drawer-layout": "8.25.1-snapshot-
|
|
44
|
-
"@instructure/ui-drilldown": "8.25.1-snapshot-
|
|
45
|
-
"@instructure/ui-editable": "8.25.1-snapshot-
|
|
46
|
-
"@instructure/ui-expandable": "8.25.1-snapshot-
|
|
47
|
-
"@instructure/ui-file-drop": "8.25.1-snapshot-
|
|
48
|
-
"@instructure/ui-flex": "8.25.1-snapshot-
|
|
49
|
-
"@instructure/ui-focusable": "8.25.1-snapshot-
|
|
50
|
-
"@instructure/ui-form-field": "8.25.1-snapshot-
|
|
51
|
-
"@instructure/ui-grid": "8.25.1-snapshot-
|
|
52
|
-
"@instructure/ui-heading": "8.25.1-snapshot-
|
|
53
|
-
"@instructure/ui-i18n": "8.25.1-snapshot-
|
|
54
|
-
"@instructure/ui-icons": "8.25.1-snapshot-
|
|
55
|
-
"@instructure/ui-img": "8.25.1-snapshot-
|
|
56
|
-
"@instructure/ui-link": "8.25.1-snapshot-
|
|
57
|
-
"@instructure/ui-list": "8.25.1-snapshot-
|
|
58
|
-
"@instructure/ui-menu": "8.25.1-snapshot-
|
|
59
|
-
"@instructure/ui-metric": "8.25.1-snapshot-
|
|
60
|
-
"@instructure/ui-modal": "8.25.1-snapshot-
|
|
61
|
-
"@instructure/ui-motion": "8.25.1-snapshot-
|
|
62
|
-
"@instructure/ui-navigation": "8.25.1-snapshot-
|
|
63
|
-
"@instructure/ui-number-input": "8.25.1-snapshot-
|
|
64
|
-
"@instructure/ui-options": "8.25.1-snapshot-
|
|
65
|
-
"@instructure/ui-overlays": "8.25.1-snapshot-
|
|
66
|
-
"@instructure/ui-pages": "8.25.1-snapshot-
|
|
67
|
-
"@instructure/ui-pagination": "8.25.1-snapshot-
|
|
68
|
-
"@instructure/ui-pill": "8.25.1-snapshot-
|
|
69
|
-
"@instructure/ui-popover": "8.25.1-snapshot-
|
|
70
|
-
"@instructure/ui-portal": "8.25.1-snapshot-
|
|
71
|
-
"@instructure/ui-position": "8.25.1-snapshot-
|
|
72
|
-
"@instructure/ui-progress": "8.25.1-snapshot-
|
|
73
|
-
"@instructure/ui-radio-input": "8.25.1-snapshot-
|
|
74
|
-
"@instructure/ui-range-input": "8.25.1-snapshot-
|
|
75
|
-
"@instructure/ui-rating": "8.25.1-snapshot-
|
|
76
|
-
"@instructure/ui-responsive": "8.25.1-snapshot-
|
|
77
|
-
"@instructure/ui-select": "8.25.1-snapshot-
|
|
78
|
-
"@instructure/ui-selectable": "8.25.1-snapshot-
|
|
79
|
-
"@instructure/ui-simple-select": "8.25.1-snapshot-
|
|
80
|
-
"@instructure/ui-
|
|
81
|
-
"@instructure/ui-
|
|
82
|
-
"@instructure/ui-
|
|
83
|
-
"@instructure/ui-
|
|
84
|
-
"@instructure/ui-
|
|
85
|
-
"@instructure/ui-
|
|
86
|
-
"@instructure/ui-text
|
|
87
|
-
"@instructure/ui-text-
|
|
88
|
-
"@instructure/ui-
|
|
89
|
-
"@instructure/ui-
|
|
90
|
-
"@instructure/ui-
|
|
91
|
-
"@instructure/ui-
|
|
92
|
-
"@instructure/ui-
|
|
93
|
-
"@instructure/ui-
|
|
94
|
-
"@instructure/ui-
|
|
95
|
-
"@instructure/ui-
|
|
28
|
+
"@instructure/emotion": "8.25.1-snapshot-19",
|
|
29
|
+
"@instructure/ui-a11y-content": "8.25.1-snapshot-19",
|
|
30
|
+
"@instructure/ui-alerts": "8.25.1-snapshot-19",
|
|
31
|
+
"@instructure/ui-avatar": "8.25.1-snapshot-19",
|
|
32
|
+
"@instructure/ui-badge": "8.25.1-snapshot-19",
|
|
33
|
+
"@instructure/ui-billboard": "8.25.1-snapshot-19",
|
|
34
|
+
"@instructure/ui-breadcrumb": "8.25.1-snapshot-19",
|
|
35
|
+
"@instructure/ui-buttons": "8.25.1-snapshot-19",
|
|
36
|
+
"@instructure/ui-byline": "8.25.1-snapshot-19",
|
|
37
|
+
"@instructure/ui-calendar": "8.25.1-snapshot-19",
|
|
38
|
+
"@instructure/ui-checkbox": "8.25.1-snapshot-19",
|
|
39
|
+
"@instructure/ui-code-editor": "8.25.1-snapshot-19",
|
|
40
|
+
"@instructure/ui-date-input": "8.25.1-snapshot-19",
|
|
41
|
+
"@instructure/ui-date-time-input": "8.25.1-snapshot-19",
|
|
42
|
+
"@instructure/ui-dialog": "8.25.1-snapshot-19",
|
|
43
|
+
"@instructure/ui-drawer-layout": "8.25.1-snapshot-19",
|
|
44
|
+
"@instructure/ui-drilldown": "8.25.1-snapshot-19",
|
|
45
|
+
"@instructure/ui-editable": "8.25.1-snapshot-19",
|
|
46
|
+
"@instructure/ui-expandable": "8.25.1-snapshot-19",
|
|
47
|
+
"@instructure/ui-file-drop": "8.25.1-snapshot-19",
|
|
48
|
+
"@instructure/ui-flex": "8.25.1-snapshot-19",
|
|
49
|
+
"@instructure/ui-focusable": "8.25.1-snapshot-19",
|
|
50
|
+
"@instructure/ui-form-field": "8.25.1-snapshot-19",
|
|
51
|
+
"@instructure/ui-grid": "8.25.1-snapshot-19",
|
|
52
|
+
"@instructure/ui-heading": "8.25.1-snapshot-19",
|
|
53
|
+
"@instructure/ui-i18n": "8.25.1-snapshot-19",
|
|
54
|
+
"@instructure/ui-icons": "8.25.1-snapshot-19",
|
|
55
|
+
"@instructure/ui-img": "8.25.1-snapshot-19",
|
|
56
|
+
"@instructure/ui-link": "8.25.1-snapshot-19",
|
|
57
|
+
"@instructure/ui-list": "8.25.1-snapshot-19",
|
|
58
|
+
"@instructure/ui-menu": "8.25.1-snapshot-19",
|
|
59
|
+
"@instructure/ui-metric": "8.25.1-snapshot-19",
|
|
60
|
+
"@instructure/ui-modal": "8.25.1-snapshot-19",
|
|
61
|
+
"@instructure/ui-motion": "8.25.1-snapshot-19",
|
|
62
|
+
"@instructure/ui-navigation": "8.25.1-snapshot-19",
|
|
63
|
+
"@instructure/ui-number-input": "8.25.1-snapshot-19",
|
|
64
|
+
"@instructure/ui-options": "8.25.1-snapshot-19",
|
|
65
|
+
"@instructure/ui-overlays": "8.25.1-snapshot-19",
|
|
66
|
+
"@instructure/ui-pages": "8.25.1-snapshot-19",
|
|
67
|
+
"@instructure/ui-pagination": "8.25.1-snapshot-19",
|
|
68
|
+
"@instructure/ui-pill": "8.25.1-snapshot-19",
|
|
69
|
+
"@instructure/ui-popover": "8.25.1-snapshot-19",
|
|
70
|
+
"@instructure/ui-portal": "8.25.1-snapshot-19",
|
|
71
|
+
"@instructure/ui-position": "8.25.1-snapshot-19",
|
|
72
|
+
"@instructure/ui-progress": "8.25.1-snapshot-19",
|
|
73
|
+
"@instructure/ui-radio-input": "8.25.1-snapshot-19",
|
|
74
|
+
"@instructure/ui-range-input": "8.25.1-snapshot-19",
|
|
75
|
+
"@instructure/ui-rating": "8.25.1-snapshot-19",
|
|
76
|
+
"@instructure/ui-responsive": "8.25.1-snapshot-19",
|
|
77
|
+
"@instructure/ui-select": "8.25.1-snapshot-19",
|
|
78
|
+
"@instructure/ui-selectable": "8.25.1-snapshot-19",
|
|
79
|
+
"@instructure/ui-simple-select": "8.25.1-snapshot-19",
|
|
80
|
+
"@instructure/ui-source-code-editor": "8.25.1-snapshot-19",
|
|
81
|
+
"@instructure/ui-spinner": "8.25.1-snapshot-19",
|
|
82
|
+
"@instructure/ui-svg-images": "8.25.1-snapshot-19",
|
|
83
|
+
"@instructure/ui-table": "8.25.1-snapshot-19",
|
|
84
|
+
"@instructure/ui-tabs": "8.25.1-snapshot-19",
|
|
85
|
+
"@instructure/ui-tag": "8.25.1-snapshot-19",
|
|
86
|
+
"@instructure/ui-text": "8.25.1-snapshot-19",
|
|
87
|
+
"@instructure/ui-text-area": "8.25.1-snapshot-19",
|
|
88
|
+
"@instructure/ui-text-input": "8.25.1-snapshot-19",
|
|
89
|
+
"@instructure/ui-themes": "8.25.1-snapshot-19",
|
|
90
|
+
"@instructure/ui-time-select": "8.25.1-snapshot-19",
|
|
91
|
+
"@instructure/ui-toggle-details": "8.25.1-snapshot-19",
|
|
92
|
+
"@instructure/ui-tooltip": "8.25.1-snapshot-19",
|
|
93
|
+
"@instructure/ui-tray": "8.25.1-snapshot-19",
|
|
94
|
+
"@instructure/ui-tree-browser": "8.25.1-snapshot-19",
|
|
95
|
+
"@instructure/ui-truncate-text": "8.25.1-snapshot-19",
|
|
96
|
+
"@instructure/ui-view": "8.25.1-snapshot-19"
|
|
96
97
|
},
|
|
97
98
|
"devDependencies": {
|
|
98
|
-
"@instructure/ui-babel-preset": "8.25.1-snapshot-
|
|
99
|
-
"@instructure/ui-test-utils": "8.25.1-snapshot-
|
|
99
|
+
"@instructure/ui-babel-preset": "8.25.1-snapshot-19",
|
|
100
|
+
"@instructure/ui-test-utils": "8.25.1-snapshot-19",
|
|
100
101
|
"jest": "^24.9.0"
|
|
101
102
|
},
|
|
102
103
|
"publishConfig": {
|
package/src/index.ts
CHANGED
|
@@ -111,6 +111,7 @@ export { Responsive } from '@instructure/ui-responsive'
|
|
|
111
111
|
export { Select } from '@instructure/ui-select'
|
|
112
112
|
export { Selectable } from '@instructure/ui-selectable'
|
|
113
113
|
export { SimpleSelect } from '@instructure/ui-simple-select'
|
|
114
|
+
export { SourceCodeEditor } from '@instructure/ui-source-code-editor'
|
|
114
115
|
export { Spinner } from '@instructure/ui-spinner'
|
|
115
116
|
export { InlineSVG, SVGIcon } from '@instructure/ui-svg-images'
|
|
116
117
|
export { Table } from '@instructure/ui-table'
|
package/tsconfig.build.json
CHANGED
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
{ "path": "../ui-select/tsconfig.build.json" },
|
|
59
59
|
{ "path": "../ui-selectable/tsconfig.build.json" },
|
|
60
60
|
{ "path": "../ui-simple-select/tsconfig.build.json" },
|
|
61
|
+
{ "path": "../ui-source-code-editor/tsconfig.build.json" },
|
|
61
62
|
{ "path": "../ui-spinner/tsconfig.build.json" },
|
|
62
63
|
{ "path": "../ui-svg-images/tsconfig.build.json" },
|
|
63
64
|
{ "path": "../ui-table/tsconfig.build.json" },
|