+ Tags describe variants so they can be filtered at render time (for example + mood:happy or hairLength:long). Each tag is + category or category:value in camelCase. Press Enter or comma to add one. +
+ +{{ normalizeError }}
diff --git a/src/ui/stores/plugin.ts b/src/ui/stores/plugin.ts index e451821..5d93906 100644 --- a/src/ui/stores/plugin.ts +++ b/src/ui/stores/plugin.ts @@ -6,7 +6,7 @@ import type { ExportData, NormalizeData } from '../types'; export type SceneType = 'loading' | 'loaded' | 'error'; -export type ComponentTab = 'settings' | 'weights' | 'normalize'; +export type ComponentTab = 'settings' | 'weights' | 'tags' | 'normalize'; export type StageKind = 'general' | 'package' | 'license' | 'hook' | 'component' | 'color'; diff --git a/src/ui/types.ts b/src/ui/types.ts index 53c9fbc..01227ca 100644 --- a/src/ui/types.ts +++ b/src/ui/types.ts @@ -25,6 +25,7 @@ export type RangeValue = DefinitionRange | null; export type ComponentGroupSettings = { defaults: Record