@designcrowd/fe-shared-lib 1.5.20-BestLogoIcons-3 → 1.5.20-ast-icons

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 (37) hide show
  1. package/CLAUDE.md +2 -4
  2. package/Dockerfile +1 -1
  3. package/dist/css/tailwind-brandCrowd.css +2496 -0
  4. package/dist/css/tailwind-brandPage.css +2180 -0
  5. package/dist/css/tailwind-crazyDomains.css +2496 -0
  6. package/dist/css/tailwind-designCom.css +2496 -0
  7. package/dist/css/tailwind-designCrowd.css +2496 -0
  8. package/package.json +1 -1
  9. package/public/css/tailwind-brandCrowd.css +2504 -0
  10. package/public/css/tailwind-brandPage.css +2184 -0
  11. package/public/css/tailwind-crazyDomains.css +2504 -0
  12. package/public/css/tailwind-designCom.css +2504 -0
  13. package/public/css/tailwind-designCrowd.css +2504 -0
  14. package/src/atoms/components/Icon/Icon.stories.js +2 -0
  15. package/src/atoms/components/Icon/Icon.vue +4 -38
  16. package/src/atoms/components/Icon/icons/digital-business-card-filled.vue +11 -0
  17. package/src/atoms/components/Icon/icons/link-in-bio-filled.vue +11 -0
  18. package/src/useSharedLibTranslate.js +0 -2
  19. package/.claude/settings.local.json +0 -21
  20. package/.npm-publish-token +0 -1
  21. package/src/atoms/components/Icon/icons/annotate-heart.vue +0 -7
  22. package/src/atoms/components/Icon/icons/award.vue +0 -7
  23. package/src/atoms/components/Icon/icons/bezier-curve-outline.vue +0 -7
  24. package/src/atoms/components/Icon/icons/bezier-curve.vue +0 -7
  25. package/src/atoms/components/Icon/icons/browser.vue +0 -7
  26. package/src/atoms/components/Icon/icons/card-vertical.vue +0 -7
  27. package/src/atoms/components/Icon/icons/file-empty.vue +0 -7
  28. package/src/atoms/components/Icon/icons/font.vue +0 -7
  29. package/src/atoms/components/Icon/icons/headphones.vue +0 -7
  30. package/src/atoms/components/Icon/icons/image.vue +0 -7
  31. package/src/atoms/components/Icon/icons/lightning.vue +0 -7
  32. package/src/atoms/components/Icon/icons/logo.vue +0 -7
  33. package/src/atoms/components/Icon/icons/palette-outline.vue +0 -7
  34. package/src/atoms/components/Icon/icons/pen-outline.vue +0 -7
  35. package/src/atoms/components/Icon/icons/pen-sparkle.vue +0 -17
  36. package/src/atoms/components/Icon/icons/pen.vue +0 -7
  37. package/src/atoms/components/Icon/icons/sparkle-square.vue +0 -22
package/CLAUDE.md CHANGED
@@ -17,12 +17,10 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
17
17
  - `npm run lint` - Runs ESLint on TypeScript, JavaScript, and Vue files in src/
18
18
  - `npm run lint:fix` - Automatically fixes linting issues where possible
19
19
 
20
- ### Publishing Test Versions
20
+ ### Testing in UAT Environment
21
21
  To test experimental versions without publishing to production:
22
22
  1. Update package.json version to `[current]-[description]`
23
- 2. Check for a local publish token at `.npm-publish-token` (gitignored)
24
- - If it exists: `NPM_TOKEN=$(cat .npm-publish-token) npm run docker:publish`
25
- - If not: Ask the user for their NPM token with publish permissions
23
+ 2. Run `docker build . --build-arg NPM_TOKEN=$NPM_TOKEN`
26
24
  3. Update consumer package reference to the new version
27
25
 
28
26
  ## Architecture Overview
package/Dockerfile CHANGED
@@ -18,7 +18,7 @@ COPY npmrc .
18
18
  RUN mv npmrc .npmrc
19
19
 
20
20
  ARG NPM_TOKEN
21
- ENV NPM_TOKEN=$NPM_TOKEN
21
+ RUN echo $NPM_TOKEN
22
22
 
23
23
  RUN npm i
24
24