@octaviaflow/core 3.1.0-beta.54 → 3.1.0-beta.56

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 (30) hide show
  1. package/dist/components/FileBrowser/FileBrowser.d.ts +67 -0
  2. package/dist/components/FileBrowser/FileBrowser.d.ts.map +1 -0
  3. package/dist/components/FileBrowser/index.d.ts +2 -0
  4. package/dist/components/FileBrowser/index.d.ts.map +1 -0
  5. package/dist/components/FileList/FileList.d.ts +70 -0
  6. package/dist/components/FileList/FileList.d.ts.map +1 -0
  7. package/dist/components/FileList/index.d.ts +2 -0
  8. package/dist/components/FileList/index.d.ts.map +1 -0
  9. package/dist/components/FilePicker/FilePicker.d.ts +64 -0
  10. package/dist/components/FilePicker/FilePicker.d.ts.map +1 -0
  11. package/dist/components/FilePicker/index.d.ts +2 -0
  12. package/dist/components/FilePicker/index.d.ts.map +1 -0
  13. package/dist/components/FileViewer/FileViewer.d.ts +31 -0
  14. package/dist/components/FileViewer/FileViewer.d.ts.map +1 -0
  15. package/dist/components/FileViewer/index.d.ts +2 -0
  16. package/dist/components/FileViewer/index.d.ts.map +1 -0
  17. package/dist/components/StatusList/StatusList.d.ts +48 -0
  18. package/dist/components/StatusList/StatusList.d.ts.map +1 -0
  19. package/dist/components/StatusList/index.d.ts +2 -0
  20. package/dist/components/StatusList/index.d.ts.map +1 -0
  21. package/dist/index.cjs +20535 -19079
  22. package/dist/index.cjs.map +1 -1
  23. package/dist/index.d.ts +5 -0
  24. package/dist/index.d.ts.map +1 -1
  25. package/dist/index.js +18269 -16757
  26. package/dist/index.js.map +1 -1
  27. package/dist/styles.css +1 -1
  28. package/dist/utils/filePath.d.ts +10 -0
  29. package/dist/utils/filePath.d.ts.map +1 -0
  30. package/package.json +1 -1
@@ -0,0 +1,10 @@
1
+ /**
2
+ * The chain of paths from the root down to (and including) `path`.
3
+ * e.g. ancestorsOf("/a/b", "/", "/") → ["/", "/a", "/a/b"].
4
+ */
5
+ export declare function ancestorsOf(path: string, rootPath: string, sep: string): string[];
6
+ /** The parent folder of `path`, or `null` at the root. */
7
+ export declare function parentOf(path: string, rootPath: string, sep: string): string | null;
8
+ /** The final segment of `path` (its display name). */
9
+ export declare function baseName(path: string, sep: string): string;
10
+ //# sourceMappingURL=filePath.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filePath.d.ts","sourceRoot":"","sources":["../../src/utils/filePath.ts"],"names":[],"mappings":"AAMA;;;GAGG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAWjF;AAED,0DAA0D;AAC1D,wBAAgB,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAInF;AAED,sDAAsD;AACtD,wBAAgB,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,CAE1D"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@octaviaflow/core",
3
- "version": "3.1.0-beta.54",
3
+ "version": "3.1.0-beta.56",
4
4
  "description": "OctaviaFlow Design System React components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",