@instructure/ui 8.25.1-snapshot.0 → 8.26.1-snapshot-1

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,6 +3,21 @@
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.26.1-snapshot-1](https://github.com/instructure/instructure-ui/compare/v8.26.0...v8.26.1-snapshot-1) (2022-07-06)
7
+
8
+ **Note:** Version bump only for package @instructure/ui
9
+
10
+
11
+
12
+
13
+
14
+ # [8.26.0](https://github.com/instructure/instructure-ui/compare/v8.25.0...v8.26.0) (2022-06-30)
15
+
16
+ ### Features
17
+
18
+ - **ui-color-picker:** Add `ColorPicker` component ([1cbd877](https://github.com/instructure/instructure-ui/commit/1cbd87783da67144ffbd1f6ed535ccd370fd4eeb))
19
+ - **ui-source-code-editor,ui-code-editor,ui:** add new `SourceCodeEditor` component ([b5064f5](https://github.com/instructure/instructure-ui/commit/b5064f5c767eb2d5c5a6d7f5bb6d05bd689418b5))
20
+
6
21
  # [8.25.0](https://github.com/instructure/instructure-ui/compare/v8.24.5...v8.25.0) (2022-06-03)
7
22
 
8
23
  **Note:** Version bump only for package @instructure/ui
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.0+59b6babce",
3
+ "version": "8.26.1-snapshot-1",
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.0+59b6babce",
29
- "@instructure/ui-a11y-content": "8.25.1-snapshot.0+59b6babce",
30
- "@instructure/ui-alerts": "8.25.1-snapshot.0+59b6babce",
31
- "@instructure/ui-avatar": "8.25.1-snapshot.0+59b6babce",
32
- "@instructure/ui-badge": "8.25.1-snapshot.0+59b6babce",
33
- "@instructure/ui-billboard": "8.25.1-snapshot.0+59b6babce",
34
- "@instructure/ui-breadcrumb": "8.25.1-snapshot.0+59b6babce",
35
- "@instructure/ui-buttons": "8.25.1-snapshot.0+59b6babce",
36
- "@instructure/ui-byline": "8.25.1-snapshot.0+59b6babce",
37
- "@instructure/ui-calendar": "8.25.1-snapshot.0+59b6babce",
38
- "@instructure/ui-checkbox": "8.25.1-snapshot.0+59b6babce",
39
- "@instructure/ui-code-editor": "8.25.1-snapshot.0+59b6babce",
40
- "@instructure/ui-date-input": "8.25.1-snapshot.0+59b6babce",
41
- "@instructure/ui-date-time-input": "8.25.1-snapshot.0+59b6babce",
42
- "@instructure/ui-dialog": "8.25.1-snapshot.0+59b6babce",
43
- "@instructure/ui-drawer-layout": "8.25.1-snapshot.0+59b6babce",
44
- "@instructure/ui-drilldown": "8.25.1-snapshot.0+59b6babce",
45
- "@instructure/ui-editable": "8.25.1-snapshot.0+59b6babce",
46
- "@instructure/ui-expandable": "8.25.1-snapshot.0+59b6babce",
47
- "@instructure/ui-file-drop": "8.25.1-snapshot.0+59b6babce",
48
- "@instructure/ui-flex": "8.25.1-snapshot.0+59b6babce",
49
- "@instructure/ui-focusable": "8.25.1-snapshot.0+59b6babce",
50
- "@instructure/ui-form-field": "8.25.1-snapshot.0+59b6babce",
51
- "@instructure/ui-grid": "8.25.1-snapshot.0+59b6babce",
52
- "@instructure/ui-heading": "8.25.1-snapshot.0+59b6babce",
53
- "@instructure/ui-i18n": "8.25.1-snapshot.0+59b6babce",
54
- "@instructure/ui-icons": "8.25.1-snapshot.0+59b6babce",
55
- "@instructure/ui-img": "8.25.1-snapshot.0+59b6babce",
56
- "@instructure/ui-link": "8.25.1-snapshot.0+59b6babce",
57
- "@instructure/ui-list": "8.25.1-snapshot.0+59b6babce",
58
- "@instructure/ui-menu": "8.25.1-snapshot.0+59b6babce",
59
- "@instructure/ui-metric": "8.25.1-snapshot.0+59b6babce",
60
- "@instructure/ui-modal": "8.25.1-snapshot.0+59b6babce",
61
- "@instructure/ui-motion": "8.25.1-snapshot.0+59b6babce",
62
- "@instructure/ui-navigation": "8.25.1-snapshot.0+59b6babce",
63
- "@instructure/ui-number-input": "8.25.1-snapshot.0+59b6babce",
64
- "@instructure/ui-options": "8.25.1-snapshot.0+59b6babce",
65
- "@instructure/ui-overlays": "8.25.1-snapshot.0+59b6babce",
66
- "@instructure/ui-pages": "8.25.1-snapshot.0+59b6babce",
67
- "@instructure/ui-pagination": "8.25.1-snapshot.0+59b6babce",
68
- "@instructure/ui-pill": "8.25.1-snapshot.0+59b6babce",
69
- "@instructure/ui-popover": "8.25.1-snapshot.0+59b6babce",
70
- "@instructure/ui-portal": "8.25.1-snapshot.0+59b6babce",
71
- "@instructure/ui-position": "8.25.1-snapshot.0+59b6babce",
72
- "@instructure/ui-progress": "8.25.1-snapshot.0+59b6babce",
73
- "@instructure/ui-radio-input": "8.25.1-snapshot.0+59b6babce",
74
- "@instructure/ui-range-input": "8.25.1-snapshot.0+59b6babce",
75
- "@instructure/ui-rating": "8.25.1-snapshot.0+59b6babce",
76
- "@instructure/ui-responsive": "8.25.1-snapshot.0+59b6babce",
77
- "@instructure/ui-select": "8.25.1-snapshot.0+59b6babce",
78
- "@instructure/ui-selectable": "8.25.1-snapshot.0+59b6babce",
79
- "@instructure/ui-simple-select": "8.25.1-snapshot.0+59b6babce",
80
- "@instructure/ui-spinner": "8.25.1-snapshot.0+59b6babce",
81
- "@instructure/ui-svg-images": "8.25.1-snapshot.0+59b6babce",
82
- "@instructure/ui-table": "8.25.1-snapshot.0+59b6babce",
83
- "@instructure/ui-tabs": "8.25.1-snapshot.0+59b6babce",
84
- "@instructure/ui-tag": "8.25.1-snapshot.0+59b6babce",
85
- "@instructure/ui-text": "8.25.1-snapshot.0+59b6babce",
86
- "@instructure/ui-text-area": "8.25.1-snapshot.0+59b6babce",
87
- "@instructure/ui-text-input": "8.25.1-snapshot.0+59b6babce",
88
- "@instructure/ui-themes": "8.25.1-snapshot.0+59b6babce",
89
- "@instructure/ui-time-select": "8.25.1-snapshot.0+59b6babce",
90
- "@instructure/ui-toggle-details": "8.25.1-snapshot.0+59b6babce",
91
- "@instructure/ui-tooltip": "8.25.1-snapshot.0+59b6babce",
92
- "@instructure/ui-tray": "8.25.1-snapshot.0+59b6babce",
93
- "@instructure/ui-tree-browser": "8.25.1-snapshot.0+59b6babce",
94
- "@instructure/ui-truncate-text": "8.25.1-snapshot.0+59b6babce",
95
- "@instructure/ui-view": "8.25.1-snapshot.0+59b6babce"
28
+ "@instructure/emotion": "8.26.1-snapshot-1",
29
+ "@instructure/ui-a11y-content": "8.26.1-snapshot-1",
30
+ "@instructure/ui-alerts": "8.26.1-snapshot-1",
31
+ "@instructure/ui-avatar": "8.26.1-snapshot-1",
32
+ "@instructure/ui-badge": "8.26.1-snapshot-1",
33
+ "@instructure/ui-billboard": "8.26.1-snapshot-1",
34
+ "@instructure/ui-breadcrumb": "8.26.1-snapshot-1",
35
+ "@instructure/ui-buttons": "8.26.1-snapshot-1",
36
+ "@instructure/ui-byline": "8.26.1-snapshot-1",
37
+ "@instructure/ui-calendar": "8.26.1-snapshot-1",
38
+ "@instructure/ui-checkbox": "8.26.1-snapshot-1",
39
+ "@instructure/ui-code-editor": "8.26.1-snapshot-1",
40
+ "@instructure/ui-color-picker": "8.26.1-snapshot-1",
41
+ "@instructure/ui-date-input": "8.26.1-snapshot-1",
42
+ "@instructure/ui-date-time-input": "8.26.1-snapshot-1",
43
+ "@instructure/ui-dialog": "8.26.1-snapshot-1",
44
+ "@instructure/ui-drawer-layout": "8.26.1-snapshot-1",
45
+ "@instructure/ui-drilldown": "8.26.1-snapshot-1",
46
+ "@instructure/ui-editable": "8.26.1-snapshot-1",
47
+ "@instructure/ui-expandable": "8.26.1-snapshot-1",
48
+ "@instructure/ui-file-drop": "8.26.1-snapshot-1",
49
+ "@instructure/ui-flex": "8.26.1-snapshot-1",
50
+ "@instructure/ui-focusable": "8.26.1-snapshot-1",
51
+ "@instructure/ui-form-field": "8.26.1-snapshot-1",
52
+ "@instructure/ui-grid": "8.26.1-snapshot-1",
53
+ "@instructure/ui-heading": "8.26.1-snapshot-1",
54
+ "@instructure/ui-i18n": "8.26.1-snapshot-1",
55
+ "@instructure/ui-icons": "8.26.1-snapshot-1",
56
+ "@instructure/ui-img": "8.26.1-snapshot-1",
57
+ "@instructure/ui-link": "8.26.1-snapshot-1",
58
+ "@instructure/ui-list": "8.26.1-snapshot-1",
59
+ "@instructure/ui-menu": "8.26.1-snapshot-1",
60
+ "@instructure/ui-metric": "8.26.1-snapshot-1",
61
+ "@instructure/ui-modal": "8.26.1-snapshot-1",
62
+ "@instructure/ui-motion": "8.26.1-snapshot-1",
63
+ "@instructure/ui-navigation": "8.26.1-snapshot-1",
64
+ "@instructure/ui-number-input": "8.26.1-snapshot-1",
65
+ "@instructure/ui-options": "8.26.1-snapshot-1",
66
+ "@instructure/ui-overlays": "8.26.1-snapshot-1",
67
+ "@instructure/ui-pages": "8.26.1-snapshot-1",
68
+ "@instructure/ui-pagination": "8.26.1-snapshot-1",
69
+ "@instructure/ui-pill": "8.26.1-snapshot-1",
70
+ "@instructure/ui-popover": "8.26.1-snapshot-1",
71
+ "@instructure/ui-portal": "8.26.1-snapshot-1",
72
+ "@instructure/ui-position": "8.26.1-snapshot-1",
73
+ "@instructure/ui-progress": "8.26.1-snapshot-1",
74
+ "@instructure/ui-radio-input": "8.26.1-snapshot-1",
75
+ "@instructure/ui-range-input": "8.26.1-snapshot-1",
76
+ "@instructure/ui-rating": "8.26.1-snapshot-1",
77
+ "@instructure/ui-responsive": "8.26.1-snapshot-1",
78
+ "@instructure/ui-select": "8.26.1-snapshot-1",
79
+ "@instructure/ui-selectable": "8.26.1-snapshot-1",
80
+ "@instructure/ui-simple-select": "8.26.1-snapshot-1",
81
+ "@instructure/ui-source-code-editor": "8.26.1-snapshot-1",
82
+ "@instructure/ui-spinner": "8.26.1-snapshot-1",
83
+ "@instructure/ui-svg-images": "8.26.1-snapshot-1",
84
+ "@instructure/ui-table": "8.26.1-snapshot-1",
85
+ "@instructure/ui-tabs": "8.26.1-snapshot-1",
86
+ "@instructure/ui-tag": "8.26.1-snapshot-1",
87
+ "@instructure/ui-text": "8.26.1-snapshot-1",
88
+ "@instructure/ui-text-area": "8.26.1-snapshot-1",
89
+ "@instructure/ui-text-input": "8.26.1-snapshot-1",
90
+ "@instructure/ui-themes": "8.26.1-snapshot-1",
91
+ "@instructure/ui-time-select": "8.26.1-snapshot-1",
92
+ "@instructure/ui-toggle-details": "8.26.1-snapshot-1",
93
+ "@instructure/ui-tooltip": "8.26.1-snapshot-1",
94
+ "@instructure/ui-tray": "8.26.1-snapshot-1",
95
+ "@instructure/ui-tree-browser": "8.26.1-snapshot-1",
96
+ "@instructure/ui-truncate-text": "8.26.1-snapshot-1",
97
+ "@instructure/ui-view": "8.26.1-snapshot-1"
96
98
  },
97
99
  "devDependencies": {
98
- "@instructure/ui-babel-preset": "8.25.1-snapshot.0+59b6babce",
99
- "@instructure/ui-test-utils": "8.25.1-snapshot.0+59b6babce",
100
+ "@instructure/ui-babel-preset": "8.26.1-snapshot-1",
101
+ "@instructure/ui-test-utils": "8.26.1-snapshot-1",
100
102
  "jest": "^24.9.0"
101
103
  },
102
104
  "publishConfig": {
@@ -106,6 +108,5 @@
106
108
  "peerDependencies": {
107
109
  "react": ">= 16.8 <=17",
108
110
  "react-dom": ">= 16.8 <= 17"
109
- },
110
- "gitHead": "59b6babce07a9242111475156f544ec11c1a9283"
111
+ }
111
112
  }
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" },