@instructure/ui-table 10.13.1-pr-snapshot-1741357986437 → 10.13.1-snapshot-0

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,7 +3,7 @@
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
- ## [10.13.1-pr-snapshot-1741357986437](https://github.com/instructure/instructure-ui/compare/v10.13.0...v10.13.1-pr-snapshot-1741357986437) (2025-03-07)
6
+ ## [10.13.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v10.13.0...v10.13.1-snapshot-0) (2025-03-10)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-table
9
9
 
@@ -6,8 +6,9 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = exports.Body = void 0;
8
8
  var _react = require("react");
9
- var _uiReactUtils = require("@instructure/ui-react-utils");
10
- var _uiView = require("@instructure/ui-view");
9
+ var _safeCloneElement = require("@instructure/ui-react-utils/lib/safeCloneElement.js");
10
+ var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
11
+ var _View = require("@instructure/ui-view/lib/View");
11
12
  var _emotion = require("@instructure/emotion");
12
13
  var _styles = _interopRequireDefault(require("./styles"));
13
14
  var _theme = _interopRequireDefault(require("./theme"));
@@ -61,13 +62,13 @@ let Body = exports.Body = (_dec = (0, _emotion.withStyle)(_styles.default, _them
61
62
  isStacked = _this$context.isStacked,
62
63
  hover = _this$context.hover,
63
64
  headers = _this$context.headers;
64
- return (0, _emotion.jsx)(_uiView.View, Object.assign({}, _uiView.View.omitViewProps((0, _uiReactUtils.omitProps)(this.props, Body.allowedProps), Body), {
65
+ return (0, _emotion.jsx)(_View.View, Object.assign({}, _View.View.omitViewProps((0, _omitProps.omitProps)(this.props, Body.allowedProps), Body), {
65
66
  as: isStacked ? 'div' : 'tbody',
66
67
  css: styles === null || styles === void 0 ? void 0 : styles.body,
67
68
  role: isStacked ? 'rowgroup' : void 0
68
69
  }), _react.Children.map(children, child => {
69
70
  if (/*#__PURE__*/(0, _react.isValidElement)(child)) {
70
- return (0, _uiReactUtils.safeCloneElement)(child, {
71
+ return (0, _safeCloneElement.safeCloneElement)(child, {
71
72
  key: child.props.name,
72
73
  // Sent down for compatibility with custom components
73
74
  // TODO DEPRECATED, remove in v11
@@ -6,8 +6,9 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = exports.Cell = void 0;
8
8
  var _react = require("react");
9
- var _uiReactUtils = require("@instructure/ui-react-utils");
10
- var _uiView = require("@instructure/ui-view");
9
+ var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
10
+ var _callRenderProp = require("@instructure/ui-react-utils/lib/callRenderProp.js");
11
+ var _View = require("@instructure/ui-view/lib/View");
11
12
  var _emotion = require("@instructure/emotion");
12
13
  var _styles = _interopRequireDefault(require("./styles"));
13
14
  var _theme = _interopRequireDefault(require("./theme"));
@@ -59,11 +60,11 @@ let Cell = exports.Cell = (_dec = (0, _emotion.withStyle)(_styles.default, _them
59
60
  styles = _this$props3.styles,
60
61
  header = _this$props3.header;
61
62
  const isStacked = this.context.isStacked;
62
- return (0, _emotion.jsx)(_uiView.View, Object.assign({}, _uiView.View.omitViewProps((0, _uiReactUtils.omitProps)(this.props, Cell.allowedProps), Cell), {
63
+ return (0, _emotion.jsx)(_View.View, Object.assign({}, _View.View.omitViewProps((0, _omitProps.omitProps)(this.props, Cell.allowedProps), Cell), {
63
64
  as: isStacked ? 'div' : 'td',
64
65
  css: styles === null || styles === void 0 ? void 0 : styles.cell,
65
66
  role: isStacked ? 'cell' : void 0
66
- }), header && (0, _uiReactUtils.callRenderProp)(header), header && ': ', (0, _uiReactUtils.callRenderProp)(children));
67
+ }), header && (0, _callRenderProp.callRenderProp)(header), header && ': ', (0, _callRenderProp.callRenderProp)(children));
67
68
  }
68
69
  }, _Cell.displayName = "Cell", _Cell.componentId = 'Table.Cell', _Cell.contextType = _TableContext.default, _Cell.allowedProps = _props.allowedProps, _Cell.propTypes = _props.propTypes, _Cell.defaultProps = {
69
70
  textAlign: 'start',
@@ -7,8 +7,11 @@ Object.defineProperty(exports, "__esModule", {
7
7
  });
8
8
  exports.default = exports.ColHeader = void 0;
9
9
  var _react = _interopRequireWildcard(require("react"));
10
- var _uiReactUtils = require("@instructure/ui-react-utils");
11
- var _uiIcons = require("@instructure/ui-icons");
10
+ var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
11
+ var _callRenderProp = require("@instructure/ui-react-utils/lib/callRenderProp.js");
12
+ var _IconMiniArrowUpLine = require("@instructure/ui-icons/lib/IconMiniArrowUpLine.js");
13
+ var _IconMiniArrowDownLine = require("@instructure/ui-icons/lib/IconMiniArrowDownLine.js");
14
+ var _IconMiniArrowDoubleLine = require("@instructure/ui-icons/lib/IconMiniArrowDoubleLine.js");
12
15
  var _emotion = require("@instructure/emotion");
13
16
  var _styles = _interopRequireDefault(require("./styles"));
14
17
  var _theme = _interopRequireDefault(require("./theme"));
@@ -70,17 +73,17 @@ let ColHeader = exports.ColHeader = (_dec = (0, _emotion.withStyle)(_styles.defa
70
73
  onRequestSort = _this$props4.onRequestSort,
71
74
  styles = _this$props4.styles;
72
75
  if (sortDirection === 'ascending') {
73
- return (0, _emotion.jsx)(_uiIcons.IconMiniArrowUpLine, {
76
+ return (0, _emotion.jsx)(_IconMiniArrowUpLine.IconMiniArrowUpLine, {
74
77
  css: styles === null || styles === void 0 ? void 0 : styles.sortedIconColor
75
78
  });
76
79
  }
77
80
  if (sortDirection === 'descending') {
78
- return (0, _emotion.jsx)(_uiIcons.IconMiniArrowDownLine, {
81
+ return (0, _emotion.jsx)(_IconMiniArrowDownLine.IconMiniArrowDownLine, {
79
82
  css: styles === null || styles === void 0 ? void 0 : styles.sortedIconColor
80
83
  });
81
84
  }
82
85
  if (onRequestSort) {
83
- return (0, _emotion.jsx)(_uiIcons.IconMiniArrowDoubleLine, {
86
+ return (0, _emotion.jsx)(_IconMiniArrowDoubleLine.IconMiniArrowDoubleLine, {
84
87
  css: styles === null || styles === void 0 ? void 0 : styles.unSortedIconColor
85
88
  });
86
89
  }
@@ -94,7 +97,7 @@ let ColHeader = exports.ColHeader = (_dec = (0, _emotion.withStyle)(_styles.defa
94
97
  sortDirection = _this$props5.sortDirection,
95
98
  scope = _this$props5.scope,
96
99
  styles = _this$props5.styles;
97
- return (0, _emotion.jsx)("th", Object.assign({}, (0, _uiReactUtils.omitProps)(this.props, ColHeader.allowedProps), {
100
+ return (0, _emotion.jsx)("th", Object.assign({}, (0, _omitProps.omitProps)(this.props, ColHeader.allowedProps), {
98
101
  css: styles === null || styles === void 0 ? void 0 : styles.colHeader,
99
102
  style: {
100
103
  width
@@ -106,7 +109,7 @@ let ColHeader = exports.ColHeader = (_dec = (0, _emotion.withStyle)(_styles.defa
106
109
  css: styles === null || styles === void 0 ? void 0 : styles.button
107
110
  }, (0, _emotion.jsx)("div", {
108
111
  css: styles === null || styles === void 0 ? void 0 : styles.buttonContent
109
- }, (0, _uiReactUtils.callRenderProp)(children), this.renderSortArrow())), !onRequestSort && children, !onRequestSort && this.renderSortArrow());
112
+ }, (0, _callRenderProp.callRenderProp)(children), this.renderSortArrow())), !onRequestSort && children, !onRequestSort && this.renderSortArrow());
110
113
  }
111
114
  }, _ColHeader.displayName = "ColHeader", _ColHeader.componentId = 'Table.ColHeader', _ColHeader.allowedProps = _props.allowedProps, _ColHeader.propTypes = _props.propTypes, _ColHeader.defaultProps = {
112
115
  textAlign: 'start',
@@ -7,10 +7,11 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.default = exports.Head = void 0;
8
8
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
9
9
  var _react = require("react");
10
- var _uiReactUtils = require("@instructure/ui-react-utils");
11
- var _uiSimpleSelect = require("@instructure/ui-simple-select");
12
- var _uiA11yContent = require("@instructure/ui-a11y-content");
13
- var _uiIcons = require("@instructure/ui-icons");
10
+ var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
11
+ var _callRenderProp = require("@instructure/ui-react-utils/lib/callRenderProp.js");
12
+ var _SimpleSelect = require("@instructure/ui-simple-select/lib/SimpleSelect");
13
+ var _ScreenReaderContent2 = require("@instructure/ui-a11y-content/lib/ScreenReaderContent");
14
+ var _IconCheckLine = require("@instructure/ui-icons/lib/IconCheckLine.js");
14
15
  var _console = require("@instructure/console");
15
16
  var _emotion = require("@instructure/emotion");
16
17
  var _styles = _interopRequireDefault(require("./styles"));
@@ -139,19 +140,19 @@ let Head = exports.Head = (_dec = (0, _emotion.withStyle)(_styles.default, _them
139
140
  }, (0, _emotion.jsx)("div", {
140
141
  role: "cell",
141
142
  "aria-colspan": count
142
- }, (0, _emotion.jsx)(_uiSimpleSelect.SimpleSelect, {
143
- renderLabel: renderSortLabel ? (0, _uiReactUtils.callRenderProp)(renderSortLabel) : _ScreenReaderContent || (_ScreenReaderContent = (0, _emotion.jsx)(_uiA11yContent.ScreenReaderContent, null)),
144
- renderBeforeInput: selectedOption && _uiIcons.IconCheckLine,
143
+ }, (0, _emotion.jsx)(_SimpleSelect.SimpleSelect, {
144
+ renderLabel: renderSortLabel ? (0, _callRenderProp.callRenderProp)(renderSortLabel) : _ScreenReaderContent || (_ScreenReaderContent = (0, _emotion.jsx)(_ScreenReaderContent2.ScreenReaderContent, null)),
145
+ renderBeforeInput: selectedOption && _IconCheckLine.IconCheckLine,
145
146
  value: selectedOption,
146
147
  onChange: handleSelect
147
148
  }, options.map(({
148
149
  id,
149
150
  label
150
- }) => (0, _emotion.jsx)(_uiSimpleSelect.SimpleSelect.Option, {
151
+ }) => (0, _emotion.jsx)(_SimpleSelect.SimpleSelect.Option, {
151
152
  id: id,
152
153
  key: id,
153
154
  value: id,
154
- renderBeforeLabel: id === selectedOption ? _uiIcons.IconCheckLine : () => (0, _emotion.jsx)(_uiIcons.IconCheckLine, {
155
+ renderBeforeLabel: id === selectedOption ? _IconCheckLine.IconCheckLine : () => (0, _emotion.jsx)(_IconCheckLine.IconCheckLine, {
155
156
  style: {
156
157
  color: 'transparent'
157
158
  }
@@ -164,7 +165,7 @@ let Head = exports.Head = (_dec = (0, _emotion.withStyle)(_styles.default, _them
164
165
  styles = _this$props4.styles;
165
166
  return this.context.isStacked ? this.renderSelect() :
166
167
  // TODO remove 'hover' exclude in v11, its passed down for compatibility with custom components
167
- (0, _emotion.jsx)("thead", Object.assign({}, (0, _uiReactUtils.omitProps)(this.props, Head.allowedProps, ['hover']), {
168
+ (0, _emotion.jsx)("thead", Object.assign({}, (0, _omitProps.omitProps)(this.props, Head.allowedProps, ['hover']), {
168
169
  css: styles === null || styles === void 0 ? void 0 : styles.head
169
170
  }), children);
170
171
  }
@@ -6,8 +6,9 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = exports.Row = void 0;
8
8
  var _react = require("react");
9
- var _uiReactUtils = require("@instructure/ui-react-utils");
10
- var _uiView = require("@instructure/ui-view");
9
+ var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
10
+ var _safeCloneElement = require("@instructure/ui-react-utils/lib/safeCloneElement.js");
11
+ var _View = require("@instructure/ui-view/lib/View");
11
12
  var _emotion = require("@instructure/emotion");
12
13
  var _styles = _interopRequireDefault(require("./styles"));
13
14
  var _theme = _interopRequireDefault(require("./theme"));
@@ -65,13 +66,13 @@ let Row = exports.Row = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.
65
66
  styles = _this$props3.styles;
66
67
  const isStacked = this.context.isStacked;
67
68
  const headers = this.context.headers;
68
- return (0, _emotion.jsx)(_uiView.View, Object.assign({}, _uiView.View.omitViewProps((0, _uiReactUtils.omitProps)(this.props, Row.allowedProps), Row), {
69
+ return (0, _emotion.jsx)(_View.View, Object.assign({}, _View.View.omitViewProps((0, _omitProps.omitProps)(this.props, Row.allowedProps), Row), {
69
70
  as: isStacked ? 'div' : 'tr',
70
71
  css: styles === null || styles === void 0 ? void 0 : styles.row,
71
72
  role: isStacked ? 'row' : void 0
72
73
  }), _react.Children.toArray(children).filter(Boolean).map((child, index) => {
73
74
  if (/*#__PURE__*/(0, _react.isValidElement)(child)) {
74
- return (0, _uiReactUtils.safeCloneElement)(child, {
75
+ return (0, _safeCloneElement.safeCloneElement)(child, {
75
76
  key: child.props.name,
76
77
  // Sent down for compatibility with custom components
77
78
  // TODO DEPRECATED, remove in v11
@@ -6,8 +6,9 @@ Object.defineProperty(exports, "__esModule", {
6
6
  });
7
7
  exports.default = exports.RowHeader = void 0;
8
8
  var _react = require("react");
9
- var _uiReactUtils = require("@instructure/ui-react-utils");
10
- var _uiView = require("@instructure/ui-view");
9
+ var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
10
+ var _callRenderProp = require("@instructure/ui-react-utils/lib/callRenderProp.js");
11
+ var _View = require("@instructure/ui-view/lib/View");
11
12
  var _emotion = require("@instructure/emotion");
12
13
  var _styles = _interopRequireDefault(require("./styles"));
13
14
  var _theme = _interopRequireDefault(require("./theme"));
@@ -58,12 +59,12 @@ let RowHeader = exports.RowHeader = (_dec = (0, _emotion.withStyle)(_styles.defa
58
59
  children = _this$props3.children,
59
60
  styles = _this$props3.styles;
60
61
  const isStacked = this.context.isStacked;
61
- return (0, _emotion.jsx)(_uiView.View, Object.assign({}, _uiView.View.omitViewProps((0, _uiReactUtils.omitProps)(this.props, RowHeader.allowedProps), RowHeader), {
62
+ return (0, _emotion.jsx)(_View.View, Object.assign({}, _View.View.omitViewProps((0, _omitProps.omitProps)(this.props, RowHeader.allowedProps), RowHeader), {
62
63
  as: isStacked ? 'div' : 'th',
63
64
  css: styles === null || styles === void 0 ? void 0 : styles.rowHeader,
64
65
  scope: "row",
65
66
  role: isStacked ? 'rowheader' : void 0
66
- }), (0, _uiReactUtils.callRenderProp)(children));
67
+ }), (0, _callRenderProp.callRenderProp)(children));
67
68
  }
68
69
  }, _RowHeader.displayName = "RowHeader", _RowHeader.componentId = 'Table.RowHeader', _RowHeader.contextType = _TableContext.default, _RowHeader.allowedProps = _props.allowedProps, _RowHeader.propTypes = _props.propTypes, _RowHeader.defaultProps = {
69
70
  textAlign: 'start',
@@ -7,7 +7,7 @@ var _vitest = require("vitest");
7
7
  var _userEvent = require("@testing-library/user-event");
8
8
  require("@testing-library/jest-dom");
9
9
  var _index = require("../index");
10
- var _uiAxeCheck = require("@instructure/ui-axe-check");
10
+ var _runAxeCheck = require("@instructure/ui-axe-check/lib/runAxeCheck.js");
11
11
  var _Table$Head, _Table$Body, _Table, _Table2, _Table3, _span, _span2, _Table$Row, _span3, _span4, _Table$Row2, _Table$Body2, _Table$RowHeader, _Table$Cell, _Table$Head2, _Table$Row3, _Table$ColHeader, _Table$RowHeader2, _Table$Cell2;
12
12
  /*
13
13
  * The MIT License (MIT)
@@ -58,7 +58,7 @@ describe('<Table />', async () => {
58
58
  it('should meet a11y standards', async () => {
59
59
  const _renderTable2 = renderTable(),
60
60
  container = _renderTable2.container;
61
- const axeCheck = await (0, _uiAxeCheck.runAxeCheck)(container);
61
+ const axeCheck = await (0, _runAxeCheck.runAxeCheck)(container);
62
62
  expect(axeCheck).toBe(true);
63
63
  });
64
64
  it('applies a fixed column layout', async () => {
@@ -7,9 +7,10 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.default = exports.Table = void 0;
8
8
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
9
9
  var _react = require("react");
10
- var _uiReactUtils = require("@instructure/ui-react-utils");
11
- var _uiView = require("@instructure/ui-view");
12
- var _uiA11yContent = require("@instructure/ui-a11y-content");
10
+ var _safeCloneElement = require("@instructure/ui-react-utils/lib/safeCloneElement.js");
11
+ var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
12
+ var _View = require("@instructure/ui-view/lib/View");
13
+ var _ScreenReaderContent = require("@instructure/ui-a11y-content/lib/ScreenReaderContent");
13
14
  var _emotion = require("@instructure/emotion");
14
15
  var _styles = _interopRequireDefault(require("./styles"));
15
16
  var _theme = _interopRequireDefault(require("./theme"));
@@ -101,16 +102,16 @@ let Table = exports.Table = (_dec = (0, _emotion.withStyle)(_styles.default, _th
101
102
  hover: hover,
102
103
  headers: headers
103
104
  }
104
- }, (0, _emotion.jsx)(_uiView.View, Object.assign({}, _uiView.View.omitViewProps((0, _uiReactUtils.omitProps)(this.props, Table.allowedProps), Table), {
105
+ }, (0, _emotion.jsx)(_View.View, Object.assign({}, _View.View.omitViewProps((0, _omitProps.omitProps)(this.props, Table.allowedProps), Table), {
105
106
  as: isStacked ? 'div' : 'table',
106
107
  margin: margin,
107
108
  elementRef: this.handleRef,
108
109
  css: styles === null || styles === void 0 ? void 0 : styles.table,
109
110
  role: isStacked ? 'table' : void 0,
110
111
  "aria-label": isStacked ? caption : void 0
111
- }), !isStacked && (0, _emotion.jsx)("caption", null, (0, _emotion.jsx)(_uiA11yContent.ScreenReaderContent, null, caption)), _react.Children.map(children, child => {
112
+ }), !isStacked && (0, _emotion.jsx)("caption", null, (0, _emotion.jsx)(_ScreenReaderContent.ScreenReaderContent, null, caption)), _react.Children.map(children, child => {
112
113
  if (/*#__PURE__*/(0, _react.isValidElement)(child)) {
113
- return (0, _uiReactUtils.safeCloneElement)(child, {
114
+ return (0, _safeCloneElement.safeCloneElement)(child, {
114
115
  key: child.props.name
115
116
  });
116
117
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-table",
3
- "version": "10.13.1-pr-snapshot-1741357986437",
3
+ "version": "10.13.1-snapshot-0",
4
4
  "description": "A styled HTML table component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -23,11 +23,11 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-axe-check": "10.13.1-pr-snapshot-1741357986437",
27
- "@instructure/ui-babel-preset": "10.13.1-pr-snapshot-1741357986437",
28
- "@instructure/ui-color-utils": "10.13.1-pr-snapshot-1741357986437",
29
- "@instructure/ui-test-utils": "10.13.1-pr-snapshot-1741357986437",
30
- "@instructure/ui-themes": "10.13.1-pr-snapshot-1741357986437",
26
+ "@instructure/ui-axe-check": "10.13.1-snapshot-0",
27
+ "@instructure/ui-babel-preset": "10.13.1-snapshot-0",
28
+ "@instructure/ui-color-utils": "10.13.1-snapshot-0",
29
+ "@instructure/ui-test-utils": "10.13.1-snapshot-0",
30
+ "@instructure/ui-themes": "10.13.1-snapshot-0",
31
31
  "@testing-library/jest-dom": "^6.6.3",
32
32
  "@testing-library/react": "^16.0.1",
33
33
  "@testing-library/user-event": "^14.5.2",
@@ -35,17 +35,17 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@babel/runtime": "^7.26.0",
38
- "@instructure/console": "10.13.1-pr-snapshot-1741357986437",
39
- "@instructure/emotion": "10.13.1-pr-snapshot-1741357986437",
40
- "@instructure/shared-types": "10.13.1-pr-snapshot-1741357986437",
41
- "@instructure/ui-a11y-content": "10.13.1-pr-snapshot-1741357986437",
42
- "@instructure/ui-icons": "10.13.1-pr-snapshot-1741357986437",
43
- "@instructure/ui-prop-types": "10.13.1-pr-snapshot-1741357986437",
44
- "@instructure/ui-react-utils": "10.13.1-pr-snapshot-1741357986437",
45
- "@instructure/ui-simple-select": "10.13.1-pr-snapshot-1741357986437",
46
- "@instructure/ui-testable": "10.13.1-pr-snapshot-1741357986437",
47
- "@instructure/ui-utils": "10.13.1-pr-snapshot-1741357986437",
48
- "@instructure/ui-view": "10.13.1-pr-snapshot-1741357986437",
38
+ "@instructure/console": "10.13.1-snapshot-0",
39
+ "@instructure/emotion": "10.13.1-snapshot-0",
40
+ "@instructure/shared-types": "10.13.1-snapshot-0",
41
+ "@instructure/ui-a11y-content": "10.13.1-snapshot-0",
42
+ "@instructure/ui-icons": "10.13.1-snapshot-0",
43
+ "@instructure/ui-prop-types": "10.13.1-snapshot-0",
44
+ "@instructure/ui-react-utils": "10.13.1-snapshot-0",
45
+ "@instructure/ui-simple-select": "10.13.1-snapshot-0",
46
+ "@instructure/ui-testable": "10.13.1-snapshot-0",
47
+ "@instructure/ui-utils": "10.13.1-snapshot-0",
48
+ "@instructure/ui-view": "10.13.1-snapshot-0",
49
49
  "prop-types": "^15.8.1"
50
50
  },
51
51
  "peerDependencies": {