@citizenplane/pimp 8.11.2 → 8.12.0

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 (52) hide show
  1. package/README.md +0 -2
  2. package/dist/pimp.es.js +1146 -1139
  3. package/dist/pimp.umd.js +3 -3
  4. package/dist/style.css +1 -1
  5. package/package.json +26 -4
  6. package/src/README.md +0 -25
  7. package/src/assets/styles/base/_base.scss +1 -5
  8. package/src/assets/styles/utilities/_index.scss +19 -0
  9. package/src/components/core/BaseInputLabel.vue +0 -2
  10. package/src/components/date-pickers/CpDate.vue +8 -5
  11. package/src/components/inputs/CpInput.vue +5 -16
  12. package/src/components/inputs/CpTextarea.vue +4 -6
  13. package/src/components/selects/CpSelect.vue +5 -5
  14. package/src/stories/BaseInputLabel.stories.ts +35 -0
  15. package/src/stories/CpAlert.stories.ts +90 -0
  16. package/src/stories/CpBadge.stories.ts +158 -0
  17. package/src/stories/CpButton.stories.ts +134 -0
  18. package/src/stories/CpCheckbox.stories.ts +184 -0
  19. package/src/stories/CpDate.stories.ts +110 -0
  20. package/src/stories/CpDatepicker.stories.ts +162 -0
  21. package/src/stories/CpDialog.stories.ts +53 -0
  22. package/src/stories/CpHeading.stories.ts +77 -0
  23. package/src/stories/CpIcon.stories.ts +79 -0
  24. package/src/stories/CpInput.stories.ts +155 -0
  25. package/src/stories/CpLoader.stories.ts +29 -0
  26. package/src/stories/CpRadio.stories.ts +139 -0
  27. package/src/stories/CpSelect.stories.ts +147 -0
  28. package/src/stories/CpSelectMenu.stories.ts +132 -0
  29. package/src/stories/CpSwitch.stories.ts +137 -0
  30. package/src/stories/CpTable.stories.ts +192 -0
  31. package/src/stories/CpTableEmptyState.stories.ts +34 -0
  32. package/src/stories/CpTextarea.stories.ts +112 -0
  33. package/src/stories/CpToaster.stories.ts +147 -0
  34. package/src/stories/CpTooltip.stories.ts +101 -0
  35. package/src/stories/TransitionExpand.stories.ts +85 -0
  36. package/vitest.workspace.js +31 -0
  37. package/src/App.vue +0 -110
  38. package/src/components/core/playground-sections/SectionAtomicElements.vue +0 -83
  39. package/src/components/core/playground-sections/SectionButtons.vue +0 -142
  40. package/src/components/core/playground-sections/SectionContainer.vue +0 -50
  41. package/src/components/core/playground-sections/SectionDatePickers.vue +0 -160
  42. package/src/components/core/playground-sections/SectionDialog.vue +0 -47
  43. package/src/components/core/playground-sections/SectionFeedbackIndicators.vue +0 -47
  44. package/src/components/core/playground-sections/SectionInputs.vue +0 -46
  45. package/src/components/core/playground-sections/SectionListsAndTables.vue +0 -268
  46. package/src/components/core/playground-sections/SectionSelectMenus.vue +0 -98
  47. package/src/components/core/playground-sections/SectionSelects.vue +0 -120
  48. package/src/components/core/playground-sections/SectionSimpleInputs.vue +0 -305
  49. package/src/components/core/playground-sections/SectionToasters.vue +0 -68
  50. package/src/components/core/playground-sections/SectionToggles.vue +0 -158
  51. package/src/components/core/playground-sections/SectionTypography.vue +0 -40
  52. package/src/main.js +0 -15
package/README.md CHANGED
@@ -146,8 +146,6 @@ npm run dev
146
146
 
147
147
  Now you can visit `http://localhost:8080/` in your browser.
148
148
 
149
- Documentation code is under the `docs` directory. A big portion of these docs are written in markdown using Vuepress, if you've never used Vuepress before, check out these [docs](https://vuepress.vuejs.org/guide/).
150
-
151
149
  ### 🏆 Step 4. Making your pull request
152
150
 
153
151
  To be done