@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.
- package/AGENTS.md +30 -8
- package/README.md +11 -14
- package/agent/install-skill.mjs +65 -5
- package/agent/nextop-ui-system/SKILL.md +119 -8
- package/agent/nextop-ui-system/references/extract-base-component.md +50 -6
- package/agent/nextop-ui-system/references/maintain-inventory.md +5 -0
- package/agent/nextop-ui-system/references/promote-business-component.md +94 -208
- package/dist/chunk-GE5YVRTV.js +859 -0
- package/dist/chunk-GE5YVRTV.js.map +1 -0
- package/dist/chunk-KJQ366TA.js +70 -0
- package/dist/chunk-KJQ366TA.js.map +1 -0
- package/dist/chunk-LVHEV755.js +2553 -0
- package/dist/chunk-LVHEV755.js.map +1 -0
- package/dist/components/index.d.ts +162 -11
- package/dist/components/index.js +62 -2
- package/dist/date-format.d.ts +6 -0
- package/dist/date-format.js +11 -0
- package/dist/date-format.js.map +1 -0
- package/dist/dev-vite.js +12 -5
- package/dist/dev-vite.js.map +1 -1
- package/dist/icons/index.d.ts +90 -47
- package/dist/icons/index.js +91 -11
- package/dist/index.d.ts +3 -2
- package/dist/index.js +159 -11
- package/dist/metadata/components.json +1320 -265
- package/dist/metadata/components.schema.json +4 -0
- package/dist/metadata/index.d.ts +3 -1
- package/dist/metadata/index.js +1320 -265
- package/dist/metadata/index.js.map +1 -1
- package/dist/styles/base.css +85 -0
- package/dist/styles/index.css +1 -0
- package/dist/styles/semantic.css +7 -0
- package/dist/styles/theme.css +82 -1
- package/package.json +10 -3
- package/ui-system.md +640 -0
- package/UI_SYSTEM_GUIDELINES.md +0 -148
- package/dist/chunk-FT633NLJ.js +0 -1159
- package/dist/chunk-FT633NLJ.js.map +0 -1
- package/dist/chunk-NFSMZKML.js +0 -208
- package/dist/chunk-NFSMZKML.js.map +0 -1
package/dist/metadata/index.d.ts
CHANGED
|
@@ -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 };
|