cja-phoenix 0.0.1 → 0.0.2

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 (42) hide show
  1. package/README.md +1 -0
  2. package/dist/cja-phoenix.es.js +3134 -63
  3. package/dist/fonts/ProximaNova-Black.woff +0 -0
  4. package/dist/fonts/ProximaNova-Black.woff2 +0 -0
  5. package/dist/fonts/ProximaNova-Bold.woff +0 -0
  6. package/dist/fonts/ProximaNova-Bold.woff2 +0 -0
  7. package/dist/fonts/ProximaNova-Extrabld.woff +0 -0
  8. package/dist/fonts/ProximaNova-Extrabld.woff2 +0 -0
  9. package/dist/fonts/ProximaNova-Regular.woff +0 -0
  10. package/dist/fonts/ProximaNova-Regular.woff2 +0 -0
  11. package/dist/fonts/ProximaNovaT-Thin.woff +0 -0
  12. package/dist/fonts/ProximaNovaT-Thin.woff2 +0 -0
  13. package/dist/iconia/fonts/CGG-icomoon.eot +0 -0
  14. package/dist/iconia/fonts/CGG-icomoon.svg +507 -0
  15. package/dist/iconia/fonts/CGG-icomoon.ttf +0 -0
  16. package/dist/iconia/fonts/CGG-icomoon.woff +0 -0
  17. package/dist/iconia/selection.json +1 -0
  18. package/dist/iconia/style.css +1529 -0
  19. package/dist/style.css +1 -1
  20. package/dist/types/components/CheckboxInput.vue.d.ts +14 -0
  21. package/dist/types/components/CjaButton.vue.d.ts +9 -0
  22. package/dist/types/components/ComponentA.vue.d.ts +4 -4
  23. package/dist/types/components/ComponentB.vue.d.ts +1 -1
  24. package/dist/types/components/Modal.vue.d.ts +32 -0
  25. package/dist/types/components/PhoneInput.vue.d.ts +62 -0
  26. package/dist/types/components/TextInput.vue.d.ts +58 -0
  27. package/dist/types/components/index.d.ts +8 -3
  28. package/dist/types/stories/Modal.story.vue.d.ts +2 -0
  29. package/package.json +18 -6
  30. package/src/assets/fonts.scss +44 -0
  31. package/src/assets/forms.scss +375 -0
  32. package/src/assets/main.scss +9 -12
  33. package/src/components/CheckboxInput.vue +27 -0
  34. package/src/components/CjaButton.vue +65 -0
  35. package/src/components/Modal.vue +191 -0
  36. package/src/components/PhoneInput.vue +91 -0
  37. package/src/components/TextInput.vue +72 -0
  38. package/src/components/index.ts +14 -4
  39. package/src/env.d.ts +5 -4
  40. package/src/index.ts +3 -0
  41. package/src/stories/Modal.story.vue +18 -0
  42. package/src/assets/fonts/myfont.woff +0 -0
package/README.md CHANGED
@@ -30,6 +30,7 @@ If you want to test the library in your Vue3 app locally:
30
30
  - In the root folder of this library, run `npm link`. This will create a symbolic link to the library.
31
31
  - In the root folder of your client app, run `npm link cja-phoenix`. This will add the symbolic link to the `node_modules` folder in your client app.
32
32
  - You can now import `cja-phoenix` in your client app.
33
+ - The library can be installed on your app with the `App.use()` function (You may need to add `//@ts-ignore` when using the library in link mode)
33
34
 
34
35
  There is no need to add `cja-phoenix` to your client app's dependency in this case.
35
36