@textcortex/slidewise 1.0.0 → 1.1.0

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 (51) hide show
  1. package/dist/index.mjs +6261 -6108
  2. package/dist/index.mjs.map +1 -1
  3. package/dist/slidewise.css +1 -1
  4. package/package.json +5 -20
  5. package/src/SlidewiseEditor.css +121 -4
  6. package/src/SlidewiseEditor.tsx +82 -166
  7. package/src/SlidewiseFileEditor.tsx +77 -11
  8. package/src/components/editor/TopBar.tsx +37 -24
  9. package/src/compound/HostContext.tsx +29 -0
  10. package/src/compound/IconContext.tsx +42 -0
  11. package/src/compound/ReadOnlyContext.tsx +23 -0
  12. package/src/compound/SlidewiseRoot.tsx +274 -0
  13. package/src/compound/index.ts +50 -0
  14. package/src/compound/parts.tsx +160 -0
  15. package/src/css.d.ts +4 -0
  16. package/src/index.ts +42 -0
  17. package/README.md +0 -112
  18. package/dist/file.svg +0 -1
  19. package/dist/globe.svg +0 -1
  20. package/dist/types/SlidewiseEditor.d.ts +0 -47
  21. package/dist/types/SlidewiseFileEditor.d.ts +0 -54
  22. package/dist/types/components/editor/BottomToolbar.d.ts +0 -1
  23. package/dist/types/components/editor/Canvas.d.ts +0 -1
  24. package/dist/types/components/editor/Editor.d.ts +0 -8
  25. package/dist/types/components/editor/ElementView.d.ts +0 -6
  26. package/dist/types/components/editor/FloatingToolbar.d.ts +0 -6
  27. package/dist/types/components/editor/GridView.d.ts +0 -1
  28. package/dist/types/components/editor/PlayMode.d.ts +0 -1
  29. package/dist/types/components/editor/SelectionFrame.d.ts +0 -8
  30. package/dist/types/components/editor/SlideRail.d.ts +0 -1
  31. package/dist/types/components/editor/SlideView.d.ts +0 -5
  32. package/dist/types/components/editor/TopBar.d.ts +0 -7
  33. package/dist/types/index.d.ts +0 -7
  34. package/dist/types/lib/StoreProvider.d.ts +0 -8
  35. package/dist/types/lib/fonts.d.ts +0 -9
  36. package/dist/types/lib/pptx/deckToPptx.d.ts +0 -9
  37. package/dist/types/lib/pptx/index.d.ts +0 -3
  38. package/dist/types/lib/pptx/pptxToDeck.d.ts +0 -18
  39. package/dist/types/lib/pptx/types.d.ts +0 -15
  40. package/dist/types/lib/pptx/units.d.ts +0 -25
  41. package/dist/types/lib/schema/migrate.d.ts +0 -25
  42. package/dist/types/lib/seed.d.ts +0 -2
  43. package/dist/types/lib/store.d.ts +0 -55
  44. package/dist/types/lib/types.d.ts +0 -141
  45. package/dist/window.svg +0 -1
  46. package/src/App.tsx +0 -261
  47. package/src/components/editor/Editor.tsx +0 -53
  48. package/src/index.css +0 -13
  49. package/src/lib/seed.ts +0 -777
  50. package/src/main.tsx +0 -10
  51. package/src/vite-env.d.ts +0 -3
package/src/main.tsx DELETED
@@ -1,10 +0,0 @@
1
- import { StrictMode } from "react";
2
- import { createRoot } from "react-dom/client";
3
- import "./index.css";
4
- import { App } from "./App";
5
-
6
- createRoot(document.getElementById("root")!).render(
7
- <StrictMode>
8
- <App />
9
- </StrictMode>
10
- );
package/src/vite-env.d.ts DELETED
@@ -1,3 +0,0 @@
1
- /// <reference types="vite/client" />
2
-
3
- declare module "*.css";