@noobsociety/nsds 0.1.2 → 0.2.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 (73) hide show
  1. package/CHANGELOG.md +24 -3
  2. package/README.md +347 -193
  3. package/dist/components/hud/HUDBar.d.ts +17 -0
  4. package/dist/components/hud/HUDDivider.d.ts +11 -0
  5. package/dist/components/hud/HUDLabel.d.ts +17 -0
  6. package/dist/components/icons/RPGIcon.d.ts +42 -0
  7. package/dist/index.cjs +1 -0
  8. package/dist/index.d.ts +18 -0
  9. package/dist/index.js +587 -0
  10. package/{styles.css → dist/styles.css} +1 -0
  11. package/dist/tailwind/package.json +1 -0
  12. package/dist/tailwind/preset.js +144 -0
  13. package/{tokens → dist/tokens}/colors.css +25 -19
  14. package/dist/tokens/hud.css +133 -0
  15. package/{tokens → dist/tokens}/motion.css +9 -9
  16. package/{tokens → dist/tokens}/spacing.css +9 -16
  17. package/{tokens → dist/tokens}/typography.css +2 -2
  18. package/package.json +34 -62
  19. package/SKILL.md +0 -18
  20. package/assets/bg.png +0 -0
  21. package/assets/bloop.png +0 -0
  22. package/assets/hero.png +0 -0
  23. package/assets/lamp.png +0 -0
  24. package/assets/logo.png +0 -0
  25. package/assets/mailbox.png +0 -0
  26. package/assets/plaza.png +0 -0
  27. package/assets/prickle.png +0 -0
  28. package/assets/sign.png +0 -0
  29. package/components/buttons/Button.js +0 -55
  30. package/components/buttons/Button.prompt.md +0 -22
  31. package/components/buttons/buttons.card.html +0 -24
  32. package/components/cards/FeatureCard.js +0 -36
  33. package/components/cards/FeatureCard.prompt.md +0 -17
  34. package/components/cards/QuestCard.js +0 -27
  35. package/components/cards/QuestCard.prompt.md +0 -19
  36. package/components/cards/cards.card.html +0 -54
  37. package/components/navigation/SectionArrow.js +0 -28
  38. package/components/navigation/navigation.card.html +0 -29
  39. package/components/react/index.d.ts +0 -11
  40. package/components/react/index.js +0 -4
  41. package/components/shared/styles.js +0 -22
  42. package/guidelines/brand.card.html +0 -41
  43. package/guidelines/colors.card.html +0 -43
  44. package/guidelines/motion.card.html +0 -24
  45. package/guidelines/pixel-accents.card.html +0 -50
  46. package/guidelines/radii-shadows.card.html +0 -28
  47. package/guidelines/semantic-colors.card.html +0 -30
  48. package/guidelines/spacing.card.html +0 -53
  49. package/guidelines/sprites.card.html +0 -22
  50. package/guidelines/type.card.html +0 -24
  51. package/index.d.ts +0 -1
  52. package/index.js +0 -1
  53. package/mui-theme/ThemeProvider.js +0 -14
  54. package/mui-theme/ThemeProvider.tsx +0 -20
  55. package/mui-theme/examples/FeatureCard.tsx +0 -52
  56. package/mui-theme/examples/QuestStatusChip.tsx +0 -41
  57. package/mui-theme/examples/SectionHeader.tsx +0 -44
  58. package/mui-theme/index.d.ts +0 -49
  59. package/mui-theme/index.js +0 -2
  60. package/mui-theme/index.ts +0 -2
  61. package/mui-theme/preview.dc.html +0 -195
  62. package/mui-theme/support.js +0 -1513
  63. package/mui-theme/theme.js +0 -594
  64. package/mui-theme/theme.ts +0 -604
  65. package/references/noobsociety-monokai.dc.html +0 -360
  66. package/support.js +0 -1513
  67. package/ui-kits/homepage/index.html +0 -319
  68. /package/{components → dist/components}/buttons/Button.d.ts +0 -0
  69. /package/{components → dist/components}/cards/FeatureCard.d.ts +0 -0
  70. /package/{components → dist/components}/cards/QuestCard.d.ts +0 -0
  71. /package/{components → dist/components}/navigation/SectionArrow.d.ts +0 -0
  72. /package/{components → dist/components}/primitives.css +0 -0
  73. /package/{tokens → dist/tokens}/base.css +0 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  All notable changes to NSDS are documented here.
4
4
 
5
+ ## 0.2.0 - 2026-06-20
6
+
7
+ ### Added
8
+
9
+ - Tailwind preset export for mapping `--ns-*` design tokens into utility classes.
10
+ - HUD token file and HUD React primitives for game-layer UI.
11
+ - RPG icon React component and icon reference card.
12
+ - Lab homepage and game HUD reference surfaces for internal design work.
13
+
14
+ ### Changed
15
+
16
+ - Package output now builds from JSX source into `dist/` with ESM, CommonJS, TypeScript declarations, CSS, tokens, primitives, and Tailwind preset files.
17
+ - Public package surface is React, Tailwind, CSS tokens, and primitives only.
18
+ - Canonical component runtime sources now use `.jsx` files.
19
+ - README package exports and repo layout now match the published package boundary.
20
+
21
+ ### Removed
22
+
23
+ - Legacy theme package surface, dependencies, docs, tests, and source files.
24
+ - Duplicate compiled component runtime source files.
25
+ - Superseded `ui-kits/` homepage path.
26
+
5
27
  ## 0.1.2 - 2026-06-18
6
28
 
7
29
  ### Added
@@ -11,15 +33,14 @@ All notable changes to NSDS are documented here.
11
33
  - Repository contribution, security, issue, pull request, and dependency update templates.
12
34
  - Package validation scripts for exports, required files, and publish hygiene.
13
35
  - React smoke tests for the public component entry points.
14
- - JavaScript runtime and TypeScript declarations for `@noobsociety/nsds/mui`.
15
36
  - TypeScript smoke validation for consumer-facing package imports.
37
+ - Tailwind preset export for token-mapped utility classes.
16
38
  - Prioritized README roadmap and reference standards for documentation, changelog, versioning, release, and component documentation workflows.
17
39
 
18
40
  ### Changed
19
41
 
20
42
  - Updated README language for the public npm package and repository.
21
43
  - Documented the TypeScript and testing roadmap.
22
- - Pointed the public MUI export at package-ready JavaScript instead of raw TypeScript source.
23
44
 
24
45
  ## 0.1.1 - 2026-06-18
25
46
 
@@ -32,4 +53,4 @@ All notable changes to NSDS are documented here.
32
53
 
33
54
  ### Added
34
55
 
35
- - Initial NSDS package with tokens, CSS primitives, React components, MUI theme source, assets, guidelines, references, and UI kits.
56
+ - Initial NSDS package with tokens, CSS primitives, React components, assets, guidelines, references, and UI kits.