@instructure/ui-tree-browser 8.17.1-snapshot.21 → 8.17.1-snapshot.71
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/es/TreeBrowser/TreeButton/index.js +18 -22
- package/es/TreeBrowser/TreeButton/theme.js +25 -25
- package/es/TreeBrowser/TreeCollection/index.js +40 -44
- package/es/TreeBrowser/TreeCollection/theme.js +5 -5
- package/es/TreeBrowser/TreeNode/index.js +14 -18
- package/es/TreeBrowser/index.js +12 -20
- package/es/TreeBrowser/theme.js +4 -4
- package/lib/TreeBrowser/TreeButton/index.js +18 -22
- package/lib/TreeBrowser/TreeButton/theme.js +25 -25
- package/lib/TreeBrowser/TreeCollection/index.js +40 -44
- package/lib/TreeBrowser/TreeCollection/theme.js +5 -5
- package/lib/TreeBrowser/TreeNode/index.js +14 -18
- package/lib/TreeBrowser/index.js +12 -20
- package/lib/TreeBrowser/theme.js +4 -4
- package/package.json +15 -15
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -91,21 +91,17 @@ let TreeCollection = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
componentDidMount() {
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
(_this$props$makeStyle = (_this$props3 = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props3);
|
|
94
|
+
this.props.makeStyles?.();
|
|
97
95
|
}
|
|
98
96
|
|
|
99
97
|
componentDidUpdate() {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
(_this$props$makeStyle2 = (_this$props4 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props4);
|
|
98
|
+
this.props.makeStyles?.();
|
|
103
99
|
}
|
|
104
100
|
|
|
105
101
|
get itemsLevel() {
|
|
106
|
-
const _this$
|
|
107
|
-
level = _this$
|
|
108
|
-
isCollectionFlattened = _this$
|
|
102
|
+
const _this$props3 = this.props,
|
|
103
|
+
level = _this$props3.level,
|
|
104
|
+
isCollectionFlattened = _this$props3.isCollectionFlattened;
|
|
109
105
|
return isCollectionFlattened ? level : level + 1;
|
|
110
106
|
}
|
|
111
107
|
|
|
@@ -124,12 +120,12 @@ let TreeCollection = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
124
120
|
}
|
|
125
121
|
|
|
126
122
|
renderChildren() {
|
|
127
|
-
const _this$
|
|
128
|
-
collections = _this$
|
|
129
|
-
items = _this$
|
|
130
|
-
id = _this$
|
|
131
|
-
renderBeforeItems = _this$
|
|
132
|
-
renderAfterItems = _this$
|
|
123
|
+
const _this$props4 = this.props,
|
|
124
|
+
collections = _this$props4.collections,
|
|
125
|
+
items = _this$props4.items,
|
|
126
|
+
id = _this$props4.id,
|
|
127
|
+
renderBeforeItems = _this$props4.renderBeforeItems,
|
|
128
|
+
renderAfterItems = _this$props4.renderAfterItems;
|
|
133
129
|
let position = 1;
|
|
134
130
|
return (0, _emotion.jsx)(_react.default.Fragment, null, renderBeforeItems && this.renderCollectionChildren(id, renderBeforeItems, position++, 'before'), collections.map(collection => {
|
|
135
131
|
return this.renderCollectionNode(collection, position++);
|
|
@@ -139,11 +135,11 @@ let TreeCollection = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
139
135
|
}
|
|
140
136
|
|
|
141
137
|
renderCollectionChildren(collectionId, child, position, keyword) {
|
|
142
|
-
const _this$
|
|
143
|
-
selection = _this$
|
|
144
|
-
onKeyDown = _this$
|
|
145
|
-
getItemProps = _this$
|
|
146
|
-
styles = _this$
|
|
138
|
+
const _this$props5 = this.props,
|
|
139
|
+
selection = _this$props5.selection,
|
|
140
|
+
onKeyDown = _this$props5.onKeyDown,
|
|
141
|
+
getItemProps = _this$props5.getItemProps,
|
|
142
|
+
styles = _this$props5.styles;
|
|
147
143
|
const key = `${collectionId}_${keyword}`;
|
|
148
144
|
const ariaSelected = {};
|
|
149
145
|
|
|
@@ -164,7 +160,7 @@ let TreeCollection = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
164
160
|
return (0, _emotion.jsx)("li", Object.assign({
|
|
165
161
|
id: key,
|
|
166
162
|
role: "treeitem",
|
|
167
|
-
css: styles
|
|
163
|
+
css: styles?.item,
|
|
168
164
|
tabIndex: -1,
|
|
169
165
|
key: key,
|
|
170
166
|
"aria-posinset": position,
|
|
@@ -185,7 +181,7 @@ let TreeCollection = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
185
181
|
if (typeof child.props.onKeyDown === 'function') {
|
|
186
182
|
child.props.onKeyDown(e, n);
|
|
187
183
|
} else {
|
|
188
|
-
onKeyDown
|
|
184
|
+
onKeyDown?.(e, itemHash);
|
|
189
185
|
}
|
|
190
186
|
},
|
|
191
187
|
onBlur: e => this.handleBlur(e, itemHash)
|
|
@@ -213,12 +209,12 @@ let TreeCollection = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
213
209
|
}
|
|
214
210
|
|
|
215
211
|
renderItemNode(item, position) {
|
|
216
|
-
const _this$
|
|
217
|
-
selection = _this$
|
|
218
|
-
onItemClick = _this$
|
|
219
|
-
onKeyDown = _this$
|
|
220
|
-
getItemProps = _this$
|
|
221
|
-
styles = _this$
|
|
212
|
+
const _this$props6 = this.props,
|
|
213
|
+
selection = _this$props6.selection,
|
|
214
|
+
onItemClick = _this$props6.onItemClick,
|
|
215
|
+
onKeyDown = _this$props6.onKeyDown,
|
|
216
|
+
getItemProps = _this$props6.getItemProps,
|
|
217
|
+
styles = _this$props6.styles;
|
|
222
218
|
const ariaSelected = {};
|
|
223
219
|
|
|
224
220
|
if (selection) {
|
|
@@ -243,12 +239,12 @@ let TreeCollection = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
243
239
|
tabIndex: -1,
|
|
244
240
|
role: "treeitem",
|
|
245
241
|
"aria-label": item.name,
|
|
246
|
-
css: styles
|
|
242
|
+
css: styles?.item,
|
|
247
243
|
"aria-level": this.itemsLevel,
|
|
248
244
|
"aria-posinset": position,
|
|
249
245
|
"aria-setsize": this.childCount,
|
|
250
|
-
onClick: e => onItemClick
|
|
251
|
-
onKeyDown: e => onKeyDown
|
|
246
|
+
onClick: e => onItemClick?.(e, itemHash),
|
|
247
|
+
onKeyDown: e => onKeyDown?.(e, itemHash),
|
|
252
248
|
onFocus: e => this.handleFocus(e, itemHash),
|
|
253
249
|
onBlur: e => this.handleBlur(e, itemHash)
|
|
254
250
|
}, ariaSelected), (0, _emotion.jsx)(_TreeButton.TreeButton, itemProps));
|
|
@@ -268,17 +264,17 @@ let TreeCollection = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
268
264
|
}
|
|
269
265
|
|
|
270
266
|
render() {
|
|
271
|
-
const _this$
|
|
272
|
-
id = _this$
|
|
273
|
-
name = _this$
|
|
274
|
-
expanded = _this$
|
|
275
|
-
collectionIcon = _this$
|
|
276
|
-
collectionIconExpanded = _this$
|
|
277
|
-
isCollectionFlattened = _this$
|
|
278
|
-
getCollectionProps = _this$
|
|
279
|
-
level = _this$
|
|
280
|
-
position = _this$
|
|
281
|
-
styles = _this$
|
|
267
|
+
const _this$props7 = this.props,
|
|
268
|
+
id = _this$props7.id,
|
|
269
|
+
name = _this$props7.name,
|
|
270
|
+
expanded = _this$props7.expanded,
|
|
271
|
+
collectionIcon = _this$props7.collectionIcon,
|
|
272
|
+
collectionIconExpanded = _this$props7.collectionIconExpanded,
|
|
273
|
+
isCollectionFlattened = _this$props7.isCollectionFlattened,
|
|
274
|
+
getCollectionProps = _this$props7.getCollectionProps,
|
|
275
|
+
level = _this$props7.level,
|
|
276
|
+
position = _this$props7.position,
|
|
277
|
+
styles = _this$props7.styles;
|
|
282
278
|
const collectionProps = getCollectionProps({ ...this.getCommonButtonProps(),
|
|
283
279
|
expanded: expanded,
|
|
284
280
|
collectionIcon: collectionIcon,
|
|
@@ -295,7 +291,7 @@ let TreeCollection = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
295
291
|
ref: el => {
|
|
296
292
|
this.ref = el;
|
|
297
293
|
},
|
|
298
|
-
css: styles
|
|
294
|
+
css: styles?.treeCollection,
|
|
299
295
|
tabIndex: -1,
|
|
300
296
|
role: "treeitem",
|
|
301
297
|
"aria-label": this.props.name,
|
|
@@ -315,7 +311,7 @@ let TreeCollection = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.def
|
|
|
315
311
|
})
|
|
316
312
|
}, ariaSelected), (0, _emotion.jsx)(_TreeButton.TreeButton, collectionProps), expanded && this.childCount > 0 && (0, _emotion.jsx)("ul", {
|
|
317
313
|
"aria-label": name,
|
|
318
|
-
css: styles
|
|
314
|
+
css: styles?.list,
|
|
319
315
|
role: "group"
|
|
320
316
|
}, this.renderChildren()));
|
|
321
317
|
}
|
|
@@ -40,12 +40,12 @@ const generateComponentTheme = theme => {
|
|
|
40
40
|
typography = theme.typography,
|
|
41
41
|
borders = theme.borders;
|
|
42
42
|
const componentVariables = {
|
|
43
|
-
fontFamily: typography
|
|
44
|
-
baseSpacingSmall: spacing
|
|
45
|
-
baseSpacingMedium: spacing
|
|
43
|
+
fontFamily: typography?.fontFamily,
|
|
44
|
+
baseSpacingSmall: spacing?.xSmall,
|
|
45
|
+
baseSpacingMedium: spacing?.small,
|
|
46
46
|
baseSpacingLarge: '1rem',
|
|
47
|
-
borderWidth: borders
|
|
48
|
-
borderColor: colors
|
|
47
|
+
borderWidth: borders?.widthSmall,
|
|
48
|
+
borderColor: colors?.borderDark
|
|
49
49
|
};
|
|
50
50
|
return { ...componentVariables
|
|
51
51
|
};
|
|
@@ -51,28 +51,24 @@ let TreeNode = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
componentDidMount() {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
54
|
+
this.props.makeStyles?.();
|
|
57
55
|
}
|
|
58
56
|
|
|
59
57
|
componentDidUpdate() {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2);
|
|
58
|
+
this.props.makeStyles?.();
|
|
63
59
|
}
|
|
64
60
|
|
|
65
61
|
renderItemImage() {
|
|
66
62
|
var _Img;
|
|
67
63
|
|
|
68
|
-
const _this$
|
|
69
|
-
thumbnail = _this$
|
|
70
|
-
itemIcon = _this$
|
|
71
|
-
styles = _this$
|
|
64
|
+
const _this$props = this.props,
|
|
65
|
+
thumbnail = _this$props.thumbnail,
|
|
66
|
+
itemIcon = _this$props.itemIcon,
|
|
67
|
+
styles = _this$props.styles;
|
|
72
68
|
|
|
73
69
|
if (thumbnail) {
|
|
74
70
|
return (0, _emotion.jsx)("div", {
|
|
75
|
-
css: styles
|
|
71
|
+
css: styles?.thumbnail
|
|
76
72
|
}, _Img || (_Img = (0, _emotion.jsx)(_Img2.Img, {
|
|
77
73
|
src: thumbnail,
|
|
78
74
|
constrain: "cover",
|
|
@@ -82,7 +78,7 @@ let TreeNode = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
82
78
|
|
|
83
79
|
if (itemIcon) {
|
|
84
80
|
return (0, _emotion.jsx)("div", {
|
|
85
|
-
css: styles
|
|
81
|
+
css: styles?.icon
|
|
86
82
|
}, (0, _callRenderProp.callRenderProp)(itemIcon));
|
|
87
83
|
}
|
|
88
84
|
|
|
@@ -90,17 +86,17 @@ let TreeNode = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
90
86
|
}
|
|
91
87
|
|
|
92
88
|
render() {
|
|
93
|
-
const _this$
|
|
94
|
-
children = _this$
|
|
95
|
-
styles = _this$
|
|
89
|
+
const _this$props2 = this.props,
|
|
90
|
+
children = _this$props2.children,
|
|
91
|
+
styles = _this$props2.styles;
|
|
96
92
|
return (0, _emotion.jsx)("div", {
|
|
97
93
|
ref: this.handleRef,
|
|
98
94
|
tabIndex: -1,
|
|
99
|
-
css: styles
|
|
95
|
+
css: styles?.treeButton
|
|
100
96
|
}, (0, _emotion.jsx)("span", {
|
|
101
|
-
css: styles
|
|
97
|
+
css: styles?.layout
|
|
102
98
|
}, this.renderItemImage(), (0, _emotion.jsx)("span", {
|
|
103
|
-
css: styles
|
|
99
|
+
css: styles?.node
|
|
104
100
|
}, children)));
|
|
105
101
|
}
|
|
106
102
|
|
package/lib/TreeBrowser/index.js
CHANGED
|
@@ -56,16 +56,14 @@ let TreeBrowser = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.defaul
|
|
|
56
56
|
e.stopPropagation();
|
|
57
57
|
const onCollectionClick = _this.props.onCollectionClick;
|
|
58
58
|
if (expand) _this.expandOrCollapseNode(collection);
|
|
59
|
-
onCollectionClick
|
|
59
|
+
onCollectionClick?.(collection.id, collection); // TODO: this should pass the event as the first arg
|
|
60
60
|
|
|
61
61
|
_this.handleSelection(collection.id, 'collection');
|
|
62
62
|
};
|
|
63
63
|
|
|
64
64
|
this.handleItemClick = (e, item) => {
|
|
65
|
-
var _this$props$onItemCli, _this$props;
|
|
66
|
-
|
|
67
65
|
e.stopPropagation();
|
|
68
|
-
|
|
66
|
+
this.props.onItemClick?.(item);
|
|
69
67
|
this.handleSelection(item.id, 'item');
|
|
70
68
|
};
|
|
71
69
|
|
|
@@ -106,9 +104,9 @@ let TreeBrowser = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.defaul
|
|
|
106
104
|
};
|
|
107
105
|
|
|
108
106
|
this.getIsFlattened = collection => {
|
|
109
|
-
const _this$
|
|
110
|
-
rootId = _this$
|
|
111
|
-
showRootCollection = _this$
|
|
107
|
+
const _this$props = this.props,
|
|
108
|
+
rootId = _this$props.rootId,
|
|
109
|
+
showRootCollection = _this$props.showRootCollection;
|
|
112
110
|
return !showRootCollection && typeof rootId !== 'undefined' && collection.id === rootId;
|
|
113
111
|
};
|
|
114
112
|
|
|
@@ -125,15 +123,11 @@ let TreeBrowser = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.defaul
|
|
|
125
123
|
}
|
|
126
124
|
|
|
127
125
|
componentDidMount() {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
(_this$props$makeStyle = (_this$props3 = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props3);
|
|
126
|
+
this.props.makeStyles?.();
|
|
131
127
|
}
|
|
132
128
|
|
|
133
129
|
componentDidUpdate() {
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
(_this$props$makeStyle2 = (_this$props4 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props4);
|
|
130
|
+
this.props.makeStyles?.();
|
|
137
131
|
}
|
|
138
132
|
|
|
139
133
|
get _root() {
|
|
@@ -141,9 +135,9 @@ let TreeBrowser = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.defaul
|
|
|
141
135
|
}
|
|
142
136
|
|
|
143
137
|
get collections() {
|
|
144
|
-
const _this$
|
|
145
|
-
collections = _this$
|
|
146
|
-
rootId = _this$
|
|
138
|
+
const _this$props2 = this.props,
|
|
139
|
+
collections = _this$props2.collections,
|
|
140
|
+
rootId = _this$props2.rootId;
|
|
147
141
|
|
|
148
142
|
if (typeof rootId !== 'undefined') {
|
|
149
143
|
return [collections[rootId]];
|
|
@@ -161,9 +155,7 @@ let TreeBrowser = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.defaul
|
|
|
161
155
|
}
|
|
162
156
|
|
|
163
157
|
expandOrCollapseNode(collection) {
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
(_this$props$onCollect = (_this$props6 = this.props).onCollectionToggle) === null || _this$props$onCollect === void 0 ? void 0 : _this$props$onCollect.call(_this$props6, collection);
|
|
158
|
+
this.props.onCollectionToggle?.(collection);
|
|
167
159
|
|
|
168
160
|
if (typeof this.props.expanded === 'undefined') {
|
|
169
161
|
this.setState((state, props) => {
|
|
@@ -321,7 +313,7 @@ let TreeBrowser = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.defaul
|
|
|
321
313
|
render() {
|
|
322
314
|
const styles = this.props.styles;
|
|
323
315
|
return (0, _emotion.jsx)("ul", {
|
|
324
|
-
css: styles
|
|
316
|
+
css: styles?.treeBrowser,
|
|
325
317
|
tabIndex: 0,
|
|
326
318
|
role: "tree",
|
|
327
319
|
onKeyDown: this.handleKeyDown,
|
package/lib/TreeBrowser/theme.js
CHANGED
|
@@ -38,10 +38,10 @@ const generateComponentTheme = theme => {
|
|
|
38
38
|
const colors = theme.colors,
|
|
39
39
|
borders = theme.borders;
|
|
40
40
|
const componentVariables = {
|
|
41
|
-
borderRadius: borders
|
|
42
|
-
focusOutlineWidth: borders
|
|
43
|
-
focusOutlineColor: colors
|
|
44
|
-
focusOutlineStyle: borders
|
|
41
|
+
borderRadius: borders?.radiusMedium,
|
|
42
|
+
focusOutlineWidth: borders?.widthMedium,
|
|
43
|
+
focusOutlineColor: colors?.borderBrand,
|
|
44
|
+
focusOutlineStyle: borders?.style
|
|
45
45
|
};
|
|
46
46
|
return { ...componentVariables
|
|
47
47
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-tree-browser",
|
|
3
|
-
"version": "8.17.1-snapshot.
|
|
3
|
+
"version": "8.17.1-snapshot.71+34dfb2442",
|
|
4
4
|
"description": "A component for displaying a hierarchical view of information",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -23,22 +23,22 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@instructure/ui-babel-preset": "8.17.1-snapshot.
|
|
27
|
-
"@instructure/ui-color-utils": "8.17.1-snapshot.
|
|
28
|
-
"@instructure/ui-test-locator": "8.17.1-snapshot.
|
|
29
|
-
"@instructure/ui-test-utils": "8.17.1-snapshot.
|
|
30
|
-
"@instructure/ui-themes": "8.17.1-snapshot.
|
|
26
|
+
"@instructure/ui-babel-preset": "8.17.1-snapshot.71+34dfb2442",
|
|
27
|
+
"@instructure/ui-color-utils": "8.17.1-snapshot.71+34dfb2442",
|
|
28
|
+
"@instructure/ui-test-locator": "8.17.1-snapshot.71+34dfb2442",
|
|
29
|
+
"@instructure/ui-test-utils": "8.17.1-snapshot.71+34dfb2442",
|
|
30
|
+
"@instructure/ui-themes": "8.17.1-snapshot.71+34dfb2442"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@babel/runtime": "^7.13.10",
|
|
34
|
-
"@instructure/emotion": "8.17.1-snapshot.
|
|
35
|
-
"@instructure/shared-types": "8.17.1-snapshot.
|
|
36
|
-
"@instructure/ui-icons": "8.17.1-snapshot.
|
|
37
|
-
"@instructure/ui-img": "8.17.1-snapshot.
|
|
38
|
-
"@instructure/ui-prop-types": "8.17.1-snapshot.
|
|
39
|
-
"@instructure/ui-react-utils": "8.17.1-snapshot.
|
|
40
|
-
"@instructure/ui-testable": "8.17.1-snapshot.
|
|
41
|
-
"@instructure/ui-utils": "8.17.1-snapshot.
|
|
34
|
+
"@instructure/emotion": "8.17.1-snapshot.71+34dfb2442",
|
|
35
|
+
"@instructure/shared-types": "8.17.1-snapshot.71+34dfb2442",
|
|
36
|
+
"@instructure/ui-icons": "8.17.1-snapshot.71+34dfb2442",
|
|
37
|
+
"@instructure/ui-img": "8.17.1-snapshot.71+34dfb2442",
|
|
38
|
+
"@instructure/ui-prop-types": "8.17.1-snapshot.71+34dfb2442",
|
|
39
|
+
"@instructure/ui-react-utils": "8.17.1-snapshot.71+34dfb2442",
|
|
40
|
+
"@instructure/ui-testable": "8.17.1-snapshot.71+34dfb2442",
|
|
41
|
+
"@instructure/ui-utils": "8.17.1-snapshot.71+34dfb2442",
|
|
42
42
|
"keycode": "^2",
|
|
43
43
|
"prop-types": "^15"
|
|
44
44
|
},
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
51
|
"sideEffects": false,
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "34dfb2442c7ddce048d78ab1ecd5f3cbb78ee8d6"
|
|
53
53
|
}
|