@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.
- package/CHANGELOG.md +24 -3
- package/README.md +347 -193
- package/dist/components/hud/HUDBar.d.ts +17 -0
- package/dist/components/hud/HUDDivider.d.ts +11 -0
- package/dist/components/hud/HUDLabel.d.ts +17 -0
- package/dist/components/icons/RPGIcon.d.ts +42 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +587 -0
- package/{styles.css → dist/styles.css} +1 -0
- package/dist/tailwind/package.json +1 -0
- package/dist/tailwind/preset.js +144 -0
- package/{tokens → dist/tokens}/colors.css +25 -19
- package/dist/tokens/hud.css +133 -0
- package/{tokens → dist/tokens}/motion.css +9 -9
- package/{tokens → dist/tokens}/spacing.css +9 -16
- package/{tokens → dist/tokens}/typography.css +2 -2
- package/package.json +34 -62
- package/SKILL.md +0 -18
- package/assets/bg.png +0 -0
- package/assets/bloop.png +0 -0
- package/assets/hero.png +0 -0
- package/assets/lamp.png +0 -0
- package/assets/logo.png +0 -0
- package/assets/mailbox.png +0 -0
- package/assets/plaza.png +0 -0
- package/assets/prickle.png +0 -0
- package/assets/sign.png +0 -0
- package/components/buttons/Button.js +0 -55
- package/components/buttons/Button.prompt.md +0 -22
- package/components/buttons/buttons.card.html +0 -24
- package/components/cards/FeatureCard.js +0 -36
- package/components/cards/FeatureCard.prompt.md +0 -17
- package/components/cards/QuestCard.js +0 -27
- package/components/cards/QuestCard.prompt.md +0 -19
- package/components/cards/cards.card.html +0 -54
- package/components/navigation/SectionArrow.js +0 -28
- package/components/navigation/navigation.card.html +0 -29
- package/components/react/index.d.ts +0 -11
- package/components/react/index.js +0 -4
- package/components/shared/styles.js +0 -22
- package/guidelines/brand.card.html +0 -41
- package/guidelines/colors.card.html +0 -43
- package/guidelines/motion.card.html +0 -24
- package/guidelines/pixel-accents.card.html +0 -50
- package/guidelines/radii-shadows.card.html +0 -28
- package/guidelines/semantic-colors.card.html +0 -30
- package/guidelines/spacing.card.html +0 -53
- package/guidelines/sprites.card.html +0 -22
- package/guidelines/type.card.html +0 -24
- package/index.d.ts +0 -1
- package/index.js +0 -1
- package/mui-theme/ThemeProvider.js +0 -14
- package/mui-theme/ThemeProvider.tsx +0 -20
- package/mui-theme/examples/FeatureCard.tsx +0 -52
- package/mui-theme/examples/QuestStatusChip.tsx +0 -41
- package/mui-theme/examples/SectionHeader.tsx +0 -44
- package/mui-theme/index.d.ts +0 -49
- package/mui-theme/index.js +0 -2
- package/mui-theme/index.ts +0 -2
- package/mui-theme/preview.dc.html +0 -195
- package/mui-theme/support.js +0 -1513
- package/mui-theme/theme.js +0 -594
- package/mui-theme/theme.ts +0 -604
- package/references/noobsociety-monokai.dc.html +0 -360
- package/support.js +0 -1513
- package/ui-kits/homepage/index.html +0 -319
- /package/{components → dist/components}/buttons/Button.d.ts +0 -0
- /package/{components → dist/components}/cards/FeatureCard.d.ts +0 -0
- /package/{components → dist/components}/cards/QuestCard.d.ts +0 -0
- /package/{components → dist/components}/navigation/SectionArrow.d.ts +0 -0
- /package/{components → dist/components}/primitives.css +0 -0
- /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,
|
|
56
|
+
- Initial NSDS package with tokens, CSS primitives, React components, assets, guidelines, references, and UI kits.
|