@ed.yakovich/example-component-library-cart 1.0.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 (48) hide show
  1. package/dist/component/index.js +5 -0
  2. package/dist/index-0d8e0844-BJzWsYCM.js +7403 -0
  3. package/dist/index-BxV0kYe9.js +29847 -0
  4. package/dist/index-b30029d4-CTeQ2rRV.js +12 -0
  5. package/dist/index-e6818ded-r_t6ryaW.js +57 -0
  6. package/dist/index.esm-322571ff-D1REhsOg.js +41 -0
  7. package/dist/lib/component/index.d.ts +5 -0
  8. package/dist/lib/main.d.ts +2 -0
  9. package/dist/main.js +4 -0
  10. package/dist/prism-accordion.entry-C4nkKzLS.js +51 -0
  11. package/dist/prism-avatar_2.entry-j4bKOZ1i.js +68 -0
  12. package/dist/prism-badge.entry-CORW2CqW.js +58 -0
  13. package/dist/prism-banner.entry-CprOdWia.js +82 -0
  14. package/dist/prism-breadcrumb.entry-xiw4bG93.js +33 -0
  15. package/dist/prism-button_2.entry-DUwO281s.js +110 -0
  16. package/dist/prism-card.entry-CZsf96NE.js +119 -0
  17. package/dist/prism-carousel.entry-D2mA1Qvi.js +3111 -0
  18. package/dist/prism-checkbox-group.entry-BHJq-vqM.js +62 -0
  19. package/dist/prism-checkbox.entry-BalG1vVO.js +99 -0
  20. package/dist/prism-data-table.entry-DZNrf0SH.js +10475 -0
  21. package/dist/prism-datepicker.entry-BTOUgfy_.js +249 -0
  22. package/dist/prism-form.entry-CUBfElIu.js +42 -0
  23. package/dist/prism-grid.entry-Wb_yAYBw.js +28 -0
  24. package/dist/prism-header.entry-BiqC1Zzy.js +202 -0
  25. package/dist/prism-hero.entry-BUJpcDRi.js +23 -0
  26. package/dist/prism-icon_2.entry-CU1qTspF.js +118 -0
  27. package/dist/prism-image.entry-yfXt1axa.js +38 -0
  28. package/dist/prism-input-file.entry-B2tgFyf1.js +119 -0
  29. package/dist/prism-input-otp.entry-fQ0jceiy.js +63 -0
  30. package/dist/prism-input-text.entry-BNbU4aSw.js +228 -0
  31. package/dist/prism-input-textarea.entry-DHo6OAWX.js +140 -0
  32. package/dist/prism-layout.entry-Bk40kKpQ.js +20 -0
  33. package/dist/prism-lineitem.entry-GrTHZTVw.js +44 -0
  34. package/dist/prism-menu.entry-BTvsSqWq.js +231 -0
  35. package/dist/prism-modal.entry-Ep5oXBNW.js +94 -0
  36. package/dist/prism-pagination.entry-DeS2ZUmr.js +60 -0
  37. package/dist/prism-popover.entry-Cx46oorl.js +1013 -0
  38. package/dist/prism-popper.entry-CkT-8s7x.js +959 -0
  39. package/dist/prism-progress.entry-Ds7Nj7ZP.js +79 -0
  40. package/dist/prism-radio-group.entry-nGhdmE4Q.js +66 -0
  41. package/dist/prism-radio.entry-B6BQdBI-.js +101 -0
  42. package/dist/prism-select.entry-t8qz0WHz.js +230 -0
  43. package/dist/prism-switch.entry-DQCd-WtJ.js +95 -0
  44. package/dist/prism-tab.entry-Cu2x3HIU.js +20 -0
  45. package/dist/prism-tabs.entry-B_uV7maR.js +70 -0
  46. package/dist/prism-tooltip.entry-BjsFpHx2.js +52 -0
  47. package/dist/prism-typeahead.entry-C1aLKCL9.js +1234 -0
  48. package/package.json +50 -0
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@ed.yakovich/example-component-library-cart",
3
+ "author": "Ed Yakovich",
4
+ "private": false,
5
+ "version": "1.0.0",
6
+ "type": "module",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/lib/main.d.ts",
10
+ "default": "./dist/main.js"
11
+ }
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "sideEffects": [
17
+ "**/*.css"
18
+ ],
19
+ "scripts": {
20
+ "dev": "vite",
21
+ "build": "tsc -b ./tsconfig.lib.json && vite build",
22
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
23
+ "preview": "vite preview"
24
+ },
25
+ "peerDependencies": {
26
+ "react": "^18.0.0 || ^19.0.0",
27
+ "react-dom": "^18.0.0 || ^19.0.0",
28
+ "@prism-ui/react": "^7.30.2",
29
+ "@tanstack/react-router": "^1.143.3"
30
+ },
31
+ "devDependencies": {
32
+ "@types/node": "^22.5.4",
33
+ "@types/react": "^18.3.5",
34
+ "@types/react-dom": "^18.3.0",
35
+ "@typescript-eslint/eslint-plugin": "^7.18.0",
36
+ "@typescript-eslint/parser": "^7.18.0",
37
+ "@vitejs/plugin-react": "^4.3.1",
38
+ "ajv": "^8.17.1",
39
+ "eslint": "^8.57.0",
40
+ "eslint-plugin-react-hooks": "^4.6.2",
41
+ "eslint-plugin-react-refresh": "^0.4.11",
42
+ "glob": "^11.0.0",
43
+ "react": "^18.3.1",
44
+ "react-dom": "^18.3.1",
45
+ "typescript": "^5.6.2",
46
+ "vite": "^5.4.4",
47
+ "vite-plugin-dts": "^4.2.1",
48
+ "vite-plugin-lib-inject-css": "^2.1.1"
49
+ }
50
+ }