@instructure/ui-pagination 8.18.0 → 8.18.1-snapshot.12
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/LICENSE.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: The MIT License (MIT)
|
|
3
|
+
category: Getting Started
|
|
4
|
+
order: 9
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# The MIT License (MIT)
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2015 Instructure, Inc.
|
|
10
|
+
|
|
11
|
+
**Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions.**
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
@@ -104,11 +104,15 @@ let PaginationPageInput = (_dec = withStyle(generateStyle, generateComponentThem
|
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
componentDidMount() {
|
|
107
|
-
|
|
107
|
+
var _this$props$makeStyle, _this$props;
|
|
108
|
+
|
|
109
|
+
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
108
110
|
}
|
|
109
111
|
|
|
110
112
|
componentDidUpdate(prevProps) {
|
|
111
|
-
|
|
113
|
+
var _this$props$makeStyle2, _this$props2;
|
|
114
|
+
|
|
115
|
+
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2); // when the current page changes from outside (e.g.: from arrow buttons),
|
|
112
116
|
// we update the initial state
|
|
113
117
|
|
|
114
118
|
if (this.props.currentPageIndex !== prevProps.currentPageIndex) {
|
|
@@ -153,31 +157,31 @@ let PaginationPageInput = (_dec = withStyle(generateStyle, generateComponentThem
|
|
|
153
157
|
}
|
|
154
158
|
|
|
155
159
|
renderLabel() {
|
|
156
|
-
const _this$
|
|
157
|
-
label = _this$
|
|
158
|
-
numberOfPages = _this$
|
|
159
|
-
styles = _this$
|
|
160
|
+
const _this$props3 = this.props,
|
|
161
|
+
label = _this$props3.label,
|
|
162
|
+
numberOfPages = _this$props3.numberOfPages,
|
|
163
|
+
styles = _this$props3.styles;
|
|
160
164
|
return typeof label === 'function' && label(numberOfPages) ? jsx("span", {
|
|
161
|
-
css: styles
|
|
165
|
+
css: styles === null || styles === void 0 ? void 0 : styles.inputLabel
|
|
162
166
|
}, label(numberOfPages)) : null;
|
|
163
167
|
}
|
|
164
168
|
|
|
165
169
|
renderScreenReaderLabel() {
|
|
166
|
-
const _this$
|
|
167
|
-
screenReaderLabel = _this$
|
|
168
|
-
numberOfPages = _this$
|
|
170
|
+
const _this$props4 = this.props,
|
|
171
|
+
screenReaderLabel = _this$props4.screenReaderLabel,
|
|
172
|
+
numberOfPages = _this$props4.numberOfPages;
|
|
169
173
|
return jsx(ScreenReaderContent, null, screenReaderLabel(this.currentPage, numberOfPages));
|
|
170
174
|
}
|
|
171
175
|
|
|
172
176
|
render() {
|
|
173
|
-
const _this$
|
|
174
|
-
styles = _this$
|
|
175
|
-
disabled = _this$
|
|
177
|
+
const _this$props5 = this.props,
|
|
178
|
+
styles = _this$props5.styles,
|
|
179
|
+
disabled = _this$props5.disabled;
|
|
176
180
|
return jsx("span", {
|
|
177
|
-
css: styles
|
|
181
|
+
css: styles === null || styles === void 0 ? void 0 : styles.paginationPageInput,
|
|
178
182
|
ref: this.handleRef
|
|
179
183
|
}, jsx("span", {
|
|
180
|
-
css: styles
|
|
184
|
+
css: styles === null || styles === void 0 ? void 0 : styles.numberInput
|
|
181
185
|
}, jsx(NumberInput, {
|
|
182
186
|
renderLabel: this.renderScreenReaderLabel(),
|
|
183
187
|
onBlur: this.handleBlur,
|
package/es/Pagination/index.js
CHANGED
|
@@ -123,11 +123,15 @@ let Pagination = (_dec = withDeterministicId(), _dec2 = withStyle(generateStyle,
|
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
componentDidMount() {
|
|
126
|
-
|
|
126
|
+
var _this$props$makeStyle, _this$props;
|
|
127
|
+
|
|
128
|
+
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
127
129
|
}
|
|
128
130
|
|
|
129
131
|
componentDidUpdate(prevProps, _prevState, snapshot) {
|
|
130
|
-
|
|
132
|
+
var _this$props$makeStyle2, _this$props2;
|
|
133
|
+
|
|
134
|
+
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2);
|
|
131
135
|
|
|
132
136
|
if (!this.props.shouldHandleFocus || !propsHaveCompactView(prevProps) && !propsHaveCompactView(this.props)) {
|
|
133
137
|
return;
|
|
@@ -195,7 +199,9 @@ let Pagination = (_dec = withDeterministicId(), _dec2 = withStyle(generateStyle,
|
|
|
195
199
|
}
|
|
196
200
|
|
|
197
201
|
handleInputChange(event, pageIndex) {
|
|
198
|
-
|
|
202
|
+
var _this$childPages$page, _this$childPages$page2;
|
|
203
|
+
|
|
204
|
+
(_this$childPages$page = (_this$childPages$page2 = this.childPages[pageIndex].props).onClick) === null || _this$childPages$page === void 0 ? void 0 : _this$childPages$page.call(_this$childPages$page2, event);
|
|
199
205
|
}
|
|
200
206
|
|
|
201
207
|
renderPages(currentPageIndex) {
|
|
@@ -272,6 +278,8 @@ let Pagination = (_dec = withDeterministicId(), _dec2 = withStyle(generateStyle,
|
|
|
272
278
|
}
|
|
273
279
|
|
|
274
280
|
renderArrowButton(direction, currentPageIndex) {
|
|
281
|
+
var _page$props, _page$props2;
|
|
282
|
+
|
|
275
283
|
const childPages = this.childPages; // We don't display the arrows in "compact" variant under 6 items
|
|
276
284
|
|
|
277
285
|
if (!(propsHaveCompactView(this.props) || this.inputMode)) {
|
|
@@ -289,8 +297,8 @@ let Pagination = (_dec = withDeterministicId(), _dec2 = withStyle(generateStyle,
|
|
|
289
297
|
handleButtonRef = _this$getArrowVariant.handleButtonRef;
|
|
290
298
|
|
|
291
299
|
const page = childPages[pageIndex];
|
|
292
|
-
const disabled = page
|
|
293
|
-
const onClick = page
|
|
300
|
+
const disabled = (page === null || page === void 0 ? void 0 : (_page$props = page.props) === null || _page$props === void 0 ? void 0 : _page$props.disabled) || this.props.disabled || !shouldEnableIcon;
|
|
301
|
+
const onClick = page === null || page === void 0 ? void 0 : (_page$props2 = page.props) === null || _page$props2 === void 0 ? void 0 : _page$props2.onClick;
|
|
294
302
|
return shouldEnableIcon || this.showDisabledButtons ? jsx(PaginationArrowButton, {
|
|
295
303
|
direction: direction,
|
|
296
304
|
"data-direction": direction,
|
|
@@ -302,6 +310,8 @@ let Pagination = (_dec = withDeterministicId(), _dec2 = withStyle(generateStyle,
|
|
|
302
310
|
}
|
|
303
311
|
|
|
304
312
|
render() {
|
|
313
|
+
var _this$props$styles, _this$props$styles2;
|
|
314
|
+
|
|
305
315
|
if (!this.props.children) return null;
|
|
306
316
|
const currentPageIndex = fastFindIndex(this.childPages, p => p && p.props && p.props.current);
|
|
307
317
|
const passthroughProps = View.omitViewProps(omitProps(this.props, Pagination.allowedProps), Pagination);
|
|
@@ -310,11 +320,11 @@ let Pagination = (_dec = withDeterministicId(), _dec2 = withStyle(generateStyle,
|
|
|
310
320
|
as: this.props.as,
|
|
311
321
|
elementRef: this.handleElementRef,
|
|
312
322
|
margin: this.props.margin,
|
|
313
|
-
css: this.props.styles
|
|
323
|
+
css: (_this$props$styles = this.props.styles) === null || _this$props$styles === void 0 ? void 0 : _this$props$styles.pagination,
|
|
314
324
|
"aria-labelledby": this.props.label ? this._labelId : void 0
|
|
315
325
|
}), this.props.label && this.renderLabel(), jsx(View, {
|
|
316
326
|
display: "inline-block",
|
|
317
|
-
css: this.props.styles
|
|
327
|
+
css: (_this$props$styles2 = this.props.styles) === null || _this$props$styles2 === void 0 ? void 0 : _this$props$styles2.pages
|
|
318
328
|
}, this.renderArrowButton('first', currentPageIndex), this.renderArrowButton('prev', currentPageIndex), this.inputMode ? this.renderPageInput(currentPageIndex) : this.renderPages(currentPageIndex), this.renderArrowButton('next', currentPageIndex), this.renderArrowButton('last', currentPageIndex)));
|
|
319
329
|
}
|
|
320
330
|
|
|
@@ -97,11 +97,15 @@ let PaginationPageInput = (_dec = (0, _emotion.withStyle)(_styles.default, _them
|
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
componentDidMount() {
|
|
100
|
-
|
|
100
|
+
var _this$props$makeStyle, _this$props;
|
|
101
|
+
|
|
102
|
+
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
101
103
|
}
|
|
102
104
|
|
|
103
105
|
componentDidUpdate(prevProps) {
|
|
104
|
-
|
|
106
|
+
var _this$props$makeStyle2, _this$props2;
|
|
107
|
+
|
|
108
|
+
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2); // when the current page changes from outside (e.g.: from arrow buttons),
|
|
105
109
|
// we update the initial state
|
|
106
110
|
|
|
107
111
|
if (this.props.currentPageIndex !== prevProps.currentPageIndex) {
|
|
@@ -146,31 +150,31 @@ let PaginationPageInput = (_dec = (0, _emotion.withStyle)(_styles.default, _them
|
|
|
146
150
|
}
|
|
147
151
|
|
|
148
152
|
renderLabel() {
|
|
149
|
-
const _this$
|
|
150
|
-
label = _this$
|
|
151
|
-
numberOfPages = _this$
|
|
152
|
-
styles = _this$
|
|
153
|
+
const _this$props3 = this.props,
|
|
154
|
+
label = _this$props3.label,
|
|
155
|
+
numberOfPages = _this$props3.numberOfPages,
|
|
156
|
+
styles = _this$props3.styles;
|
|
153
157
|
return typeof label === 'function' && label(numberOfPages) ? (0, _emotion.jsx)("span", {
|
|
154
|
-
css: styles
|
|
158
|
+
css: styles === null || styles === void 0 ? void 0 : styles.inputLabel
|
|
155
159
|
}, label(numberOfPages)) : null;
|
|
156
160
|
}
|
|
157
161
|
|
|
158
162
|
renderScreenReaderLabel() {
|
|
159
|
-
const _this$
|
|
160
|
-
screenReaderLabel = _this$
|
|
161
|
-
numberOfPages = _this$
|
|
163
|
+
const _this$props4 = this.props,
|
|
164
|
+
screenReaderLabel = _this$props4.screenReaderLabel,
|
|
165
|
+
numberOfPages = _this$props4.numberOfPages;
|
|
162
166
|
return (0, _emotion.jsx)(_ScreenReaderContent.ScreenReaderContent, null, screenReaderLabel(this.currentPage, numberOfPages));
|
|
163
167
|
}
|
|
164
168
|
|
|
165
169
|
render() {
|
|
166
|
-
const _this$
|
|
167
|
-
styles = _this$
|
|
168
|
-
disabled = _this$
|
|
170
|
+
const _this$props5 = this.props,
|
|
171
|
+
styles = _this$props5.styles,
|
|
172
|
+
disabled = _this$props5.disabled;
|
|
169
173
|
return (0, _emotion.jsx)("span", {
|
|
170
|
-
css: styles
|
|
174
|
+
css: styles === null || styles === void 0 ? void 0 : styles.paginationPageInput,
|
|
171
175
|
ref: this.handleRef
|
|
172
176
|
}, (0, _emotion.jsx)("span", {
|
|
173
|
-
css: styles
|
|
177
|
+
css: styles === null || styles === void 0 ? void 0 : styles.numberInput
|
|
174
178
|
}, (0, _emotion.jsx)(_NumberInput.NumberInput, {
|
|
175
179
|
renderLabel: this.renderScreenReaderLabel(),
|
|
176
180
|
onBlur: this.handleBlur,
|
package/lib/Pagination/index.js
CHANGED
|
@@ -131,11 +131,15 @@ let Pagination = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2
|
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
componentDidMount() {
|
|
134
|
-
|
|
134
|
+
var _this$props$makeStyle, _this$props;
|
|
135
|
+
|
|
136
|
+
(_this$props$makeStyle = (_this$props = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props);
|
|
135
137
|
}
|
|
136
138
|
|
|
137
139
|
componentDidUpdate(prevProps, _prevState, snapshot) {
|
|
138
|
-
|
|
140
|
+
var _this$props$makeStyle2, _this$props2;
|
|
141
|
+
|
|
142
|
+
(_this$props$makeStyle2 = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props2);
|
|
139
143
|
|
|
140
144
|
if (!this.props.shouldHandleFocus || !propsHaveCompactView(prevProps) && !propsHaveCompactView(this.props)) {
|
|
141
145
|
return;
|
|
@@ -203,7 +207,9 @@ let Pagination = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2
|
|
|
203
207
|
}
|
|
204
208
|
|
|
205
209
|
handleInputChange(event, pageIndex) {
|
|
206
|
-
|
|
210
|
+
var _this$childPages$page, _this$childPages$page2;
|
|
211
|
+
|
|
212
|
+
(_this$childPages$page = (_this$childPages$page2 = this.childPages[pageIndex].props).onClick) === null || _this$childPages$page === void 0 ? void 0 : _this$childPages$page.call(_this$childPages$page2, event);
|
|
207
213
|
}
|
|
208
214
|
|
|
209
215
|
renderPages(currentPageIndex) {
|
|
@@ -280,6 +286,8 @@ let Pagination = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2
|
|
|
280
286
|
}
|
|
281
287
|
|
|
282
288
|
renderArrowButton(direction, currentPageIndex) {
|
|
289
|
+
var _page$props, _page$props2;
|
|
290
|
+
|
|
283
291
|
const childPages = this.childPages; // We don't display the arrows in "compact" variant under 6 items
|
|
284
292
|
|
|
285
293
|
if (!(propsHaveCompactView(this.props) || this.inputMode)) {
|
|
@@ -297,8 +305,8 @@ let Pagination = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2
|
|
|
297
305
|
handleButtonRef = _this$getArrowVariant.handleButtonRef;
|
|
298
306
|
|
|
299
307
|
const page = childPages[pageIndex];
|
|
300
|
-
const disabled = page
|
|
301
|
-
const onClick = page
|
|
308
|
+
const disabled = (page === null || page === void 0 ? void 0 : (_page$props = page.props) === null || _page$props === void 0 ? void 0 : _page$props.disabled) || this.props.disabled || !shouldEnableIcon;
|
|
309
|
+
const onClick = page === null || page === void 0 ? void 0 : (_page$props2 = page.props) === null || _page$props2 === void 0 ? void 0 : _page$props2.onClick;
|
|
302
310
|
return shouldEnableIcon || this.showDisabledButtons ? (0, _emotion.jsx)(_PaginationArrowButton.PaginationArrowButton, {
|
|
303
311
|
direction: direction,
|
|
304
312
|
"data-direction": direction,
|
|
@@ -310,6 +318,8 @@ let Pagination = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2
|
|
|
310
318
|
}
|
|
311
319
|
|
|
312
320
|
render() {
|
|
321
|
+
var _this$props$styles, _this$props$styles2;
|
|
322
|
+
|
|
313
323
|
if (!this.props.children) return null;
|
|
314
324
|
const currentPageIndex = fastFindIndex(this.childPages, p => p && p.props && p.props.current);
|
|
315
325
|
|
|
@@ -320,11 +330,11 @@ let Pagination = (_dec = (0, _withDeterministicId.withDeterministicId)(), _dec2
|
|
|
320
330
|
as: this.props.as,
|
|
321
331
|
elementRef: this.handleElementRef,
|
|
322
332
|
margin: this.props.margin,
|
|
323
|
-
css: this.props.styles
|
|
333
|
+
css: (_this$props$styles = this.props.styles) === null || _this$props$styles === void 0 ? void 0 : _this$props$styles.pagination,
|
|
324
334
|
"aria-labelledby": this.props.label ? this._labelId : void 0
|
|
325
335
|
}), this.props.label && this.renderLabel(), (0, _emotion.jsx)(_View.View, {
|
|
326
336
|
display: "inline-block",
|
|
327
|
-
css: this.props.styles
|
|
337
|
+
css: (_this$props$styles2 = this.props.styles) === null || _this$props$styles2 === void 0 ? void 0 : _this$props$styles2.pages
|
|
328
338
|
}, this.renderArrowButton('first', currentPageIndex), this.renderArrowButton('prev', currentPageIndex), this.inputMode ? this.renderPageInput(currentPageIndex) : this.renderPages(currentPageIndex), this.renderArrowButton('next', currentPageIndex), this.renderArrowButton('last', currentPageIndex)));
|
|
329
339
|
}
|
|
330
340
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-pagination",
|
|
3
|
-
"version": "8.18.
|
|
3
|
+
"version": "8.18.1-snapshot.12+ca14b3dc8",
|
|
4
4
|
"description": "A UI component library made by Instructure Inc.",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -23,29 +23,29 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@instructure/ui-babel-preset": "8.18.
|
|
27
|
-
"@instructure/ui-test-locator": "8.18.
|
|
28
|
-
"@instructure/ui-test-queries": "8.18.
|
|
29
|
-
"@instructure/ui-test-utils": "8.18.
|
|
26
|
+
"@instructure/ui-babel-preset": "8.18.1-snapshot.12+ca14b3dc8",
|
|
27
|
+
"@instructure/ui-test-locator": "8.18.1-snapshot.12+ca14b3dc8",
|
|
28
|
+
"@instructure/ui-test-queries": "8.18.1-snapshot.12+ca14b3dc8",
|
|
29
|
+
"@instructure/ui-test-utils": "8.18.1-snapshot.12+ca14b3dc8"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@babel/runtime": "^7.13.10",
|
|
33
|
-
"@instructure/emotion": "8.18.
|
|
34
|
-
"@instructure/shared-types": "8.18.
|
|
35
|
-
"@instructure/ui-a11y-content": "8.18.
|
|
36
|
-
"@instructure/ui-a11y-utils": "8.18.
|
|
37
|
-
"@instructure/ui-buttons": "8.18.
|
|
38
|
-
"@instructure/ui-dom-utils": "8.18.
|
|
39
|
-
"@instructure/ui-icons": "8.18.
|
|
40
|
-
"@instructure/ui-number-input": "8.18.
|
|
41
|
-
"@instructure/ui-portal": "8.18.
|
|
42
|
-
"@instructure/ui-prop-types": "8.18.
|
|
43
|
-
"@instructure/ui-react-utils": "8.18.
|
|
44
|
-
"@instructure/ui-testable": "8.18.
|
|
45
|
-
"@instructure/ui-tooltip": "8.18.
|
|
46
|
-
"@instructure/ui-utils": "8.18.
|
|
47
|
-
"@instructure/ui-view": "8.18.
|
|
48
|
-
"@instructure/uid": "8.18.
|
|
33
|
+
"@instructure/emotion": "8.18.1-snapshot.12+ca14b3dc8",
|
|
34
|
+
"@instructure/shared-types": "8.18.1-snapshot.12+ca14b3dc8",
|
|
35
|
+
"@instructure/ui-a11y-content": "8.18.1-snapshot.12+ca14b3dc8",
|
|
36
|
+
"@instructure/ui-a11y-utils": "8.18.1-snapshot.12+ca14b3dc8",
|
|
37
|
+
"@instructure/ui-buttons": "8.18.1-snapshot.12+ca14b3dc8",
|
|
38
|
+
"@instructure/ui-dom-utils": "8.18.1-snapshot.12+ca14b3dc8",
|
|
39
|
+
"@instructure/ui-icons": "8.18.1-snapshot.12+ca14b3dc8",
|
|
40
|
+
"@instructure/ui-number-input": "8.18.1-snapshot.12+ca14b3dc8",
|
|
41
|
+
"@instructure/ui-portal": "8.18.1-snapshot.12+ca14b3dc8",
|
|
42
|
+
"@instructure/ui-prop-types": "8.18.1-snapshot.12+ca14b3dc8",
|
|
43
|
+
"@instructure/ui-react-utils": "8.18.1-snapshot.12+ca14b3dc8",
|
|
44
|
+
"@instructure/ui-testable": "8.18.1-snapshot.12+ca14b3dc8",
|
|
45
|
+
"@instructure/ui-tooltip": "8.18.1-snapshot.12+ca14b3dc8",
|
|
46
|
+
"@instructure/ui-utils": "8.18.1-snapshot.12+ca14b3dc8",
|
|
47
|
+
"@instructure/ui-view": "8.18.1-snapshot.12+ca14b3dc8",
|
|
48
|
+
"@instructure/uid": "8.18.1-snapshot.12+ca14b3dc8",
|
|
49
49
|
"keycode": "^2",
|
|
50
50
|
"prop-types": "^15"
|
|
51
51
|
},
|
|
@@ -55,5 +55,6 @@
|
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
|
-
"sideEffects": false
|
|
58
|
+
"sideEffects": false,
|
|
59
|
+
"gitHead": "ca14b3dc8f0315daef7b86aa05f711e6d6684c58"
|
|
59
60
|
}
|