@dpa-id-components/dpa-shared-components 0.2.1 → 0.2.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 (45) hide show
  1. package/README.md +27 -1
  2. package/dist/dpa-shared-components.mjs +1310 -1267
  3. package/dist/dpa-shared-components.umd.js +3 -4
  4. package/dist/style.css +1 -0
  5. package/package.json +7 -9
  6. package/dist/alert-c8e2ae08.js +0 -15
  7. package/dist/arrow-left-93c1cdc7.js +0 -15
  8. package/dist/audio-inline-92256dc7.js +0 -19
  9. package/dist/checkmark-d41d01ff.js +0 -19
  10. package/dist/chevron-down-d9cc3584.js +0 -15
  11. package/dist/chevron-left-b66f074e.js +0 -15
  12. package/dist/chevron-right-b589ab17.js +0 -17
  13. package/dist/chevron-up-6418abb0.js +0 -15
  14. package/dist/clock-02be24f4.js +0 -19
  15. package/dist/close-5d26c1d1.js +0 -15
  16. package/dist/copy-link-de7cb91d.js +0 -19
  17. package/dist/dpa-shared-components.js +0 -5685
  18. package/dist/dpa-shared-components.umd.cjs +0 -4
  19. package/dist/emoji-9480b7e3.js +0 -19
  20. package/dist/envelope-5df69adf.js +0 -15
  21. package/dist/event-babd84b5.js +0 -15
  22. package/dist/filter-e213ae59.js +0 -15
  23. package/dist/filter-outline-91e5aa0a.js +0 -19
  24. package/dist/flash-6c2fa662.js +0 -15
  25. package/dist/graphic-inline-a41ad739.js +0 -19
  26. package/dist/help-471874fe.js +0 -19
  27. package/dist/info-ee40cf5c.js +0 -15
  28. package/dist/info-filled-c86c481a.js +0 -15
  29. package/dist/lightbulb-0c284cc9.js +0 -15
  30. package/dist/more-horizontal-e7e121c3.js +0 -15
  31. package/dist/paperplane-662f4097.js +0 -15
  32. package/dist/pdf-bcee5eee.js +0 -19
  33. package/dist/pen-128f19d5.js +0 -15
  34. package/dist/picture-inline-0eb9c590.js +0 -19
  35. package/dist/pin-ce661952.js +0 -19
  36. package/dist/planning-cb43b438.js +0 -15
  37. package/dist/plus-0900f7b4.js +0 -15
  38. package/dist/search-9bebfc15.js +0 -15
  39. package/dist/share-f49b038e.js +0 -15
  40. package/dist/star-5c3c64ca.js +0 -15
  41. package/dist/star-filled-eb91b846.js +0 -15
  42. package/dist/text-inline-cbb3242f.js +0 -15
  43. package/dist/topic-354c5294.js +0 -19
  44. package/dist/union-5e751949.js +0 -19
  45. package/dist/video-inline-b961f9cd.js +0 -19
package/README.md CHANGED
@@ -41,6 +41,32 @@ The readme should contain a minimal explanation of the usage and a definition of
41
41
  events, slots...).
42
42
  Also don't forget to add an import/export in `./src/components/index.ts` to make your component available.
43
43
 
44
+ ### Link the project locally
45
+
46
+ For a better developer experience and testing in your actual it's recommended
47
+ to [link](https://docs.npmjs.com/cli/v9/commands/npm-link) the package locally.
48
+ For that run
49
+
50
+ ```shell
51
+ npm link
52
+ ```
53
+
54
+ in the root of your cloned shared components and
55
+
56
+ ```shell
57
+ npm link "@dpa-id-components/dpa-shared-components"
58
+ ```
59
+
60
+ in your target project.
61
+
62
+ Don't forget to run
63
+
64
+ ```shell
65
+ npm run build
66
+ ```
67
+
68
+ before linking or otherwise you wouldn't have a dist folder.
69
+
44
70
  ### Tests
45
71
 
46
72
  Tests are based on [vitest](https://vitest.dev/) and [Vue Test Utils 2](https://test-utils.vuejs.org/) running in
@@ -93,4 +119,4 @@ To publish a new release just run one of the following (depending on the kind of
93
119
  npm run release:patch
94
120
  npm run release:minor
95
121
  npm run release:major
96
- ```
122
+ ```