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.
- package/README.md +2 -2
- package/dist/cja-phoenix.es.js +2412 -2423
- package/dist/types/components/composite/CheckoutCrossSell.vue.d.ts +24 -31
- package/dist/types/components/composite/CheckoutLayout.vue.d.ts +14 -11
- package/dist/types/components/composite/CheckoutMilestones.vue.d.ts +13 -10
- package/dist/types/components/composite/CjaMenuBar.vue.d.ts +32 -25
- package/dist/types/components/composite/FunnelLayout.vue.d.ts +20 -23
- package/dist/types/components/composite/FunnelSubmit.vue.d.ts +16 -15
- package/dist/types/components/composite/FunnelSummary.vue.d.ts +55 -54
- package/dist/types/components/composite/FunnelTitle.vue.d.ts +17 -22
- package/dist/types/components/composite/InfoShowcase.vue.d.ts +21 -24
- package/dist/types/components/composite/JourneyMacroSteps.vue.d.ts +13 -10
- package/dist/types/components/forms/CheckboxInput.vue.d.ts +32 -33
- package/dist/types/components/forms/CurrencyInput.vue.d.ts +53 -80
- package/dist/types/components/forms/FileInput.vue.d.ts +67 -92
- package/dist/types/components/forms/NumberInput.vue.d.ts +47 -62
- package/dist/types/components/forms/PhoneInput.vue.d.ts +57 -92
- package/dist/types/components/forms/RadioInput.vue.d.ts +38 -53
- package/dist/types/components/forms/SelectInput.vue.d.ts +67 -108
- package/dist/types/components/forms/SelectionTiles.vue.d.ts +41 -54
- package/dist/types/components/forms/TextInput.vue.d.ts +61 -104
- package/dist/types/components/forms/TileCheckboxInput.vue.d.ts +20 -31
- package/dist/types/components/forms/ToggleInput.vue.d.ts +44 -63
- package/dist/types/components/forms/structure/InputContainer.vue.d.ts +14 -9
- package/dist/types/components/forms/structure/InputError.vue.d.ts +13 -10
- package/dist/types/components/forms/structure/InputTitle.vue.d.ts +17 -22
- package/dist/types/components/structural/CjaButton.vue.d.ts +42 -47
- package/dist/types/components/structural/CollapseContainer.vue.d.ts +33 -22
- package/dist/types/components/structural/ContentTabs.vue.d.ts +17 -20
- package/dist/types/components/structural/FixedContainer.vue.d.ts +55 -56
- package/dist/types/components/structural/GridContainer.vue.d.ts +26 -11
- package/dist/types/components/structural/GridItem.vue.d.ts +18 -21
- package/dist/types/components/structural/InfoMessage.vue.d.ts +20 -29
- package/dist/types/components/structural/LoadingSpinner.vue.d.ts +16 -15
- package/dist/types/components/structural/Modal.vue.d.ts +15 -10
- package/package.json +3 -6
- package/src/utils/cjaStore.ts +7 -15
- package/dist/types/histoire.setup.d.ts +0 -2
- package/dist/types/stories/CjaButton.story.vue.d.ts +0 -2
- package/dist/types/stories/ContentTabs.story.vue.d.ts +0 -2
- package/dist/types/stories/Modal.story.vue.d.ts +0 -2
- package/src/histoire.setup.ts +0 -2
- package/src/stories/CjaButton.story.vue +0 -192
- package/src/stories/ContentTabs.story.vue +0 -59
- package/src/stories/Modal.story.vue +0 -88
- /package/src/utils/{GetI18nMessages.ts → getI18nMessages.ts} +0 -0
- /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
|
-
|
|
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
|
-
|
|
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
|
|