@lucasvu/scope-ui 0.0.4 → 0.0.6

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/dist/index.js CHANGED
@@ -6624,6 +6624,8 @@ var uiAiManifest = {
6624
6624
  styleImport: "@lucasvu/scope-ui/styles.css",
6625
6625
  rules: [
6626
6626
  "Import the stylesheet once at the app entry before rendering any component.",
6627
+ "If the project declares an approved theme preset in AGENTS.md or ui-theme.css, stay inside that preset and do not invent a second palette.",
6628
+ "Collect the screen brief first: route url, sidebar items, active sidebar item, page title, actions, and the page-specific content schema.",
6627
6629
  "Prefer the canonical component for each intent instead of mixing legacy MainFe components.",
6628
6630
  "Use Input/Textarea/Select label props directly for simple fields; use Field only to wrap custom controls or grouped content.",
6629
6631
  "Use Select for small fixed option lists, SearchableSelect for larger local lists, Combobox for type-and-pick flows, and AsyncCombobox for remote search.",
@@ -6839,7 +6841,420 @@ var uiAiManifest = {
6839
6841
  ]
6840
6842
  };
6841
6843
 
6844
+ // src/screen-blueprint.ts
6845
+ var uiScreenBriefFields = [
6846
+ {
6847
+ id: "pageKind",
6848
+ label: "Page kind",
6849
+ description: "Choose the base recipe for the screen.",
6850
+ required: true,
6851
+ appliesTo: ["all"],
6852
+ example: "list"
6853
+ },
6854
+ {
6855
+ id: "routeUrl",
6856
+ label: "Route URL",
6857
+ description: "Final route for the screen or feature entry.",
6858
+ required: true,
6859
+ appliesTo: ["all"],
6860
+ example: "/admin/users"
6861
+ },
6862
+ {
6863
+ id: "sidebarItems",
6864
+ label: "Sidebar items",
6865
+ description: "Sidebar entries with at least id, title, and href so the shell stays consistent.",
6866
+ required: true,
6867
+ appliesTo: ["all"],
6868
+ example: '[{ id: "users", title: "Users", href: "/admin/users" }]'
6869
+ },
6870
+ {
6871
+ id: "activeSidebarItemId",
6872
+ label: "Active sidebar item id",
6873
+ description: "The sidebar item that should appear active on this screen.",
6874
+ required: true,
6875
+ appliesTo: ["all"],
6876
+ example: "users"
6877
+ },
6878
+ {
6879
+ id: "breadcrumbs",
6880
+ label: "Breadcrumbs",
6881
+ description: "Ordered breadcrumb items for the page header.",
6882
+ required: false,
6883
+ appliesTo: ["all"],
6884
+ example: '[{ label: "Admin", href: "/admin" }, { label: "Users", current: true }]'
6885
+ },
6886
+ {
6887
+ id: "pageTitle",
6888
+ label: "Page title",
6889
+ description: "Main page heading shown in the content header.",
6890
+ required: true,
6891
+ appliesTo: ["all"],
6892
+ example: "Users"
6893
+ },
6894
+ {
6895
+ id: "pageSubtitle",
6896
+ label: "Page subtitle",
6897
+ description: "Short supporting text under the title.",
6898
+ required: false,
6899
+ appliesTo: ["all"],
6900
+ example: "Manage internal user accounts and permissions."
6901
+ },
6902
+ {
6903
+ id: "primaryAction",
6904
+ label: "Primary action",
6905
+ description: "The highest-emphasis action shown in the page header.",
6906
+ required: false,
6907
+ appliesTo: ["all"],
6908
+ example: '{ label: "Create user", href: "/admin/users/create" }'
6909
+ },
6910
+ {
6911
+ id: "secondaryActions",
6912
+ label: "Secondary actions",
6913
+ description: "Additional header actions such as export, refresh, or cancel.",
6914
+ required: false,
6915
+ appliesTo: ["all"],
6916
+ example: '[{ label: "Export" }, { label: "Refresh" }]'
6917
+ },
6918
+ {
6919
+ id: "summaryStats",
6920
+ label: "Summary stats",
6921
+ description: "Top-line numbers for dashboard or overview screens.",
6922
+ required: false,
6923
+ appliesTo: ["dashboard", "detail"],
6924
+ example: '[{ label: "Active users", value: "1,204", trend: "up", delta: "+12%" }]'
6925
+ },
6926
+ {
6927
+ id: "filters",
6928
+ label: "Filters",
6929
+ description: "Filter bar controls shown above list or dashboard content.",
6930
+ required: false,
6931
+ appliesTo: ["list", "dashboard"],
6932
+ example: '[{ type: "search", label: "Search user" }, { type: "select", label: "Role" }]'
6933
+ },
6934
+ {
6935
+ id: "tableColumns",
6936
+ label: "Table columns",
6937
+ description: "Columns for a list table, including label and render intent.",
6938
+ required: false,
6939
+ appliesTo: ["list", "detail", "dashboard"],
6940
+ example: '[{ key: "name", title: "Name" }, { key: "role", title: "Role" }]'
6941
+ },
6942
+ {
6943
+ id: "rowActions",
6944
+ label: "Row actions",
6945
+ description: "Per-row actions for table screens.",
6946
+ required: false,
6947
+ appliesTo: ["list", "detail"],
6948
+ example: '[{ label: "Edit" }, { label: "Reset password" }]'
6949
+ },
6950
+ {
6951
+ id: "formSections",
6952
+ label: "Form sections",
6953
+ description: "Grouped form sections and the fields inside each section.",
6954
+ required: false,
6955
+ appliesTo: ["form"],
6956
+ example: '[{ title: "Basic info", fields: ["name", "email", "role"] }]'
6957
+ },
6958
+ {
6959
+ id: "fields",
6960
+ label: "Fields",
6961
+ description: "Detailed field list with type, label, required state, and helper text.",
6962
+ required: false,
6963
+ appliesTo: ["form", "detail"],
6964
+ example: '[{ name: "email", type: "input", label: "Email", required: true }]'
6965
+ },
6966
+ {
6967
+ id: "detailSections",
6968
+ label: "Detail sections",
6969
+ description: "Cards or sections for detail pages such as profile, activity, permissions, or related records.",
6970
+ required: false,
6971
+ appliesTo: ["detail"],
6972
+ example: '[{ title: "Profile" }, { title: "Recent activity" }]'
6973
+ },
6974
+ {
6975
+ id: "emptyState",
6976
+ label: "Empty state",
6977
+ description: "Fallback title, description, and action when there is no data.",
6978
+ required: false,
6979
+ appliesTo: ["list", "dashboard", "detail"],
6980
+ example: '{ title: "No users yet", description: "Create the first user to get started." }'
6981
+ },
6982
+ {
6983
+ id: "permissions",
6984
+ label: "Permissions",
6985
+ description: "Permission keys that affect sidebar visibility or action availability.",
6986
+ required: false,
6987
+ appliesTo: ["all"],
6988
+ example: '["user.read", "user.write"]'
6989
+ }
6990
+ ];
6991
+ var uiScreenBlueprint = {
6992
+ pageKinds: [
6993
+ {
6994
+ id: "list",
6995
+ label: "List page",
6996
+ frame: [
6997
+ "Sidebar shell",
6998
+ "Breadcrumb",
6999
+ "PageTitle with actions",
7000
+ "Optional stats",
7001
+ "Filter card",
7002
+ "DataTable card"
7003
+ ]
7004
+ },
7005
+ {
7006
+ id: "form",
7007
+ label: "Form page",
7008
+ frame: [
7009
+ "Sidebar shell",
7010
+ "Breadcrumb",
7011
+ "PageTitle with primary and cancel actions",
7012
+ "Sectioned form cards",
7013
+ "Bottom action row"
7014
+ ]
7015
+ },
7016
+ {
7017
+ id: "detail",
7018
+ label: "Detail page",
7019
+ frame: [
7020
+ "Sidebar shell",
7021
+ "Breadcrumb",
7022
+ "PageTitle with status/actions",
7023
+ "Summary stats or metadata card",
7024
+ "Detail cards and related tables"
7025
+ ]
7026
+ },
7027
+ {
7028
+ id: "dashboard",
7029
+ label: "Dashboard page",
7030
+ frame: [
7031
+ "Sidebar shell",
7032
+ "Breadcrumb",
7033
+ "PageTitle with actions",
7034
+ "Stat cards row",
7035
+ "Filters",
7036
+ "Main insight cards and tables"
7037
+ ]
7038
+ }
7039
+ ],
7040
+ workflow: [
7041
+ "Collect the screen brief before coding. Do not invent sidebar items, route urls, filters, fields, or table columns if the brief is missing.",
7042
+ "Use Sidebar plus Breadcrumb and PageTitle to lock the shell before building the page body.",
7043
+ "Choose only canonical root exports from @lucasvu/scope-ui.",
7044
+ "Use Card and ui-grid utilities to create the frame first, then place controls and data components inside.",
7045
+ "Keep all palette, radius, surface, and shadow decisions in the shared ui-theme.css preset file.",
7046
+ "End with a consistency check against the selected preset and the screen brief."
7047
+ ],
7048
+ briefFields: uiScreenBriefFields
7049
+ };
7050
+
6842
7051
  // src/theme-contract.ts
7052
+ var uiThemePresets = [
7053
+ {
7054
+ id: "ocean",
7055
+ label: "Ocean Glass",
7056
+ description: "Blue-cyan preset with clean glass surfaces. Matches the current default visual language.",
7057
+ recommendedFor: [
7058
+ "Admin dashboards",
7059
+ "SaaS CRUD screens",
7060
+ "Projects that want the existing package look"
7061
+ ],
7062
+ tokens: {
7063
+ light: {
7064
+ "--tw-background": "0 0% 100%",
7065
+ "--tw-foreground": "222.2 47.4% 11.2%",
7066
+ "--tw-primary": "221.2 83.2% 53.3%",
7067
+ "--tw-accent": "199 89% 48%",
7068
+ "--tw-success": "142.1 76.2% 36.3%",
7069
+ "--tw-destructive": "0 84.2% 60.2%",
7070
+ "--tw-border": "214.3 31.8% 91.4%",
7071
+ "--radius": "0.75rem",
7072
+ "--surface": "rgba(255, 255, 255, 0.92)",
7073
+ "--surface-strong": "rgba(241, 245, 249, 0.96)",
7074
+ "--grey": "rgba(248, 250, 252, 0.96)",
7075
+ "--grey-strong": "rgba(241, 245, 249, 0.98)",
7076
+ "--shadow-sm": "0 10px 28px -18px rgba(15, 23, 42, 0.22)",
7077
+ "--shadow": "0 24px 60px -28px rgba(15, 23, 42, 0.3)",
7078
+ "--primary-grad-from": "199 89% 48%",
7079
+ "--primary-grad-to": "221.2 83.2% 53.3%"
7080
+ },
7081
+ dark: {
7082
+ "--tw-background": "222.2 84% 4.9%",
7083
+ "--tw-foreground": "210 40% 98%",
7084
+ "--tw-primary": "217.2 91.2% 59.8%",
7085
+ "--tw-accent": "199 89% 48%",
7086
+ "--tw-success": "142.1 70.6% 45.3%",
7087
+ "--tw-destructive": "0 62.8% 30.6%",
7088
+ "--tw-border": "217.2 32.6% 17.5%",
7089
+ "--radius": "0.75rem",
7090
+ "--surface": "rgba(15, 23, 42, 0.78)",
7091
+ "--surface-strong": "rgba(30, 41, 59, 0.92)",
7092
+ "--grey": "rgba(30, 41, 59, 0.88)",
7093
+ "--grey-strong": "rgba(51, 65, 85, 0.92)",
7094
+ "--shadow-sm": "0 16px 32px -18px rgba(2, 6, 23, 0.48)",
7095
+ "--shadow": "0 28px 80px -32px rgba(2, 6, 23, 0.7)",
7096
+ "--primary-grad-from": "198.6 88.7% 48.4%",
7097
+ "--primary-grad-to": "221.2 83.2% 53.3%"
7098
+ }
7099
+ }
7100
+ },
7101
+ {
7102
+ id: "sunset",
7103
+ label: "Sunset Ember",
7104
+ description: "Warm orange-coral preset with softer cream surfaces for branded landing or growth products.",
7105
+ recommendedFor: [
7106
+ "Growth products",
7107
+ "Commerce backoffices",
7108
+ "Projects that want a warmer visual tone"
7109
+ ],
7110
+ tokens: {
7111
+ light: {
7112
+ "--tw-background": "30 100% 98%",
7113
+ "--tw-foreground": "20 24% 14%",
7114
+ "--tw-primary": "14 90% 56%",
7115
+ "--tw-accent": "29 100% 58%",
7116
+ "--tw-success": "145 63% 38%",
7117
+ "--tw-destructive": "0 78% 58%",
7118
+ "--tw-border": "24 45% 89%",
7119
+ "--radius": "0.85rem",
7120
+ "--surface": "rgba(255, 247, 240, 0.92)",
7121
+ "--surface-strong": "rgba(255, 237, 223, 0.96)",
7122
+ "--grey": "rgba(255, 243, 231, 0.96)",
7123
+ "--grey-strong": "rgba(255, 232, 214, 0.98)",
7124
+ "--shadow-sm": "0 12px 30px -18px rgba(194, 65, 12, 0.18)",
7125
+ "--shadow": "0 28px 64px -30px rgba(154, 52, 18, 0.24)",
7126
+ "--primary-grad-from": "29 100% 58%",
7127
+ "--primary-grad-to": "14 90% 56%"
7128
+ },
7129
+ dark: {
7130
+ "--tw-background": "20 24% 8%",
7131
+ "--tw-foreground": "40 33% 96%",
7132
+ "--tw-primary": "18 100% 62%",
7133
+ "--tw-accent": "35 100% 58%",
7134
+ "--tw-success": "145 60% 47%",
7135
+ "--tw-destructive": "0 73% 52%",
7136
+ "--tw-border": "18 24% 22%",
7137
+ "--radius": "0.85rem",
7138
+ "--surface": "rgba(41, 24, 18, 0.84)",
7139
+ "--surface-strong": "rgba(59, 34, 24, 0.9)",
7140
+ "--grey": "rgba(70, 42, 29, 0.88)",
7141
+ "--grey-strong": "rgba(92, 54, 38, 0.9)",
7142
+ "--shadow-sm": "0 18px 36px -20px rgba(67, 20, 7, 0.48)",
7143
+ "--shadow": "0 30px 84px -34px rgba(67, 20, 7, 0.62)",
7144
+ "--primary-grad-from": "35 100% 58%",
7145
+ "--primary-grad-to": "18 100% 62%"
7146
+ }
7147
+ }
7148
+ },
7149
+ {
7150
+ id: "forest",
7151
+ label: "Forest Mist",
7152
+ description: "Emerald-teal preset with soft botanical surfaces for calmer productivity products.",
7153
+ recommendedFor: [
7154
+ "Operations tools",
7155
+ "Internal platforms",
7156
+ "Products that want a calmer green tone"
7157
+ ],
7158
+ tokens: {
7159
+ light: {
7160
+ "--tw-background": "138 40% 98%",
7161
+ "--tw-foreground": "160 25% 14%",
7162
+ "--tw-primary": "158 64% 40%",
7163
+ "--tw-accent": "173 58% 44%",
7164
+ "--tw-success": "145 63% 36%",
7165
+ "--tw-destructive": "0 78% 58%",
7166
+ "--tw-border": "143 21% 88%",
7167
+ "--radius": "0.8rem",
7168
+ "--surface": "rgba(245, 252, 249, 0.92)",
7169
+ "--surface-strong": "rgba(232, 245, 239, 0.96)",
7170
+ "--grey": "rgba(240, 248, 244, 0.96)",
7171
+ "--grey-strong": "rgba(225, 240, 232, 0.98)",
7172
+ "--shadow-sm": "0 12px 28px -18px rgba(5, 86, 66, 0.18)",
7173
+ "--shadow": "0 26px 62px -30px rgba(6, 78, 59, 0.24)",
7174
+ "--primary-grad-from": "173 58% 44%",
7175
+ "--primary-grad-to": "158 64% 40%"
7176
+ },
7177
+ dark: {
7178
+ "--tw-background": "164 35% 8%",
7179
+ "--tw-foreground": "144 35% 96%",
7180
+ "--tw-primary": "160 70% 46%",
7181
+ "--tw-accent": "174 72% 45%",
7182
+ "--tw-success": "145 68% 46%",
7183
+ "--tw-destructive": "0 70% 52%",
7184
+ "--tw-border": "160 20% 20%",
7185
+ "--radius": "0.8rem",
7186
+ "--surface": "rgba(16, 36, 31, 0.84)",
7187
+ "--surface-strong": "rgba(21, 51, 44, 0.9)",
7188
+ "--grey": "rgba(24, 61, 52, 0.88)",
7189
+ "--grey-strong": "rgba(31, 77, 65, 0.9)",
7190
+ "--shadow-sm": "0 18px 34px -20px rgba(1, 44, 34, 0.48)",
7191
+ "--shadow": "0 30px 82px -34px rgba(1, 44, 34, 0.6)",
7192
+ "--primary-grad-from": "174 72% 45%",
7193
+ "--primary-grad-to": "160 70% 46%"
7194
+ }
7195
+ }
7196
+ },
7197
+ {
7198
+ id: "graphite",
7199
+ label: "Graphite Pulse",
7200
+ description: "Neutral slate preset with restrained blue accents for products that need a steadier enterprise tone.",
7201
+ recommendedFor: [
7202
+ "Enterprise admin panels",
7203
+ "B2B internal tools",
7204
+ "Projects that want a more neutral interface"
7205
+ ],
7206
+ tokens: {
7207
+ light: {
7208
+ "--tw-background": "220 18% 97%",
7209
+ "--tw-foreground": "222 24% 14%",
7210
+ "--tw-primary": "221 24% 32%",
7211
+ "--tw-accent": "198 83% 44%",
7212
+ "--tw-success": "160 56% 38%",
7213
+ "--tw-destructive": "0 72% 54%",
7214
+ "--tw-border": "218 17% 86%",
7215
+ "--radius": "0.7rem",
7216
+ "--surface": "rgba(248, 250, 252, 0.94)",
7217
+ "--surface-strong": "rgba(226, 232, 240, 0.96)",
7218
+ "--grey": "rgba(241, 245, 249, 0.98)",
7219
+ "--grey-strong": "rgba(226, 232, 240, 0.99)",
7220
+ "--shadow-sm": "0 12px 30px -20px rgba(15, 23, 42, 0.18)",
7221
+ "--shadow": "0 28px 66px -30px rgba(15, 23, 42, 0.24)",
7222
+ "--primary-grad-from": "198 83% 44%",
7223
+ "--primary-grad-to": "221 24% 32%"
7224
+ },
7225
+ dark: {
7226
+ "--tw-background": "222 32% 8%",
7227
+ "--tw-foreground": "210 25% 96%",
7228
+ "--tw-primary": "210 24% 82%",
7229
+ "--tw-accent": "192 92% 52%",
7230
+ "--tw-success": "158 64% 45%",
7231
+ "--tw-destructive": "0 72% 56%",
7232
+ "--tw-border": "217 19% 24%",
7233
+ "--radius": "0.7rem",
7234
+ "--surface": "rgba(15, 23, 42, 0.82)",
7235
+ "--surface-strong": "rgba(30, 41, 59, 0.92)",
7236
+ "--grey": "rgba(30, 41, 59, 0.9)",
7237
+ "--grey-strong": "rgba(51, 65, 85, 0.92)",
7238
+ "--shadow-sm": "0 18px 38px -22px rgba(2, 6, 23, 0.48)",
7239
+ "--shadow": "0 32px 88px -34px rgba(2, 6, 23, 0.68)",
7240
+ "--primary-grad-from": "192 92% 52%",
7241
+ "--primary-grad-to": "210 24% 82%"
7242
+ }
7243
+ }
7244
+ }
7245
+ ];
7246
+ var uiDefaultThemePreset = uiThemePresets[0];
7247
+ function createThemePresetCssExample(themePreset) {
7248
+ const renderBlock = (tokens) => Object.entries(tokens).map(([token, value]) => ` ${token}: ${value};`).join("\n");
7249
+ return `:root {
7250
+ ${renderBlock(themePreset.tokens.light)}
7251
+ }
7252
+
7253
+ .dark,
7254
+ [data-ui-theme='dark'] {
7255
+ ${renderBlock(themePreset.tokens.dark)}
7256
+ }`;
7257
+ }
6843
7258
  var uiThemeContract = {
6844
7259
  packageName: "@lucasvu/scope-ui",
6845
7260
  importOrder: [
@@ -6851,8 +7266,11 @@ var uiThemeContract = {
6851
7266
  dark: [".dark", "[data-ui-theme='dark']"]
6852
7267
  },
6853
7268
  overrideFile: "src/styles/ui-theme.css",
7269
+ defaultPreset: uiDefaultThemePreset.id,
7270
+ presets: uiThemePresets,
6854
7271
  rules: [
6855
7272
  "Import the package stylesheet before your project theme override stylesheet.",
7273
+ "Choose one approved preset and keep the entire project on that preset instead of mixing palettes page by page.",
6856
7274
  "Override tokens in one shared theme file instead of scattering colors across components.",
6857
7275
  "Use :root for the default light theme and .dark or [data-ui-theme='dark'] for dark theme.",
6858
7276
  "Only override tokens declared here. Do not patch component internals unless you are extending the library.",
@@ -6864,7 +7282,7 @@ var uiThemeContract = {
6864
7282
  description: "Base app background in HSL triplet format.",
6865
7283
  defaultLight: "0 0% 100%",
6866
7284
  defaultDark: "222.2 84% 4.9%",
6867
- usedBy: ["Input", "Select", "Card", "Tabs", "global surface"]
7285
+ usedBy: ["body background", "Input fallback", "page background"]
6868
7286
  },
6869
7287
  {
6870
7288
  name: "--tw-foreground",
@@ -6908,6 +7326,13 @@ var uiThemeContract = {
6908
7326
  defaultDark: "217.2 32.6% 17.5%",
6909
7327
  usedBy: ["Input", "Select", "Card", "DataTable"]
6910
7328
  },
7329
+ {
7330
+ name: "--radius",
7331
+ description: "Shared component radius.",
7332
+ defaultLight: "0.75rem",
7333
+ defaultDark: "0.75rem",
7334
+ usedBy: ["Button", "Input", "Card", "Tabs"]
7335
+ },
6911
7336
  {
6912
7337
  name: "--surface",
6913
7338
  description: "Default surface background as a CSS color.",
@@ -6936,6 +7361,20 @@ var uiThemeContract = {
6936
7361
  defaultDark: "rgba(51, 65, 85, 0.92)",
6937
7362
  usedBy: ["DataTable row hover"]
6938
7363
  },
7364
+ {
7365
+ name: "--shadow-sm",
7366
+ description: "Small elevation shadow.",
7367
+ defaultLight: "0 10px 28px -18px rgba(15, 23, 42, 0.22)",
7368
+ defaultDark: "0 16px 32px -18px rgba(2, 6, 23, 0.48)",
7369
+ usedBy: ["Tabs", "Pagination", "subtle elevation"]
7370
+ },
7371
+ {
7372
+ name: "--shadow",
7373
+ description: "Primary elevation shadow.",
7374
+ defaultLight: "0 24px 60px -28px rgba(15, 23, 42, 0.3)",
7375
+ defaultDark: "0 28px 80px -32px rgba(2, 6, 23, 0.7)",
7376
+ usedBy: ["Card", "Button emphasis", "floating surfaces"]
7377
+ },
6939
7378
  {
6940
7379
  name: "--text",
6941
7380
  description: "Generic text color alias as a CSS color.",
@@ -6972,27 +7411,16 @@ var uiThemeContract = {
6972
7411
  usedBy: ["Button variant create"]
6973
7412
  }
6974
7413
  ],
6975
- exampleCss: `:root {
6976
- --tw-primary: 12 88% 56%;
6977
- --tw-accent: 24 95% 52%;
6978
- --primary-grad-from: 24 95% 52%;
6979
- --primary-grad-to: 12 88% 56%;
6980
- --surface: rgba(255, 248, 240, 0.92);
6981
- }
6982
-
6983
- .dark {
6984
- --tw-primary: 18 100% 62%;
6985
- --tw-accent: 35 100% 58%;
6986
- --surface: rgba(24, 24, 27, 0.82);
6987
- }`
7414
+ exampleCss: createThemePresetCssExample(uiDefaultThemePreset)
6988
7415
  };
6989
7416
  var uiProjectAiRules = [
6990
7417
  "Use @lucasvu/scope-ui as the default UI library.",
6991
7418
  "Import @lucasvu/scope-ui/styles.css once at the app entry.",
6992
7419
  "Import the project override theme file after the package stylesheet.",
7420
+ "Stay inside the approved theme preset declared by the project and do not invent a second palette.",
6993
7421
  "Read uiAiManifest to choose the correct component by intent before coding.",
6994
- "Read uiThemeContract before changing colors, shadows, or theme behavior.",
7422
+ "Read uiThemeContract before changing colors, shadows, radius, or theme behavior.",
6995
7423
  "Prefer root exports and avoid MainFe unless the task explicitly targets a legacy screen."
6996
7424
  ];
6997
7425
 
6998
- export { Alert, ArgonSidebar, AsyncCombobox, Badge, Breadcrumb, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Combobox, FormControl as Control, DataTable, FormDescription as Description, FormField as Field, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Input, FormItem as Item, FormLabel as Label, LineClampTooltip, Loading, main_fe_exports as MainFe, FormMessage as Message, MultiSelect, NumericInput, OverflowTooltip, PageTitle, Pagination, SearchableSelect, SectionTitle, Select, Sidebar, SidebarItem, Stat, Table, TableBody, TableCell, TableHeader, TableRow, Tabs, Textarea, Tooltip, TruncatedText, cn, defaultPermissionChecker, filterSidebarItems, hasActiveDescendant, uiAiManifest, uiProjectAiRules, uiThemeContract };
7426
+ export { Alert, ArgonSidebar, AsyncCombobox, Badge, Breadcrumb, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Combobox, FormControl as Control, DataTable, FormDescription as Description, FormField as Field, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Input, FormItem as Item, FormLabel as Label, LineClampTooltip, Loading, main_fe_exports as MainFe, FormMessage as Message, MultiSelect, NumericInput, OverflowTooltip, PageTitle, Pagination, SearchableSelect, SectionTitle, Select, Sidebar, SidebarItem, Stat, Table, TableBody, TableCell, TableHeader, TableRow, Tabs, Textarea, Tooltip, TruncatedText, cn, defaultPermissionChecker, filterSidebarItems, hasActiveDescendant, uiAiManifest, uiDefaultThemePreset, uiProjectAiRules, uiScreenBlueprint, uiScreenBriefFields, uiThemeContract, uiThemePresets };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucasvu/scope-ui",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",