@pismo/marola 0.0.1-alpha.1

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 (33) hide show
  1. package/README.md +23 -0
  2. package/dist/Button-REznN-RP.js +1139 -0
  3. package/dist/Dialog.module-BO0mdB7d.js +15 -0
  4. package/dist/assets/CallToActionButton.css +1 -0
  5. package/dist/assets/Dialog.css +1 -0
  6. package/dist/assets/LoadingSpinner.css +1 -0
  7. package/dist/assets/Typography.css +1 -0
  8. package/dist/assets/main.css +1 -0
  9. package/dist/clsx-DB4S2d7J.js +22 -0
  10. package/dist/components/CallToActionButton/CallToActionButton.d.ts +23 -0
  11. package/dist/components/CallToActionButton/CallToActionButton.js +57 -0
  12. package/dist/components/Dialog/Actions.d.ts +8 -0
  13. package/dist/components/Dialog/Actions.js +6 -0
  14. package/dist/components/Dialog/Backdrop.d.ts +6 -0
  15. package/dist/components/Dialog/Backdrop.js +17 -0
  16. package/dist/components/Dialog/CloseIconButton.d.ts +6 -0
  17. package/dist/components/Dialog/CloseIconButton.js +19 -0
  18. package/dist/components/Dialog/Content.d.ts +8 -0
  19. package/dist/components/Dialog/Content.js +5 -0
  20. package/dist/components/Dialog/Dialog.d.ts +21 -0
  21. package/dist/components/Dialog/Dialog.js +20304 -0
  22. package/dist/components/Dialog/Title.d.ts +11 -0
  23. package/dist/components/Dialog/Title.js +14 -0
  24. package/dist/components/LoadingSpinner/LoadingSpinner.d.ts +6 -0
  25. package/dist/components/LoadingSpinner/LoadingSpinner.js +24 -0
  26. package/dist/components/Typography/Typography.d.ts +22 -0
  27. package/dist/components/Typography/Typography.js +73 -0
  28. package/dist/main.d.ts +5 -0
  29. package/dist/main.js +17 -0
  30. package/dist/types/helpers.d.ts +20 -0
  31. package/dist/vite-env.d.ts +1 -0
  32. package/package.json +51 -0
  33. package/src/playground/Playground.tsx +58 -0
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # Marola - component library
2
+ ![Marola logo](./src/assets/marolaLogo.png)
3
+
4
+ ### Commands
5
+
6
+ `yarn dev` - run the playground, launches a server where a developer can test and develop components, watches for file
7
+ changes
8
+
9
+ `yarn build` - builds the components ready for publish
10
+
11
+ `yarn test` - not yet implemented
12
+
13
+ `yarn lint` - performs an eslint across the project code and reports any problems in the terminal
14
+
15
+ `yarn preview` - runs `build` and serves the files in the `dist` serves what would be in a `publish`
16
+
17
+ `yarn publish` - runs a prePublish build (the `build` command) then publishes the contents of the `dist` directory
18
+
19
+ ### Tips
20
+
21
+ #### Node version
22
+
23
+ This project uses a .nvmrc file, to auto switch node version follow [these steps](https://github.com/nvm-sh/nvm?tab=readme-ov-file#zsh) from the nvm project .