@instructure/ui 8.25.1-snapshot-17 → 8.25.1-snapshot-21

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 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-17](https://github.com/instructure/instructure-ui/compare/v8.25.0...v8.25.1-snapshot-17) (2022-06-27)
6
+ ## [8.25.1-snapshot-21](https://github.com/instructure/instructure-ui/compare/v8.25.0...v8.25.1-snapshot-21) (2022-06-30)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui
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-17",
3
+ "version": "8.25.1-snapshot-21",
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-17",
29
- "@instructure/ui-a11y-content": "8.25.1-snapshot-17",
30
- "@instructure/ui-alerts": "8.25.1-snapshot-17",
31
- "@instructure/ui-avatar": "8.25.1-snapshot-17",
32
- "@instructure/ui-badge": "8.25.1-snapshot-17",
33
- "@instructure/ui-billboard": "8.25.1-snapshot-17",
34
- "@instructure/ui-breadcrumb": "8.25.1-snapshot-17",
35
- "@instructure/ui-buttons": "8.25.1-snapshot-17",
36
- "@instructure/ui-byline": "8.25.1-snapshot-17",
37
- "@instructure/ui-calendar": "8.25.1-snapshot-17",
38
- "@instructure/ui-checkbox": "8.25.1-snapshot-17",
39
- "@instructure/ui-code-editor": "8.25.1-snapshot-17",
40
- "@instructure/ui-date-input": "8.25.1-snapshot-17",
41
- "@instructure/ui-date-time-input": "8.25.1-snapshot-17",
42
- "@instructure/ui-dialog": "8.25.1-snapshot-17",
43
- "@instructure/ui-drawer-layout": "8.25.1-snapshot-17",
44
- "@instructure/ui-drilldown": "8.25.1-snapshot-17",
45
- "@instructure/ui-editable": "8.25.1-snapshot-17",
46
- "@instructure/ui-expandable": "8.25.1-snapshot-17",
47
- "@instructure/ui-file-drop": "8.25.1-snapshot-17",
48
- "@instructure/ui-flex": "8.25.1-snapshot-17",
49
- "@instructure/ui-focusable": "8.25.1-snapshot-17",
50
- "@instructure/ui-form-field": "8.25.1-snapshot-17",
51
- "@instructure/ui-grid": "8.25.1-snapshot-17",
52
- "@instructure/ui-heading": "8.25.1-snapshot-17",
53
- "@instructure/ui-i18n": "8.25.1-snapshot-17",
54
- "@instructure/ui-icons": "8.25.1-snapshot-17",
55
- "@instructure/ui-img": "8.25.1-snapshot-17",
56
- "@instructure/ui-link": "8.25.1-snapshot-17",
57
- "@instructure/ui-list": "8.25.1-snapshot-17",
58
- "@instructure/ui-menu": "8.25.1-snapshot-17",
59
- "@instructure/ui-metric": "8.25.1-snapshot-17",
60
- "@instructure/ui-modal": "8.25.1-snapshot-17",
61
- "@instructure/ui-motion": "8.25.1-snapshot-17",
62
- "@instructure/ui-navigation": "8.25.1-snapshot-17",
63
- "@instructure/ui-number-input": "8.25.1-snapshot-17",
64
- "@instructure/ui-options": "8.25.1-snapshot-17",
65
- "@instructure/ui-overlays": "8.25.1-snapshot-17",
66
- "@instructure/ui-pages": "8.25.1-snapshot-17",
67
- "@instructure/ui-pagination": "8.25.1-snapshot-17",
68
- "@instructure/ui-pill": "8.25.1-snapshot-17",
69
- "@instructure/ui-popover": "8.25.1-snapshot-17",
70
- "@instructure/ui-portal": "8.25.1-snapshot-17",
71
- "@instructure/ui-position": "8.25.1-snapshot-17",
72
- "@instructure/ui-progress": "8.25.1-snapshot-17",
73
- "@instructure/ui-radio-input": "8.25.1-snapshot-17",
74
- "@instructure/ui-range-input": "8.25.1-snapshot-17",
75
- "@instructure/ui-rating": "8.25.1-snapshot-17",
76
- "@instructure/ui-responsive": "8.25.1-snapshot-17",
77
- "@instructure/ui-select": "8.25.1-snapshot-17",
78
- "@instructure/ui-selectable": "8.25.1-snapshot-17",
79
- "@instructure/ui-simple-select": "8.25.1-snapshot-17",
80
- "@instructure/ui-spinner": "8.25.1-snapshot-17",
81
- "@instructure/ui-svg-images": "8.25.1-snapshot-17",
82
- "@instructure/ui-table": "8.25.1-snapshot-17",
83
- "@instructure/ui-tabs": "8.25.1-snapshot-17",
84
- "@instructure/ui-tag": "8.25.1-snapshot-17",
85
- "@instructure/ui-text": "8.25.1-snapshot-17",
86
- "@instructure/ui-text-area": "8.25.1-snapshot-17",
87
- "@instructure/ui-text-input": "8.25.1-snapshot-17",
88
- "@instructure/ui-themes": "8.25.1-snapshot-17",
89
- "@instructure/ui-time-select": "8.25.1-snapshot-17",
90
- "@instructure/ui-toggle-details": "8.25.1-snapshot-17",
91
- "@instructure/ui-tooltip": "8.25.1-snapshot-17",
92
- "@instructure/ui-tray": "8.25.1-snapshot-17",
93
- "@instructure/ui-tree-browser": "8.25.1-snapshot-17",
94
- "@instructure/ui-truncate-text": "8.25.1-snapshot-17",
95
- "@instructure/ui-view": "8.25.1-snapshot-17"
28
+ "@instructure/emotion": "8.25.1-snapshot-21",
29
+ "@instructure/ui-a11y-content": "8.25.1-snapshot-21",
30
+ "@instructure/ui-alerts": "8.25.1-snapshot-21",
31
+ "@instructure/ui-avatar": "8.25.1-snapshot-21",
32
+ "@instructure/ui-badge": "8.25.1-snapshot-21",
33
+ "@instructure/ui-billboard": "8.25.1-snapshot-21",
34
+ "@instructure/ui-breadcrumb": "8.25.1-snapshot-21",
35
+ "@instructure/ui-buttons": "8.25.1-snapshot-21",
36
+ "@instructure/ui-byline": "8.25.1-snapshot-21",
37
+ "@instructure/ui-calendar": "8.25.1-snapshot-21",
38
+ "@instructure/ui-checkbox": "8.25.1-snapshot-21",
39
+ "@instructure/ui-code-editor": "8.25.1-snapshot-21",
40
+ "@instructure/ui-color-picker": "8.25.1-snapshot-21",
41
+ "@instructure/ui-date-input": "8.25.1-snapshot-21",
42
+ "@instructure/ui-date-time-input": "8.25.1-snapshot-21",
43
+ "@instructure/ui-dialog": "8.25.1-snapshot-21",
44
+ "@instructure/ui-drawer-layout": "8.25.1-snapshot-21",
45
+ "@instructure/ui-drilldown": "8.25.1-snapshot-21",
46
+ "@instructure/ui-editable": "8.25.1-snapshot-21",
47
+ "@instructure/ui-expandable": "8.25.1-snapshot-21",
48
+ "@instructure/ui-file-drop": "8.25.1-snapshot-21",
49
+ "@instructure/ui-flex": "8.25.1-snapshot-21",
50
+ "@instructure/ui-focusable": "8.25.1-snapshot-21",
51
+ "@instructure/ui-form-field": "8.25.1-snapshot-21",
52
+ "@instructure/ui-grid": "8.25.1-snapshot-21",
53
+ "@instructure/ui-heading": "8.25.1-snapshot-21",
54
+ "@instructure/ui-i18n": "8.25.1-snapshot-21",
55
+ "@instructure/ui-icons": "8.25.1-snapshot-21",
56
+ "@instructure/ui-img": "8.25.1-snapshot-21",
57
+ "@instructure/ui-link": "8.25.1-snapshot-21",
58
+ "@instructure/ui-list": "8.25.1-snapshot-21",
59
+ "@instructure/ui-menu": "8.25.1-snapshot-21",
60
+ "@instructure/ui-metric": "8.25.1-snapshot-21",
61
+ "@instructure/ui-modal": "8.25.1-snapshot-21",
62
+ "@instructure/ui-motion": "8.25.1-snapshot-21",
63
+ "@instructure/ui-navigation": "8.25.1-snapshot-21",
64
+ "@instructure/ui-number-input": "8.25.1-snapshot-21",
65
+ "@instructure/ui-options": "8.25.1-snapshot-21",
66
+ "@instructure/ui-overlays": "8.25.1-snapshot-21",
67
+ "@instructure/ui-pages": "8.25.1-snapshot-21",
68
+ "@instructure/ui-pagination": "8.25.1-snapshot-21",
69
+ "@instructure/ui-pill": "8.25.1-snapshot-21",
70
+ "@instructure/ui-popover": "8.25.1-snapshot-21",
71
+ "@instructure/ui-portal": "8.25.1-snapshot-21",
72
+ "@instructure/ui-position": "8.25.1-snapshot-21",
73
+ "@instructure/ui-progress": "8.25.1-snapshot-21",
74
+ "@instructure/ui-radio-input": "8.25.1-snapshot-21",
75
+ "@instructure/ui-range-input": "8.25.1-snapshot-21",
76
+ "@instructure/ui-rating": "8.25.1-snapshot-21",
77
+ "@instructure/ui-responsive": "8.25.1-snapshot-21",
78
+ "@instructure/ui-select": "8.25.1-snapshot-21",
79
+ "@instructure/ui-selectable": "8.25.1-snapshot-21",
80
+ "@instructure/ui-simple-select": "8.25.1-snapshot-21",
81
+ "@instructure/ui-source-code-editor": "8.25.1-snapshot-21",
82
+ "@instructure/ui-spinner": "8.25.1-snapshot-21",
83
+ "@instructure/ui-svg-images": "8.25.1-snapshot-21",
84
+ "@instructure/ui-table": "8.25.1-snapshot-21",
85
+ "@instructure/ui-tabs": "8.25.1-snapshot-21",
86
+ "@instructure/ui-tag": "8.25.1-snapshot-21",
87
+ "@instructure/ui-text": "8.25.1-snapshot-21",
88
+ "@instructure/ui-text-area": "8.25.1-snapshot-21",
89
+ "@instructure/ui-text-input": "8.25.1-snapshot-21",
90
+ "@instructure/ui-themes": "8.25.1-snapshot-21",
91
+ "@instructure/ui-time-select": "8.25.1-snapshot-21",
92
+ "@instructure/ui-toggle-details": "8.25.1-snapshot-21",
93
+ "@instructure/ui-tooltip": "8.25.1-snapshot-21",
94
+ "@instructure/ui-tray": "8.25.1-snapshot-21",
95
+ "@instructure/ui-tree-browser": "8.25.1-snapshot-21",
96
+ "@instructure/ui-truncate-text": "8.25.1-snapshot-21",
97
+ "@instructure/ui-view": "8.25.1-snapshot-21"
96
98
  },
97
99
  "devDependencies": {
98
- "@instructure/ui-babel-preset": "8.25.1-snapshot-17",
99
- "@instructure/ui-test-utils": "8.25.1-snapshot-17",
100
+ "@instructure/ui-babel-preset": "8.25.1-snapshot-21",
101
+ "@instructure/ui-test-utils": "8.25.1-snapshot-21",
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'
@@ -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" },