@nextop-os/ui-system 0.0.17 → 0.0.18

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 (40) hide show
  1. package/AGENTS.md +30 -8
  2. package/README.md +11 -14
  3. package/agent/install-skill.mjs +65 -5
  4. package/agent/nextop-ui-system/SKILL.md +119 -8
  5. package/agent/nextop-ui-system/references/extract-base-component.md +50 -6
  6. package/agent/nextop-ui-system/references/maintain-inventory.md +5 -0
  7. package/agent/nextop-ui-system/references/promote-business-component.md +94 -208
  8. package/dist/chunk-GE5YVRTV.js +859 -0
  9. package/dist/chunk-GE5YVRTV.js.map +1 -0
  10. package/dist/chunk-KJQ366TA.js +70 -0
  11. package/dist/chunk-KJQ366TA.js.map +1 -0
  12. package/dist/chunk-LVHEV755.js +2553 -0
  13. package/dist/chunk-LVHEV755.js.map +1 -0
  14. package/dist/components/index.d.ts +162 -11
  15. package/dist/components/index.js +62 -2
  16. package/dist/date-format.d.ts +6 -0
  17. package/dist/date-format.js +11 -0
  18. package/dist/date-format.js.map +1 -0
  19. package/dist/dev-vite.js +12 -5
  20. package/dist/dev-vite.js.map +1 -1
  21. package/dist/icons/index.d.ts +90 -47
  22. package/dist/icons/index.js +91 -11
  23. package/dist/index.d.ts +3 -2
  24. package/dist/index.js +159 -11
  25. package/dist/metadata/components.json +1320 -265
  26. package/dist/metadata/components.schema.json +4 -0
  27. package/dist/metadata/index.d.ts +3 -1
  28. package/dist/metadata/index.js +1320 -265
  29. package/dist/metadata/index.js.map +1 -1
  30. package/dist/styles/base.css +85 -0
  31. package/dist/styles/index.css +1 -0
  32. package/dist/styles/semantic.css +7 -0
  33. package/dist/styles/theme.css +82 -1
  34. package/package.json +10 -3
  35. package/ui-system.md +640 -0
  36. package/UI_SYSTEM_GUIDELINES.md +0 -148
  37. package/dist/chunk-FT633NLJ.js +0 -1159
  38. package/dist/chunk-FT633NLJ.js.map +0 -1
  39. package/dist/chunk-NFSMZKML.js +0 -208
  40. package/dist/chunk-NFSMZKML.js.map +0 -1
@@ -68,6 +68,10 @@
68
68
  "utility"
69
69
  ]
70
70
  },
71
+ "iconVariant": {
72
+ "type": "string",
73
+ "enum": ["lined", "filled"]
74
+ },
71
75
  "status": {
72
76
  "type": "string",
73
77
  "enum": ["experimental", "stable", "deprecated"]
@@ -1,6 +1,7 @@
1
1
  type UISystemComponentCategory = "primitive" | "composition" | "icon" | "style-entry" | "utility";
2
2
  type UISystemComponentStatus = "experimental" | "stable" | "deprecated";
3
3
  type UISystemComponentLayer = "base" | "business";
4
+ type UISystemIconVariant = "lined" | "filled";
4
5
  interface UISystemComponentMetadata {
5
6
  id: string;
6
7
  layer: UISystemComponentLayer;
@@ -10,6 +11,7 @@ interface UISystemComponentMetadata {
10
11
  category: UISystemComponentCategory;
11
12
  status: UISystemComponentStatus;
12
13
  source: string;
14
+ iconVariant?: UISystemIconVariant;
13
15
  propsType?: string;
14
16
  description: string;
15
17
  useCases: string[];
@@ -22,4 +24,4 @@ interface UISystemMetadata {
22
24
  }
23
25
  declare const uiSystemMetadata: UISystemMetadata;
24
26
 
25
- export { type UISystemComponentCategory, type UISystemComponentLayer, type UISystemComponentMetadata, type UISystemComponentStatus, type UISystemMetadata, uiSystemMetadata };
27
+ export { type UISystemComponentCategory, type UISystemComponentLayer, type UISystemComponentMetadata, type UISystemComponentStatus, type UISystemIconVariant, type UISystemMetadata, uiSystemMetadata };