cja-phoenix 0.3.6 → 0.3.7

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 (47) hide show
  1. package/README.md +2 -2
  2. package/dist/cja-phoenix.es.js +2412 -2423
  3. package/dist/types/components/composite/CheckoutCrossSell.vue.d.ts +24 -31
  4. package/dist/types/components/composite/CheckoutLayout.vue.d.ts +14 -11
  5. package/dist/types/components/composite/CheckoutMilestones.vue.d.ts +13 -10
  6. package/dist/types/components/composite/CjaMenuBar.vue.d.ts +32 -25
  7. package/dist/types/components/composite/FunnelLayout.vue.d.ts +20 -23
  8. package/dist/types/components/composite/FunnelSubmit.vue.d.ts +16 -15
  9. package/dist/types/components/composite/FunnelSummary.vue.d.ts +55 -54
  10. package/dist/types/components/composite/FunnelTitle.vue.d.ts +17 -22
  11. package/dist/types/components/composite/InfoShowcase.vue.d.ts +21 -24
  12. package/dist/types/components/composite/JourneyMacroSteps.vue.d.ts +13 -10
  13. package/dist/types/components/forms/CheckboxInput.vue.d.ts +32 -33
  14. package/dist/types/components/forms/CurrencyInput.vue.d.ts +53 -80
  15. package/dist/types/components/forms/FileInput.vue.d.ts +67 -92
  16. package/dist/types/components/forms/NumberInput.vue.d.ts +47 -62
  17. package/dist/types/components/forms/PhoneInput.vue.d.ts +57 -92
  18. package/dist/types/components/forms/RadioInput.vue.d.ts +38 -53
  19. package/dist/types/components/forms/SelectInput.vue.d.ts +67 -108
  20. package/dist/types/components/forms/SelectionTiles.vue.d.ts +41 -54
  21. package/dist/types/components/forms/TextInput.vue.d.ts +61 -104
  22. package/dist/types/components/forms/TileCheckboxInput.vue.d.ts +20 -31
  23. package/dist/types/components/forms/ToggleInput.vue.d.ts +44 -63
  24. package/dist/types/components/forms/structure/InputContainer.vue.d.ts +14 -9
  25. package/dist/types/components/forms/structure/InputError.vue.d.ts +13 -10
  26. package/dist/types/components/forms/structure/InputTitle.vue.d.ts +17 -22
  27. package/dist/types/components/structural/CjaButton.vue.d.ts +42 -47
  28. package/dist/types/components/structural/CollapseContainer.vue.d.ts +33 -22
  29. package/dist/types/components/structural/ContentTabs.vue.d.ts +17 -20
  30. package/dist/types/components/structural/FixedContainer.vue.d.ts +55 -56
  31. package/dist/types/components/structural/GridContainer.vue.d.ts +26 -11
  32. package/dist/types/components/structural/GridItem.vue.d.ts +18 -21
  33. package/dist/types/components/structural/InfoMessage.vue.d.ts +20 -29
  34. package/dist/types/components/structural/LoadingSpinner.vue.d.ts +16 -15
  35. package/dist/types/components/structural/Modal.vue.d.ts +15 -10
  36. package/package.json +3 -6
  37. package/src/utils/cjaStore.ts +7 -15
  38. package/dist/types/histoire.setup.d.ts +0 -2
  39. package/dist/types/stories/CjaButton.story.vue.d.ts +0 -2
  40. package/dist/types/stories/ContentTabs.story.vue.d.ts +0 -2
  41. package/dist/types/stories/Modal.story.vue.d.ts +0 -2
  42. package/src/histoire.setup.ts +0 -2
  43. package/src/stories/CjaButton.story.vue +0 -192
  44. package/src/stories/ContentTabs.story.vue +0 -59
  45. package/src/stories/Modal.story.vue +0 -88
  46. /package/src/utils/{GetI18nMessages.ts → getI18nMessages.ts} +0 -0
  47. /package/src/utils/{JsonReviver.ts → jsonReviver.ts} +0 -0
package/README.md CHANGED
@@ -32,9 +32,9 @@ If you want to test the library in your Vue3 app locally:
32
32
  - You can now import `cja-phoenix` in your client app.
33
33
  - The library can be installed on your app with the `App.use()` function
34
34
 
35
- In order to expedite this process, the `npm run build:link` can be used on Phoenix's side to build and link the library
35
+ If you made changes to the library, you will need to run `npm run build:link` on Phoenix's side and `npm run reload` on the client app's side.
36
36
 
37
- If you made changes to the library, you will need to run `npm run build:link`
37
+ > It is advised to add the script `"reset:packages": "npm unlink cja-phoenix && npm i cja-phoenix@latest"`to the client app in order to make the process of clearing the npm link and updating the cja-phoenix version easier. Simply run it after you have made your changes and published them, the script will automatically clean up the package lock file and reinstall the latest cja-phoenix version.
38
38
 
39
39
  ## Publishing
40
40