@instructure/ui 8.25.1-snapshot-16 → 8.25.1-snapshot-20
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 +6 -2
- package/es/index.js +2 -0
- package/lib/index.js +46 -0
- package/package.json +73 -71
- package/src/index.ts +8 -0
- package/tsconfig.build.json +2 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/index.d.ts +2 -0
- package/types/index.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,13 @@
|
|
|
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-20](https://github.com/instructure/instructure-ui/compare/v8.25.0...v8.25.1-snapshot-20) (2022-06-30)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **ui-code-editor:** Add ColorPicker component ([1cbd877](https://github.com/instructure/instructure-ui/commit/1cbd87783da67144ffbd1f6ed535ccd370fd4eeb))
|
|
12
|
+
* **ui-source-code-editor,ui-code-editor,ui:** add new `SourceCodeEditor` component ([b5064f5](https://github.com/instructure/instructure-ui/commit/b5064f5c767eb2d5c5a6d7f5bb6d05bd689418b5))
|
|
9
13
|
|
|
10
14
|
|
|
11
15
|
|
package/es/index.js
CHANGED
|
@@ -33,6 +33,7 @@ export { Byline } from '@instructure/ui-byline';
|
|
|
33
33
|
export { Calendar } from '@instructure/ui-calendar';
|
|
34
34
|
export { Checkbox, CheckboxGroup, CheckboxFacade, ToggleFacade } from '@instructure/ui-checkbox';
|
|
35
35
|
export { CodeEditor } from '@instructure/ui-code-editor';
|
|
36
|
+
export { ColorPicker, ColorMixer, ColorPreset, ColorContrast, ColorIndicator } from '@instructure/ui-color-picker';
|
|
36
37
|
export { DateInput } from '@instructure/ui-date-input';
|
|
37
38
|
export { DateTimeInput } from '@instructure/ui-date-time-input';
|
|
38
39
|
export { Dialog } from '@instructure/ui-dialog';
|
|
@@ -73,6 +74,7 @@ export { Responsive } from '@instructure/ui-responsive';
|
|
|
73
74
|
export { Select } from '@instructure/ui-select';
|
|
74
75
|
export { Selectable } from '@instructure/ui-selectable';
|
|
75
76
|
export { SimpleSelect } from '@instructure/ui-simple-select';
|
|
77
|
+
export { SourceCodeEditor } from '@instructure/ui-source-code-editor';
|
|
76
78
|
export { Spinner } from '@instructure/ui-spinner';
|
|
77
79
|
export { InlineSVG, SVGIcon } from '@instructure/ui-svg-images';
|
|
78
80
|
export { Table } from '@instructure/ui-table';
|
package/lib/index.js
CHANGED
|
@@ -28,6 +28,11 @@ var _exportNames = {
|
|
|
28
28
|
CheckboxFacade: true,
|
|
29
29
|
ToggleFacade: true,
|
|
30
30
|
CodeEditor: true,
|
|
31
|
+
ColorPicker: true,
|
|
32
|
+
ColorMixer: true,
|
|
33
|
+
ColorPreset: true,
|
|
34
|
+
ColorContrast: true,
|
|
35
|
+
ColorIndicator: true,
|
|
31
36
|
DateInput: true,
|
|
32
37
|
DateTimeInput: true,
|
|
33
38
|
Dialog: true,
|
|
@@ -89,6 +94,7 @@ var _exportNames = {
|
|
|
89
94
|
Select: true,
|
|
90
95
|
Selectable: true,
|
|
91
96
|
SimpleSelect: true,
|
|
97
|
+
SourceCodeEditor: true,
|
|
92
98
|
Spinner: true,
|
|
93
99
|
InlineSVG: true,
|
|
94
100
|
SVGIcon: true,
|
|
@@ -219,6 +225,36 @@ Object.defineProperty(exports, "CodeEditor", {
|
|
|
219
225
|
return _uiCodeEditor.CodeEditor;
|
|
220
226
|
}
|
|
221
227
|
});
|
|
228
|
+
Object.defineProperty(exports, "ColorContrast", {
|
|
229
|
+
enumerable: true,
|
|
230
|
+
get: function () {
|
|
231
|
+
return _uiColorPicker.ColorContrast;
|
|
232
|
+
}
|
|
233
|
+
});
|
|
234
|
+
Object.defineProperty(exports, "ColorIndicator", {
|
|
235
|
+
enumerable: true,
|
|
236
|
+
get: function () {
|
|
237
|
+
return _uiColorPicker.ColorIndicator;
|
|
238
|
+
}
|
|
239
|
+
});
|
|
240
|
+
Object.defineProperty(exports, "ColorMixer", {
|
|
241
|
+
enumerable: true,
|
|
242
|
+
get: function () {
|
|
243
|
+
return _uiColorPicker.ColorMixer;
|
|
244
|
+
}
|
|
245
|
+
});
|
|
246
|
+
Object.defineProperty(exports, "ColorPicker", {
|
|
247
|
+
enumerable: true,
|
|
248
|
+
get: function () {
|
|
249
|
+
return _uiColorPicker.ColorPicker;
|
|
250
|
+
}
|
|
251
|
+
});
|
|
252
|
+
Object.defineProperty(exports, "ColorPreset", {
|
|
253
|
+
enumerable: true,
|
|
254
|
+
get: function () {
|
|
255
|
+
return _uiColorPicker.ColorPreset;
|
|
256
|
+
}
|
|
257
|
+
});
|
|
222
258
|
Object.defineProperty(exports, "CondensedButton", {
|
|
223
259
|
enumerable: true,
|
|
224
260
|
get: function () {
|
|
@@ -609,6 +645,12 @@ Object.defineProperty(exports, "SimpleSelect", {
|
|
|
609
645
|
return _uiSimpleSelect.SimpleSelect;
|
|
610
646
|
}
|
|
611
647
|
});
|
|
648
|
+
Object.defineProperty(exports, "SourceCodeEditor", {
|
|
649
|
+
enumerable: true,
|
|
650
|
+
get: function () {
|
|
651
|
+
return _uiSourceCodeEditor.SourceCodeEditor;
|
|
652
|
+
}
|
|
653
|
+
});
|
|
612
654
|
Object.defineProperty(exports, "Spinner", {
|
|
613
655
|
enumerable: true,
|
|
614
656
|
get: function () {
|
|
@@ -772,6 +814,8 @@ var _uiCheckbox = require("@instructure/ui-checkbox");
|
|
|
772
814
|
|
|
773
815
|
var _uiCodeEditor = require("@instructure/ui-code-editor");
|
|
774
816
|
|
|
817
|
+
var _uiColorPicker = require("@instructure/ui-color-picker");
|
|
818
|
+
|
|
775
819
|
var _uiDateInput = require("@instructure/ui-date-input");
|
|
776
820
|
|
|
777
821
|
var _uiDateTimeInput = require("@instructure/ui-date-time-input");
|
|
@@ -864,6 +908,8 @@ var _uiSelectable = require("@instructure/ui-selectable");
|
|
|
864
908
|
|
|
865
909
|
var _uiSimpleSelect = require("@instructure/ui-simple-select");
|
|
866
910
|
|
|
911
|
+
var _uiSourceCodeEditor = require("@instructure/ui-source-code-editor");
|
|
912
|
+
|
|
867
913
|
var _uiSpinner = require("@instructure/ui-spinner");
|
|
868
914
|
|
|
869
915
|
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-20",
|
|
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,80 @@
|
|
|
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-
|
|
41
|
-
"@instructure/ui-date-
|
|
42
|
-
"@instructure/ui-
|
|
43
|
-
"@instructure/ui-
|
|
44
|
-
"@instructure/ui-
|
|
45
|
-
"@instructure/ui-
|
|
46
|
-
"@instructure/ui-
|
|
47
|
-
"@instructure/ui-
|
|
48
|
-
"@instructure/ui-
|
|
49
|
-
"@instructure/ui-
|
|
50
|
-
"@instructure/ui-
|
|
51
|
-
"@instructure/ui-
|
|
52
|
-
"@instructure/ui-
|
|
53
|
-
"@instructure/ui-
|
|
54
|
-
"@instructure/ui-
|
|
55
|
-
"@instructure/ui-
|
|
56
|
-
"@instructure/ui-
|
|
57
|
-
"@instructure/ui-
|
|
58
|
-
"@instructure/ui-
|
|
59
|
-
"@instructure/ui-
|
|
60
|
-
"@instructure/ui-
|
|
61
|
-
"@instructure/ui-
|
|
62
|
-
"@instructure/ui-
|
|
63
|
-
"@instructure/ui-
|
|
64
|
-
"@instructure/ui-
|
|
65
|
-
"@instructure/ui-
|
|
66
|
-
"@instructure/ui-
|
|
67
|
-
"@instructure/ui-
|
|
68
|
-
"@instructure/ui-
|
|
69
|
-
"@instructure/ui-
|
|
70
|
-
"@instructure/ui-
|
|
71
|
-
"@instructure/ui-
|
|
72
|
-
"@instructure/ui-
|
|
73
|
-
"@instructure/ui-
|
|
74
|
-
"@instructure/ui-
|
|
75
|
-
"@instructure/ui-
|
|
76
|
-
"@instructure/ui-
|
|
77
|
-
"@instructure/ui-
|
|
78
|
-
"@instructure/ui-
|
|
79
|
-
"@instructure/ui-
|
|
80
|
-
"@instructure/ui-
|
|
81
|
-
"@instructure/ui-
|
|
82
|
-
"@instructure/ui-
|
|
83
|
-
"@instructure/ui-
|
|
84
|
-
"@instructure/ui-
|
|
85
|
-
"@instructure/ui-
|
|
86
|
-
"@instructure/ui-
|
|
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-20",
|
|
29
|
+
"@instructure/ui-a11y-content": "8.25.1-snapshot-20",
|
|
30
|
+
"@instructure/ui-alerts": "8.25.1-snapshot-20",
|
|
31
|
+
"@instructure/ui-avatar": "8.25.1-snapshot-20",
|
|
32
|
+
"@instructure/ui-badge": "8.25.1-snapshot-20",
|
|
33
|
+
"@instructure/ui-billboard": "8.25.1-snapshot-20",
|
|
34
|
+
"@instructure/ui-breadcrumb": "8.25.1-snapshot-20",
|
|
35
|
+
"@instructure/ui-buttons": "8.25.1-snapshot-20",
|
|
36
|
+
"@instructure/ui-byline": "8.25.1-snapshot-20",
|
|
37
|
+
"@instructure/ui-calendar": "8.25.1-snapshot-20",
|
|
38
|
+
"@instructure/ui-checkbox": "8.25.1-snapshot-20",
|
|
39
|
+
"@instructure/ui-code-editor": "8.25.1-snapshot-20",
|
|
40
|
+
"@instructure/ui-color-picker": "8.25.1-snapshot-20",
|
|
41
|
+
"@instructure/ui-date-input": "8.25.1-snapshot-20",
|
|
42
|
+
"@instructure/ui-date-time-input": "8.25.1-snapshot-20",
|
|
43
|
+
"@instructure/ui-dialog": "8.25.1-snapshot-20",
|
|
44
|
+
"@instructure/ui-drawer-layout": "8.25.1-snapshot-20",
|
|
45
|
+
"@instructure/ui-drilldown": "8.25.1-snapshot-20",
|
|
46
|
+
"@instructure/ui-editable": "8.25.1-snapshot-20",
|
|
47
|
+
"@instructure/ui-expandable": "8.25.1-snapshot-20",
|
|
48
|
+
"@instructure/ui-file-drop": "8.25.1-snapshot-20",
|
|
49
|
+
"@instructure/ui-flex": "8.25.1-snapshot-20",
|
|
50
|
+
"@instructure/ui-focusable": "8.25.1-snapshot-20",
|
|
51
|
+
"@instructure/ui-form-field": "8.25.1-snapshot-20",
|
|
52
|
+
"@instructure/ui-grid": "8.25.1-snapshot-20",
|
|
53
|
+
"@instructure/ui-heading": "8.25.1-snapshot-20",
|
|
54
|
+
"@instructure/ui-i18n": "8.25.1-snapshot-20",
|
|
55
|
+
"@instructure/ui-icons": "8.25.1-snapshot-20",
|
|
56
|
+
"@instructure/ui-img": "8.25.1-snapshot-20",
|
|
57
|
+
"@instructure/ui-link": "8.25.1-snapshot-20",
|
|
58
|
+
"@instructure/ui-list": "8.25.1-snapshot-20",
|
|
59
|
+
"@instructure/ui-menu": "8.25.1-snapshot-20",
|
|
60
|
+
"@instructure/ui-metric": "8.25.1-snapshot-20",
|
|
61
|
+
"@instructure/ui-modal": "8.25.1-snapshot-20",
|
|
62
|
+
"@instructure/ui-motion": "8.25.1-snapshot-20",
|
|
63
|
+
"@instructure/ui-navigation": "8.25.1-snapshot-20",
|
|
64
|
+
"@instructure/ui-number-input": "8.25.1-snapshot-20",
|
|
65
|
+
"@instructure/ui-options": "8.25.1-snapshot-20",
|
|
66
|
+
"@instructure/ui-overlays": "8.25.1-snapshot-20",
|
|
67
|
+
"@instructure/ui-pages": "8.25.1-snapshot-20",
|
|
68
|
+
"@instructure/ui-pagination": "8.25.1-snapshot-20",
|
|
69
|
+
"@instructure/ui-pill": "8.25.1-snapshot-20",
|
|
70
|
+
"@instructure/ui-popover": "8.25.1-snapshot-20",
|
|
71
|
+
"@instructure/ui-portal": "8.25.1-snapshot-20",
|
|
72
|
+
"@instructure/ui-position": "8.25.1-snapshot-20",
|
|
73
|
+
"@instructure/ui-progress": "8.25.1-snapshot-20",
|
|
74
|
+
"@instructure/ui-radio-input": "8.25.1-snapshot-20",
|
|
75
|
+
"@instructure/ui-range-input": "8.25.1-snapshot-20",
|
|
76
|
+
"@instructure/ui-rating": "8.25.1-snapshot-20",
|
|
77
|
+
"@instructure/ui-responsive": "8.25.1-snapshot-20",
|
|
78
|
+
"@instructure/ui-select": "8.25.1-snapshot-20",
|
|
79
|
+
"@instructure/ui-selectable": "8.25.1-snapshot-20",
|
|
80
|
+
"@instructure/ui-simple-select": "8.25.1-snapshot-20",
|
|
81
|
+
"@instructure/ui-source-code-editor": "8.25.1-snapshot-20",
|
|
82
|
+
"@instructure/ui-spinner": "8.25.1-snapshot-20",
|
|
83
|
+
"@instructure/ui-svg-images": "8.25.1-snapshot-20",
|
|
84
|
+
"@instructure/ui-table": "8.25.1-snapshot-20",
|
|
85
|
+
"@instructure/ui-tabs": "8.25.1-snapshot-20",
|
|
86
|
+
"@instructure/ui-tag": "8.25.1-snapshot-20",
|
|
87
|
+
"@instructure/ui-text": "8.25.1-snapshot-20",
|
|
88
|
+
"@instructure/ui-text-area": "8.25.1-snapshot-20",
|
|
89
|
+
"@instructure/ui-text-input": "8.25.1-snapshot-20",
|
|
90
|
+
"@instructure/ui-themes": "8.25.1-snapshot-20",
|
|
91
|
+
"@instructure/ui-time-select": "8.25.1-snapshot-20",
|
|
92
|
+
"@instructure/ui-toggle-details": "8.25.1-snapshot-20",
|
|
93
|
+
"@instructure/ui-tooltip": "8.25.1-snapshot-20",
|
|
94
|
+
"@instructure/ui-tray": "8.25.1-snapshot-20",
|
|
95
|
+
"@instructure/ui-tree-browser": "8.25.1-snapshot-20",
|
|
96
|
+
"@instructure/ui-truncate-text": "8.25.1-snapshot-20",
|
|
97
|
+
"@instructure/ui-view": "8.25.1-snapshot-20"
|
|
96
98
|
},
|
|
97
99
|
"devDependencies": {
|
|
98
|
-
"@instructure/ui-babel-preset": "8.25.1-snapshot-
|
|
99
|
-
"@instructure/ui-test-utils": "8.25.1-snapshot-
|
|
100
|
+
"@instructure/ui-babel-preset": "8.25.1-snapshot-20",
|
|
101
|
+
"@instructure/ui-test-utils": "8.25.1-snapshot-20",
|
|
100
102
|
"jest": "^24.9.0"
|
|
101
103
|
},
|
|
102
104
|
"publishConfig": {
|
package/src/index.ts
CHANGED
|
@@ -55,6 +55,13 @@ export {
|
|
|
55
55
|
ToggleFacade
|
|
56
56
|
} from '@instructure/ui-checkbox'
|
|
57
57
|
export { CodeEditor } from '@instructure/ui-code-editor'
|
|
58
|
+
export {
|
|
59
|
+
ColorPicker,
|
|
60
|
+
ColorMixer,
|
|
61
|
+
ColorPreset,
|
|
62
|
+
ColorContrast,
|
|
63
|
+
ColorIndicator
|
|
64
|
+
} from '@instructure/ui-color-picker'
|
|
58
65
|
export { DateInput } from '@instructure/ui-date-input'
|
|
59
66
|
export { DateTimeInput } from '@instructure/ui-date-time-input'
|
|
60
67
|
export { Dialog } from '@instructure/ui-dialog'
|
|
@@ -111,6 +118,7 @@ export { Responsive } from '@instructure/ui-responsive'
|
|
|
111
118
|
export { Select } from '@instructure/ui-select'
|
|
112
119
|
export { Selectable } from '@instructure/ui-selectable'
|
|
113
120
|
export { SimpleSelect } from '@instructure/ui-simple-select'
|
|
121
|
+
export { SourceCodeEditor } from '@instructure/ui-source-code-editor'
|
|
114
122
|
export { Spinner } from '@instructure/ui-spinner'
|
|
115
123
|
export { InlineSVG, SVGIcon } from '@instructure/ui-svg-images'
|
|
116
124
|
export { Table } from '@instructure/ui-table'
|
package/tsconfig.build.json
CHANGED
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
{ "path": "../ui-calendar/tsconfig.build.json" },
|
|
20
20
|
{ "path": "../ui-checkbox/tsconfig.build.json" },
|
|
21
21
|
{ "path": "../ui-code-editor/tsconfig.build.json" },
|
|
22
|
+
{ "path": "../ui-color-picker/tsconfig.build.json" },
|
|
22
23
|
{ "path": "../ui-date-input/tsconfig.build.json" },
|
|
23
24
|
{ "path": "../ui-dialog/tsconfig.build.json" },
|
|
24
25
|
{ "path": "../ui-drawer-layout/tsconfig.build.json" },
|
|
@@ -58,6 +59,7 @@
|
|
|
58
59
|
{ "path": "../ui-select/tsconfig.build.json" },
|
|
59
60
|
{ "path": "../ui-selectable/tsconfig.build.json" },
|
|
60
61
|
{ "path": "../ui-simple-select/tsconfig.build.json" },
|
|
62
|
+
{ "path": "../ui-source-code-editor/tsconfig.build.json" },
|
|
61
63
|
{ "path": "../ui-spinner/tsconfig.build.json" },
|
|
62
64
|
{ "path": "../ui-svg-images/tsconfig.build.json" },
|
|
63
65
|
{ "path": "../ui-table/tsconfig.build.json" },
|