@map-colonies/react-components 3.12.2 → 3.12.3

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.
Files changed (375) hide show
  1. package/.eslintignore +1 -1
  2. package/.storybook/main.js +13 -13
  3. package/.storybook/manager.js +6 -6
  4. package/.storybook/preview-head.html +21 -21
  5. package/.storybook/preview.js +18 -18
  6. package/.storybook/theme.js +9 -9
  7. package/CHANGELOG.md +828 -819
  8. package/README.md +53 -53
  9. package/dist/autocomplete/autocomplete.css +25 -25
  10. package/dist/autocomplete/autocomplete.d.ts +33 -33
  11. package/dist/autocomplete/autocomplete.js +478 -478
  12. package/dist/autocomplete/index.d.ts +1 -1
  13. package/dist/autocomplete/index.js +5 -5
  14. package/dist/box/box.d.ts +3 -3
  15. package/dist/box/box.js +35 -35
  16. package/dist/box/index.d.ts +1 -1
  17. package/dist/box/index.js +5 -5
  18. package/dist/cesium-map/data-sources/custom.data-source.d.ts +5 -5
  19. package/dist/cesium-map/data-sources/custom.data-source.js +23 -23
  20. package/dist/cesium-map/data-sources/drawings.data-source.d.ts +34 -34
  21. package/dist/cesium-map/data-sources/drawings.data-source.js +187 -187
  22. package/dist/cesium-map/data-sources/index.d.ts +2 -2
  23. package/dist/cesium-map/data-sources/index.js +14 -14
  24. package/dist/cesium-map/entities/entity.d.ts +5 -5
  25. package/dist/cesium-map/entities/entity.description.d.ts +6 -6
  26. package/dist/cesium-map/entities/entity.description.js +27 -27
  27. package/dist/cesium-map/entities/entity.js +23 -23
  28. package/dist/cesium-map/entities/graphics/polygon.graphics.d.ts +5 -5
  29. package/dist/cesium-map/entities/graphics/polygon.graphics.js +23 -23
  30. package/dist/cesium-map/entities/graphics/polyline.graphics.d.ts +5 -5
  31. package/dist/cesium-map/entities/graphics/polyline.graphics.js +23 -23
  32. package/dist/cesium-map/entities/graphics/rectangle.graphics.d.ts +5 -5
  33. package/dist/cesium-map/entities/graphics/rectangle.graphics.js +23 -23
  34. package/dist/cesium-map/entities/index.d.ts +4 -4
  35. package/dist/cesium-map/entities/index.js +16 -16
  36. package/dist/cesium-map/index.d.ts +8 -8
  37. package/dist/cesium-map/index.js +20 -20
  38. package/dist/cesium-map/layers/3d.tileset.d.ts +7 -7
  39. package/dist/cesium-map/layers/3d.tileset.js +43 -43
  40. package/dist/cesium-map/layers/3d.tileset.with.update.d.ts +6 -6
  41. package/dist/cesium-map/layers/3d.tileset.with.update.js +115 -115
  42. package/dist/cesium-map/layers/geojson.layer.d.ts +5 -5
  43. package/dist/cesium-map/layers/geojson.layer.js +23 -23
  44. package/dist/cesium-map/layers/imagery.layer.d.ts +6 -6
  45. package/dist/cesium-map/layers/imagery.layer.js +68 -68
  46. package/dist/cesium-map/layers/index.d.ts +7 -7
  47. package/dist/cesium-map/layers/index.js +19 -19
  48. package/dist/cesium-map/layers/osm.layer.d.ts +9 -9
  49. package/dist/cesium-map/layers/osm.layer.js +36 -36
  50. package/dist/cesium-map/layers/wms.layer.d.ts +9 -9
  51. package/dist/cesium-map/layers/wms.layer.js +36 -36
  52. package/dist/cesium-map/layers/wmts.layer.d.ts +9 -9
  53. package/dist/cesium-map/layers/wmts.layer.js +36 -36
  54. package/dist/cesium-map/layers/xyz.layer.d.ts +9 -9
  55. package/dist/cesium-map/layers/xyz.layer.js +36 -36
  56. package/dist/cesium-map/layers-manager.d.ts +55 -55
  57. package/dist/cesium-map/layers-manager.js +246 -246
  58. package/dist/cesium-map/map-legend/MapLegend.css +135 -135
  59. package/dist/cesium-map/map-legend/MapLegend.d.ts +15 -15
  60. package/dist/cesium-map/map-legend/MapLegend.js +57 -57
  61. package/dist/cesium-map/map-legend/MapLegendList.d.ts +13 -13
  62. package/dist/cesium-map/map-legend/MapLegendList.js +43 -43
  63. package/dist/cesium-map/map-legend/MapLegendSidebar.d.ts +16 -16
  64. package/dist/cesium-map/map-legend/MapLegendSidebar.js +20 -20
  65. package/dist/cesium-map/map-legend/MapLegendToggle.d.ts +7 -7
  66. package/dist/cesium-map/map-legend/MapLegendToggle.js +20 -20
  67. package/dist/cesium-map/map-legend/index.d.ts +3 -3
  68. package/dist/cesium-map/map-legend/index.js +14 -14
  69. package/dist/cesium-map/map.css +59 -59
  70. package/dist/cesium-map/map.d.ts +59 -59
  71. package/dist/cesium-map/map.js +305 -305
  72. package/dist/cesium-map/map.types.d.ts +8 -8
  73. package/dist/cesium-map/map.types.js +12 -12
  74. package/dist/cesium-map/proxied.types.d.ts +30 -30
  75. package/dist/cesium-map/proxied.types.js +132 -132
  76. package/dist/cesium-map/settings/base-maps.css +37 -37
  77. package/dist/cesium-map/settings/base-maps.d.ts +7 -7
  78. package/dist/cesium-map/settings/base-maps.js +78 -78
  79. package/dist/cesium-map/settings/scene-modes.css +19 -19
  80. package/dist/cesium-map/settings/scene-modes.d.ts +7 -7
  81. package/dist/cesium-map/settings/scene-modes.js +65 -65
  82. package/dist/cesium-map/settings/settings.css +52 -52
  83. package/dist/cesium-map/settings/settings.d.ts +23 -23
  84. package/dist/cesium-map/settings/settings.js +79 -79
  85. package/dist/cesium-map/terrain-providers/custom/dummy-quantized-mesh-tile.d.ts +3 -3
  86. package/dist/cesium-map/terrain-providers/custom/dummy-quantized-mesh-tile.js +245 -245
  87. package/dist/cesium-map/terrain-providers/custom/quantized-mesh-decoder.d.ts +9 -9
  88. package/dist/cesium-map/terrain-providers/custom/quantized-mesh-decoder.js +202 -202
  89. package/dist/cesium-map/terrain-providers/custom/quantized-mesh-terrain-provider.d.ts +50 -50
  90. package/dist/cesium-map/terrain-providers/custom/quantized-mesh-terrain-provider.js +136 -136
  91. package/dist/cesium-map/tools/cesium/primitives-conversions.cesium.d.ts +2 -2
  92. package/dist/cesium-map/tools/cesium/primitives-conversions.cesium.js +38 -38
  93. package/dist/cesium-map/tools/coordinates-tracker.tool.css +11 -11
  94. package/dist/cesium-map/tools/coordinates-tracker.tool.d.ts +7 -7
  95. package/dist/cesium-map/tools/coordinates-tracker.tool.js +78 -78
  96. package/dist/cesium-map/tools/draw/drawHelper.css +101 -101
  97. package/dist/cesium-map/tools/draw/drawHelper.d.ts +28 -28
  98. package/dist/cesium-map/tools/draw/drawHelper.js +1694 -1694
  99. package/dist/cesium-map/tools/geojson/geojson-to-primitive.d.ts +4 -4
  100. package/dist/cesium-map/tools/geojson/geojson-to-primitive.js +41 -41
  101. package/dist/cesium-map/tools/geojson/index.d.ts +2 -2
  102. package/dist/cesium-map/tools/geojson/index.js +14 -14
  103. package/dist/cesium-map/tools/geojson/point.geojson.d.ts +3 -3
  104. package/dist/cesium-map/tools/geojson/point.geojson.js +21 -21
  105. package/dist/cesium-map/tools/geojson/polygon.geojson.d.ts +3 -3
  106. package/dist/cesium-map/tools/geojson/polygon.geojson.js +24 -24
  107. package/dist/cesium-map/tools/geojson/rectangle.geojson.d.ts +3 -3
  108. package/dist/cesium-map/tools/geojson/rectangle.geojson.js +44 -44
  109. package/dist/cesium-map/tools/inspector.tool.d.ts +4 -4
  110. package/dist/cesium-map/tools/inspector.tool.js +33 -33
  111. package/dist/cesium-map/tools/scale-tracker.tool.css +16 -16
  112. package/dist/cesium-map/tools/scale-tracker.tool.d.ts +8 -8
  113. package/dist/cesium-map/tools/scale-tracker.tool.js +158 -158
  114. package/dist/cesium-map/tools/terranian-height.tool.d.ts +4 -4
  115. package/dist/cesium-map/tools/terranian-height.tool.js +114 -114
  116. package/dist/cssbaseline/cssbaseline.d.ts +5 -5
  117. package/dist/cssbaseline/cssbaseline.js +41 -41
  118. package/dist/cssbaseline/index.d.ts +1 -1
  119. package/dist/cssbaseline/index.js +6 -6
  120. package/dist/date-picker/date-picker.css +9 -9
  121. package/dist/date-picker/date-picker.d.ts +14 -14
  122. package/dist/date-picker/date-picker.js +78 -78
  123. package/dist/date-picker/index.d.ts +1 -1
  124. package/dist/date-picker/index.js +13 -13
  125. package/dist/date-range-picker/date-range-picker.css +9 -9
  126. package/dist/date-range-picker/date-range-picker.d.ts +26 -26
  127. package/dist/date-range-picker/date-range-picker.form-control.css +3 -3
  128. package/dist/date-range-picker/date-range-picker.form-control.d.ts +28 -28
  129. package/dist/date-range-picker/date-range-picker.form-control.js +95 -95
  130. package/dist/date-range-picker/date-range-picker.js +104 -104
  131. package/dist/date-range-picker/index.d.ts +2 -2
  132. package/dist/date-range-picker/index.js +14 -14
  133. package/dist/file-picker/file-picker.css +63 -63
  134. package/dist/file-picker/file-picker.d.ts +276 -276
  135. package/dist/file-picker/file-picker.js +151 -151
  136. package/dist/file-picker/fs-map.json +1556 -1556
  137. package/dist/file-picker/index.d.ts +2 -2
  138. package/dist/file-picker/index.js +14 -14
  139. package/dist/file-picker/localization.d.ts +11 -11
  140. package/dist/file-picker/localization.js +124 -124
  141. package/dist/index.d.ts +13 -13
  142. package/dist/index.js +25 -25
  143. package/dist/map-filter-container/container-map.css +5 -5
  144. package/dist/map-filter-container/container-map.d.ts +11 -11
  145. package/dist/map-filter-container/container-map.js +31 -31
  146. package/dist/map-filter-container/index.d.ts +1 -1
  147. package/dist/map-filter-container/index.js +13 -13
  148. package/dist/map-filter-container/map-filter-container.d.ts +9 -9
  149. package/dist/map-filter-container/map-filter-container.js +78 -78
  150. package/dist/map-filter-container/polygon-selection-ui.d.ts +12 -12
  151. package/dist/map-filter-container/polygon-selection-ui.js +62 -62
  152. package/dist/models/defaults.d.ts +28 -28
  153. package/dist/models/defaults.js +32 -32
  154. package/dist/models/enums.d.ts +14 -14
  155. package/dist/models/enums.js +20 -20
  156. package/dist/models/index.d.ts +1 -1
  157. package/dist/models/index.js +13 -13
  158. package/dist/ol-map/feature.d.ts +6 -6
  159. package/dist/ol-map/feature.js +20 -20
  160. package/dist/ol-map/index.d.ts +6 -6
  161. package/dist/ol-map/index.js +18 -18
  162. package/dist/ol-map/interactions/draw.d.ts +8 -8
  163. package/dist/ol-map/interactions/draw.js +44 -44
  164. package/dist/ol-map/interactions/index.d.ts +1 -1
  165. package/dist/ol-map/interactions/index.js +13 -13
  166. package/dist/ol-map/layers/index.d.ts +3 -3
  167. package/dist/ol-map/layers/index.js +15 -15
  168. package/dist/ol-map/layers/tile-layer.d.ts +9 -9
  169. package/dist/ol-map/layers/tile-layer.js +48 -48
  170. package/dist/ol-map/layers/vector-layer.d.ts +4 -4
  171. package/dist/ol-map/layers/vector-layer.js +48 -48
  172. package/dist/ol-map/layers/vector-tile-layer.d.ts +10 -10
  173. package/dist/ol-map/layers/vector-tile-layer.js +66 -66
  174. package/dist/ol-map/map.css +17 -17
  175. package/dist/ol-map/map.d.ts +14 -14
  176. package/dist/ol-map/map.js +117 -117
  177. package/dist/ol-map/source/index.d.ts +6 -6
  178. package/dist/ol-map/source/index.js +18 -18
  179. package/dist/ol-map/source/mvt.d.ts +11 -11
  180. package/dist/ol-map/source/mvt.js +37 -37
  181. package/dist/ol-map/source/osm.d.ts +2 -2
  182. package/dist/ol-map/source/osm.js +14 -14
  183. package/dist/ol-map/source/vector-source.d.ts +4 -4
  184. package/dist/ol-map/source/vector-source.js +45 -45
  185. package/dist/ol-map/source/wms.d.ts +17 -17
  186. package/dist/ol-map/source/wms.js +30 -30
  187. package/dist/ol-map/source/wmts.d.ts +21 -21
  188. package/dist/ol-map/source/wmts.js +59 -59
  189. package/dist/ol-map/source/xyz.d.ts +12 -12
  190. package/dist/ol-map/source/xyz.js +27 -27
  191. package/dist/ol-map/style.d.ts +4 -4
  192. package/dist/ol-map/style.js +22 -22
  193. package/dist/popover/index.d.ts +1 -1
  194. package/dist/popover/index.js +5 -5
  195. package/dist/popover/popover.d.ts +3 -3
  196. package/dist/popover/popover.js +35 -35
  197. package/dist/smart-table/__mock-data__/smartTableMocks.d.ts +7 -7
  198. package/dist/smart-table/__mock-data__/smartTableMocks.js +17 -17
  199. package/dist/smart-table/index.d.ts +2 -2
  200. package/dist/smart-table/index.js +14 -14
  201. package/dist/smart-table/smart-table-head.d.ts +11 -11
  202. package/dist/smart-table/smart-table-head.js +22 -22
  203. package/dist/smart-table/smart-table-row.d.ts +12 -12
  204. package/dist/smart-table/smart-table-row.js +46 -46
  205. package/dist/smart-table/smart-table-types.d.ts +9 -9
  206. package/dist/smart-table/smart-table-types.js +2 -2
  207. package/dist/smart-table/smart-table.d.ts +17 -17
  208. package/dist/smart-table/smart-table.js +51 -51
  209. package/dist/theme/index.d.ts +1 -1
  210. package/dist/theme/index.js +13 -13
  211. package/dist/theme/theme.d.ts +8 -8
  212. package/dist/theme/theme.js +124 -124
  213. package/dist/utils/map.d.ts +3 -3
  214. package/dist/utils/map.js +21 -21
  215. package/dist/utils/projections.d.ts +6 -6
  216. package/dist/utils/projections.js +10 -10
  217. package/dist/utils/story.d.ts +12 -12
  218. package/dist/utils/story.js +2 -2
  219. package/package.json +3 -3
  220. package/public/index.html +43 -43
  221. package/public/manifest.json +25 -25
  222. package/public/robots.txt +3 -3
  223. package/src/index.tsx +9 -9
  224. package/src/lib/autocomplete/autocomplete.css +25 -25
  225. package/src/lib/autocomplete/autocomplete.stories.tsx +101 -101
  226. package/src/lib/autocomplete/autocomplete.tsx +681 -681
  227. package/src/lib/autocomplete/index.ts +1 -1
  228. package/src/lib/box/box.tsx +7 -7
  229. package/src/lib/box/index.ts +1 -1
  230. package/src/lib/cesium-map/context-menu.stories.tsx +444 -444
  231. package/src/lib/cesium-map/data-sources/custom.data-source.tsx +12 -12
  232. package/src/lib/cesium-map/data-sources/drawings.data-source.stories.tsx +161 -161
  233. package/src/lib/cesium-map/data-sources/drawings.data-source.tsx +204 -204
  234. package/src/lib/cesium-map/data-sources/index.ts +2 -2
  235. package/src/lib/cesium-map/entities/entity.description.tsx +19 -19
  236. package/src/lib/cesium-map/entities/entity.graphics.stories.tsx +48 -48
  237. package/src/lib/cesium-map/entities/entity.stories.tsx +146 -146
  238. package/src/lib/cesium-map/entities/entity.tsx +10 -10
  239. package/src/lib/cesium-map/entities/graphics/polygon.graphics.tsx +12 -12
  240. package/src/lib/cesium-map/entities/graphics/polyline.graphics.tsx +12 -12
  241. package/src/lib/cesium-map/entities/graphics/rectangle.graphics.tsx +12 -12
  242. package/src/lib/cesium-map/entities/index.ts +4 -4
  243. package/src/lib/cesium-map/index.ts +8 -8
  244. package/src/lib/cesium-map/layers/3d.tileset.stories.tsx +164 -164
  245. package/src/lib/cesium-map/layers/3d.tileset.tsx +51 -51
  246. package/src/lib/cesium-map/layers/3d.tileset.with.update.tsx +120 -120
  247. package/src/lib/cesium-map/layers/geojson.layer.stories.tsx +119 -119
  248. package/src/lib/cesium-map/layers/geojson.layer.tsx +12 -12
  249. package/src/lib/cesium-map/layers/imagery.layer.stories.tsx +39 -39
  250. package/src/lib/cesium-map/layers/imagery.layer.tsx +37 -37
  251. package/src/lib/cesium-map/layers/index.ts +7 -7
  252. package/src/lib/cesium-map/layers/layers.rect.stories.tsx +171 -171
  253. package/src/lib/cesium-map/layers/osm.layer.stories.tsx +40 -40
  254. package/src/lib/cesium-map/layers/osm.layer.tsx +22 -22
  255. package/src/lib/cesium-map/layers/wms.layer.stories.tsx +38 -38
  256. package/src/lib/cesium-map/layers/wms.layer.tsx +22 -22
  257. package/src/lib/cesium-map/layers/wmts.layer.stories.tsx +53 -53
  258. package/src/lib/cesium-map/layers/wmts.layer.tsx +22 -22
  259. package/src/lib/cesium-map/layers/xyz.layer.stories.tsx +37 -37
  260. package/src/lib/cesium-map/layers/xyz.layer.tsx +22 -22
  261. package/src/lib/cesium-map/layers-manager.stories.tsx +286 -286
  262. package/src/lib/cesium-map/layers-manager.ts +354 -354
  263. package/src/lib/cesium-map/map-legend/MapLegend.css +135 -135
  264. package/src/lib/cesium-map/map-legend/MapLegend.tsx +92 -92
  265. package/src/lib/cesium-map/map-legend/MapLegendList.tsx +47 -47
  266. package/src/lib/cesium-map/map-legend/MapLegendSidebar.tsx +55 -55
  267. package/src/lib/cesium-map/map-legend/MapLegendToggle.tsx +31 -31
  268. package/src/lib/cesium-map/map-legend/index.tsx +3 -3
  269. package/src/lib/cesium-map/map-legend/legends-sidebar.stories.tsx +201 -201
  270. package/src/lib/cesium-map/map.css +59 -59
  271. package/src/lib/cesium-map/map.stories.tsx +143 -143
  272. package/src/lib/cesium-map/map.tsx +446 -446
  273. package/src/lib/cesium-map/map.types.ts +11 -11
  274. package/src/lib/cesium-map/proxied.types.ts +54 -54
  275. package/src/lib/cesium-map/settings/base-maps.css +37 -37
  276. package/src/lib/cesium-map/settings/base-maps.tsx +94 -94
  277. package/src/lib/cesium-map/settings/scene-modes.css +19 -19
  278. package/src/lib/cesium-map/settings/scene-modes.tsx +100 -100
  279. package/src/lib/cesium-map/settings/settings.css +52 -52
  280. package/src/lib/cesium-map/settings/settings.stories.tsx +182 -182
  281. package/src/lib/cesium-map/settings/settings.tsx +141 -141
  282. package/src/lib/cesium-map/terrain-providers/custom/dummy-quantized-mesh-tile.ts +243 -243
  283. package/src/lib/cesium-map/terrain-providers/custom/quantized-mesh-decoder.ts +321 -321
  284. package/src/lib/cesium-map/terrain-providers/custom/quantized-mesh-terrain-provider.ts +237 -237
  285. package/src/lib/cesium-map/terrain-providers/terrain-provider-heights-tool.stories.tsx +170 -170
  286. package/src/lib/cesium-map/terrain-providers/terrain-provider.stories.tsx +187 -187
  287. package/src/lib/cesium-map/tools/cesium/primitives-conversions.cesium.ts +15 -15
  288. package/src/lib/cesium-map/tools/coordinates-tracker.tool.css +11 -11
  289. package/src/lib/cesium-map/tools/coordinates-tracker.tool.tsx +79 -79
  290. package/src/lib/cesium-map/tools/draw/drawHelper.css +101 -101
  291. package/src/lib/cesium-map/tools/draw/drawHelper.ts +2116 -2116
  292. package/src/lib/cesium-map/tools/geojson/geojson-to-primitive.ts +54 -54
  293. package/src/lib/cesium-map/tools/geojson/index.ts +2 -2
  294. package/src/lib/cesium-map/tools/geojson/point.geojson.ts +29 -29
  295. package/src/lib/cesium-map/tools/geojson/polygon.geojson.ts +24 -24
  296. package/src/lib/cesium-map/tools/geojson/rectangle.geojson.ts +21 -21
  297. package/src/lib/cesium-map/tools/inspector.tool.tsx +15 -15
  298. package/src/lib/cesium-map/tools/scale-tracker.tool.css +16 -16
  299. package/src/lib/cesium-map/tools/scale-tracker.tool.tsx +192 -192
  300. package/src/lib/cesium-map/tools/terranian-height.tool.tsx +171 -171
  301. package/src/lib/cssbaseline/cssbaseline.tsx +19 -19
  302. package/src/lib/cssbaseline/index.ts +4 -4
  303. package/src/lib/date-picker/date-picker.css +9 -9
  304. package/src/lib/date-picker/date-picker.stories.tsx +130 -130
  305. package/src/lib/date-picker/date-picker.tsx +90 -90
  306. package/src/lib/date-picker/index.ts +1 -1
  307. package/src/lib/date-range-picker/date-range-picker.css +9 -9
  308. package/src/lib/date-range-picker/date-range-picker.form-control.css +3 -3
  309. package/src/lib/date-range-picker/date-range-picker.form-control.spec.tsx +58 -58
  310. package/src/lib/date-range-picker/date-range-picker.form-control.tsx +150 -150
  311. package/src/lib/date-range-picker/date-range-picker.stories.tsx +207 -207
  312. package/src/lib/date-range-picker/date-range-picker.tsx +156 -156
  313. package/src/lib/date-range-picker/index.ts +2 -2
  314. package/src/lib/file-picker/file-picker.css +63 -63
  315. package/src/lib/file-picker/file-picker.stories.tsx +447 -447
  316. package/src/lib/file-picker/file-picker.tsx +180 -180
  317. package/src/lib/file-picker/fs-map.json +1556 -1556
  318. package/src/lib/file-picker/index.ts +2 -2
  319. package/src/lib/file-picker/localization.ts +164 -164
  320. package/src/lib/index.ts +13 -13
  321. package/src/lib/map-filter-container/container-map.css +5 -5
  322. package/src/lib/map-filter-container/container-map.tsx +48 -48
  323. package/src/lib/map-filter-container/index.ts +1 -1
  324. package/src/lib/map-filter-container/map-filter-container.tsx +91 -91
  325. package/src/lib/map-filter-container/polygon-selection-ui.spec.tsx +119 -119
  326. package/src/lib/map-filter-container/polygon-selection-ui.tsx +111 -111
  327. package/src/lib/map-filter-container/stories/Map.stories.tsx +76 -76
  328. package/src/lib/models/defaults.ts +32 -32
  329. package/src/lib/models/enums.ts +16 -16
  330. package/src/lib/models/index.ts +1 -1
  331. package/src/lib/ol-map/feature.tsx +23 -23
  332. package/src/lib/ol-map/index.ts +6 -6
  333. package/src/lib/ol-map/interactions/draw.tsx +56 -56
  334. package/src/lib/ol-map/interactions/index.ts +1 -1
  335. package/src/lib/ol-map/layers/index.ts +3 -3
  336. package/src/lib/ol-map/layers/tile-layer.tsx +36 -36
  337. package/src/lib/ol-map/layers/vector-layer.tsx +32 -32
  338. package/src/lib/ol-map/layers/vector-tile-layer.tsx +56 -56
  339. package/src/lib/ol-map/map.css +17 -17
  340. package/src/lib/ol-map/map.tsx +137 -137
  341. package/src/lib/ol-map/source/index.ts +6 -6
  342. package/src/lib/ol-map/source/mvt.tsx +46 -46
  343. package/src/lib/ol-map/source/osm.tsx +13 -13
  344. package/src/lib/ol-map/source/stories/mvt.stories.tsx +68 -68
  345. package/src/lib/ol-map/source/stories/vector-source.stories.tsx +78 -78
  346. package/src/lib/ol-map/source/stories/wms.stories.tsx +51 -51
  347. package/src/lib/ol-map/source/stories/wmts.stories.tsx +72 -72
  348. package/src/lib/ol-map/source/stories/xyz.stories.tsx +53 -53
  349. package/src/lib/ol-map/source/vector-source.tsx +30 -30
  350. package/src/lib/ol-map/source/wms.tsx +40 -40
  351. package/src/lib/ol-map/source/wmts.tsx +82 -82
  352. package/src/lib/ol-map/source/xyz.tsx +33 -33
  353. package/src/lib/ol-map/stories/map.stories.tsx +60 -60
  354. package/src/lib/ol-map/style.ts +24 -24
  355. package/src/lib/popover/index.ts +1 -1
  356. package/src/lib/popover/popover.tsx +7 -7
  357. package/src/lib/smart-table/__mock-data__/smartTableMocks.ts +22 -22
  358. package/src/lib/smart-table/index.ts +2 -2
  359. package/src/lib/smart-table/smart-table-head.spec.tsx +116 -116
  360. package/src/lib/smart-table/smart-table-head.tsx +47 -47
  361. package/src/lib/smart-table/smart-table-row.spec.tsx +109 -109
  362. package/src/lib/smart-table/smart-table-row.tsx +78 -78
  363. package/src/lib/smart-table/smart-table-types.ts +10 -10
  364. package/src/lib/smart-table/smart-table.spec.tsx +116 -116
  365. package/src/lib/smart-table/smart-table.tsx +115 -115
  366. package/src/lib/smart-table/stories/SmartTable.stories.tsx +114 -114
  367. package/src/lib/theme/index.ts +1 -1
  368. package/src/lib/theme/theme.ts +123 -123
  369. package/src/lib/utils/map.ts +19 -19
  370. package/src/lib/utils/projections.ts +7 -7
  371. package/src/lib/utils/story.ts +11 -11
  372. package/src/react-app-env.d.ts +1 -1
  373. package/src/setupTests.ts +14 -14
  374. package/tsbuildconfig.json +37 -37
  375. package/tsconfig.json +26 -26
@@ -1,1557 +1,1557 @@
1
- {
2
- "rootFolderId": "qwerty123456",
3
- "fileMap": {
4
- "qwerty123456": {
5
- "id": "qwerty123456",
6
- "name": "PersistentVolume",
7
- "isDir": true,
8
- "childrenIds": [
9
- "e598a85f843c",
10
- "b53aa057fad1",
11
- "b6667221f24b",
12
- "002705459ca4",
13
- "a9fd7c8a04db",
14
- "549c1f93247a",
15
- "zFe",
16
- "zJr",
17
- "zHy",
18
- "vCt"
19
- ],
20
- "childrenCount": 6
21
- },
22
- "e598a85f843c": {
23
- "id": "e598a85f843c",
24
- "name": "Chonky Source Code",
25
- "isDir": true,
26
- "modDate": "2020-10-24T17:48:39.866Z",
27
- "childrenIds": [
28
- "9514a3d74d57",
29
- "ed918037b975",
30
- "c21e08daf308",
31
- "0729af954fe6",
32
- "a1361e98e01d",
33
- "12dd195bb146",
34
- "f9b3b8472664",
35
- "998c5fed54dc",
36
- "e6b2e6181d54",
37
- "24c33e69f0f1",
38
- "a3a6f4860f0a",
39
- "b4344ec9eb06",
40
- "0b05bc983fd9"
41
- ],
42
- "childrenCount": 13,
43
- "parentId": "qwerty123456"
44
- },
45
- "9514a3d74d57": {
46
- "id": "9514a3d74d57",
47
- "name": ".eslintrc.js",
48
- "isHidden": true,
49
- "size": 2293,
50
- "modDate": "2020-10-20T03:11:50.570Z",
51
- "parentId": "e598a85f843c"
52
- },
53
- "ed918037b975": {
54
- "id": "ed918037b975",
55
- "name": ".gitignore",
56
- "isHidden": true,
57
- "size": 347,
58
- "modDate": "2020-10-20T13:22:59.144Z",
59
- "parentId": "e598a85f843c"
60
- },
61
- "c21e08daf308": {
62
- "id": "c21e08daf308",
63
- "name": ".prettierrc.js",
64
- "isHidden": true,
65
- "size": 144,
66
- "modDate": "2020-10-20T03:11:50.570Z",
67
- "parentId": "e598a85f843c"
68
- },
69
- "0729af954fe6": {
70
- "id": "0729af954fe6",
71
- "name": ".travis.yml",
72
- "isHidden": true,
73
- "size": 191,
74
- "modDate": "2020-10-24T16:43:46.520Z",
75
- "parentId": "e598a85f843c"
76
- },
77
- "a1361e98e01d": {
78
- "id": "a1361e98e01d",
79
- "name": "LICENSE",
80
- "size": 1103,
81
- "modDate": "2020-10-22T04:05:02.289Z",
82
- "parentId": "e598a85f843c"
83
- },
84
- "12dd195bb146": {
85
- "id": "12dd195bb146",
86
- "name": "README.md",
87
- "size": 1457,
88
- "modDate": "2020-10-22T04:17:54.294Z",
89
- "parentId": "e598a85f843c"
90
- },
91
- "f9b3b8472664": {
92
- "id": "f9b3b8472664",
93
- "name": "lerna-debug.log",
94
- "size": 1119,
95
- "modDate": "2020-10-24T17:48:39.866Z",
96
- "parentId": "e598a85f843c"
97
- },
98
- "998c5fed54dc": {
99
- "id": "998c5fed54dc",
100
- "name": "lerna.json",
101
- "size": 71,
102
- "modDate": "2020-10-20T04:15:42.657Z",
103
- "parentId": "e598a85f843c"
104
- },
105
- "e6b2e6181d54": {
106
- "id": "e6b2e6181d54",
107
- "name": "logo",
108
- "isDir": true,
109
- "modDate": "2020-10-21T15:59:46.786Z",
110
- "parentId": "e598a85f843c",
111
- "childrenIds": [
112
- "148ffc6cc2e0",
113
- "02c01aedf901",
114
- "0a7e2fce8e7a",
115
- "7bcecbc35fda",
116
- "6adc7b20c64b",
117
- "e977504c47b7"
118
- ],
119
- "childrenCount": 6
120
- },
121
- "148ffc6cc2e0": {
122
- "id": "148ffc6cc2e0",
123
- "name": "chonky-logo-v2.png",
124
- "size": 74588,
125
- "modDate": "2020-10-21T15:55:52.555Z",
126
- "parentId": "e6b2e6181d54",
127
- "thumbnailUrl": "/thumbnails/148ffc6cc2e0.jpg"
128
- },
129
- "02c01aedf901": {
130
- "id": "02c01aedf901",
131
- "name": "chonky-logo-v2.svg",
132
- "size": 157045,
133
- "modDate": "2020-10-21T15:55:52.611Z",
134
- "parentId": "e6b2e6181d54"
135
- },
136
- "0a7e2fce8e7a": {
137
- "id": "0a7e2fce8e7a",
138
- "name": "chonky-logo.ai",
139
- "size": 91103,
140
- "modDate": "2020-10-21T15:55:52.455Z",
141
- "parentId": "e6b2e6181d54"
142
- },
143
- "7bcecbc35fda": {
144
- "id": "7bcecbc35fda",
145
- "name": "chonky-logo.svg",
146
- "size": 156620,
147
- "modDate": "2020-10-21T15:55:52.519Z",
148
- "parentId": "e6b2e6181d54"
149
- },
150
- "6adc7b20c64b": {
151
- "id": "6adc7b20c64b",
152
- "name": "chonky-sphere-v2.png",
153
- "size": 63043,
154
- "modDate": "2020-10-21T15:59:46.806Z",
155
- "parentId": "e6b2e6181d54",
156
- "thumbnailUrl": "/thumbnails/6adc7b20c64b.jpg"
157
- },
158
- "e977504c47b7": {
159
- "id": "e977504c47b7",
160
- "name": "chonky-sphere.svg",
161
- "size": 155078,
162
- "modDate": "2020-10-21T15:55:52.667Z",
163
- "parentId": "e6b2e6181d54"
164
- },
165
- "24c33e69f0f1": {
166
- "id": "24c33e69f0f1",
167
- "name": "package-lock.json",
168
- "size": 671832,
169
- "modDate": "2020-10-24T17:45:53.305Z",
170
- "parentId": "e598a85f843c"
171
- },
172
- "a3a6f4860f0a": {
173
- "id": "a3a6f4860f0a",
174
- "name": "package.json",
175
- "size": 1003,
176
- "modDate": "2020-10-24T17:45:52.745Z",
177
- "parentId": "e598a85f843c"
178
- },
179
- "b4344ec9eb06": {
180
- "id": "b4344ec9eb06",
181
- "name": "packages",
182
- "isDir": true,
183
- "modDate": "2020-10-20T04:16:50.196Z",
184
- "parentId": "e598a85f843c",
185
- "childrenIds": [
186
- "08e9a34357a0",
187
- "43d749c47bbe"
188
- ],
189
- "childrenCount": 2
190
- },
191
- "08e9a34357a0": {
192
- "id": "08e9a34357a0",
193
- "name": "chonky",
194
- "isDir": true,
195
- "modDate": "2020-10-24T18:33:09.643Z",
196
- "parentId": "b4344ec9eb06",
197
- "childrenIds": [
198
- "8e6390f5ce3c",
199
- "36659b55f402",
200
- "5ca005a238ee",
201
- "ccaeef8ef43f",
202
- "232ab2ded9a2",
203
- "efaae6261dd2",
204
- "d3e4ad8b7899",
205
- "f22891ef4c60",
206
- "543d473f1c38",
207
- "684400d53b85",
208
- "8296bba42999"
209
- ],
210
- "childrenCount": 11
211
- },
212
- "8e6390f5ce3c": {
213
- "id": "8e6390f5ce3c",
214
- "name": ".npmignore",
215
- "isHidden": true,
216
- "size": 19,
217
- "modDate": "2020-10-20T04:14:20.462Z",
218
- "parentId": "08e9a34357a0"
219
- },
220
- "36659b55f402": {
221
- "id": "36659b55f402",
222
- "name": "LICENSE",
223
- "size": 1103,
224
- "modDate": "2020-10-22T04:05:02.189Z",
225
- "parentId": "08e9a34357a0"
226
- },
227
- "5ca005a238ee": {
228
- "id": "5ca005a238ee",
229
- "name": "README.md",
230
- "size": 3304,
231
- "modDate": "2020-10-22T04:13:22.234Z",
232
- "parentId": "08e9a34357a0"
233
- },
234
- "ccaeef8ef43f": {
235
- "id": "ccaeef8ef43f",
236
- "name": "jest.config.js",
237
- "size": 108,
238
- "modDate": "2020-10-24T17:50:59.584Z",
239
- "parentId": "08e9a34357a0"
240
- },
241
- "232ab2ded9a2": {
242
- "id": "232ab2ded9a2",
243
- "name": "package-lock.json",
244
- "size": 58201,
245
- "modDate": "2020-10-24T17:55:57.396Z",
246
- "parentId": "08e9a34357a0"
247
- },
248
- "efaae6261dd2": {
249
- "id": "efaae6261dd2",
250
- "name": "package.json",
251
- "size": 2504,
252
- "modDate": "2020-10-24T18:33:09.643Z",
253
- "parentId": "08e9a34357a0"
254
- },
255
- "d3e4ad8b7899": {
256
- "id": "d3e4ad8b7899",
257
- "name": "src",
258
- "isDir": true,
259
- "modDate": "2020-10-24T15:43:58.573Z",
260
- "parentId": "08e9a34357a0",
261
- "childrenIds": [
262
- "e63419ad8876",
263
- "bbc23e48013e",
264
- "0fc90868914b",
265
- "1f5e98ca265e",
266
- "757357e35eb9",
267
- "4f0514c89627"
268
- ],
269
- "childrenCount": 6
270
- },
271
- "e63419ad8876": {
272
- "id": "e63419ad8876",
273
- "name": "action-definitions",
274
- "isDir": true,
275
- "modDate": "2020-10-24T16:49:22.927Z",
276
- "parentId": "d3e4ad8b7899",
277
- "childrenIds": [
278
- "c340af44766a",
279
- "d9e86056caed",
280
- "1cadbc6ac017",
281
- "2a064b95ddd2"
282
- ],
283
- "childrenCount": 4
284
- },
285
- "c340af44766a": {
286
- "id": "c340af44766a",
287
- "name": "default.ts",
288
- "size": 4680,
289
- "modDate": "2020-10-24T18:25:34.649Z",
290
- "parentId": "e63419ad8876"
291
- },
292
- "d9e86056caed": {
293
- "id": "d9e86056caed",
294
- "name": "essential.ts",
295
- "size": 10794,
296
- "modDate": "2020-10-24T18:20:31.266Z",
297
- "parentId": "e63419ad8876"
298
- },
299
- "1cadbc6ac017": {
300
- "id": "1cadbc6ac017",
301
- "name": "index.ts",
302
- "size": 976,
303
- "modDate": "2020-10-24T17:02:06.892Z",
304
- "parentId": "e63419ad8876"
305
- },
306
- "2a064b95ddd2": {
307
- "id": "2a064b95ddd2",
308
- "name": "other.ts",
309
- "size": 1706,
310
- "modDate": "2020-10-24T18:26:38.828Z",
311
- "parentId": "e63419ad8876"
312
- },
313
- "bbc23e48013e": {
314
- "id": "bbc23e48013e",
315
- "name": "components",
316
- "isDir": true,
317
- "modDate": "2020-10-22T16:12:57.200Z",
318
- "parentId": "d3e4ad8b7899",
319
- "childrenIds": [
320
- "ebb33a8320b7",
321
- "f792cce1f126",
322
- "acac9b332214",
323
- "16df703a0e34"
324
- ],
325
- "childrenCount": 4
326
- },
327
- "ebb33a8320b7": {
328
- "id": "ebb33a8320b7",
329
- "name": "external",
330
- "isDir": true,
331
- "modDate": "2020-10-23T23:50:58.325Z",
332
- "parentId": "bbc23e48013e",
333
- "childrenIds": [
334
- "6492307a5acd",
335
- "1f1e663f7a95",
336
- "17467a52f595",
337
- "90de868d6c92",
338
- "b4ceb816ab04",
339
- "0e586e88b821",
340
- "4a13651533aa",
341
- "32236429b973",
342
- "4fb825f757d8",
343
- "03c6919c4be0",
344
- "b0761f6e733c",
345
- "aa98fe4152a7",
346
- "7f90887a0b55"
347
- ],
348
- "childrenCount": 13
349
- },
350
- "6492307a5acd": {
351
- "id": "6492307a5acd",
352
- "name": "ChonkyIcon.tsx",
353
- "size": 7875,
354
- "modDate": "2020-10-20T03:15:57.395Z",
355
- "parentId": "ebb33a8320b7"
356
- },
357
- "1f1e663f7a95": {
358
- "id": "1f1e663f7a95",
359
- "name": "FileBrowser.tsx",
360
- "size": 2578,
361
- "modDate": "2020-10-23T21:37:02.606Z",
362
- "parentId": "ebb33a8320b7"
363
- },
364
- "17467a52f595": {
365
- "id": "17467a52f595",
366
- "name": "FileContextMenu-hooks.ts",
367
- "size": 1746,
368
- "modDate": "2020-10-24T16:26:47.115Z",
369
- "parentId": "ebb33a8320b7"
370
- },
371
- "90de868d6c92": {
372
- "id": "90de868d6c92",
373
- "name": "FileContextMenu.tsx",
374
- "size": 3080,
375
- "modDate": "2020-10-24T16:28:45.473Z",
376
- "parentId": "ebb33a8320b7"
377
- },
378
- "b4ceb816ab04": {
379
- "id": "b4ceb816ab04",
380
- "name": "FileNavbar-hooks.ts",
381
- "size": 1602,
382
- "modDate": "2020-10-24T15:02:21.169Z",
383
- "parentId": "ebb33a8320b7"
384
- },
385
- "0e586e88b821": {
386
- "id": "0e586e88b821",
387
- "name": "FileNavbar.tsx",
388
- "size": 3122,
389
- "modDate": "2020-10-24T15:02:21.213Z",
390
- "parentId": "ebb33a8320b7"
391
- },
392
- "4a13651533aa": {
393
- "id": "4a13651533aa",
394
- "name": "FileToolbar.tsx",
395
- "size": 2163,
396
- "modDate": "2020-10-24T00:31:44.378Z",
397
- "parentId": "ebb33a8320b7"
398
- },
399
- "32236429b973": {
400
- "id": "32236429b973",
401
- "name": "TextPlaceholder.tsx",
402
- "size": 752,
403
- "modDate": "2020-10-20T03:15:57.395Z",
404
- "parentId": "ebb33a8320b7"
405
- },
406
- "4fb825f757d8": {
407
- "id": "4fb825f757d8",
408
- "name": "ToolbarButton.tsx",
409
- "size": 3856,
410
- "modDate": "2020-10-22T19:33:01.267Z",
411
- "parentId": "ebb33a8320b7"
412
- },
413
- "03c6919c4be0": {
414
- "id": "03c6919c4be0",
415
- "name": "ToolbarDropdown.tsx",
416
- "size": 1955,
417
- "modDate": "2020-10-24T16:28:45.465Z",
418
- "parentId": "ebb33a8320b7"
419
- },
420
- "b0761f6e733c": {
421
- "id": "b0761f6e733c",
422
- "name": "ToolbarDropdownButton.tsx",
423
- "size": 3549,
424
- "modDate": "2020-10-24T01:01:02.195Z",
425
- "parentId": "ebb33a8320b7"
426
- },
427
- "aa98fe4152a7": {
428
- "id": "aa98fe4152a7",
429
- "name": "ToolbarInfo.tsx",
430
- "size": 1481,
431
- "modDate": "2020-10-22T00:28:16.619Z",
432
- "parentId": "ebb33a8320b7"
433
- },
434
- "7f90887a0b55": {
435
- "id": "7f90887a0b55",
436
- "name": "ToolbarSearch.tsx",
437
- "size": 1710,
438
- "modDate": "2020-10-21T00:50:23.792Z",
439
- "parentId": "ebb33a8320b7"
440
- },
441
- "f792cce1f126": {
442
- "id": "f792cce1f126",
443
- "name": "file-entry",
444
- "isDir": true,
445
- "modDate": "2020-10-20T03:15:57.395Z",
446
- "parentId": "bbc23e48013e",
447
- "childrenIds": [
448
- "ea363491e29c",
449
- "8a0dd72dc223",
450
- "836d378b2fb4",
451
- "b303b40eba33",
452
- "3df2618f8ea1",
453
- "869fadc64ed3",
454
- "374a4778152a",
455
- "1953147eee99",
456
- "e805e42f66fa"
457
- ],
458
- "childrenCount": 9
459
- },
460
- "ea363491e29c": {
461
- "id": "ea363491e29c",
462
- "name": "ClickableFileEntry-hooks.tsx",
463
- "size": 2142,
464
- "modDate": "2020-10-24T15:02:21.193Z",
465
- "parentId": "f792cce1f126"
466
- },
467
- "8a0dd72dc223": {
468
- "id": "8a0dd72dc223",
469
- "name": "ClickableFileEntry.tsx",
470
- "size": 1242,
471
- "modDate": "2020-10-20T03:15:57.395Z",
472
- "parentId": "f792cce1f126"
473
- },
474
- "836d378b2fb4": {
475
- "id": "836d378b2fb4",
476
- "name": "DnDFileEntry.tsx",
477
- "size": 4443,
478
- "modDate": "2020-10-24T15:02:21.197Z",
479
- "parentId": "f792cce1f126"
480
- },
481
- "b303b40eba33": {
482
- "id": "b303b40eba33",
483
- "name": "DnDFileListDragLayer.tsx",
484
- "size": 2853,
485
- "modDate": "2020-10-22T00:08:59.184Z",
486
- "parentId": "f792cce1f126"
487
- },
488
- "3df2618f8ea1": {
489
- "id": "3df2618f8ea1",
490
- "name": "FileEntry-hooks.tsx",
491
- "size": 6272,
492
- "modDate": "2020-10-24T18:04:18.416Z",
493
- "parentId": "f792cce1f126"
494
- },
495
- "869fadc64ed3": {
496
- "id": "869fadc64ed3",
497
- "name": "FileEntry.tsx",
498
- "size": 432,
499
- "modDate": "2020-10-24T17:15:16.388Z",
500
- "parentId": "f792cce1f126"
501
- },
502
- "374a4778152a": {
503
- "id": "374a4778152a",
504
- "name": "FileEntryGrid.tsx",
505
- "size": 3559,
506
- "modDate": "2020-10-24T17:20:45.191Z",
507
- "parentId": "f792cce1f126"
508
- },
509
- "1953147eee99": {
510
- "id": "1953147eee99",
511
- "name": "FileEntryList.tsx",
512
- "size": 3165,
513
- "modDate": "2020-10-24T17:20:45.191Z",
514
- "parentId": "f792cce1f126"
515
- },
516
- "e805e42f66fa": {
517
- "id": "e805e42f66fa",
518
- "name": "SmartFileEntry.tsx",
519
- "size": 1230,
520
- "modDate": "2020-10-22T01:09:57.186Z",
521
- "parentId": "f792cce1f126"
522
- },
523
- "acac9b332214": {
524
- "id": "acac9b332214",
525
- "name": "file-list",
526
- "isDir": true,
527
- "modDate": "2020-10-22T17:06:35.681Z",
528
- "parentId": "bbc23e48013e",
529
- "childrenIds": [
530
- "3ec0fdc85293",
531
- "07c1b362ab80",
532
- "ed52b1577cbd",
533
- "f73e6e5fc3ac",
534
- "20ac09e4b8c0"
535
- ],
536
- "childrenCount": 5
537
- },
538
- "3ec0fdc85293": {
539
- "id": "3ec0fdc85293",
540
- "name": "FileList-hooks.tsx",
541
- "size": 892,
542
- "modDate": "2020-10-24T17:23:15.113Z",
543
- "parentId": "acac9b332214"
544
- },
545
- "07c1b362ab80": {
546
- "id": "07c1b362ab80",
547
- "name": "FileList.tsx",
548
- "size": 2007,
549
- "modDate": "2020-10-24T19:04:16.476Z",
550
- "parentId": "acac9b332214"
551
- },
552
- "ed52b1577cbd": {
553
- "id": "ed52b1577cbd",
554
- "name": "FileListEmpty.tsx",
555
- "size": 961,
556
- "modDate": "2020-10-22T16:30:27.040Z",
557
- "parentId": "acac9b332214"
558
- },
559
- "f73e6e5fc3ac": {
560
- "id": "f73e6e5fc3ac",
561
- "name": "FileListGrid.tsx",
562
- "size": 5471,
563
- "modDate": "2020-10-22T17:23:26.674Z",
564
- "parentId": "acac9b332214"
565
- },
566
- "20ac09e4b8c0": {
567
- "id": "20ac09e4b8c0",
568
- "name": "FileListList.tsx",
569
- "size": 1959,
570
- "modDate": "2020-10-22T16:30:39.684Z",
571
- "parentId": "acac9b332214"
572
- },
573
- "16df703a0e34": {
574
- "id": "16df703a0e34",
575
- "name": "internal",
576
- "isDir": true,
577
- "modDate": "2020-10-20T03:15:57.395Z",
578
- "parentId": "bbc23e48013e",
579
- "childrenIds": [
580
- "bae240ccdb0d",
581
- "0517169a653e",
582
- "0929ebecda08",
583
- "15fb0260468b",
584
- "767d14961ba2",
585
- "6823f91fbd62",
586
- "d1b0d830ccfc"
587
- ],
588
- "childrenCount": 7
589
- },
590
- "bae240ccdb0d": {
591
- "id": "bae240ccdb0d",
592
- "name": "ChonkyBusinessLogic.tsx",
593
- "size": 2189,
594
- "modDate": "2020-10-23T21:29:58.392Z",
595
- "parentId": "16df703a0e34"
596
- },
597
- "0517169a653e": {
598
- "id": "0517169a653e",
599
- "name": "ChonkyPresentationLayer.tsx",
600
- "size": 4073,
601
- "modDate": "2020-10-24T01:27:15.160Z",
602
- "parentId": "16df703a0e34"
603
- },
604
- "0929ebecda08": {
605
- "id": "0929ebecda08",
606
- "name": "ClickableWrapper-hooks.tsx",
607
- "size": 2874,
608
- "modDate": "2020-10-22T01:17:59.838Z",
609
- "parentId": "16df703a0e34"
610
- },
611
- "15fb0260468b": {
612
- "id": "15fb0260468b",
613
- "name": "ClickableWrapper.tsx",
614
- "size": 1895,
615
- "modDate": "2020-10-20T03:15:57.395Z",
616
- "parentId": "16df703a0e34"
617
- },
618
- "767d14961ba2": {
619
- "id": "767d14961ba2",
620
- "name": "ErrorMessage.tsx",
621
- "size": 787,
622
- "modDate": "2020-10-20T03:15:57.395Z",
623
- "parentId": "16df703a0e34"
624
- },
625
- "6823f91fbd62": {
626
- "id": "6823f91fbd62",
627
- "name": "FileThumbnail.tsx",
628
- "size": 711,
629
- "modDate": "2020-10-20T03:15:57.395Z",
630
- "parentId": "16df703a0e34"
631
- },
632
- "d1b0d830ccfc": {
633
- "id": "d1b0d830ccfc",
634
- "name": "HotkeyListener.tsx",
635
- "size": 1250,
636
- "modDate": "2020-10-23T21:22:54.374Z",
637
- "parentId": "16df703a0e34"
638
- },
639
- "0fc90868914b": {
640
- "id": "0fc90868914b",
641
- "name": "index.ts",
642
- "size": 1289,
643
- "modDate": "2020-10-24T15:02:21.201Z",
644
- "parentId": "d3e4ad8b7899"
645
- },
646
- "1f5e98ca265e": {
647
- "id": "1f5e98ca265e",
648
- "name": "redux",
649
- "isDir": true,
650
- "modDate": "2020-10-23T15:12:22.151Z",
651
- "parentId": "d3e4ad8b7899",
652
- "childrenIds": [
653
- "8f24e9d3c3d9",
654
- "b993f382ec52",
655
- "4a3b28a83369",
656
- "f8c35945417a",
657
- "c81dbb9abcc0",
658
- "3bc086273549",
659
- "0b415f2bdc4d",
660
- "7703a3d450bb"
661
- ],
662
- "childrenCount": 8
663
- },
664
- "8f24e9d3c3d9": {
665
- "id": "8f24e9d3c3d9",
666
- "name": "files-transforms.ts",
667
- "size": 2985,
668
- "modDate": "2020-10-24T14:59:09.588Z",
669
- "parentId": "1f5e98ca265e"
670
- },
671
- "b993f382ec52": {
672
- "id": "b993f382ec52",
673
- "name": "reducers.ts",
674
- "size": 7691,
675
- "modDate": "2020-10-24T15:06:10.670Z",
676
- "parentId": "1f5e98ca265e"
677
- },
678
- "4a3b28a83369": {
679
- "id": "4a3b28a83369",
680
- "name": "selectors.ts",
681
- "size": 4766,
682
- "modDate": "2020-10-24T02:35:09.515Z",
683
- "parentId": "1f5e98ca265e"
684
- },
685
- "f8c35945417a": {
686
- "id": "f8c35945417a",
687
- "name": "state.ts",
688
- "size": 1133,
689
- "modDate": "2020-10-24T15:02:21.193Z",
690
- "parentId": "1f5e98ca265e"
691
- },
692
- "c81dbb9abcc0": {
693
- "id": "c81dbb9abcc0",
694
- "name": "store.ts",
695
- "size": 1990,
696
- "modDate": "2020-10-23T17:03:59.027Z",
697
- "parentId": "1f5e98ca265e"
698
- },
699
- "3bc086273549": {
700
- "id": "3bc086273549",
701
- "name": "thunks",
702
- "isDir": true,
703
- "modDate": "2020-10-23T21:13:15.091Z",
704
- "parentId": "1f5e98ca265e",
705
- "childrenIds": [
706
- "a2db415a6e18",
707
- "65238c94e4e6",
708
- "93e6d0a7b61b"
709
- ],
710
- "childrenCount": 3
711
- },
712
- "a2db415a6e18": {
713
- "id": "a2db415a6e18",
714
- "name": "dispatchers.thunks.ts",
715
- "size": 5790,
716
- "modDate": "2020-10-24T16:26:47.115Z",
717
- "parentId": "3bc086273549"
718
- },
719
- "65238c94e4e6": {
720
- "id": "65238c94e4e6",
721
- "name": "file-actions.thunks.ts",
722
- "size": 6552,
723
- "modDate": "2020-10-24T16:26:47.115Z",
724
- "parentId": "3bc086273549"
725
- },
726
- "93e6d0a7b61b": {
727
- "id": "93e6d0a7b61b",
728
- "name": "files.thunks.ts",
729
- "size": 4200,
730
- "modDate": "2020-10-24T15:02:21.205Z",
731
- "parentId": "3bc086273549"
732
- },
733
- "0b415f2bdc4d": {
734
- "id": "0b415f2bdc4d",
735
- "name": "types.ts",
736
- "size": 2433,
737
- "modDate": "2020-10-24T16:26:47.115Z",
738
- "parentId": "1f5e98ca265e"
739
- },
740
- "7703a3d450bb": {
741
- "id": "7703a3d450bb",
742
- "name": "watchers.ts",
743
- "size": 2955,
744
- "modDate": "2020-10-24T15:02:21.189Z",
745
- "parentId": "1f5e98ca265e"
746
- },
747
- "757357e35eb9": {
748
- "id": "757357e35eb9",
749
- "name": "types",
750
- "isDir": true,
751
- "modDate": "2020-10-24T15:00:36.227Z",
752
- "parentId": "d3e4ad8b7899",
753
- "childrenIds": [
754
- "b7a2a86f17af",
755
- "a5845a192903",
756
- "278b8e70fd00",
757
- "335428d20376",
758
- "1b4ae6757e66",
759
- "bac1fc5d2348",
760
- "76f7cdfe3e4e",
761
- "7ad6dbf5bde1",
762
- "135e7f4a6fd4",
763
- "fc916f7048fa",
764
- "2b8624bab96b",
765
- "5acb74d37cbb",
766
- "718a4c2e24dd",
767
- "cdf88bda378f"
768
- ],
769
- "childrenCount": 14
770
- },
771
- "b7a2a86f17af": {
772
- "id": "b7a2a86f17af",
773
- "name": "action-handler.types.ts",
774
- "size": 669,
775
- "modDate": "2020-10-24T15:00:13.051Z",
776
- "parentId": "757357e35eb9"
777
- },
778
- "a5845a192903": {
779
- "id": "a5845a192903",
780
- "name": "action-menus.types.ts",
781
- "size": 144,
782
- "modDate": "2020-10-24T15:00:36.227Z",
783
- "parentId": "757357e35eb9"
784
- },
785
- "278b8e70fd00": {
786
- "id": "278b8e70fd00",
787
- "name": "action-payloads.types.ts",
788
- "size": 1089,
789
- "modDate": "2020-10-24T14:49:34.381Z",
790
- "parentId": "757357e35eb9"
791
- },
792
- "335428d20376": {
793
- "id": "335428d20376",
794
- "name": "action.types.ts",
795
- "size": 3650,
796
- "modDate": "2020-10-24T18:27:59.783Z",
797
- "parentId": "757357e35eb9"
798
- },
799
- "1b4ae6757e66": {
800
- "id": "1b4ae6757e66",
801
- "name": "context-menu.types.ts",
802
- "size": 79,
803
- "modDate": "2020-10-23T23:19:40.211Z",
804
- "parentId": "757357e35eb9"
805
- },
806
- "bac1fc5d2348": {
807
- "id": "bac1fc5d2348",
808
- "name": "file-browser.types.ts",
809
- "size": 4697,
810
- "modDate": "2020-10-24T16:26:47.115Z",
811
- "parentId": "757357e35eb9"
812
- },
813
- "76f7cdfe3e4e": {
814
- "id": "76f7cdfe3e4e",
815
- "name": "file-view.types.ts",
816
- "size": 217,
817
- "modDate": "2020-10-21T23:04:47.359Z",
818
- "parentId": "757357e35eb9"
819
- },
820
- "7ad6dbf5bde1": {
821
- "id": "7ad6dbf5bde1",
822
- "name": "files.types.ts",
823
- "size": 1457,
824
- "modDate": "2020-10-23T20:34:53.649Z",
825
- "parentId": "757357e35eb9"
826
- },
827
- "135e7f4a6fd4": {
828
- "id": "135e7f4a6fd4",
829
- "name": "icons.types.ts",
830
- "size": 2008,
831
- "modDate": "2020-10-20T03:15:57.395Z",
832
- "parentId": "757357e35eb9"
833
- },
834
- "fc916f7048fa": {
835
- "id": "fc916f7048fa",
836
- "name": "options.types.ts",
837
- "size": 53,
838
- "modDate": "2020-10-21T22:58:06.758Z",
839
- "parentId": "757357e35eb9"
840
- },
841
- "2b8624bab96b": {
842
- "id": "2b8624bab96b",
843
- "name": "selection.types.ts",
844
- "size": 295,
845
- "modDate": "2020-10-22T02:20:14.005Z",
846
- "parentId": "757357e35eb9"
847
- },
848
- "5acb74d37cbb": {
849
- "id": "5acb74d37cbb",
850
- "name": "sort.types.ts",
851
- "size": 210,
852
- "modDate": "2020-10-21T22:58:06.754Z",
853
- "parentId": "757357e35eb9"
854
- },
855
- "718a4c2e24dd": {
856
- "id": "718a4c2e24dd",
857
- "name": "thumbnails.types.ts",
858
- "size": 180,
859
- "modDate": "2020-10-20T03:15:57.395Z",
860
- "parentId": "757357e35eb9"
861
- },
862
- "cdf88bda378f": {
863
- "id": "cdf88bda378f",
864
- "name": "validation.types.ts",
865
- "size": 82,
866
- "modDate": "2020-10-20T03:15:57.395Z",
867
- "parentId": "757357e35eb9"
868
- },
869
- "4f0514c89627": {
870
- "id": "4f0514c89627",
871
- "name": "util",
872
- "isDir": true,
873
- "modDate": "2020-10-23T14:02:20.974Z",
874
- "parentId": "d3e4ad8b7899",
875
- "childrenIds": [
876
- "7db03dc4e3bb",
877
- "78be7381a930",
878
- "9389a5c0e0b4",
879
- "05999054fe1e",
880
- "bbdb776662a9",
881
- "cc3291b04d93",
882
- "5e89ab628fca",
883
- "87692dd3f70c",
884
- "9f44137375e8",
885
- "fccc459d5c10"
886
- ],
887
- "childrenCount": 10
888
- },
889
- "7db03dc4e3bb": {
890
- "id": "7db03dc4e3bb",
891
- "name": "file-actions-definitions.ts",
892
- "size": 1877,
893
- "modDate": "2020-10-24T14:59:09.600Z",
894
- "parentId": "4f0514c89627"
895
- },
896
- "78be7381a930": {
897
- "id": "78be7381a930",
898
- "name": "file-actions.ts",
899
- "size": 3433,
900
- "modDate": "2020-10-24T15:06:31.894Z",
901
- "parentId": "4f0514c89627"
902
- },
903
- "9389a5c0e0b4": {
904
- "id": "9389a5c0e0b4",
905
- "name": "file-browser-handle.ts",
906
- "size": 1022,
907
- "modDate": "2020-10-24T15:06:31.902Z",
908
- "parentId": "4f0514c89627"
909
- },
910
- "05999054fe1e": {
911
- "id": "05999054fe1e",
912
- "name": "file-helper.ts",
913
- "size": 3269,
914
- "modDate": "2020-10-20T03:15:57.395Z",
915
- "parentId": "4f0514c89627"
916
- },
917
- "bbdb776662a9": {
918
- "id": "bbdb776662a9",
919
- "name": "file-icon-helper.ts",
920
- "size": 8403,
921
- "modDate": "2020-10-20T03:15:57.395Z",
922
- "parentId": "4f0514c89627"
923
- },
924
- "cc3291b04d93": {
925
- "id": "cc3291b04d93",
926
- "name": "helpers.ts",
927
- "size": 2433,
928
- "modDate": "2020-10-24T14:59:09.604Z",
929
- "parentId": "4f0514c89627"
930
- },
931
- "5e89ab628fca": {
932
- "id": "5e89ab628fca",
933
- "name": "hooks-helpers.ts",
934
- "size": 962,
935
- "modDate": "2020-10-24T15:06:31.974Z",
936
- "parentId": "4f0514c89627"
937
- },
938
- "87692dd3f70c": {
939
- "id": "87692dd3f70c",
940
- "name": "logger.ts",
941
- "size": 617,
942
- "modDate": "2020-10-20T03:15:57.395Z",
943
- "parentId": "4f0514c89627"
944
- },
945
- "9f44137375e8": {
946
- "id": "9f44137375e8",
947
- "name": "styles.ts",
948
- "size": 1113,
949
- "modDate": "2020-10-22T13:19:22.779Z",
950
- "parentId": "4f0514c89627"
951
- },
952
- "fccc459d5c10": {
953
- "id": "fccc459d5c10",
954
- "name": "validation.ts",
955
- "size": 12340,
956
- "modDate": "2020-10-24T14:59:09.588Z",
957
- "parentId": "4f0514c89627"
958
- },
959
- "f22891ef4c60": {
960
- "id": "f22891ef4c60",
961
- "name": "style",
962
- "isDir": true,
963
- "modDate": "2020-10-22T11:47:46.053Z",
964
- "parentId": "08e9a34357a0",
965
- "childrenIds": [
966
- "e7920873e598",
967
- "32d418cfcd2c",
968
- "7f7937a9431a",
969
- "02f6b6ea7336",
970
- "66c055cedf5d",
971
- "98c35be5a56e",
972
- "07150c45bc8a",
973
- "ca1a85cd8053",
974
- "4ea5c40da335",
975
- "b965a53e37bd"
976
- ],
977
- "childrenCount": 10
978
- },
979
- "e7920873e598": {
980
- "id": "e7920873e598",
981
- "name": "_file-entry-grid.scss",
982
- "size": 6486,
983
- "modDate": "2020-10-20T03:15:57.399Z",
984
- "parentId": "f22891ef4c60"
985
- },
986
- "32d418cfcd2c": {
987
- "id": "32d418cfcd2c",
988
- "name": "_file-entry-list.scss",
989
- "size": 2644,
990
- "modDate": "2020-10-20T03:15:57.399Z",
991
- "parentId": "f22891ef4c60"
992
- },
993
- "7f7937a9431a": {
994
- "id": "7f7937a9431a",
995
- "name": "_file-entry.scss",
996
- "size": 505,
997
- "modDate": "2020-10-20T03:15:57.399Z",
998
- "parentId": "f22891ef4c60"
999
- },
1000
- "02f6b6ea7336": {
1001
- "id": "02f6b6ea7336",
1002
- "name": "_file-list.scss",
1003
- "size": 401,
1004
- "modDate": "2020-10-20T03:15:57.399Z",
1005
- "parentId": "f22891ef4c60"
1006
- },
1007
- "66c055cedf5d": {
1008
- "id": "66c055cedf5d",
1009
- "name": "_shared.scss",
1010
- "size": 448,
1011
- "modDate": "2020-10-22T13:08:29.133Z",
1012
- "parentId": "f22891ef4c60"
1013
- },
1014
- "98c35be5a56e": {
1015
- "id": "98c35be5a56e",
1016
- "name": "_text-placeholder.scss",
1017
- "size": 462,
1018
- "modDate": "2020-10-20T03:15:57.399Z",
1019
- "parentId": "f22891ef4c60"
1020
- },
1021
- "07150c45bc8a": {
1022
- "id": "07150c45bc8a",
1023
- "name": "_util.scss",
1024
- "size": 3522,
1025
- "modDate": "2020-10-20T03:15:57.399Z",
1026
- "parentId": "f22891ef4c60"
1027
- },
1028
- "ca1a85cd8053": {
1029
- "id": "ca1a85cd8053",
1030
- "name": "main.css",
1031
- "size": 10305,
1032
- "modDate": "2020-10-22T13:08:29.489Z",
1033
- "parentId": "f22891ef4c60"
1034
- },
1035
- "4ea5c40da335": {
1036
- "id": "4ea5c40da335",
1037
- "name": "main.css.map",
1038
- "size": 2243,
1039
- "modDate": "2020-10-22T13:08:29.489Z",
1040
- "parentId": "f22891ef4c60"
1041
- },
1042
- "b965a53e37bd": {
1043
- "id": "b965a53e37bd",
1044
- "name": "main.scss",
1045
- "size": 159,
1046
- "modDate": "2020-10-22T11:47:50.757Z",
1047
- "parentId": "f22891ef4c60"
1048
- },
1049
- "543d473f1c38": {
1050
- "id": "543d473f1c38",
1051
- "name": "test",
1052
- "isDir": true,
1053
- "modDate": "2020-10-24T18:32:19.055Z",
1054
- "parentId": "08e9a34357a0",
1055
- "childrenIds": [
1056
- "d9bcd9d845fe",
1057
- "3c9c725386fd",
1058
- "d6143c55b442",
1059
- "e9d658e3bd16"
1060
- ],
1061
- "childrenCount": 4
1062
- },
1063
- "d9bcd9d845fe": {
1064
- "id": "d9bcd9d845fe",
1065
- "name": "__snapshots__",
1066
- "isDir": true,
1067
- "modDate": "2020-10-24T18:12:45.201Z",
1068
- "parentId": "543d473f1c38",
1069
- "childrenIds": [
1070
- "d832ee48342e"
1071
- ],
1072
- "childrenCount": 1
1073
- },
1074
- "d832ee48342e": {
1075
- "id": "d832ee48342e",
1076
- "name": "component-hierarchy.test.tsx.snap",
1077
- "size": 52337,
1078
- "modDate": "2020-10-24T18:14:54.631Z",
1079
- "parentId": "d9bcd9d845fe"
1080
- },
1081
- "3c9c725386fd": {
1082
- "id": "3c9c725386fd",
1083
- "name": "component-hierarchy.test.tsx",
1084
- "size": 1095,
1085
- "modDate": "2020-10-24T18:14:42.335Z",
1086
- "parentId": "543d473f1c38"
1087
- },
1088
- "d6143c55b442": {
1089
- "id": "d6143c55b442",
1090
- "name": "file-action-handler.test.tsx",
1091
- "size": 1519,
1092
- "modDate": "2020-10-24T18:06:46.018Z",
1093
- "parentId": "543d473f1c38"
1094
- },
1095
- "e9d658e3bd16": {
1096
- "id": "e9d658e3bd16",
1097
- "name": "test-util.ts",
1098
- "size": 102,
1099
- "modDate": "2020-10-24T17:52:08.507Z",
1100
- "parentId": "543d473f1c38"
1101
- },
1102
- "684400d53b85": {
1103
- "id": "684400d53b85",
1104
- "name": "tsconfig.build.json",
1105
- "size": 132,
1106
- "modDate": "2020-10-24T16:47:15.589Z",
1107
- "parentId": "08e9a34357a0"
1108
- },
1109
- "8296bba42999": {
1110
- "id": "8296bba42999",
1111
- "name": "tsconfig.json",
1112
- "size": 156,
1113
- "modDate": "2020-10-24T17:51:48.111Z",
1114
- "parentId": "08e9a34357a0"
1115
- },
1116
- "43d749c47bbe": {
1117
- "id": "43d749c47bbe",
1118
- "name": "chonky-icon-fontawesome",
1119
- "isDir": true,
1120
- "modDate": "2020-10-24T18:33:09.643Z",
1121
- "parentId": "b4344ec9eb06",
1122
- "childrenIds": [
1123
- "a4c13c4816f4",
1124
- "b2007bcba768",
1125
- "70543cbe2624",
1126
- "e9e4f67dc916",
1127
- "56cb4f7c8489",
1128
- "51e3d64a108a"
1129
- ],
1130
- "childrenCount": 6
1131
- },
1132
- "a4c13c4816f4": {
1133
- "id": "a4c13c4816f4",
1134
- "name": "LICENSE",
1135
- "size": 1103,
1136
- "modDate": "2020-10-22T04:05:02.193Z",
1137
- "parentId": "43d749c47bbe"
1138
- },
1139
- "b2007bcba768": {
1140
- "id": "b2007bcba768",
1141
- "name": "README.md",
1142
- "size": 160,
1143
- "modDate": "2020-10-20T04:16:50.196Z",
1144
- "parentId": "43d749c47bbe"
1145
- },
1146
- "70543cbe2624": {
1147
- "id": "70543cbe2624",
1148
- "name": "package-lock.json",
1149
- "size": 60041,
1150
- "modDate": "2020-10-24T17:55:59.632Z",
1151
- "parentId": "43d749c47bbe"
1152
- },
1153
- "e9e4f67dc916": {
1154
- "id": "e9e4f67dc916",
1155
- "name": "package.json",
1156
- "size": 1235,
1157
- "modDate": "2020-10-24T18:33:09.643Z",
1158
- "parentId": "43d749c47bbe"
1159
- },
1160
- "56cb4f7c8489": {
1161
- "id": "56cb4f7c8489",
1162
- "name": "src",
1163
- "isDir": true,
1164
- "modDate": "2020-10-20T13:09:34.294Z",
1165
- "parentId": "43d749c47bbe",
1166
- "childrenIds": [
1167
- "3c8091a3c0ab",
1168
- "456be3cd3136"
1169
- ],
1170
- "childrenCount": 2
1171
- },
1172
- "3c8091a3c0ab": {
1173
- "id": "3c8091a3c0ab",
1174
- "name": "ChonkyIconFA.tsx",
1175
- "size": 311,
1176
- "modDate": "2020-10-24T16:39:43.439Z",
1177
- "parentId": "56cb4f7c8489"
1178
- },
1179
- "456be3cd3136": {
1180
- "id": "456be3cd3136",
1181
- "name": "index.ts",
1182
- "size": 47,
1183
- "modDate": "2020-10-20T13:09:44.914Z",
1184
- "parentId": "56cb4f7c8489"
1185
- },
1186
- "51e3d64a108a": {
1187
- "id": "51e3d64a108a",
1188
- "name": "tsconfig.json",
1189
- "size": 132,
1190
- "modDate": "2020-10-20T13:13:55.871Z",
1191
- "parentId": "43d749c47bbe"
1192
- },
1193
- "0b05bc983fd9": {
1194
- "id": "0b05bc983fd9",
1195
- "name": "react.tsconfig.json",
1196
- "size": 648,
1197
- "modDate": "2020-10-20T13:13:02.620Z",
1198
- "parentId": "e598a85f843c"
1199
- },
1200
- "b53aa057fad1": {
1201
- "id": "b53aa057fad1",
1202
- "name": "Images with thumbnails",
1203
- "isDir": true,
1204
- "modDate": "2020-06-27T12:28:53.648Z",
1205
- "childrenIds": [
1206
- "353f63dbd169",
1207
- "28f0f5f391eb",
1208
- "d1b9dc5457b8",
1209
- "0c8fa73e4685",
1210
- "0b74a148c890",
1211
- "7cd701884c5d",
1212
- "6655c71cdc8d",
1213
- "653f1108cf87"
1214
- ],
1215
- "childrenCount": 8,
1216
- "parentId": "qwerty123456"
1217
- },
1218
- "353f63dbd169": {
1219
- "id": "353f63dbd169",
1220
- "name": "Dotonbori.jpg",
1221
- "size": 212024,
1222
- "modDate": "2020-06-27T12:16:46.392Z",
1223
- "parentId": "b53aa057fad1",
1224
- "thumbnailUrl": "/thumbnails/353f63dbd169.jpg"
1225
- },
1226
- "28f0f5f391eb": {
1227
- "id": "28f0f5f391eb",
1228
- "name": "Itsukushima.jpg",
1229
- "size": 90820,
1230
- "modDate": "2020-06-27T12:14:34.529Z",
1231
- "parentId": "b53aa057fad1",
1232
- "thumbnailUrl": "/thumbnails/28f0f5f391eb.jpg"
1233
- },
1234
- "d1b9dc5457b8": {
1235
- "id": "d1b9dc5457b8",
1236
- "name": "Kyoto Station.jpg",
1237
- "size": 204463,
1238
- "modDate": "2020-06-27T12:21:44.549Z",
1239
- "parentId": "b53aa057fad1",
1240
- "thumbnailUrl": "/thumbnails/d1b9dc5457b8.jpg"
1241
- },
1242
- "0c8fa73e4685": {
1243
- "id": "0c8fa73e4685",
1244
- "name": "Mount Fuji.jpg",
1245
- "size": 62851,
1246
- "modDate": "2020-06-27T12:13:19.034Z",
1247
- "parentId": "b53aa057fad1",
1248
- "thumbnailUrl": "/thumbnails/0c8fa73e4685.jpg"
1249
- },
1250
- "0b74a148c890": {
1251
- "id": "0b74a148c890",
1252
- "name": "Osaka Castle.jpg",
1253
- "size": 87531,
1254
- "modDate": "2020-06-27T12:15:28.237Z",
1255
- "parentId": "b53aa057fad1",
1256
- "thumbnailUrl": "/thumbnails/0b74a148c890.jpg"
1257
- },
1258
- "7cd701884c5d": {
1259
- "id": "7cd701884c5d",
1260
- "name": "Tokyo Skytree.jpg",
1261
- "size": 164850,
1262
- "modDate": "2020-06-27T12:21:21.209Z",
1263
- "parentId": "b53aa057fad1",
1264
- "thumbnailUrl": "/thumbnails/7cd701884c5d.jpg"
1265
- },
1266
- "6655c71cdc8d": {
1267
- "id": "6655c71cdc8d",
1268
- "name": "Tokyo.jpg",
1269
- "size": 109441,
1270
- "modDate": "2020-06-27T12:17:34.935Z",
1271
- "parentId": "b53aa057fad1",
1272
- "thumbnailUrl": "/thumbnails/6655c71cdc8d.jpg"
1273
- },
1274
- "653f1108cf87": {
1275
- "id": "653f1108cf87",
1276
- "name": "Yoshinoyama.jpg",
1277
- "size": 201866,
1278
- "modDate": "2020-06-27T12:22:07.869Z",
1279
- "parentId": "b53aa057fad1",
1280
- "thumbnailUrl": "/thumbnails/653f1108cf87.jpg"
1281
- },
1282
- "b6667221f24b": {
1283
- "id": "b6667221f24b",
1284
- "name": "Files with long names",
1285
- "isDir": true,
1286
- "modDate": "2020-06-27T13:38:08.776Z",
1287
- "childrenIds": [
1288
- "8d6a608dbd08",
1289
- "6b8711a21780",
1290
- "4a2c1afcc755"
1291
- ],
1292
- "childrenCount": 3,
1293
- "parentId": "qwerty123456"
1294
- },
1295
- "8d6a608dbd08": {
1296
- "id": "8d6a608dbd08",
1297
- "name": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas quis nunc diam. Etiam accumsan, diam non sodales sollicitudin.txt",
1298
- "size": 0,
1299
- "modDate": "2020-06-27T13:38:08.776Z",
1300
- "parentId": "b6667221f24b"
1301
- },
1302
- "6b8711a21780": {
1303
- "id": "6b8711a21780",
1304
- "name": "Sed at tempus arcu. Vestibulum viverra nisl eget mi porta sodales. In suscipit luctus vestibulum.pdf",
1305
- "size": 0,
1306
- "modDate": "2020-06-27T13:35:40.786Z",
1307
- "parentId": "b6667221f24b"
1308
- },
1309
- "4a2c1afcc755": {
1310
- "id": "4a2c1afcc755",
1311
- "name": "this_is_a_python_script_with_an_extremely_long_name_that_tries_to_be_descriptive_but_ends_up_being_too_verbose.py",
1312
- "size": 0,
1313
- "modDate": "2020-06-27T13:31:15.978Z",
1314
- "parentId": "b6667221f24b"
1315
- },
1316
- "002705459ca4": {
1317
- "id": "002705459ca4",
1318
- "name": "Empty folder",
1319
- "isDir": true,
1320
- "modDate": "2020-07-18T22:27:23.864Z",
1321
- "childrenIds": [],
1322
- "childrenCount": 0,
1323
- "parentId": "qwerty123456"
1324
- },
1325
- "a9fd7c8a04db": {
1326
- "id": "a9fd7c8a04db",
1327
- "name": "15 nested folders",
1328
- "isDir": true,
1329
- "modDate": "2020-06-27T13:32:07.253Z",
1330
- "childrenIds": [
1331
- "e3bcade90390"
1332
- ],
1333
- "childrenCount": 1,
1334
- "parentId": "qwerty123456"
1335
- },
1336
- "e3bcade90390": {
1337
- "id": "e3bcade90390",
1338
- "name": "Level 1",
1339
- "isDir": true,
1340
- "modDate": "2020-06-27T13:32:10.805Z",
1341
- "parentId": "a9fd7c8a04db",
1342
- "childrenIds": [
1343
- "99a4ce856444"
1344
- ],
1345
- "childrenCount": 1
1346
- },
1347
- "99a4ce856444": {
1348
- "id": "99a4ce856444",
1349
- "name": "Level 2",
1350
- "isDir": true,
1351
- "modDate": "2020-06-27T13:32:14.109Z",
1352
- "parentId": "e3bcade90390",
1353
- "childrenIds": [
1354
- "7263c24adb31"
1355
- ],
1356
- "childrenCount": 1
1357
- },
1358
- "7263c24adb31": {
1359
- "id": "7263c24adb31",
1360
- "name": "Level 3",
1361
- "isDir": true,
1362
- "modDate": "2020-06-27T13:32:17.225Z",
1363
- "parentId": "99a4ce856444",
1364
- "childrenIds": [
1365
- "ca1a1fd357a3"
1366
- ],
1367
- "childrenCount": 1
1368
- },
1369
- "ca1a1fd357a3": {
1370
- "id": "ca1a1fd357a3",
1371
- "name": "Level 4",
1372
- "isDir": true,
1373
- "modDate": "2020-06-27T13:32:20.329Z",
1374
- "parentId": "7263c24adb31",
1375
- "childrenIds": [
1376
- "f5962105e6bf"
1377
- ],
1378
- "childrenCount": 1
1379
- },
1380
- "f5962105e6bf": {
1381
- "id": "f5962105e6bf",
1382
- "name": "Level 5",
1383
- "isDir": true,
1384
- "modDate": "2020-06-27T13:32:24.209Z",
1385
- "parentId": "ca1a1fd357a3",
1386
- "childrenIds": [
1387
- "eb99622b6bf7"
1388
- ],
1389
- "childrenCount": 1
1390
- },
1391
- "eb99622b6bf7": {
1392
- "id": "eb99622b6bf7",
1393
- "name": "Level 6",
1394
- "isDir": true,
1395
- "modDate": "2020-06-27T13:32:28.661Z",
1396
- "parentId": "f5962105e6bf",
1397
- "childrenIds": [
1398
- "eb6ef39dcf7e"
1399
- ],
1400
- "childrenCount": 1
1401
- },
1402
- "eb6ef39dcf7e": {
1403
- "id": "eb6ef39dcf7e",
1404
- "name": "Level 7",
1405
- "isDir": true,
1406
- "modDate": "2020-06-27T13:32:33.273Z",
1407
- "parentId": "eb99622b6bf7",
1408
- "childrenIds": [
1409
- "a09fd90e8a3e"
1410
- ],
1411
- "childrenCount": 1
1412
- },
1413
- "a09fd90e8a3e": {
1414
- "id": "a09fd90e8a3e",
1415
- "name": "Level 8",
1416
- "isDir": true,
1417
- "modDate": "2020-06-27T13:32:36.993Z",
1418
- "parentId": "eb6ef39dcf7e",
1419
- "childrenIds": [
1420
- "8e7120860c41"
1421
- ],
1422
- "childrenCount": 1
1423
- },
1424
- "8e7120860c41": {
1425
- "id": "8e7120860c41",
1426
- "name": "Level 9",
1427
- "isDir": true,
1428
- "modDate": "2020-06-27T13:32:40.877Z",
1429
- "parentId": "a09fd90e8a3e",
1430
- "childrenIds": [
1431
- "3dc12662a950"
1432
- ],
1433
- "childrenCount": 1
1434
- },
1435
- "3dc12662a950": {
1436
- "id": "3dc12662a950",
1437
- "name": "Level 10",
1438
- "isDir": true,
1439
- "modDate": "2020-06-27T13:32:44.009Z",
1440
- "parentId": "8e7120860c41",
1441
- "childrenIds": [
1442
- "1062ab9dec65"
1443
- ],
1444
- "childrenCount": 1
1445
- },
1446
- "1062ab9dec65": {
1447
- "id": "1062ab9dec65",
1448
- "name": "Level 11",
1449
- "isDir": true,
1450
- "modDate": "2020-06-27T13:32:46.497Z",
1451
- "parentId": "3dc12662a950",
1452
- "childrenIds": [
1453
- "ca09fe075bf4"
1454
- ],
1455
- "childrenCount": 1
1456
- },
1457
- "ca09fe075bf4": {
1458
- "id": "ca09fe075bf4",
1459
- "name": "Level 12",
1460
- "isDir": true,
1461
- "modDate": "2020-06-27T13:32:49.597Z",
1462
- "parentId": "1062ab9dec65",
1463
- "childrenIds": [
1464
- "29fda22251ec"
1465
- ],
1466
- "childrenCount": 1
1467
- },
1468
- "29fda22251ec": {
1469
- "id": "29fda22251ec",
1470
- "name": "Level 13",
1471
- "isDir": true,
1472
- "modDate": "2020-06-27T13:32:52.861Z",
1473
- "parentId": "ca09fe075bf4",
1474
- "childrenIds": [
1475
- "8270c2231d78"
1476
- ],
1477
- "childrenCount": 1
1478
- },
1479
- "8270c2231d78": {
1480
- "id": "8270c2231d78",
1481
- "name": "Level 14",
1482
- "isDir": true,
1483
- "modDate": "2020-06-27T13:32:56.657Z",
1484
- "parentId": "29fda22251ec",
1485
- "childrenIds": [
1486
- "e3c798d6abf7"
1487
- ],
1488
- "childrenCount": 1
1489
- },
1490
- "e3c798d6abf7": {
1491
- "id": "e3c798d6abf7",
1492
- "name": "Level 15",
1493
- "isDir": true,
1494
- "modDate": "2020-06-27T13:34:35.083Z",
1495
- "parentId": "8270c2231d78",
1496
- "childrenIds": [
1497
- "d2551145553d"
1498
- ],
1499
- "childrenCount": 1
1500
- },
1501
- "d2551145553d": {
1502
- "id": "d2551145553d",
1503
- "name": "Bigfoot Footage.avi",
1504
- "size": 3601921,
1505
- "modDate": "2020-06-27T13:34:35.083Z",
1506
- "parentId": "e3c798d6abf7"
1507
- },
1508
- "549c1f93247a": {
1509
- "id": "549c1f93247a",
1510
- "name": "Files that load forever",
1511
- "isDir": true,
1512
- "modDate": "2020-06-27T13:58:16.428Z",
1513
- "childrenIds": [
1514
- "34308fe0264f",
1515
- "79e0e1372800",
1516
- "a358142e72e3"
1517
- ],
1518
- "childrenCount": 3,
1519
- "parentId": "qwerty123456"
1520
- },
1521
- "34308fe0264f": null,
1522
- "79e0e1372800": null,
1523
- "a358142e72e3": null,
1524
- "zFe": {
1525
- "id": "zFe",
1526
- "name": ".hidden.txt",
1527
- "isHidden": true,
1528
- "modDate": "1997-04-26T11:00:00.000Z",
1529
- "size": 42,
1530
- "parentId": "qwerty123456"
1531
- },
1532
- "zJr": {
1533
- "id": "zJr",
1534
- "name": "encrypted.zip",
1535
- "isEncrypted": true,
1536
- "modDate": "2020-10-24T19:10:17.659Z",
1537
- "size": 1337,
1538
- "parentId": "qwerty123456"
1539
- },
1540
- "zHy": {
1541
- "id": "zHy",
1542
- "name": "chonky-sphere-v2.png",
1543
- "thumbnailUrl": "/chonky-sphere-v2.png",
1544
- "modDate": "2020-10-24T19:10:17.659Z",
1545
- "size": 322,
1546
- "parentId": "qwerty123456"
1547
- },
1548
- "vCt": {
1549
- "id": "vCt",
1550
- "name": "nyan-cat.gif",
1551
- "thumbnailUrl": "/nyan-cat.gif",
1552
- "size": 9001,
1553
- "modDate": "2020-10-24T19:10:17.659Z",
1554
- "parentId": "qwerty123456"
1555
- }
1556
- }
1
+ {
2
+ "rootFolderId": "qwerty123456",
3
+ "fileMap": {
4
+ "qwerty123456": {
5
+ "id": "qwerty123456",
6
+ "name": "PersistentVolume",
7
+ "isDir": true,
8
+ "childrenIds": [
9
+ "e598a85f843c",
10
+ "b53aa057fad1",
11
+ "b6667221f24b",
12
+ "002705459ca4",
13
+ "a9fd7c8a04db",
14
+ "549c1f93247a",
15
+ "zFe",
16
+ "zJr",
17
+ "zHy",
18
+ "vCt"
19
+ ],
20
+ "childrenCount": 6
21
+ },
22
+ "e598a85f843c": {
23
+ "id": "e598a85f843c",
24
+ "name": "Chonky Source Code",
25
+ "isDir": true,
26
+ "modDate": "2020-10-24T17:48:39.866Z",
27
+ "childrenIds": [
28
+ "9514a3d74d57",
29
+ "ed918037b975",
30
+ "c21e08daf308",
31
+ "0729af954fe6",
32
+ "a1361e98e01d",
33
+ "12dd195bb146",
34
+ "f9b3b8472664",
35
+ "998c5fed54dc",
36
+ "e6b2e6181d54",
37
+ "24c33e69f0f1",
38
+ "a3a6f4860f0a",
39
+ "b4344ec9eb06",
40
+ "0b05bc983fd9"
41
+ ],
42
+ "childrenCount": 13,
43
+ "parentId": "qwerty123456"
44
+ },
45
+ "9514a3d74d57": {
46
+ "id": "9514a3d74d57",
47
+ "name": ".eslintrc.js",
48
+ "isHidden": true,
49
+ "size": 2293,
50
+ "modDate": "2020-10-20T03:11:50.570Z",
51
+ "parentId": "e598a85f843c"
52
+ },
53
+ "ed918037b975": {
54
+ "id": "ed918037b975",
55
+ "name": ".gitignore",
56
+ "isHidden": true,
57
+ "size": 347,
58
+ "modDate": "2020-10-20T13:22:59.144Z",
59
+ "parentId": "e598a85f843c"
60
+ },
61
+ "c21e08daf308": {
62
+ "id": "c21e08daf308",
63
+ "name": ".prettierrc.js",
64
+ "isHidden": true,
65
+ "size": 144,
66
+ "modDate": "2020-10-20T03:11:50.570Z",
67
+ "parentId": "e598a85f843c"
68
+ },
69
+ "0729af954fe6": {
70
+ "id": "0729af954fe6",
71
+ "name": ".travis.yml",
72
+ "isHidden": true,
73
+ "size": 191,
74
+ "modDate": "2020-10-24T16:43:46.520Z",
75
+ "parentId": "e598a85f843c"
76
+ },
77
+ "a1361e98e01d": {
78
+ "id": "a1361e98e01d",
79
+ "name": "LICENSE",
80
+ "size": 1103,
81
+ "modDate": "2020-10-22T04:05:02.289Z",
82
+ "parentId": "e598a85f843c"
83
+ },
84
+ "12dd195bb146": {
85
+ "id": "12dd195bb146",
86
+ "name": "README.md",
87
+ "size": 1457,
88
+ "modDate": "2020-10-22T04:17:54.294Z",
89
+ "parentId": "e598a85f843c"
90
+ },
91
+ "f9b3b8472664": {
92
+ "id": "f9b3b8472664",
93
+ "name": "lerna-debug.log",
94
+ "size": 1119,
95
+ "modDate": "2020-10-24T17:48:39.866Z",
96
+ "parentId": "e598a85f843c"
97
+ },
98
+ "998c5fed54dc": {
99
+ "id": "998c5fed54dc",
100
+ "name": "lerna.json",
101
+ "size": 71,
102
+ "modDate": "2020-10-20T04:15:42.657Z",
103
+ "parentId": "e598a85f843c"
104
+ },
105
+ "e6b2e6181d54": {
106
+ "id": "e6b2e6181d54",
107
+ "name": "logo",
108
+ "isDir": true,
109
+ "modDate": "2020-10-21T15:59:46.786Z",
110
+ "parentId": "e598a85f843c",
111
+ "childrenIds": [
112
+ "148ffc6cc2e0",
113
+ "02c01aedf901",
114
+ "0a7e2fce8e7a",
115
+ "7bcecbc35fda",
116
+ "6adc7b20c64b",
117
+ "e977504c47b7"
118
+ ],
119
+ "childrenCount": 6
120
+ },
121
+ "148ffc6cc2e0": {
122
+ "id": "148ffc6cc2e0",
123
+ "name": "chonky-logo-v2.png",
124
+ "size": 74588,
125
+ "modDate": "2020-10-21T15:55:52.555Z",
126
+ "parentId": "e6b2e6181d54",
127
+ "thumbnailUrl": "/thumbnails/148ffc6cc2e0.jpg"
128
+ },
129
+ "02c01aedf901": {
130
+ "id": "02c01aedf901",
131
+ "name": "chonky-logo-v2.svg",
132
+ "size": 157045,
133
+ "modDate": "2020-10-21T15:55:52.611Z",
134
+ "parentId": "e6b2e6181d54"
135
+ },
136
+ "0a7e2fce8e7a": {
137
+ "id": "0a7e2fce8e7a",
138
+ "name": "chonky-logo.ai",
139
+ "size": 91103,
140
+ "modDate": "2020-10-21T15:55:52.455Z",
141
+ "parentId": "e6b2e6181d54"
142
+ },
143
+ "7bcecbc35fda": {
144
+ "id": "7bcecbc35fda",
145
+ "name": "chonky-logo.svg",
146
+ "size": 156620,
147
+ "modDate": "2020-10-21T15:55:52.519Z",
148
+ "parentId": "e6b2e6181d54"
149
+ },
150
+ "6adc7b20c64b": {
151
+ "id": "6adc7b20c64b",
152
+ "name": "chonky-sphere-v2.png",
153
+ "size": 63043,
154
+ "modDate": "2020-10-21T15:59:46.806Z",
155
+ "parentId": "e6b2e6181d54",
156
+ "thumbnailUrl": "/thumbnails/6adc7b20c64b.jpg"
157
+ },
158
+ "e977504c47b7": {
159
+ "id": "e977504c47b7",
160
+ "name": "chonky-sphere.svg",
161
+ "size": 155078,
162
+ "modDate": "2020-10-21T15:55:52.667Z",
163
+ "parentId": "e6b2e6181d54"
164
+ },
165
+ "24c33e69f0f1": {
166
+ "id": "24c33e69f0f1",
167
+ "name": "package-lock.json",
168
+ "size": 671832,
169
+ "modDate": "2020-10-24T17:45:53.305Z",
170
+ "parentId": "e598a85f843c"
171
+ },
172
+ "a3a6f4860f0a": {
173
+ "id": "a3a6f4860f0a",
174
+ "name": "package.json",
175
+ "size": 1003,
176
+ "modDate": "2020-10-24T17:45:52.745Z",
177
+ "parentId": "e598a85f843c"
178
+ },
179
+ "b4344ec9eb06": {
180
+ "id": "b4344ec9eb06",
181
+ "name": "packages",
182
+ "isDir": true,
183
+ "modDate": "2020-10-20T04:16:50.196Z",
184
+ "parentId": "e598a85f843c",
185
+ "childrenIds": [
186
+ "08e9a34357a0",
187
+ "43d749c47bbe"
188
+ ],
189
+ "childrenCount": 2
190
+ },
191
+ "08e9a34357a0": {
192
+ "id": "08e9a34357a0",
193
+ "name": "chonky",
194
+ "isDir": true,
195
+ "modDate": "2020-10-24T18:33:09.643Z",
196
+ "parentId": "b4344ec9eb06",
197
+ "childrenIds": [
198
+ "8e6390f5ce3c",
199
+ "36659b55f402",
200
+ "5ca005a238ee",
201
+ "ccaeef8ef43f",
202
+ "232ab2ded9a2",
203
+ "efaae6261dd2",
204
+ "d3e4ad8b7899",
205
+ "f22891ef4c60",
206
+ "543d473f1c38",
207
+ "684400d53b85",
208
+ "8296bba42999"
209
+ ],
210
+ "childrenCount": 11
211
+ },
212
+ "8e6390f5ce3c": {
213
+ "id": "8e6390f5ce3c",
214
+ "name": ".npmignore",
215
+ "isHidden": true,
216
+ "size": 19,
217
+ "modDate": "2020-10-20T04:14:20.462Z",
218
+ "parentId": "08e9a34357a0"
219
+ },
220
+ "36659b55f402": {
221
+ "id": "36659b55f402",
222
+ "name": "LICENSE",
223
+ "size": 1103,
224
+ "modDate": "2020-10-22T04:05:02.189Z",
225
+ "parentId": "08e9a34357a0"
226
+ },
227
+ "5ca005a238ee": {
228
+ "id": "5ca005a238ee",
229
+ "name": "README.md",
230
+ "size": 3304,
231
+ "modDate": "2020-10-22T04:13:22.234Z",
232
+ "parentId": "08e9a34357a0"
233
+ },
234
+ "ccaeef8ef43f": {
235
+ "id": "ccaeef8ef43f",
236
+ "name": "jest.config.js",
237
+ "size": 108,
238
+ "modDate": "2020-10-24T17:50:59.584Z",
239
+ "parentId": "08e9a34357a0"
240
+ },
241
+ "232ab2ded9a2": {
242
+ "id": "232ab2ded9a2",
243
+ "name": "package-lock.json",
244
+ "size": 58201,
245
+ "modDate": "2020-10-24T17:55:57.396Z",
246
+ "parentId": "08e9a34357a0"
247
+ },
248
+ "efaae6261dd2": {
249
+ "id": "efaae6261dd2",
250
+ "name": "package.json",
251
+ "size": 2504,
252
+ "modDate": "2020-10-24T18:33:09.643Z",
253
+ "parentId": "08e9a34357a0"
254
+ },
255
+ "d3e4ad8b7899": {
256
+ "id": "d3e4ad8b7899",
257
+ "name": "src",
258
+ "isDir": true,
259
+ "modDate": "2020-10-24T15:43:58.573Z",
260
+ "parentId": "08e9a34357a0",
261
+ "childrenIds": [
262
+ "e63419ad8876",
263
+ "bbc23e48013e",
264
+ "0fc90868914b",
265
+ "1f5e98ca265e",
266
+ "757357e35eb9",
267
+ "4f0514c89627"
268
+ ],
269
+ "childrenCount": 6
270
+ },
271
+ "e63419ad8876": {
272
+ "id": "e63419ad8876",
273
+ "name": "action-definitions",
274
+ "isDir": true,
275
+ "modDate": "2020-10-24T16:49:22.927Z",
276
+ "parentId": "d3e4ad8b7899",
277
+ "childrenIds": [
278
+ "c340af44766a",
279
+ "d9e86056caed",
280
+ "1cadbc6ac017",
281
+ "2a064b95ddd2"
282
+ ],
283
+ "childrenCount": 4
284
+ },
285
+ "c340af44766a": {
286
+ "id": "c340af44766a",
287
+ "name": "default.ts",
288
+ "size": 4680,
289
+ "modDate": "2020-10-24T18:25:34.649Z",
290
+ "parentId": "e63419ad8876"
291
+ },
292
+ "d9e86056caed": {
293
+ "id": "d9e86056caed",
294
+ "name": "essential.ts",
295
+ "size": 10794,
296
+ "modDate": "2020-10-24T18:20:31.266Z",
297
+ "parentId": "e63419ad8876"
298
+ },
299
+ "1cadbc6ac017": {
300
+ "id": "1cadbc6ac017",
301
+ "name": "index.ts",
302
+ "size": 976,
303
+ "modDate": "2020-10-24T17:02:06.892Z",
304
+ "parentId": "e63419ad8876"
305
+ },
306
+ "2a064b95ddd2": {
307
+ "id": "2a064b95ddd2",
308
+ "name": "other.ts",
309
+ "size": 1706,
310
+ "modDate": "2020-10-24T18:26:38.828Z",
311
+ "parentId": "e63419ad8876"
312
+ },
313
+ "bbc23e48013e": {
314
+ "id": "bbc23e48013e",
315
+ "name": "components",
316
+ "isDir": true,
317
+ "modDate": "2020-10-22T16:12:57.200Z",
318
+ "parentId": "d3e4ad8b7899",
319
+ "childrenIds": [
320
+ "ebb33a8320b7",
321
+ "f792cce1f126",
322
+ "acac9b332214",
323
+ "16df703a0e34"
324
+ ],
325
+ "childrenCount": 4
326
+ },
327
+ "ebb33a8320b7": {
328
+ "id": "ebb33a8320b7",
329
+ "name": "external",
330
+ "isDir": true,
331
+ "modDate": "2020-10-23T23:50:58.325Z",
332
+ "parentId": "bbc23e48013e",
333
+ "childrenIds": [
334
+ "6492307a5acd",
335
+ "1f1e663f7a95",
336
+ "17467a52f595",
337
+ "90de868d6c92",
338
+ "b4ceb816ab04",
339
+ "0e586e88b821",
340
+ "4a13651533aa",
341
+ "32236429b973",
342
+ "4fb825f757d8",
343
+ "03c6919c4be0",
344
+ "b0761f6e733c",
345
+ "aa98fe4152a7",
346
+ "7f90887a0b55"
347
+ ],
348
+ "childrenCount": 13
349
+ },
350
+ "6492307a5acd": {
351
+ "id": "6492307a5acd",
352
+ "name": "ChonkyIcon.tsx",
353
+ "size": 7875,
354
+ "modDate": "2020-10-20T03:15:57.395Z",
355
+ "parentId": "ebb33a8320b7"
356
+ },
357
+ "1f1e663f7a95": {
358
+ "id": "1f1e663f7a95",
359
+ "name": "FileBrowser.tsx",
360
+ "size": 2578,
361
+ "modDate": "2020-10-23T21:37:02.606Z",
362
+ "parentId": "ebb33a8320b7"
363
+ },
364
+ "17467a52f595": {
365
+ "id": "17467a52f595",
366
+ "name": "FileContextMenu-hooks.ts",
367
+ "size": 1746,
368
+ "modDate": "2020-10-24T16:26:47.115Z",
369
+ "parentId": "ebb33a8320b7"
370
+ },
371
+ "90de868d6c92": {
372
+ "id": "90de868d6c92",
373
+ "name": "FileContextMenu.tsx",
374
+ "size": 3080,
375
+ "modDate": "2020-10-24T16:28:45.473Z",
376
+ "parentId": "ebb33a8320b7"
377
+ },
378
+ "b4ceb816ab04": {
379
+ "id": "b4ceb816ab04",
380
+ "name": "FileNavbar-hooks.ts",
381
+ "size": 1602,
382
+ "modDate": "2020-10-24T15:02:21.169Z",
383
+ "parentId": "ebb33a8320b7"
384
+ },
385
+ "0e586e88b821": {
386
+ "id": "0e586e88b821",
387
+ "name": "FileNavbar.tsx",
388
+ "size": 3122,
389
+ "modDate": "2020-10-24T15:02:21.213Z",
390
+ "parentId": "ebb33a8320b7"
391
+ },
392
+ "4a13651533aa": {
393
+ "id": "4a13651533aa",
394
+ "name": "FileToolbar.tsx",
395
+ "size": 2163,
396
+ "modDate": "2020-10-24T00:31:44.378Z",
397
+ "parentId": "ebb33a8320b7"
398
+ },
399
+ "32236429b973": {
400
+ "id": "32236429b973",
401
+ "name": "TextPlaceholder.tsx",
402
+ "size": 752,
403
+ "modDate": "2020-10-20T03:15:57.395Z",
404
+ "parentId": "ebb33a8320b7"
405
+ },
406
+ "4fb825f757d8": {
407
+ "id": "4fb825f757d8",
408
+ "name": "ToolbarButton.tsx",
409
+ "size": 3856,
410
+ "modDate": "2020-10-22T19:33:01.267Z",
411
+ "parentId": "ebb33a8320b7"
412
+ },
413
+ "03c6919c4be0": {
414
+ "id": "03c6919c4be0",
415
+ "name": "ToolbarDropdown.tsx",
416
+ "size": 1955,
417
+ "modDate": "2020-10-24T16:28:45.465Z",
418
+ "parentId": "ebb33a8320b7"
419
+ },
420
+ "b0761f6e733c": {
421
+ "id": "b0761f6e733c",
422
+ "name": "ToolbarDropdownButton.tsx",
423
+ "size": 3549,
424
+ "modDate": "2020-10-24T01:01:02.195Z",
425
+ "parentId": "ebb33a8320b7"
426
+ },
427
+ "aa98fe4152a7": {
428
+ "id": "aa98fe4152a7",
429
+ "name": "ToolbarInfo.tsx",
430
+ "size": 1481,
431
+ "modDate": "2020-10-22T00:28:16.619Z",
432
+ "parentId": "ebb33a8320b7"
433
+ },
434
+ "7f90887a0b55": {
435
+ "id": "7f90887a0b55",
436
+ "name": "ToolbarSearch.tsx",
437
+ "size": 1710,
438
+ "modDate": "2020-10-21T00:50:23.792Z",
439
+ "parentId": "ebb33a8320b7"
440
+ },
441
+ "f792cce1f126": {
442
+ "id": "f792cce1f126",
443
+ "name": "file-entry",
444
+ "isDir": true,
445
+ "modDate": "2020-10-20T03:15:57.395Z",
446
+ "parentId": "bbc23e48013e",
447
+ "childrenIds": [
448
+ "ea363491e29c",
449
+ "8a0dd72dc223",
450
+ "836d378b2fb4",
451
+ "b303b40eba33",
452
+ "3df2618f8ea1",
453
+ "869fadc64ed3",
454
+ "374a4778152a",
455
+ "1953147eee99",
456
+ "e805e42f66fa"
457
+ ],
458
+ "childrenCount": 9
459
+ },
460
+ "ea363491e29c": {
461
+ "id": "ea363491e29c",
462
+ "name": "ClickableFileEntry-hooks.tsx",
463
+ "size": 2142,
464
+ "modDate": "2020-10-24T15:02:21.193Z",
465
+ "parentId": "f792cce1f126"
466
+ },
467
+ "8a0dd72dc223": {
468
+ "id": "8a0dd72dc223",
469
+ "name": "ClickableFileEntry.tsx",
470
+ "size": 1242,
471
+ "modDate": "2020-10-20T03:15:57.395Z",
472
+ "parentId": "f792cce1f126"
473
+ },
474
+ "836d378b2fb4": {
475
+ "id": "836d378b2fb4",
476
+ "name": "DnDFileEntry.tsx",
477
+ "size": 4443,
478
+ "modDate": "2020-10-24T15:02:21.197Z",
479
+ "parentId": "f792cce1f126"
480
+ },
481
+ "b303b40eba33": {
482
+ "id": "b303b40eba33",
483
+ "name": "DnDFileListDragLayer.tsx",
484
+ "size": 2853,
485
+ "modDate": "2020-10-22T00:08:59.184Z",
486
+ "parentId": "f792cce1f126"
487
+ },
488
+ "3df2618f8ea1": {
489
+ "id": "3df2618f8ea1",
490
+ "name": "FileEntry-hooks.tsx",
491
+ "size": 6272,
492
+ "modDate": "2020-10-24T18:04:18.416Z",
493
+ "parentId": "f792cce1f126"
494
+ },
495
+ "869fadc64ed3": {
496
+ "id": "869fadc64ed3",
497
+ "name": "FileEntry.tsx",
498
+ "size": 432,
499
+ "modDate": "2020-10-24T17:15:16.388Z",
500
+ "parentId": "f792cce1f126"
501
+ },
502
+ "374a4778152a": {
503
+ "id": "374a4778152a",
504
+ "name": "FileEntryGrid.tsx",
505
+ "size": 3559,
506
+ "modDate": "2020-10-24T17:20:45.191Z",
507
+ "parentId": "f792cce1f126"
508
+ },
509
+ "1953147eee99": {
510
+ "id": "1953147eee99",
511
+ "name": "FileEntryList.tsx",
512
+ "size": 3165,
513
+ "modDate": "2020-10-24T17:20:45.191Z",
514
+ "parentId": "f792cce1f126"
515
+ },
516
+ "e805e42f66fa": {
517
+ "id": "e805e42f66fa",
518
+ "name": "SmartFileEntry.tsx",
519
+ "size": 1230,
520
+ "modDate": "2020-10-22T01:09:57.186Z",
521
+ "parentId": "f792cce1f126"
522
+ },
523
+ "acac9b332214": {
524
+ "id": "acac9b332214",
525
+ "name": "file-list",
526
+ "isDir": true,
527
+ "modDate": "2020-10-22T17:06:35.681Z",
528
+ "parentId": "bbc23e48013e",
529
+ "childrenIds": [
530
+ "3ec0fdc85293",
531
+ "07c1b362ab80",
532
+ "ed52b1577cbd",
533
+ "f73e6e5fc3ac",
534
+ "20ac09e4b8c0"
535
+ ],
536
+ "childrenCount": 5
537
+ },
538
+ "3ec0fdc85293": {
539
+ "id": "3ec0fdc85293",
540
+ "name": "FileList-hooks.tsx",
541
+ "size": 892,
542
+ "modDate": "2020-10-24T17:23:15.113Z",
543
+ "parentId": "acac9b332214"
544
+ },
545
+ "07c1b362ab80": {
546
+ "id": "07c1b362ab80",
547
+ "name": "FileList.tsx",
548
+ "size": 2007,
549
+ "modDate": "2020-10-24T19:04:16.476Z",
550
+ "parentId": "acac9b332214"
551
+ },
552
+ "ed52b1577cbd": {
553
+ "id": "ed52b1577cbd",
554
+ "name": "FileListEmpty.tsx",
555
+ "size": 961,
556
+ "modDate": "2020-10-22T16:30:27.040Z",
557
+ "parentId": "acac9b332214"
558
+ },
559
+ "f73e6e5fc3ac": {
560
+ "id": "f73e6e5fc3ac",
561
+ "name": "FileListGrid.tsx",
562
+ "size": 5471,
563
+ "modDate": "2020-10-22T17:23:26.674Z",
564
+ "parentId": "acac9b332214"
565
+ },
566
+ "20ac09e4b8c0": {
567
+ "id": "20ac09e4b8c0",
568
+ "name": "FileListList.tsx",
569
+ "size": 1959,
570
+ "modDate": "2020-10-22T16:30:39.684Z",
571
+ "parentId": "acac9b332214"
572
+ },
573
+ "16df703a0e34": {
574
+ "id": "16df703a0e34",
575
+ "name": "internal",
576
+ "isDir": true,
577
+ "modDate": "2020-10-20T03:15:57.395Z",
578
+ "parentId": "bbc23e48013e",
579
+ "childrenIds": [
580
+ "bae240ccdb0d",
581
+ "0517169a653e",
582
+ "0929ebecda08",
583
+ "15fb0260468b",
584
+ "767d14961ba2",
585
+ "6823f91fbd62",
586
+ "d1b0d830ccfc"
587
+ ],
588
+ "childrenCount": 7
589
+ },
590
+ "bae240ccdb0d": {
591
+ "id": "bae240ccdb0d",
592
+ "name": "ChonkyBusinessLogic.tsx",
593
+ "size": 2189,
594
+ "modDate": "2020-10-23T21:29:58.392Z",
595
+ "parentId": "16df703a0e34"
596
+ },
597
+ "0517169a653e": {
598
+ "id": "0517169a653e",
599
+ "name": "ChonkyPresentationLayer.tsx",
600
+ "size": 4073,
601
+ "modDate": "2020-10-24T01:27:15.160Z",
602
+ "parentId": "16df703a0e34"
603
+ },
604
+ "0929ebecda08": {
605
+ "id": "0929ebecda08",
606
+ "name": "ClickableWrapper-hooks.tsx",
607
+ "size": 2874,
608
+ "modDate": "2020-10-22T01:17:59.838Z",
609
+ "parentId": "16df703a0e34"
610
+ },
611
+ "15fb0260468b": {
612
+ "id": "15fb0260468b",
613
+ "name": "ClickableWrapper.tsx",
614
+ "size": 1895,
615
+ "modDate": "2020-10-20T03:15:57.395Z",
616
+ "parentId": "16df703a0e34"
617
+ },
618
+ "767d14961ba2": {
619
+ "id": "767d14961ba2",
620
+ "name": "ErrorMessage.tsx",
621
+ "size": 787,
622
+ "modDate": "2020-10-20T03:15:57.395Z",
623
+ "parentId": "16df703a0e34"
624
+ },
625
+ "6823f91fbd62": {
626
+ "id": "6823f91fbd62",
627
+ "name": "FileThumbnail.tsx",
628
+ "size": 711,
629
+ "modDate": "2020-10-20T03:15:57.395Z",
630
+ "parentId": "16df703a0e34"
631
+ },
632
+ "d1b0d830ccfc": {
633
+ "id": "d1b0d830ccfc",
634
+ "name": "HotkeyListener.tsx",
635
+ "size": 1250,
636
+ "modDate": "2020-10-23T21:22:54.374Z",
637
+ "parentId": "16df703a0e34"
638
+ },
639
+ "0fc90868914b": {
640
+ "id": "0fc90868914b",
641
+ "name": "index.ts",
642
+ "size": 1289,
643
+ "modDate": "2020-10-24T15:02:21.201Z",
644
+ "parentId": "d3e4ad8b7899"
645
+ },
646
+ "1f5e98ca265e": {
647
+ "id": "1f5e98ca265e",
648
+ "name": "redux",
649
+ "isDir": true,
650
+ "modDate": "2020-10-23T15:12:22.151Z",
651
+ "parentId": "d3e4ad8b7899",
652
+ "childrenIds": [
653
+ "8f24e9d3c3d9",
654
+ "b993f382ec52",
655
+ "4a3b28a83369",
656
+ "f8c35945417a",
657
+ "c81dbb9abcc0",
658
+ "3bc086273549",
659
+ "0b415f2bdc4d",
660
+ "7703a3d450bb"
661
+ ],
662
+ "childrenCount": 8
663
+ },
664
+ "8f24e9d3c3d9": {
665
+ "id": "8f24e9d3c3d9",
666
+ "name": "files-transforms.ts",
667
+ "size": 2985,
668
+ "modDate": "2020-10-24T14:59:09.588Z",
669
+ "parentId": "1f5e98ca265e"
670
+ },
671
+ "b993f382ec52": {
672
+ "id": "b993f382ec52",
673
+ "name": "reducers.ts",
674
+ "size": 7691,
675
+ "modDate": "2020-10-24T15:06:10.670Z",
676
+ "parentId": "1f5e98ca265e"
677
+ },
678
+ "4a3b28a83369": {
679
+ "id": "4a3b28a83369",
680
+ "name": "selectors.ts",
681
+ "size": 4766,
682
+ "modDate": "2020-10-24T02:35:09.515Z",
683
+ "parentId": "1f5e98ca265e"
684
+ },
685
+ "f8c35945417a": {
686
+ "id": "f8c35945417a",
687
+ "name": "state.ts",
688
+ "size": 1133,
689
+ "modDate": "2020-10-24T15:02:21.193Z",
690
+ "parentId": "1f5e98ca265e"
691
+ },
692
+ "c81dbb9abcc0": {
693
+ "id": "c81dbb9abcc0",
694
+ "name": "store.ts",
695
+ "size": 1990,
696
+ "modDate": "2020-10-23T17:03:59.027Z",
697
+ "parentId": "1f5e98ca265e"
698
+ },
699
+ "3bc086273549": {
700
+ "id": "3bc086273549",
701
+ "name": "thunks",
702
+ "isDir": true,
703
+ "modDate": "2020-10-23T21:13:15.091Z",
704
+ "parentId": "1f5e98ca265e",
705
+ "childrenIds": [
706
+ "a2db415a6e18",
707
+ "65238c94e4e6",
708
+ "93e6d0a7b61b"
709
+ ],
710
+ "childrenCount": 3
711
+ },
712
+ "a2db415a6e18": {
713
+ "id": "a2db415a6e18",
714
+ "name": "dispatchers.thunks.ts",
715
+ "size": 5790,
716
+ "modDate": "2020-10-24T16:26:47.115Z",
717
+ "parentId": "3bc086273549"
718
+ },
719
+ "65238c94e4e6": {
720
+ "id": "65238c94e4e6",
721
+ "name": "file-actions.thunks.ts",
722
+ "size": 6552,
723
+ "modDate": "2020-10-24T16:26:47.115Z",
724
+ "parentId": "3bc086273549"
725
+ },
726
+ "93e6d0a7b61b": {
727
+ "id": "93e6d0a7b61b",
728
+ "name": "files.thunks.ts",
729
+ "size": 4200,
730
+ "modDate": "2020-10-24T15:02:21.205Z",
731
+ "parentId": "3bc086273549"
732
+ },
733
+ "0b415f2bdc4d": {
734
+ "id": "0b415f2bdc4d",
735
+ "name": "types.ts",
736
+ "size": 2433,
737
+ "modDate": "2020-10-24T16:26:47.115Z",
738
+ "parentId": "1f5e98ca265e"
739
+ },
740
+ "7703a3d450bb": {
741
+ "id": "7703a3d450bb",
742
+ "name": "watchers.ts",
743
+ "size": 2955,
744
+ "modDate": "2020-10-24T15:02:21.189Z",
745
+ "parentId": "1f5e98ca265e"
746
+ },
747
+ "757357e35eb9": {
748
+ "id": "757357e35eb9",
749
+ "name": "types",
750
+ "isDir": true,
751
+ "modDate": "2020-10-24T15:00:36.227Z",
752
+ "parentId": "d3e4ad8b7899",
753
+ "childrenIds": [
754
+ "b7a2a86f17af",
755
+ "a5845a192903",
756
+ "278b8e70fd00",
757
+ "335428d20376",
758
+ "1b4ae6757e66",
759
+ "bac1fc5d2348",
760
+ "76f7cdfe3e4e",
761
+ "7ad6dbf5bde1",
762
+ "135e7f4a6fd4",
763
+ "fc916f7048fa",
764
+ "2b8624bab96b",
765
+ "5acb74d37cbb",
766
+ "718a4c2e24dd",
767
+ "cdf88bda378f"
768
+ ],
769
+ "childrenCount": 14
770
+ },
771
+ "b7a2a86f17af": {
772
+ "id": "b7a2a86f17af",
773
+ "name": "action-handler.types.ts",
774
+ "size": 669,
775
+ "modDate": "2020-10-24T15:00:13.051Z",
776
+ "parentId": "757357e35eb9"
777
+ },
778
+ "a5845a192903": {
779
+ "id": "a5845a192903",
780
+ "name": "action-menus.types.ts",
781
+ "size": 144,
782
+ "modDate": "2020-10-24T15:00:36.227Z",
783
+ "parentId": "757357e35eb9"
784
+ },
785
+ "278b8e70fd00": {
786
+ "id": "278b8e70fd00",
787
+ "name": "action-payloads.types.ts",
788
+ "size": 1089,
789
+ "modDate": "2020-10-24T14:49:34.381Z",
790
+ "parentId": "757357e35eb9"
791
+ },
792
+ "335428d20376": {
793
+ "id": "335428d20376",
794
+ "name": "action.types.ts",
795
+ "size": 3650,
796
+ "modDate": "2020-10-24T18:27:59.783Z",
797
+ "parentId": "757357e35eb9"
798
+ },
799
+ "1b4ae6757e66": {
800
+ "id": "1b4ae6757e66",
801
+ "name": "context-menu.types.ts",
802
+ "size": 79,
803
+ "modDate": "2020-10-23T23:19:40.211Z",
804
+ "parentId": "757357e35eb9"
805
+ },
806
+ "bac1fc5d2348": {
807
+ "id": "bac1fc5d2348",
808
+ "name": "file-browser.types.ts",
809
+ "size": 4697,
810
+ "modDate": "2020-10-24T16:26:47.115Z",
811
+ "parentId": "757357e35eb9"
812
+ },
813
+ "76f7cdfe3e4e": {
814
+ "id": "76f7cdfe3e4e",
815
+ "name": "file-view.types.ts",
816
+ "size": 217,
817
+ "modDate": "2020-10-21T23:04:47.359Z",
818
+ "parentId": "757357e35eb9"
819
+ },
820
+ "7ad6dbf5bde1": {
821
+ "id": "7ad6dbf5bde1",
822
+ "name": "files.types.ts",
823
+ "size": 1457,
824
+ "modDate": "2020-10-23T20:34:53.649Z",
825
+ "parentId": "757357e35eb9"
826
+ },
827
+ "135e7f4a6fd4": {
828
+ "id": "135e7f4a6fd4",
829
+ "name": "icons.types.ts",
830
+ "size": 2008,
831
+ "modDate": "2020-10-20T03:15:57.395Z",
832
+ "parentId": "757357e35eb9"
833
+ },
834
+ "fc916f7048fa": {
835
+ "id": "fc916f7048fa",
836
+ "name": "options.types.ts",
837
+ "size": 53,
838
+ "modDate": "2020-10-21T22:58:06.758Z",
839
+ "parentId": "757357e35eb9"
840
+ },
841
+ "2b8624bab96b": {
842
+ "id": "2b8624bab96b",
843
+ "name": "selection.types.ts",
844
+ "size": 295,
845
+ "modDate": "2020-10-22T02:20:14.005Z",
846
+ "parentId": "757357e35eb9"
847
+ },
848
+ "5acb74d37cbb": {
849
+ "id": "5acb74d37cbb",
850
+ "name": "sort.types.ts",
851
+ "size": 210,
852
+ "modDate": "2020-10-21T22:58:06.754Z",
853
+ "parentId": "757357e35eb9"
854
+ },
855
+ "718a4c2e24dd": {
856
+ "id": "718a4c2e24dd",
857
+ "name": "thumbnails.types.ts",
858
+ "size": 180,
859
+ "modDate": "2020-10-20T03:15:57.395Z",
860
+ "parentId": "757357e35eb9"
861
+ },
862
+ "cdf88bda378f": {
863
+ "id": "cdf88bda378f",
864
+ "name": "validation.types.ts",
865
+ "size": 82,
866
+ "modDate": "2020-10-20T03:15:57.395Z",
867
+ "parentId": "757357e35eb9"
868
+ },
869
+ "4f0514c89627": {
870
+ "id": "4f0514c89627",
871
+ "name": "util",
872
+ "isDir": true,
873
+ "modDate": "2020-10-23T14:02:20.974Z",
874
+ "parentId": "d3e4ad8b7899",
875
+ "childrenIds": [
876
+ "7db03dc4e3bb",
877
+ "78be7381a930",
878
+ "9389a5c0e0b4",
879
+ "05999054fe1e",
880
+ "bbdb776662a9",
881
+ "cc3291b04d93",
882
+ "5e89ab628fca",
883
+ "87692dd3f70c",
884
+ "9f44137375e8",
885
+ "fccc459d5c10"
886
+ ],
887
+ "childrenCount": 10
888
+ },
889
+ "7db03dc4e3bb": {
890
+ "id": "7db03dc4e3bb",
891
+ "name": "file-actions-definitions.ts",
892
+ "size": 1877,
893
+ "modDate": "2020-10-24T14:59:09.600Z",
894
+ "parentId": "4f0514c89627"
895
+ },
896
+ "78be7381a930": {
897
+ "id": "78be7381a930",
898
+ "name": "file-actions.ts",
899
+ "size": 3433,
900
+ "modDate": "2020-10-24T15:06:31.894Z",
901
+ "parentId": "4f0514c89627"
902
+ },
903
+ "9389a5c0e0b4": {
904
+ "id": "9389a5c0e0b4",
905
+ "name": "file-browser-handle.ts",
906
+ "size": 1022,
907
+ "modDate": "2020-10-24T15:06:31.902Z",
908
+ "parentId": "4f0514c89627"
909
+ },
910
+ "05999054fe1e": {
911
+ "id": "05999054fe1e",
912
+ "name": "file-helper.ts",
913
+ "size": 3269,
914
+ "modDate": "2020-10-20T03:15:57.395Z",
915
+ "parentId": "4f0514c89627"
916
+ },
917
+ "bbdb776662a9": {
918
+ "id": "bbdb776662a9",
919
+ "name": "file-icon-helper.ts",
920
+ "size": 8403,
921
+ "modDate": "2020-10-20T03:15:57.395Z",
922
+ "parentId": "4f0514c89627"
923
+ },
924
+ "cc3291b04d93": {
925
+ "id": "cc3291b04d93",
926
+ "name": "helpers.ts",
927
+ "size": 2433,
928
+ "modDate": "2020-10-24T14:59:09.604Z",
929
+ "parentId": "4f0514c89627"
930
+ },
931
+ "5e89ab628fca": {
932
+ "id": "5e89ab628fca",
933
+ "name": "hooks-helpers.ts",
934
+ "size": 962,
935
+ "modDate": "2020-10-24T15:06:31.974Z",
936
+ "parentId": "4f0514c89627"
937
+ },
938
+ "87692dd3f70c": {
939
+ "id": "87692dd3f70c",
940
+ "name": "logger.ts",
941
+ "size": 617,
942
+ "modDate": "2020-10-20T03:15:57.395Z",
943
+ "parentId": "4f0514c89627"
944
+ },
945
+ "9f44137375e8": {
946
+ "id": "9f44137375e8",
947
+ "name": "styles.ts",
948
+ "size": 1113,
949
+ "modDate": "2020-10-22T13:19:22.779Z",
950
+ "parentId": "4f0514c89627"
951
+ },
952
+ "fccc459d5c10": {
953
+ "id": "fccc459d5c10",
954
+ "name": "validation.ts",
955
+ "size": 12340,
956
+ "modDate": "2020-10-24T14:59:09.588Z",
957
+ "parentId": "4f0514c89627"
958
+ },
959
+ "f22891ef4c60": {
960
+ "id": "f22891ef4c60",
961
+ "name": "style",
962
+ "isDir": true,
963
+ "modDate": "2020-10-22T11:47:46.053Z",
964
+ "parentId": "08e9a34357a0",
965
+ "childrenIds": [
966
+ "e7920873e598",
967
+ "32d418cfcd2c",
968
+ "7f7937a9431a",
969
+ "02f6b6ea7336",
970
+ "66c055cedf5d",
971
+ "98c35be5a56e",
972
+ "07150c45bc8a",
973
+ "ca1a85cd8053",
974
+ "4ea5c40da335",
975
+ "b965a53e37bd"
976
+ ],
977
+ "childrenCount": 10
978
+ },
979
+ "e7920873e598": {
980
+ "id": "e7920873e598",
981
+ "name": "_file-entry-grid.scss",
982
+ "size": 6486,
983
+ "modDate": "2020-10-20T03:15:57.399Z",
984
+ "parentId": "f22891ef4c60"
985
+ },
986
+ "32d418cfcd2c": {
987
+ "id": "32d418cfcd2c",
988
+ "name": "_file-entry-list.scss",
989
+ "size": 2644,
990
+ "modDate": "2020-10-20T03:15:57.399Z",
991
+ "parentId": "f22891ef4c60"
992
+ },
993
+ "7f7937a9431a": {
994
+ "id": "7f7937a9431a",
995
+ "name": "_file-entry.scss",
996
+ "size": 505,
997
+ "modDate": "2020-10-20T03:15:57.399Z",
998
+ "parentId": "f22891ef4c60"
999
+ },
1000
+ "02f6b6ea7336": {
1001
+ "id": "02f6b6ea7336",
1002
+ "name": "_file-list.scss",
1003
+ "size": 401,
1004
+ "modDate": "2020-10-20T03:15:57.399Z",
1005
+ "parentId": "f22891ef4c60"
1006
+ },
1007
+ "66c055cedf5d": {
1008
+ "id": "66c055cedf5d",
1009
+ "name": "_shared.scss",
1010
+ "size": 448,
1011
+ "modDate": "2020-10-22T13:08:29.133Z",
1012
+ "parentId": "f22891ef4c60"
1013
+ },
1014
+ "98c35be5a56e": {
1015
+ "id": "98c35be5a56e",
1016
+ "name": "_text-placeholder.scss",
1017
+ "size": 462,
1018
+ "modDate": "2020-10-20T03:15:57.399Z",
1019
+ "parentId": "f22891ef4c60"
1020
+ },
1021
+ "07150c45bc8a": {
1022
+ "id": "07150c45bc8a",
1023
+ "name": "_util.scss",
1024
+ "size": 3522,
1025
+ "modDate": "2020-10-20T03:15:57.399Z",
1026
+ "parentId": "f22891ef4c60"
1027
+ },
1028
+ "ca1a85cd8053": {
1029
+ "id": "ca1a85cd8053",
1030
+ "name": "main.css",
1031
+ "size": 10305,
1032
+ "modDate": "2020-10-22T13:08:29.489Z",
1033
+ "parentId": "f22891ef4c60"
1034
+ },
1035
+ "4ea5c40da335": {
1036
+ "id": "4ea5c40da335",
1037
+ "name": "main.css.map",
1038
+ "size": 2243,
1039
+ "modDate": "2020-10-22T13:08:29.489Z",
1040
+ "parentId": "f22891ef4c60"
1041
+ },
1042
+ "b965a53e37bd": {
1043
+ "id": "b965a53e37bd",
1044
+ "name": "main.scss",
1045
+ "size": 159,
1046
+ "modDate": "2020-10-22T11:47:50.757Z",
1047
+ "parentId": "f22891ef4c60"
1048
+ },
1049
+ "543d473f1c38": {
1050
+ "id": "543d473f1c38",
1051
+ "name": "test",
1052
+ "isDir": true,
1053
+ "modDate": "2020-10-24T18:32:19.055Z",
1054
+ "parentId": "08e9a34357a0",
1055
+ "childrenIds": [
1056
+ "d9bcd9d845fe",
1057
+ "3c9c725386fd",
1058
+ "d6143c55b442",
1059
+ "e9d658e3bd16"
1060
+ ],
1061
+ "childrenCount": 4
1062
+ },
1063
+ "d9bcd9d845fe": {
1064
+ "id": "d9bcd9d845fe",
1065
+ "name": "__snapshots__",
1066
+ "isDir": true,
1067
+ "modDate": "2020-10-24T18:12:45.201Z",
1068
+ "parentId": "543d473f1c38",
1069
+ "childrenIds": [
1070
+ "d832ee48342e"
1071
+ ],
1072
+ "childrenCount": 1
1073
+ },
1074
+ "d832ee48342e": {
1075
+ "id": "d832ee48342e",
1076
+ "name": "component-hierarchy.test.tsx.snap",
1077
+ "size": 52337,
1078
+ "modDate": "2020-10-24T18:14:54.631Z",
1079
+ "parentId": "d9bcd9d845fe"
1080
+ },
1081
+ "3c9c725386fd": {
1082
+ "id": "3c9c725386fd",
1083
+ "name": "component-hierarchy.test.tsx",
1084
+ "size": 1095,
1085
+ "modDate": "2020-10-24T18:14:42.335Z",
1086
+ "parentId": "543d473f1c38"
1087
+ },
1088
+ "d6143c55b442": {
1089
+ "id": "d6143c55b442",
1090
+ "name": "file-action-handler.test.tsx",
1091
+ "size": 1519,
1092
+ "modDate": "2020-10-24T18:06:46.018Z",
1093
+ "parentId": "543d473f1c38"
1094
+ },
1095
+ "e9d658e3bd16": {
1096
+ "id": "e9d658e3bd16",
1097
+ "name": "test-util.ts",
1098
+ "size": 102,
1099
+ "modDate": "2020-10-24T17:52:08.507Z",
1100
+ "parentId": "543d473f1c38"
1101
+ },
1102
+ "684400d53b85": {
1103
+ "id": "684400d53b85",
1104
+ "name": "tsconfig.build.json",
1105
+ "size": 132,
1106
+ "modDate": "2020-10-24T16:47:15.589Z",
1107
+ "parentId": "08e9a34357a0"
1108
+ },
1109
+ "8296bba42999": {
1110
+ "id": "8296bba42999",
1111
+ "name": "tsconfig.json",
1112
+ "size": 156,
1113
+ "modDate": "2020-10-24T17:51:48.111Z",
1114
+ "parentId": "08e9a34357a0"
1115
+ },
1116
+ "43d749c47bbe": {
1117
+ "id": "43d749c47bbe",
1118
+ "name": "chonky-icon-fontawesome",
1119
+ "isDir": true,
1120
+ "modDate": "2020-10-24T18:33:09.643Z",
1121
+ "parentId": "b4344ec9eb06",
1122
+ "childrenIds": [
1123
+ "a4c13c4816f4",
1124
+ "b2007bcba768",
1125
+ "70543cbe2624",
1126
+ "e9e4f67dc916",
1127
+ "56cb4f7c8489",
1128
+ "51e3d64a108a"
1129
+ ],
1130
+ "childrenCount": 6
1131
+ },
1132
+ "a4c13c4816f4": {
1133
+ "id": "a4c13c4816f4",
1134
+ "name": "LICENSE",
1135
+ "size": 1103,
1136
+ "modDate": "2020-10-22T04:05:02.193Z",
1137
+ "parentId": "43d749c47bbe"
1138
+ },
1139
+ "b2007bcba768": {
1140
+ "id": "b2007bcba768",
1141
+ "name": "README.md",
1142
+ "size": 160,
1143
+ "modDate": "2020-10-20T04:16:50.196Z",
1144
+ "parentId": "43d749c47bbe"
1145
+ },
1146
+ "70543cbe2624": {
1147
+ "id": "70543cbe2624",
1148
+ "name": "package-lock.json",
1149
+ "size": 60041,
1150
+ "modDate": "2020-10-24T17:55:59.632Z",
1151
+ "parentId": "43d749c47bbe"
1152
+ },
1153
+ "e9e4f67dc916": {
1154
+ "id": "e9e4f67dc916",
1155
+ "name": "package.json",
1156
+ "size": 1235,
1157
+ "modDate": "2020-10-24T18:33:09.643Z",
1158
+ "parentId": "43d749c47bbe"
1159
+ },
1160
+ "56cb4f7c8489": {
1161
+ "id": "56cb4f7c8489",
1162
+ "name": "src",
1163
+ "isDir": true,
1164
+ "modDate": "2020-10-20T13:09:34.294Z",
1165
+ "parentId": "43d749c47bbe",
1166
+ "childrenIds": [
1167
+ "3c8091a3c0ab",
1168
+ "456be3cd3136"
1169
+ ],
1170
+ "childrenCount": 2
1171
+ },
1172
+ "3c8091a3c0ab": {
1173
+ "id": "3c8091a3c0ab",
1174
+ "name": "ChonkyIconFA.tsx",
1175
+ "size": 311,
1176
+ "modDate": "2020-10-24T16:39:43.439Z",
1177
+ "parentId": "56cb4f7c8489"
1178
+ },
1179
+ "456be3cd3136": {
1180
+ "id": "456be3cd3136",
1181
+ "name": "index.ts",
1182
+ "size": 47,
1183
+ "modDate": "2020-10-20T13:09:44.914Z",
1184
+ "parentId": "56cb4f7c8489"
1185
+ },
1186
+ "51e3d64a108a": {
1187
+ "id": "51e3d64a108a",
1188
+ "name": "tsconfig.json",
1189
+ "size": 132,
1190
+ "modDate": "2020-10-20T13:13:55.871Z",
1191
+ "parentId": "43d749c47bbe"
1192
+ },
1193
+ "0b05bc983fd9": {
1194
+ "id": "0b05bc983fd9",
1195
+ "name": "react.tsconfig.json",
1196
+ "size": 648,
1197
+ "modDate": "2020-10-20T13:13:02.620Z",
1198
+ "parentId": "e598a85f843c"
1199
+ },
1200
+ "b53aa057fad1": {
1201
+ "id": "b53aa057fad1",
1202
+ "name": "Images with thumbnails",
1203
+ "isDir": true,
1204
+ "modDate": "2020-06-27T12:28:53.648Z",
1205
+ "childrenIds": [
1206
+ "353f63dbd169",
1207
+ "28f0f5f391eb",
1208
+ "d1b9dc5457b8",
1209
+ "0c8fa73e4685",
1210
+ "0b74a148c890",
1211
+ "7cd701884c5d",
1212
+ "6655c71cdc8d",
1213
+ "653f1108cf87"
1214
+ ],
1215
+ "childrenCount": 8,
1216
+ "parentId": "qwerty123456"
1217
+ },
1218
+ "353f63dbd169": {
1219
+ "id": "353f63dbd169",
1220
+ "name": "Dotonbori.jpg",
1221
+ "size": 212024,
1222
+ "modDate": "2020-06-27T12:16:46.392Z",
1223
+ "parentId": "b53aa057fad1",
1224
+ "thumbnailUrl": "/thumbnails/353f63dbd169.jpg"
1225
+ },
1226
+ "28f0f5f391eb": {
1227
+ "id": "28f0f5f391eb",
1228
+ "name": "Itsukushima.jpg",
1229
+ "size": 90820,
1230
+ "modDate": "2020-06-27T12:14:34.529Z",
1231
+ "parentId": "b53aa057fad1",
1232
+ "thumbnailUrl": "/thumbnails/28f0f5f391eb.jpg"
1233
+ },
1234
+ "d1b9dc5457b8": {
1235
+ "id": "d1b9dc5457b8",
1236
+ "name": "Kyoto Station.jpg",
1237
+ "size": 204463,
1238
+ "modDate": "2020-06-27T12:21:44.549Z",
1239
+ "parentId": "b53aa057fad1",
1240
+ "thumbnailUrl": "/thumbnails/d1b9dc5457b8.jpg"
1241
+ },
1242
+ "0c8fa73e4685": {
1243
+ "id": "0c8fa73e4685",
1244
+ "name": "Mount Fuji.jpg",
1245
+ "size": 62851,
1246
+ "modDate": "2020-06-27T12:13:19.034Z",
1247
+ "parentId": "b53aa057fad1",
1248
+ "thumbnailUrl": "/thumbnails/0c8fa73e4685.jpg"
1249
+ },
1250
+ "0b74a148c890": {
1251
+ "id": "0b74a148c890",
1252
+ "name": "Osaka Castle.jpg",
1253
+ "size": 87531,
1254
+ "modDate": "2020-06-27T12:15:28.237Z",
1255
+ "parentId": "b53aa057fad1",
1256
+ "thumbnailUrl": "/thumbnails/0b74a148c890.jpg"
1257
+ },
1258
+ "7cd701884c5d": {
1259
+ "id": "7cd701884c5d",
1260
+ "name": "Tokyo Skytree.jpg",
1261
+ "size": 164850,
1262
+ "modDate": "2020-06-27T12:21:21.209Z",
1263
+ "parentId": "b53aa057fad1",
1264
+ "thumbnailUrl": "/thumbnails/7cd701884c5d.jpg"
1265
+ },
1266
+ "6655c71cdc8d": {
1267
+ "id": "6655c71cdc8d",
1268
+ "name": "Tokyo.jpg",
1269
+ "size": 109441,
1270
+ "modDate": "2020-06-27T12:17:34.935Z",
1271
+ "parentId": "b53aa057fad1",
1272
+ "thumbnailUrl": "/thumbnails/6655c71cdc8d.jpg"
1273
+ },
1274
+ "653f1108cf87": {
1275
+ "id": "653f1108cf87",
1276
+ "name": "Yoshinoyama.jpg",
1277
+ "size": 201866,
1278
+ "modDate": "2020-06-27T12:22:07.869Z",
1279
+ "parentId": "b53aa057fad1",
1280
+ "thumbnailUrl": "/thumbnails/653f1108cf87.jpg"
1281
+ },
1282
+ "b6667221f24b": {
1283
+ "id": "b6667221f24b",
1284
+ "name": "Files with long names",
1285
+ "isDir": true,
1286
+ "modDate": "2020-06-27T13:38:08.776Z",
1287
+ "childrenIds": [
1288
+ "8d6a608dbd08",
1289
+ "6b8711a21780",
1290
+ "4a2c1afcc755"
1291
+ ],
1292
+ "childrenCount": 3,
1293
+ "parentId": "qwerty123456"
1294
+ },
1295
+ "8d6a608dbd08": {
1296
+ "id": "8d6a608dbd08",
1297
+ "name": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas quis nunc diam. Etiam accumsan, diam non sodales sollicitudin.txt",
1298
+ "size": 0,
1299
+ "modDate": "2020-06-27T13:38:08.776Z",
1300
+ "parentId": "b6667221f24b"
1301
+ },
1302
+ "6b8711a21780": {
1303
+ "id": "6b8711a21780",
1304
+ "name": "Sed at tempus arcu. Vestibulum viverra nisl eget mi porta sodales. In suscipit luctus vestibulum.pdf",
1305
+ "size": 0,
1306
+ "modDate": "2020-06-27T13:35:40.786Z",
1307
+ "parentId": "b6667221f24b"
1308
+ },
1309
+ "4a2c1afcc755": {
1310
+ "id": "4a2c1afcc755",
1311
+ "name": "this_is_a_python_script_with_an_extremely_long_name_that_tries_to_be_descriptive_but_ends_up_being_too_verbose.py",
1312
+ "size": 0,
1313
+ "modDate": "2020-06-27T13:31:15.978Z",
1314
+ "parentId": "b6667221f24b"
1315
+ },
1316
+ "002705459ca4": {
1317
+ "id": "002705459ca4",
1318
+ "name": "Empty folder",
1319
+ "isDir": true,
1320
+ "modDate": "2020-07-18T22:27:23.864Z",
1321
+ "childrenIds": [],
1322
+ "childrenCount": 0,
1323
+ "parentId": "qwerty123456"
1324
+ },
1325
+ "a9fd7c8a04db": {
1326
+ "id": "a9fd7c8a04db",
1327
+ "name": "15 nested folders",
1328
+ "isDir": true,
1329
+ "modDate": "2020-06-27T13:32:07.253Z",
1330
+ "childrenIds": [
1331
+ "e3bcade90390"
1332
+ ],
1333
+ "childrenCount": 1,
1334
+ "parentId": "qwerty123456"
1335
+ },
1336
+ "e3bcade90390": {
1337
+ "id": "e3bcade90390",
1338
+ "name": "Level 1",
1339
+ "isDir": true,
1340
+ "modDate": "2020-06-27T13:32:10.805Z",
1341
+ "parentId": "a9fd7c8a04db",
1342
+ "childrenIds": [
1343
+ "99a4ce856444"
1344
+ ],
1345
+ "childrenCount": 1
1346
+ },
1347
+ "99a4ce856444": {
1348
+ "id": "99a4ce856444",
1349
+ "name": "Level 2",
1350
+ "isDir": true,
1351
+ "modDate": "2020-06-27T13:32:14.109Z",
1352
+ "parentId": "e3bcade90390",
1353
+ "childrenIds": [
1354
+ "7263c24adb31"
1355
+ ],
1356
+ "childrenCount": 1
1357
+ },
1358
+ "7263c24adb31": {
1359
+ "id": "7263c24adb31",
1360
+ "name": "Level 3",
1361
+ "isDir": true,
1362
+ "modDate": "2020-06-27T13:32:17.225Z",
1363
+ "parentId": "99a4ce856444",
1364
+ "childrenIds": [
1365
+ "ca1a1fd357a3"
1366
+ ],
1367
+ "childrenCount": 1
1368
+ },
1369
+ "ca1a1fd357a3": {
1370
+ "id": "ca1a1fd357a3",
1371
+ "name": "Level 4",
1372
+ "isDir": true,
1373
+ "modDate": "2020-06-27T13:32:20.329Z",
1374
+ "parentId": "7263c24adb31",
1375
+ "childrenIds": [
1376
+ "f5962105e6bf"
1377
+ ],
1378
+ "childrenCount": 1
1379
+ },
1380
+ "f5962105e6bf": {
1381
+ "id": "f5962105e6bf",
1382
+ "name": "Level 5",
1383
+ "isDir": true,
1384
+ "modDate": "2020-06-27T13:32:24.209Z",
1385
+ "parentId": "ca1a1fd357a3",
1386
+ "childrenIds": [
1387
+ "eb99622b6bf7"
1388
+ ],
1389
+ "childrenCount": 1
1390
+ },
1391
+ "eb99622b6bf7": {
1392
+ "id": "eb99622b6bf7",
1393
+ "name": "Level 6",
1394
+ "isDir": true,
1395
+ "modDate": "2020-06-27T13:32:28.661Z",
1396
+ "parentId": "f5962105e6bf",
1397
+ "childrenIds": [
1398
+ "eb6ef39dcf7e"
1399
+ ],
1400
+ "childrenCount": 1
1401
+ },
1402
+ "eb6ef39dcf7e": {
1403
+ "id": "eb6ef39dcf7e",
1404
+ "name": "Level 7",
1405
+ "isDir": true,
1406
+ "modDate": "2020-06-27T13:32:33.273Z",
1407
+ "parentId": "eb99622b6bf7",
1408
+ "childrenIds": [
1409
+ "a09fd90e8a3e"
1410
+ ],
1411
+ "childrenCount": 1
1412
+ },
1413
+ "a09fd90e8a3e": {
1414
+ "id": "a09fd90e8a3e",
1415
+ "name": "Level 8",
1416
+ "isDir": true,
1417
+ "modDate": "2020-06-27T13:32:36.993Z",
1418
+ "parentId": "eb6ef39dcf7e",
1419
+ "childrenIds": [
1420
+ "8e7120860c41"
1421
+ ],
1422
+ "childrenCount": 1
1423
+ },
1424
+ "8e7120860c41": {
1425
+ "id": "8e7120860c41",
1426
+ "name": "Level 9",
1427
+ "isDir": true,
1428
+ "modDate": "2020-06-27T13:32:40.877Z",
1429
+ "parentId": "a09fd90e8a3e",
1430
+ "childrenIds": [
1431
+ "3dc12662a950"
1432
+ ],
1433
+ "childrenCount": 1
1434
+ },
1435
+ "3dc12662a950": {
1436
+ "id": "3dc12662a950",
1437
+ "name": "Level 10",
1438
+ "isDir": true,
1439
+ "modDate": "2020-06-27T13:32:44.009Z",
1440
+ "parentId": "8e7120860c41",
1441
+ "childrenIds": [
1442
+ "1062ab9dec65"
1443
+ ],
1444
+ "childrenCount": 1
1445
+ },
1446
+ "1062ab9dec65": {
1447
+ "id": "1062ab9dec65",
1448
+ "name": "Level 11",
1449
+ "isDir": true,
1450
+ "modDate": "2020-06-27T13:32:46.497Z",
1451
+ "parentId": "3dc12662a950",
1452
+ "childrenIds": [
1453
+ "ca09fe075bf4"
1454
+ ],
1455
+ "childrenCount": 1
1456
+ },
1457
+ "ca09fe075bf4": {
1458
+ "id": "ca09fe075bf4",
1459
+ "name": "Level 12",
1460
+ "isDir": true,
1461
+ "modDate": "2020-06-27T13:32:49.597Z",
1462
+ "parentId": "1062ab9dec65",
1463
+ "childrenIds": [
1464
+ "29fda22251ec"
1465
+ ],
1466
+ "childrenCount": 1
1467
+ },
1468
+ "29fda22251ec": {
1469
+ "id": "29fda22251ec",
1470
+ "name": "Level 13",
1471
+ "isDir": true,
1472
+ "modDate": "2020-06-27T13:32:52.861Z",
1473
+ "parentId": "ca09fe075bf4",
1474
+ "childrenIds": [
1475
+ "8270c2231d78"
1476
+ ],
1477
+ "childrenCount": 1
1478
+ },
1479
+ "8270c2231d78": {
1480
+ "id": "8270c2231d78",
1481
+ "name": "Level 14",
1482
+ "isDir": true,
1483
+ "modDate": "2020-06-27T13:32:56.657Z",
1484
+ "parentId": "29fda22251ec",
1485
+ "childrenIds": [
1486
+ "e3c798d6abf7"
1487
+ ],
1488
+ "childrenCount": 1
1489
+ },
1490
+ "e3c798d6abf7": {
1491
+ "id": "e3c798d6abf7",
1492
+ "name": "Level 15",
1493
+ "isDir": true,
1494
+ "modDate": "2020-06-27T13:34:35.083Z",
1495
+ "parentId": "8270c2231d78",
1496
+ "childrenIds": [
1497
+ "d2551145553d"
1498
+ ],
1499
+ "childrenCount": 1
1500
+ },
1501
+ "d2551145553d": {
1502
+ "id": "d2551145553d",
1503
+ "name": "Bigfoot Footage.avi",
1504
+ "size": 3601921,
1505
+ "modDate": "2020-06-27T13:34:35.083Z",
1506
+ "parentId": "e3c798d6abf7"
1507
+ },
1508
+ "549c1f93247a": {
1509
+ "id": "549c1f93247a",
1510
+ "name": "Files that load forever",
1511
+ "isDir": true,
1512
+ "modDate": "2020-06-27T13:58:16.428Z",
1513
+ "childrenIds": [
1514
+ "34308fe0264f",
1515
+ "79e0e1372800",
1516
+ "a358142e72e3"
1517
+ ],
1518
+ "childrenCount": 3,
1519
+ "parentId": "qwerty123456"
1520
+ },
1521
+ "34308fe0264f": null,
1522
+ "79e0e1372800": null,
1523
+ "a358142e72e3": null,
1524
+ "zFe": {
1525
+ "id": "zFe",
1526
+ "name": ".hidden.txt",
1527
+ "isHidden": true,
1528
+ "modDate": "1997-04-26T11:00:00.000Z",
1529
+ "size": 42,
1530
+ "parentId": "qwerty123456"
1531
+ },
1532
+ "zJr": {
1533
+ "id": "zJr",
1534
+ "name": "encrypted.zip",
1535
+ "isEncrypted": true,
1536
+ "modDate": "2020-10-24T19:10:17.659Z",
1537
+ "size": 1337,
1538
+ "parentId": "qwerty123456"
1539
+ },
1540
+ "zHy": {
1541
+ "id": "zHy",
1542
+ "name": "chonky-sphere-v2.png",
1543
+ "thumbnailUrl": "/chonky-sphere-v2.png",
1544
+ "modDate": "2020-10-24T19:10:17.659Z",
1545
+ "size": 322,
1546
+ "parentId": "qwerty123456"
1547
+ },
1548
+ "vCt": {
1549
+ "id": "vCt",
1550
+ "name": "nyan-cat.gif",
1551
+ "thumbnailUrl": "/nyan-cat.gif",
1552
+ "size": 9001,
1553
+ "modDate": "2020-10-24T19:10:17.659Z",
1554
+ "parentId": "qwerty123456"
1555
+ }
1556
+ }
1557
1557
  }