Skip to content

Commit 22911be

Browse files
committed
hack input field
1 parent 0c26c45 commit 22911be

File tree

3 files changed

+167
-39
lines changed

3 files changed

+167
-39
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"@atlaskit/code": "^13.1.1",
1313
"@atlaskit/css-reset": "^6.0.5",
1414
"@atlaskit/empty-state": "^7.1.5",
15+
"@atlaskit/form": "^9.1.2",
1516
"@atlaskit/icon": "^21.2.0",
1617
"@atlaskit/logo": "^13.0.7",
1718
"@atlaskit/lozenge": "^10.1.0",

src/Start.tsx

+39-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ import React from 'react';
33
import styled from 'styled-components';
44
import { RouteComponentProps, withRouter } from 'react-router-dom';
55
import TextField from '@atlaskit/textfield';
6+
import { Label } from '@atlaskit/form';
67
import Button from '@atlaskit/button';
78
import { Markdown } from './markdown';
89
import YAML from 'yaml'
10+
import { fontSize } from '@atlaskit/theme';
11+
import { background } from '@atlaskit/theme/colors';
912

1013
export type StartProps = RouteComponentProps & {
1114

@@ -134,6 +137,14 @@ export class StartWR extends React.PureComponent<StartProps, StartState> {
134137
}
135138
}
136139

140+
const toObjectTry = (str: string) => {
141+
try{
142+
return YAML.parse(str);
143+
} catch(e) {
144+
return JSON.parse(str);
145+
}
146+
}
147+
137148
const onFileChange: React.FormEventHandler<HTMLInputElement> = async e => {
138149
// @ts-ignore
139150
const [file] = e.currentTarget.files;
@@ -147,19 +158,43 @@ export class StartWR extends React.PureComponent<StartProps, StartState> {
147158
handleOnClick();
148159
}
149160

161+
const handleOnClickText = async () => {
162+
const obj = toObjectTry(document.querySelector("textarea")!.value);
163+
console.warn(obj);
164+
const json = JSON.stringify(obj);
165+
console.log(`data:application/json;base64,${btoa(json)}`);
166+
console.log('currentValue', obj);
167+
console.log(`data:application/json;base64,${btoa(json)}`);
168+
this.setState(() => ({ urlInput: `data:application/json;base64,${btoa(json)}` }));
169+
history.push(`/view/${encodeURIComponent('#')}?url=${encodeURIComponent(`data:application/json;base64,${btoa(json)}`)}`);
170+
}
171+
150172
return (
151173
<EmptyState
152174
header="Load a JSON Schema"
153175
description={`Put in the url to the JSON schema that you want to see documented here.`}
154176
primaryAction={(
155177
<StartWR.InputWidth>
156178
<StartWR.Flex>
157-
<TextField isCompact={false} value={this.state.urlInput || ''} onChange={onTextChange} />
179+
<Label htmlFor="url">Url</Label>
180+
<TextField id="url" isCompact={false} value={this.state.urlInput || ''} onChange={onTextChange} />
158181
<Button label="submit" onClick={handleOnClick} appearance="primary">Load Schema</Button>
159182
</StartWR.Flex>
160-
<StartWR.Flex>
161-
<span>load schema file (yml/json)</span>
162-
<input type="file" onChange={onFileChange} />
183+
184+
<div style={{ marginTop: '12px', border: '1px solid', borderColor: "#dcdddd" }}></div>
185+
186+
<StartWR.Flex style={{ marginTop: '12px', display: 'flex' }}>
187+
<Label htmlFor="url">File (json/yml)</Label>
188+
<input id="file" type="file" onChange={onFileChange} />
189+
</StartWR.Flex>
190+
191+
<div style={{ marginTop: '12px', border: '1px solid', borderColor: "#dcdddd"}}></div>
192+
193+
<StartWR.Flex style={{ marginTop: '12px', display: 'flex' }}>
194+
<textarea id="text" style={{ height: 'auto', flexGrow: '1', fieldSizing: 'content' }} />
195+
</StartWR.Flex>
196+
<StartWR.Flex style={{ marginTop: '24px', display: 'flex' }}>
197+
<Button label="submit" onClick={handleOnClickText} appearance="primary">Load Schema</Button>
163198
</StartWR.Flex>
164199
<StartWR.Guide><Markdown source={DevelopingSchemaInstructions} /></StartWR.Guide>
165200
</StartWR.InputWidth>

yarn.lock

+127-35
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,26 @@
6868
"prop-types" "^15.5.10"
6969
"use-memo-one" "^1.1.1"
7070

71+
"@atlaskit/analytics-next@^9.2.0":
72+
"integrity" "sha512-zTtM6xHTNNMO0dxiPrsxMko6BawEh4wN0wWSvMdQXdnusvvWNEE8rnpjn23kS4M08bYWIEstRbgoPLx6VQisug=="
73+
"resolved" "https://registry.npmjs.org/@atlaskit/analytics-next/-/analytics-next-9.2.3.tgz"
74+
"version" "9.2.3"
75+
dependencies:
76+
"@atlaskit/analytics-next-stable-react-context" "1.0.1"
77+
"@atlaskit/platform-feature-flags" "^0.2.2"
78+
"@babel/runtime" "^7.0.0"
79+
"prop-types" "^15.5.10"
80+
"use-memo-one" "^1.1.1"
81+
82+
"@atlaskit/app-provider@^1.3.0":
83+
"integrity" "sha512-0bHfIbXyCbYjuv0zMyHPyuCcyW5IIVCBsNbYEbEl9w5P9hChPyewNrz1VkNPRQBg18DF1zxIIsNyZOEuQjvs7Q=="
84+
"resolved" "https://registry.npmjs.org/@atlaskit/app-provider/-/app-provider-1.3.0.tgz"
85+
"version" "1.3.0"
86+
dependencies:
87+
"@atlaskit/tokens" "^1.43.0"
88+
"@babel/runtime" "^7.0.0"
89+
"bind-event-listener" "^2.1.1"
90+
7191
"@atlaskit/atlassian-navigation@^0.12.5":
7292
"integrity" "sha512-hLWdOsBhMCPtvEPL4nsuPJ0+5GYdlgNltbeK6VzEhAzBcRBTDZPt9xVIlDOU+w3lxXIHi3RRCssLi8PPhjGmEQ=="
7393
"resolved" "https://registry.npmjs.org/@atlaskit/atlassian-navigation/-/atlassian-navigation-0.12.5.tgz"
@@ -164,6 +184,15 @@
164184
"@babel/runtime" "^7.0.0"
165185
"fbjs" "^3.0.0"
166186

187+
"@atlaskit/css@^0.0.6":
188+
"integrity" "sha512-LAocoHW1q/y4teVcHBQVFZSrSyLnbn70Dfz48K2Ej79JZNs8xxS/Ue0AxXHJDBW9ocTaUQviAdNelDKP7c8hiQ=="
189+
"resolved" "https://registry.npmjs.org/@atlaskit/css/-/css-0.0.6.tgz"
190+
"version" "0.0.6"
191+
dependencies:
192+
"@atlaskit/tokens" "^1.43.0"
193+
"@babel/runtime" "^7.0.0"
194+
"@compiled/react" "^0.17.0"
195+
167196
"@atlaskit/ds-explorations@^2.2.0":
168197
"integrity" "sha512-tgPZfRpAWUyPKB1qrpZy8ZKBlIfDVdD8QMdtXbSL4IewBLsHnfaTmkN5Wz5G7KE1YrBu20hkLwPJtqmULTdgsw=="
169198
"resolved" "https://registry.npmjs.org/@atlaskit/ds-explorations/-/ds-explorations-2.2.3.tgz"
@@ -201,6 +230,23 @@
201230
"@babel/runtime" "^7.0.0"
202231
"@emotion/react" "^11.7.1"
203232

233+
"@atlaskit/form@^9.1.2":
234+
"integrity" "sha512-NxoRctEZbB3mu7EuaNOuot8Pfj1tStk1vGKOwCwMs+VJpGO5bWWY6h4fY4OCgp+EJwsrQryYT+Ynvahq1mEWBQ=="
235+
"resolved" "https://registry.npmjs.org/@atlaskit/form/-/form-9.1.2.tgz"
236+
"version" "9.1.2"
237+
dependencies:
238+
"@atlaskit/icon" "^22.1.0"
239+
"@atlaskit/primitives" "^5.5.0"
240+
"@atlaskit/theme" "^12.7.0"
241+
"@atlaskit/tokens" "^1.43.0"
242+
"@babel/runtime" "^7.0.0"
243+
"@emotion/react" "^11.7.1"
244+
"final-form" "^4.20.3"
245+
"final-form-focus" "^1.1.2"
246+
"lodash" "^4.17.21"
247+
"react-uid" "^2.2.0"
248+
"tiny-invariant" "^1.2.0"
249+
204250
"@atlaskit/icon@^21.1.0", "@atlaskit/icon@^21.12.0", "@atlaskit/icon@^21.2.0":
205251
"integrity" "sha512-KnyyW8+q8npatIt3BPLeYCy76KlRs0Kr2of8DqAIrCduJHeLX/ff/8Jo0kn4hNF+mv5sdNx4X/44KsP6ODU7+w=="
206252
"resolved" "https://registry.npmjs.org/@atlaskit/icon/-/icon-21.12.4.tgz"
@@ -211,6 +257,15 @@
211257
"@babel/runtime" "^7.0.0"
212258
"@emotion/react" "^11.7.1"
213259

260+
"@atlaskit/icon@^22.1.0":
261+
"integrity" "sha512-Au2xcpGAF8BPSjsOetc665co3hY8gPW+NuBB0FdMKqi4+riCi5/JE6hLuEF79cB8U24CKKt+ZgIjy8kg8DNvug=="
262+
"resolved" "https://registry.npmjs.org/@atlaskit/icon/-/icon-22.1.1.tgz"
263+
"version" "22.1.1"
264+
dependencies:
265+
"@atlaskit/tokens" "^1.38.0"
266+
"@babel/runtime" "^7.0.0"
267+
"@emotion/react" "^11.7.1"
268+
214269
"@atlaskit/in-product-testing@^0.2.0":
215270
"integrity" "sha512-tB1GfdM6GVBirm9Ag9Qgo5bNTA1x2unc6o8iMTHDp8OkyEFCDS3l7XgmR7nrBQXv8D4BUzX6laX25vCf0ef0dw=="
216271
"resolved" "https://registry.npmjs.org/@atlaskit/in-product-testing/-/in-product-testing-0.2.3.tgz"
@@ -269,7 +324,7 @@
269324
"@emotion/react" "^11.7.1"
270325
"bind-event-listener" "^2.1.1"
271326

272-
"@atlaskit/platform-feature-flags@^0.2.0":
327+
"@atlaskit/platform-feature-flags@^0.2.0", "@atlaskit/platform-feature-flags@^0.2.2":
273328
"integrity" "sha512-9wsjb1ii4t4+IWnwC/jBvWpY8/Jqng59KQH/SNEEoBifZrP4vNAH6vpv8+gPeAhFK+2Pqpxr33yC1U4+sreNew=="
274329
"resolved" "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-0.2.2.tgz"
275330
"version" "0.2.2"
@@ -319,6 +374,24 @@
319374
"@emotion/serialize" "^1.1.0"
320375
"bind-event-listener" "^2.1.1"
321376

377+
"@atlaskit/primitives@^5.5.0":
378+
"integrity" "sha512-HCv/NPrkiKBsdAWfwwgwvAq1xhgR6g0s+TrDBxcS34nju1jt+1Ebkpkpd9kVTdv/QI1/JcVDPm02Md41bLlnKw=="
379+
"resolved" "https://registry.npmjs.org/@atlaskit/primitives/-/primitives-5.5.2.tgz"
380+
"version" "5.5.2"
381+
dependencies:
382+
"@atlaskit/analytics-next" "^9.2.0"
383+
"@atlaskit/app-provider" "^1.3.0"
384+
"@atlaskit/css" "^0.0.6"
385+
"@atlaskit/ds-lib" "^2.2.0"
386+
"@atlaskit/interaction-context" "^2.1.0"
387+
"@atlaskit/tokens" "^1.43.0"
388+
"@atlaskit/visually-hidden" "^1.2.4"
389+
"@babel/runtime" "^7.0.0"
390+
"@emotion/react" "^11.7.1"
391+
"@emotion/serialize" "^1.1.0"
392+
"bind-event-listener" "^2.1.1"
393+
"tiny-invariant" "^1.2.0"
394+
322395
"@atlaskit/spinner@^15.0.0", "@atlaskit/spinner@^15.0.6", "@atlaskit/spinner@^15.5.0":
323396
"integrity" "sha512-7NVBCut1gd5ddyQwwBuWI44zGMNA9hj4by3jVqRKez57VOh4NCvZcxI7BcBehPomRQp4YnBE0Ueib2k//BvEmA=="
324397
"resolved" "https://registry.npmjs.org/@atlaskit/spinner/-/spinner-15.5.2.tgz"
@@ -388,15 +461,25 @@
388461
"@atlaskit/tokens" "^1.4.0"
389462
"@babel/runtime" "^7.0.0"
390463

391-
"@atlaskit/tokens@^1.4.0", "@atlaskit/tokens@^1.5.0", "@atlaskit/tokens@^1.8.0":
392-
"integrity" "sha512-Rqe6Xlgd0+sucbKYbngpCl+TTRiD71/cJD1MgBNxbYvShbLVjQOLoUkXjdkkaWjHLMolWcIsmabSqXbCNUokJA=="
393-
"resolved" "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-1.8.0.tgz"
394-
"version" "1.8.0"
464+
"@atlaskit/theme@^12.7.0":
465+
"integrity" "sha512-x5hVwMpfb2AD1VF9mUOeYzFAiZE4RVFDpyfaLmJ+YsNe6RSzz547krGeiCvrRGrQbfFPMtg5Xq3G1oZC8cLQow=="
466+
"resolved" "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.7.0.tgz"
467+
"version" "12.7.0"
468+
dependencies:
469+
"@atlaskit/codemod-utils" "^4.2.0"
470+
"@atlaskit/ds-lib" "^2.2.0"
471+
"@atlaskit/tokens" "^1.42.0"
472+
"@babel/runtime" "^7.0.0"
473+
474+
"@atlaskit/tokens@^1.38.0", "@atlaskit/tokens@^1.4.0", "@atlaskit/tokens@^1.42.0", "@atlaskit/tokens@^1.43.0", "@atlaskit/tokens@^1.5.0", "@atlaskit/tokens@^1.8.0":
475+
"integrity" "sha512-3rRxGRnJGQBVKGqNqy+Zuad3xuDZ7uD+aFGRcU2OpLuIpiFLX95agDZ9w0HGzNiDw9eWi2f1j8Uzq06AyaRqTw=="
476+
"resolved" "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-1.43.0.tgz"
477+
"version" "1.43.0"
395478
dependencies:
396479
"@atlaskit/ds-lib" "^2.2.0"
397480
"@atlaskit/platform-feature-flags" "^0.2.0"
398481
"@babel/runtime" "^7.0.0"
399-
"@babel/traverse" "^7.20.0"
482+
"@babel/traverse" "^7.23.2"
400483
"@babel/types" "^7.20.0"
401484
"bind-event-listener" "^2.1.1"
402485

@@ -417,10 +500,10 @@
417500
"bind-event-listener" "^2.1.1"
418501
"react-uid" "^2.2.0"
419502

420-
"@atlaskit/visually-hidden@^1.2.0":
421-
"integrity" "sha512-73HpmFZPsCFY1WI9fRVL+Kx5xj80Yt7LNYATkxTVLGmpChDL03sjMQICLkcT26dOqfD/onlFqrGQc09JtsReBg=="
422-
"resolved" "https://registry.npmjs.org/@atlaskit/visually-hidden/-/visually-hidden-1.2.3.tgz"
423-
"version" "1.2.3"
503+
"@atlaskit/visually-hidden@^1.2.0", "@atlaskit/visually-hidden@^1.2.4":
504+
"integrity" "sha512-khxJB6456uMS1IkwnsH0ZTYGVAnE83aoGarz388I0zPydOZdNeeEdwsRPFOn9mua88Ez+rL0OEWV22k6XRUf6A=="
505+
"resolved" "https://registry.npmjs.org/@atlaskit/visually-hidden/-/visually-hidden-1.2.5.tgz"
506+
"version" "1.2.5"
424507
dependencies:
425508
"@babel/runtime" "^7.0.0"
426509
"@emotion/react" "^11.7.1"
@@ -1765,7 +1848,7 @@
17651848
"core-js-pure" "^3.30.2"
17661849
"regenerator-runtime" "^0.13.11"
17671850

1768-
"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2":
1851+
"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.0", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2":
17691852
"integrity" "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="
17701853
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz"
17711854
"version" "7.12.5"
@@ -1823,7 +1906,7 @@
18231906
"@babel/parser" "^7.24.0"
18241907
"@babel/types" "^7.24.0"
18251908

1826-
"@babel/traverse@^7.1.6", "@babel/traverse@^7.10.2", "@babel/traverse@^7.20.0", "@babel/traverse@^7.21.5", "@babel/traverse@^7.22.5", "@babel/traverse@^7.24.1", "@babel/traverse@^7.7.2":
1909+
"@babel/traverse@^7.1.6", "@babel/traverse@^7.10.2", "@babel/traverse@^7.21.5", "@babel/traverse@^7.22.5", "@babel/traverse@^7.23.2", "@babel/traverse@^7.24.1", "@babel/traverse@^7.7.2":
18271910
"integrity" "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ=="
18281911
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz"
18291912
"version" "7.24.1"
@@ -1954,6 +2037,13 @@
19542037
"postcss-selector-parser" "^6.0.2"
19552038
"postcss-values-parser" "^4.0.0"
19562039

2040+
"@compiled/react@^0.17.0":
2041+
"integrity" "sha512-1CzTOrwNHOUmz9QGYHv8R8J6ejUyaNYiaUN6/dIM0Wu3G5CIam0KgsqvRikfGPrTtBfAQYMmdI9ytzxUKYwJrg=="
2042+
"resolved" "https://registry.npmjs.org/@compiled/react/-/react-0.17.1.tgz"
2043+
"version" "0.17.1"
2044+
dependencies:
2045+
"csstype" "^3.1.2"
2046+
19572047
"@compiled/react@^0.5.0":
19582048
"integrity" "sha512-j8LnwinzGLlwVTCHz1yMNC71X2MdAp9oDMamBpWr6txNlnIlfWncqMdRU7BTINq4AAKhcF1wSO58zcbgNFpikw=="
19592049
"resolved" "https://registry.npmjs.org/@compiled/react/-/react-0.5.2.tgz"
@@ -2107,9 +2197,9 @@
21072197
"csstype" "^2.5.7"
21082198

21092199
"@emotion/serialize@^1.1.0":
2110-
"integrity" "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA=="
2111-
"resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz"
2112-
"version" "1.1.2"
2200+
"integrity" "sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ=="
2201+
"resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.4.tgz"
2202+
"version" "1.1.4"
21132203
dependencies:
21142204
"@emotion/hash" "^0.9.1"
21152205
"@emotion/memoize" "^0.8.1"
@@ -5802,10 +5892,10 @@
58025892
"resolved" "https://registry.npmjs.org/csstype/-/csstype-2.6.14.tgz"
58035893
"version" "2.6.14"
58045894

5805-
"csstype@^3.0.2":
5806-
"integrity" "sha512-+ZAmfyWMT7TiIlzdqJgjMb7S4f1beorDbWbsocyK4RaiqA5RTX3K14bnBWmmA9QEM0gRdsjyyrEmcyga8Zsxmw=="
5807-
"resolved" "https://registry.npmjs.org/csstype/-/csstype-3.0.6.tgz"
5808-
"version" "3.0.6"
5895+
"csstype@^3.0.2", "csstype@^3.1.2":
5896+
"integrity" "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
5897+
"resolved" "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz"
5898+
"version" "3.1.3"
58095899

58105900
"d@^1.0.1", "d@1":
58115901
"integrity" "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA=="
@@ -6871,6 +6961,18 @@
68716961
dependencies:
68726962
"to-regex-range" "^5.0.1"
68736963

6964+
"final-form-focus@^1.1.2":
6965+
"integrity" "sha512-Gd+Bd2Ll7ijo3/sd6kJ/bwLkhc2bUJPxTON6fIqee/008EJpACWhT+zoWCm9q6NcfMcWRS+Sp5ikRX8iqdXeGQ=="
6966+
"resolved" "https://registry.npmjs.org/final-form-focus/-/final-form-focus-1.1.2.tgz"
6967+
"version" "1.1.2"
6968+
6969+
"final-form@^4.20.3", "final-form@>=1.3.0":
6970+
"integrity" "sha512-TL48Pi1oNHeMOHrKv1bCJUrWZDcD3DIG6AGYVNOnyZPr7Bd/pStN0pL+lfzF5BNoj/FclaoiaLenk4XUIFVYng=="
6971+
"resolved" "https://registry.npmjs.org/final-form/-/final-form-4.20.10.tgz"
6972+
"version" "4.20.10"
6973+
dependencies:
6974+
"@babel/runtime" "^7.10.0"
6975+
68746976
68756977
"integrity" "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg=="
68766978
"resolved" "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz"
@@ -9026,12 +9128,7 @@
90269128
"resolved" "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz"
90279129
"version" "4.5.0"
90289130

9029-
"lodash@^4.17.15", "lodash@^4.17.20", "lodash@^4.17.4":
9030-
"integrity" "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="
9031-
"resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz"
9032-
"version" "4.17.20"
9033-
9034-
"lodash@^4.17.21":
9131+
"lodash@^4.17.15", "lodash@^4.17.20", "lodash@^4.17.21", "lodash@^4.17.4":
90359132
"integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
90369133
"resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
90379134
"version" "4.17.21"
@@ -11412,7 +11509,7 @@
1141211509
dependencies:
1141311510
"tslib" "^1.10.0"
1141411511

11415-
"react@*", "react@^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", "react@^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0", "react@^15.3.0 || ^16.0.0", "react@^16.14.0", "react@^16.8", "react@^16.8.0", "react@^16.8.0 || ^17", "react@^16.8.0 || ^17.0.0", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.8.4 || ^17.0.0 || ^18.0.0", "react@>= 0.14.0", "react@>= 0.14.0 < 17.0.0-0", "react@>= 16.12.0", "react@>=15", "react@>=16", "react@>=16.3.0", "react@>=16.8.0", "[email protected] - 18":
11512+
"react@*", "react@^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", "react@^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0", "react@^15.3.0 || ^16.0.0", "react@^16.14.0", "react@^16.8", "react@^16.8.0", "react@^16.8.0 || ^17", "react@^16.8.0 || ^17.0.0", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.0 || ~18.2.0", "react@^16.8.4 || ^17.0.0 || ^18.0.0", "react@>= 0.14.0", "react@>= 0.14.0 < 17.0.0-0", "react@>= 16.12.0", "react@>=15", "react@>=16", "react@>=16.3.0", "react@>=16.8.0", "[email protected] - 18":
1141611513
"integrity" "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g=="
1141711514
"resolved" "https://registry.npmjs.org/react/-/react-16.14.0.tgz"
1141811515
"version" "16.14.0"
@@ -12831,15 +12928,10 @@
1283112928
"resolved" "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz"
1283212929
"version" "2.1.0"
1283312930

12834-
"tiny-invariant@^1.0.2":
12835-
"integrity" "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw=="
12836-
"resolved" "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz"
12837-
"version" "1.1.0"
12838-
12839-
"tiny-invariant@^1.2.0":
12840-
"integrity" "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw=="
12841-
"resolved" "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz"
12842-
"version" "1.3.1"
12931+
"tiny-invariant@^1.0.2", "tiny-invariant@^1.2.0":
12932+
"integrity" "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg=="
12933+
"resolved" "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz"
12934+
"version" "1.3.3"
1284312935

1284412936
"tiny-warning@^1.0.0", "tiny-warning@^1.0.3":
1284512937
"integrity" "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA=="

0 commit comments

Comments
 (0)