playbook_ui_docs 14.11.0.pre.rc.11 → 14.11.0.pre.rc.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 858c5a7899d38093150608868c9638198d8ea98201aff24b3d71eedcf5df85a4
4
- data.tar.gz: 7a73e2e5333dff9caebab854c1ef4e04b2b4e1245b223810e5a288365de7b077
3
+ metadata.gz: b0732be87082f827a12510465687eb1cc08ba083e5141b8c3b0ae74626918530
4
+ data.tar.gz: f40e95a52b513f3cd12e372d815021087bcfe6f21e59cce5e8b16e72a722aa24
5
5
  SHA512:
6
- metadata.gz: 67d0f2cdd7c774c81e87411a646bd0db30e4b351925809e7565dca6b0f180b63f5490f6479c719eb125722d6b5670a95615f30371685a88eb430b8a1bb403be5
7
- data.tar.gz: 9ebf7fec63b12bb28d44c2f1b83a6c56ae5b624fefc8f952d097710bf8a89b13bc16eff56cc6f09ddb17a33dddbad3fc11f62a9c0f553ab75a544e1637df52cf
6
+ metadata.gz: 023af7e767030a2e49e4b64a9188c3786da36081a7e8038af27a59451f99f3c7096f3ae4d2313920390c2e00f0da5378a2b47f9038f660943c9897507f3fc03b
7
+ data.tar.gz: 15a9805fbd29c3355d56335d6044d5da071a4092a7c3e266e10f227294161cc6814fa33772b8508a638df622311cd6cfc4917d0f47028d553e47129e9c908ee2
@@ -28,7 +28,9 @@ const FileUploadAccept = (props) => {
28
28
  {...props}
29
29
  />
30
30
  <FileUpload
31
- accept={['image/svg+xml']}
31
+ accept={{
32
+ "image/svg+xml": [".svg", ".xml"],
33
+ }}
32
34
  onFilesAccepted={handleOnFilesAccepted}
33
35
  {...props}
34
36
  />
@@ -25,7 +25,10 @@ const FileUploadCustomDescription = (props) => {
25
25
  {...props}
26
26
  />
27
27
  <FileUpload
28
- accept={['application/pdf','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet']}
28
+ accept={{
29
+ "application/pdf": [".pdf"],
30
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": [".xlsx"],
31
+ }}
29
32
  acceptedFilesDescription="Adobe (.pdf) and Microsoft (.xslx)"
30
33
  onFilesAccepted={handleOnFilesAccepted}
31
34
  {...props}
@@ -18,7 +18,7 @@ const AcceptedFilesList = ({ files }) => (
18
18
  const RejectedFilesList = ({ files }) => (
19
19
  <List>
20
20
  {files.map((file) => (
21
- <ListItem key={file.name}><Body color="error">{`${file.name} (file too large)`}</Body></ListItem>
21
+ <ListItem key={file.file.name}><Body color="error">{`${file.file.name} (file too large)`}</Body></ListItem>
22
22
  ))}
23
23
  </List>
24
24
  )