@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.
- package/README.md +23 -0
- package/dist/Button-REznN-RP.js +1139 -0
- package/dist/Dialog.module-BO0mdB7d.js +15 -0
- package/dist/assets/CallToActionButton.css +1 -0
- package/dist/assets/Dialog.css +1 -0
- package/dist/assets/LoadingSpinner.css +1 -0
- package/dist/assets/Typography.css +1 -0
- package/dist/assets/main.css +1 -0
- package/dist/clsx-DB4S2d7J.js +22 -0
- package/dist/components/CallToActionButton/CallToActionButton.d.ts +23 -0
- package/dist/components/CallToActionButton/CallToActionButton.js +57 -0
- package/dist/components/Dialog/Actions.d.ts +8 -0
- package/dist/components/Dialog/Actions.js +6 -0
- package/dist/components/Dialog/Backdrop.d.ts +6 -0
- package/dist/components/Dialog/Backdrop.js +17 -0
- package/dist/components/Dialog/CloseIconButton.d.ts +6 -0
- package/dist/components/Dialog/CloseIconButton.js +19 -0
- package/dist/components/Dialog/Content.d.ts +8 -0
- package/dist/components/Dialog/Content.js +5 -0
- package/dist/components/Dialog/Dialog.d.ts +21 -0
- package/dist/components/Dialog/Dialog.js +20304 -0
- package/dist/components/Dialog/Title.d.ts +11 -0
- package/dist/components/Dialog/Title.js +14 -0
- package/dist/components/LoadingSpinner/LoadingSpinner.d.ts +6 -0
- package/dist/components/LoadingSpinner/LoadingSpinner.js +24 -0
- package/dist/components/Typography/Typography.d.ts +22 -0
- package/dist/components/Typography/Typography.js +73 -0
- package/dist/main.d.ts +5 -0
- package/dist/main.js +17 -0
- package/dist/types/helpers.d.ts +20 -0
- package/dist/vite-env.d.ts +1 -0
- package/package.json +51 -0
- package/src/playground/Playground.tsx +58 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Marola - component library
|
|
2
|
+

|
|
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 .
|