@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.d.ts CHANGED
@@ -875,7 +875,7 @@ type UiAiComponentDescriptor = {
875
875
  declare const uiAiManifest: {
876
876
  readonly packageName: "@lucasvu/scope-ui";
877
877
  readonly styleImport: "@lucasvu/scope-ui/styles.css";
878
- readonly rules: readonly ["Import the stylesheet once at the app entry before rendering any component.", "Prefer the canonical component for each intent instead of mixing legacy MainFe components.", "Use Input/Textarea/Select label props directly for simple fields; use Field only to wrap custom controls or grouped content.", "Use Select for small fixed option lists, SearchableSelect for larger local lists, Combobox for type-and-pick flows, and AsyncCombobox for remote search.", "Always provide a stable rowKey to DataTable and use sortMode=\"server\" when sorting happens on the backend.", "Prefer Card as the outer layout section and keep alerts, stats, and tables inside CardContent when building dashboards or forms.", "Do not import MainFe components unless the target explicitly asks for legacy main-fe styling."];
878
+ readonly rules: readonly ["Import the stylesheet once at the app entry before rendering any component.", "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.", "Collect the screen brief first: route url, sidebar items, active sidebar item, page title, actions, and the page-specific content schema.", "Prefer the canonical component for each intent instead of mixing legacy MainFe components.", "Use Input/Textarea/Select label props directly for simple fields; use Field only to wrap custom controls or grouped content.", "Use Select for small fixed option lists, SearchableSelect for larger local lists, Combobox for type-and-pick flows, and AsyncCombobox for remote search.", "Always provide a stable rowKey to DataTable and use sortMode=\"server\" when sorting happens on the backend.", "Prefer Card as the outer layout section and keep alerts, stats, and tables inside CardContent when building dashboards or forms.", "Do not import MainFe components unless the target explicitly asks for legacy main-fe styling."];
879
879
  readonly components: ({
880
880
  name: string;
881
881
  importName: string;
@@ -911,6 +911,290 @@ declare const uiAiManifest: {
911
911
  })[];
912
912
  };
913
913
 
914
+ type UiScreenKind = 'list' | 'form' | 'detail' | 'dashboard';
915
+ type UiScreenBriefField = {
916
+ id: string;
917
+ label: string;
918
+ description: string;
919
+ required: boolean;
920
+ appliesTo: UiScreenKind[] | ['all'];
921
+ example: string;
922
+ };
923
+ declare const uiScreenBriefFields: readonly [{
924
+ readonly id: "pageKind";
925
+ readonly label: "Page kind";
926
+ readonly description: "Choose the base recipe for the screen.";
927
+ readonly required: true;
928
+ readonly appliesTo: ["all"];
929
+ readonly example: "list";
930
+ }, {
931
+ readonly id: "routeUrl";
932
+ readonly label: "Route URL";
933
+ readonly description: "Final route for the screen or feature entry.";
934
+ readonly required: true;
935
+ readonly appliesTo: ["all"];
936
+ readonly example: "/admin/users";
937
+ }, {
938
+ readonly id: "sidebarItems";
939
+ readonly label: "Sidebar items";
940
+ readonly description: "Sidebar entries with at least id, title, and href so the shell stays consistent.";
941
+ readonly required: true;
942
+ readonly appliesTo: ["all"];
943
+ readonly example: "[{ id: \"users\", title: \"Users\", href: \"/admin/users\" }]";
944
+ }, {
945
+ readonly id: "activeSidebarItemId";
946
+ readonly label: "Active sidebar item id";
947
+ readonly description: "The sidebar item that should appear active on this screen.";
948
+ readonly required: true;
949
+ readonly appliesTo: ["all"];
950
+ readonly example: "users";
951
+ }, {
952
+ readonly id: "breadcrumbs";
953
+ readonly label: "Breadcrumbs";
954
+ readonly description: "Ordered breadcrumb items for the page header.";
955
+ readonly required: false;
956
+ readonly appliesTo: ["all"];
957
+ readonly example: "[{ label: \"Admin\", href: \"/admin\" }, { label: \"Users\", current: true }]";
958
+ }, {
959
+ readonly id: "pageTitle";
960
+ readonly label: "Page title";
961
+ readonly description: "Main page heading shown in the content header.";
962
+ readonly required: true;
963
+ readonly appliesTo: ["all"];
964
+ readonly example: "Users";
965
+ }, {
966
+ readonly id: "pageSubtitle";
967
+ readonly label: "Page subtitle";
968
+ readonly description: "Short supporting text under the title.";
969
+ readonly required: false;
970
+ readonly appliesTo: ["all"];
971
+ readonly example: "Manage internal user accounts and permissions.";
972
+ }, {
973
+ readonly id: "primaryAction";
974
+ readonly label: "Primary action";
975
+ readonly description: "The highest-emphasis action shown in the page header.";
976
+ readonly required: false;
977
+ readonly appliesTo: ["all"];
978
+ readonly example: "{ label: \"Create user\", href: \"/admin/users/create\" }";
979
+ }, {
980
+ readonly id: "secondaryActions";
981
+ readonly label: "Secondary actions";
982
+ readonly description: "Additional header actions such as export, refresh, or cancel.";
983
+ readonly required: false;
984
+ readonly appliesTo: ["all"];
985
+ readonly example: "[{ label: \"Export\" }, { label: \"Refresh\" }]";
986
+ }, {
987
+ readonly id: "summaryStats";
988
+ readonly label: "Summary stats";
989
+ readonly description: "Top-line numbers for dashboard or overview screens.";
990
+ readonly required: false;
991
+ readonly appliesTo: ["dashboard", "detail"];
992
+ readonly example: "[{ label: \"Active users\", value: \"1,204\", trend: \"up\", delta: \"+12%\" }]";
993
+ }, {
994
+ readonly id: "filters";
995
+ readonly label: "Filters";
996
+ readonly description: "Filter bar controls shown above list or dashboard content.";
997
+ readonly required: false;
998
+ readonly appliesTo: ["list", "dashboard"];
999
+ readonly example: "[{ type: \"search\", label: \"Search user\" }, { type: \"select\", label: \"Role\" }]";
1000
+ }, {
1001
+ readonly id: "tableColumns";
1002
+ readonly label: "Table columns";
1003
+ readonly description: "Columns for a list table, including label and render intent.";
1004
+ readonly required: false;
1005
+ readonly appliesTo: ["list", "detail", "dashboard"];
1006
+ readonly example: "[{ key: \"name\", title: \"Name\" }, { key: \"role\", title: \"Role\" }]";
1007
+ }, {
1008
+ readonly id: "rowActions";
1009
+ readonly label: "Row actions";
1010
+ readonly description: "Per-row actions for table screens.";
1011
+ readonly required: false;
1012
+ readonly appliesTo: ["list", "detail"];
1013
+ readonly example: "[{ label: \"Edit\" }, { label: \"Reset password\" }]";
1014
+ }, {
1015
+ readonly id: "formSections";
1016
+ readonly label: "Form sections";
1017
+ readonly description: "Grouped form sections and the fields inside each section.";
1018
+ readonly required: false;
1019
+ readonly appliesTo: ["form"];
1020
+ readonly example: "[{ title: \"Basic info\", fields: [\"name\", \"email\", \"role\"] }]";
1021
+ }, {
1022
+ readonly id: "fields";
1023
+ readonly label: "Fields";
1024
+ readonly description: "Detailed field list with type, label, required state, and helper text.";
1025
+ readonly required: false;
1026
+ readonly appliesTo: ["form", "detail"];
1027
+ readonly example: "[{ name: \"email\", type: \"input\", label: \"Email\", required: true }]";
1028
+ }, {
1029
+ readonly id: "detailSections";
1030
+ readonly label: "Detail sections";
1031
+ readonly description: "Cards or sections for detail pages such as profile, activity, permissions, or related records.";
1032
+ readonly required: false;
1033
+ readonly appliesTo: ["detail"];
1034
+ readonly example: "[{ title: \"Profile\" }, { title: \"Recent activity\" }]";
1035
+ }, {
1036
+ readonly id: "emptyState";
1037
+ readonly label: "Empty state";
1038
+ readonly description: "Fallback title, description, and action when there is no data.";
1039
+ readonly required: false;
1040
+ readonly appliesTo: ["list", "dashboard", "detail"];
1041
+ readonly example: "{ title: \"No users yet\", description: \"Create the first user to get started.\" }";
1042
+ }, {
1043
+ readonly id: "permissions";
1044
+ readonly label: "Permissions";
1045
+ readonly description: "Permission keys that affect sidebar visibility or action availability.";
1046
+ readonly required: false;
1047
+ readonly appliesTo: ["all"];
1048
+ readonly example: "[\"user.read\", \"user.write\"]";
1049
+ }];
1050
+ declare const uiScreenBlueprint: {
1051
+ readonly pageKinds: readonly [{
1052
+ readonly id: "list";
1053
+ readonly label: "List page";
1054
+ readonly frame: readonly ["Sidebar shell", "Breadcrumb", "PageTitle with actions", "Optional stats", "Filter card", "DataTable card"];
1055
+ }, {
1056
+ readonly id: "form";
1057
+ readonly label: "Form page";
1058
+ readonly frame: readonly ["Sidebar shell", "Breadcrumb", "PageTitle with primary and cancel actions", "Sectioned form cards", "Bottom action row"];
1059
+ }, {
1060
+ readonly id: "detail";
1061
+ readonly label: "Detail page";
1062
+ readonly frame: readonly ["Sidebar shell", "Breadcrumb", "PageTitle with status/actions", "Summary stats or metadata card", "Detail cards and related tables"];
1063
+ }, {
1064
+ readonly id: "dashboard";
1065
+ readonly label: "Dashboard page";
1066
+ readonly frame: readonly ["Sidebar shell", "Breadcrumb", "PageTitle with actions", "Stat cards row", "Filters", "Main insight cards and tables"];
1067
+ }];
1068
+ readonly workflow: readonly ["Collect the screen brief before coding. Do not invent sidebar items, route urls, filters, fields, or table columns if the brief is missing.", "Use Sidebar plus Breadcrumb and PageTitle to lock the shell before building the page body.", "Choose only canonical root exports from @lucasvu/scope-ui.", "Use Card and ui-grid utilities to create the frame first, then place controls and data components inside.", "Keep all palette, radius, surface, and shadow decisions in the shared ui-theme.css preset file.", "End with a consistency check against the selected preset and the screen brief."];
1069
+ readonly briefFields: readonly [{
1070
+ readonly id: "pageKind";
1071
+ readonly label: "Page kind";
1072
+ readonly description: "Choose the base recipe for the screen.";
1073
+ readonly required: true;
1074
+ readonly appliesTo: ["all"];
1075
+ readonly example: "list";
1076
+ }, {
1077
+ readonly id: "routeUrl";
1078
+ readonly label: "Route URL";
1079
+ readonly description: "Final route for the screen or feature entry.";
1080
+ readonly required: true;
1081
+ readonly appliesTo: ["all"];
1082
+ readonly example: "/admin/users";
1083
+ }, {
1084
+ readonly id: "sidebarItems";
1085
+ readonly label: "Sidebar items";
1086
+ readonly description: "Sidebar entries with at least id, title, and href so the shell stays consistent.";
1087
+ readonly required: true;
1088
+ readonly appliesTo: ["all"];
1089
+ readonly example: "[{ id: \"users\", title: \"Users\", href: \"/admin/users\" }]";
1090
+ }, {
1091
+ readonly id: "activeSidebarItemId";
1092
+ readonly label: "Active sidebar item id";
1093
+ readonly description: "The sidebar item that should appear active on this screen.";
1094
+ readonly required: true;
1095
+ readonly appliesTo: ["all"];
1096
+ readonly example: "users";
1097
+ }, {
1098
+ readonly id: "breadcrumbs";
1099
+ readonly label: "Breadcrumbs";
1100
+ readonly description: "Ordered breadcrumb items for the page header.";
1101
+ readonly required: false;
1102
+ readonly appliesTo: ["all"];
1103
+ readonly example: "[{ label: \"Admin\", href: \"/admin\" }, { label: \"Users\", current: true }]";
1104
+ }, {
1105
+ readonly id: "pageTitle";
1106
+ readonly label: "Page title";
1107
+ readonly description: "Main page heading shown in the content header.";
1108
+ readonly required: true;
1109
+ readonly appliesTo: ["all"];
1110
+ readonly example: "Users";
1111
+ }, {
1112
+ readonly id: "pageSubtitle";
1113
+ readonly label: "Page subtitle";
1114
+ readonly description: "Short supporting text under the title.";
1115
+ readonly required: false;
1116
+ readonly appliesTo: ["all"];
1117
+ readonly example: "Manage internal user accounts and permissions.";
1118
+ }, {
1119
+ readonly id: "primaryAction";
1120
+ readonly label: "Primary action";
1121
+ readonly description: "The highest-emphasis action shown in the page header.";
1122
+ readonly required: false;
1123
+ readonly appliesTo: ["all"];
1124
+ readonly example: "{ label: \"Create user\", href: \"/admin/users/create\" }";
1125
+ }, {
1126
+ readonly id: "secondaryActions";
1127
+ readonly label: "Secondary actions";
1128
+ readonly description: "Additional header actions such as export, refresh, or cancel.";
1129
+ readonly required: false;
1130
+ readonly appliesTo: ["all"];
1131
+ readonly example: "[{ label: \"Export\" }, { label: \"Refresh\" }]";
1132
+ }, {
1133
+ readonly id: "summaryStats";
1134
+ readonly label: "Summary stats";
1135
+ readonly description: "Top-line numbers for dashboard or overview screens.";
1136
+ readonly required: false;
1137
+ readonly appliesTo: ["dashboard", "detail"];
1138
+ readonly example: "[{ label: \"Active users\", value: \"1,204\", trend: \"up\", delta: \"+12%\" }]";
1139
+ }, {
1140
+ readonly id: "filters";
1141
+ readonly label: "Filters";
1142
+ readonly description: "Filter bar controls shown above list or dashboard content.";
1143
+ readonly required: false;
1144
+ readonly appliesTo: ["list", "dashboard"];
1145
+ readonly example: "[{ type: \"search\", label: \"Search user\" }, { type: \"select\", label: \"Role\" }]";
1146
+ }, {
1147
+ readonly id: "tableColumns";
1148
+ readonly label: "Table columns";
1149
+ readonly description: "Columns for a list table, including label and render intent.";
1150
+ readonly required: false;
1151
+ readonly appliesTo: ["list", "detail", "dashboard"];
1152
+ readonly example: "[{ key: \"name\", title: \"Name\" }, { key: \"role\", title: \"Role\" }]";
1153
+ }, {
1154
+ readonly id: "rowActions";
1155
+ readonly label: "Row actions";
1156
+ readonly description: "Per-row actions for table screens.";
1157
+ readonly required: false;
1158
+ readonly appliesTo: ["list", "detail"];
1159
+ readonly example: "[{ label: \"Edit\" }, { label: \"Reset password\" }]";
1160
+ }, {
1161
+ readonly id: "formSections";
1162
+ readonly label: "Form sections";
1163
+ readonly description: "Grouped form sections and the fields inside each section.";
1164
+ readonly required: false;
1165
+ readonly appliesTo: ["form"];
1166
+ readonly example: "[{ title: \"Basic info\", fields: [\"name\", \"email\", \"role\"] }]";
1167
+ }, {
1168
+ readonly id: "fields";
1169
+ readonly label: "Fields";
1170
+ readonly description: "Detailed field list with type, label, required state, and helper text.";
1171
+ readonly required: false;
1172
+ readonly appliesTo: ["form", "detail"];
1173
+ readonly example: "[{ name: \"email\", type: \"input\", label: \"Email\", required: true }]";
1174
+ }, {
1175
+ readonly id: "detailSections";
1176
+ readonly label: "Detail sections";
1177
+ readonly description: "Cards or sections for detail pages such as profile, activity, permissions, or related records.";
1178
+ readonly required: false;
1179
+ readonly appliesTo: ["detail"];
1180
+ readonly example: "[{ title: \"Profile\" }, { title: \"Recent activity\" }]";
1181
+ }, {
1182
+ readonly id: "emptyState";
1183
+ readonly label: "Empty state";
1184
+ readonly description: "Fallback title, description, and action when there is no data.";
1185
+ readonly required: false;
1186
+ readonly appliesTo: ["list", "dashboard", "detail"];
1187
+ readonly example: "{ title: \"No users yet\", description: \"Create the first user to get started.\" }";
1188
+ }, {
1189
+ readonly id: "permissions";
1190
+ readonly label: "Permissions";
1191
+ readonly description: "Permission keys that affect sidebar visibility or action availability.";
1192
+ readonly required: false;
1193
+ readonly appliesTo: ["all"];
1194
+ readonly example: "[\"user.read\", \"user.write\"]";
1195
+ }];
1196
+ };
1197
+
914
1198
  type UiThemeToken = {
915
1199
  name: string;
916
1200
  description: string;
@@ -918,6 +1202,233 @@ type UiThemeToken = {
918
1202
  defaultDark: string;
919
1203
  usedBy: string[];
920
1204
  };
1205
+ type UiThemePreset = {
1206
+ id: string;
1207
+ label: string;
1208
+ description: string;
1209
+ recommendedFor: string[];
1210
+ tokens: {
1211
+ light: Record<string, string>;
1212
+ dark: Record<string, string>;
1213
+ };
1214
+ };
1215
+ declare const uiThemePresets: readonly [{
1216
+ readonly id: "ocean";
1217
+ readonly label: "Ocean Glass";
1218
+ readonly description: "Blue-cyan preset with clean glass surfaces. Matches the current default visual language.";
1219
+ readonly recommendedFor: ["Admin dashboards", "SaaS CRUD screens", "Projects that want the existing package look"];
1220
+ readonly tokens: {
1221
+ readonly light: {
1222
+ readonly '--tw-background': "0 0% 100%";
1223
+ readonly '--tw-foreground': "222.2 47.4% 11.2%";
1224
+ readonly '--tw-primary': "221.2 83.2% 53.3%";
1225
+ readonly '--tw-accent': "199 89% 48%";
1226
+ readonly '--tw-success': "142.1 76.2% 36.3%";
1227
+ readonly '--tw-destructive': "0 84.2% 60.2%";
1228
+ readonly '--tw-border': "214.3 31.8% 91.4%";
1229
+ readonly '--radius': "0.75rem";
1230
+ readonly '--surface': "rgba(255, 255, 255, 0.92)";
1231
+ readonly '--surface-strong': "rgba(241, 245, 249, 0.96)";
1232
+ readonly '--grey': "rgba(248, 250, 252, 0.96)";
1233
+ readonly '--grey-strong': "rgba(241, 245, 249, 0.98)";
1234
+ readonly '--shadow-sm': "0 10px 28px -18px rgba(15, 23, 42, 0.22)";
1235
+ readonly '--shadow': "0 24px 60px -28px rgba(15, 23, 42, 0.3)";
1236
+ readonly '--primary-grad-from': "199 89% 48%";
1237
+ readonly '--primary-grad-to': "221.2 83.2% 53.3%";
1238
+ };
1239
+ readonly dark: {
1240
+ readonly '--tw-background': "222.2 84% 4.9%";
1241
+ readonly '--tw-foreground': "210 40% 98%";
1242
+ readonly '--tw-primary': "217.2 91.2% 59.8%";
1243
+ readonly '--tw-accent': "199 89% 48%";
1244
+ readonly '--tw-success': "142.1 70.6% 45.3%";
1245
+ readonly '--tw-destructive': "0 62.8% 30.6%";
1246
+ readonly '--tw-border': "217.2 32.6% 17.5%";
1247
+ readonly '--radius': "0.75rem";
1248
+ readonly '--surface': "rgba(15, 23, 42, 0.78)";
1249
+ readonly '--surface-strong': "rgba(30, 41, 59, 0.92)";
1250
+ readonly '--grey': "rgba(30, 41, 59, 0.88)";
1251
+ readonly '--grey-strong': "rgba(51, 65, 85, 0.92)";
1252
+ readonly '--shadow-sm': "0 16px 32px -18px rgba(2, 6, 23, 0.48)";
1253
+ readonly '--shadow': "0 28px 80px -32px rgba(2, 6, 23, 0.7)";
1254
+ readonly '--primary-grad-from': "198.6 88.7% 48.4%";
1255
+ readonly '--primary-grad-to': "221.2 83.2% 53.3%";
1256
+ };
1257
+ };
1258
+ }, {
1259
+ readonly id: "sunset";
1260
+ readonly label: "Sunset Ember";
1261
+ readonly description: "Warm orange-coral preset with softer cream surfaces for branded landing or growth products.";
1262
+ readonly recommendedFor: ["Growth products", "Commerce backoffices", "Projects that want a warmer visual tone"];
1263
+ readonly tokens: {
1264
+ readonly light: {
1265
+ readonly '--tw-background': "30 100% 98%";
1266
+ readonly '--tw-foreground': "20 24% 14%";
1267
+ readonly '--tw-primary': "14 90% 56%";
1268
+ readonly '--tw-accent': "29 100% 58%";
1269
+ readonly '--tw-success': "145 63% 38%";
1270
+ readonly '--tw-destructive': "0 78% 58%";
1271
+ readonly '--tw-border': "24 45% 89%";
1272
+ readonly '--radius': "0.85rem";
1273
+ readonly '--surface': "rgba(255, 247, 240, 0.92)";
1274
+ readonly '--surface-strong': "rgba(255, 237, 223, 0.96)";
1275
+ readonly '--grey': "rgba(255, 243, 231, 0.96)";
1276
+ readonly '--grey-strong': "rgba(255, 232, 214, 0.98)";
1277
+ readonly '--shadow-sm': "0 12px 30px -18px rgba(194, 65, 12, 0.18)";
1278
+ readonly '--shadow': "0 28px 64px -30px rgba(154, 52, 18, 0.24)";
1279
+ readonly '--primary-grad-from': "29 100% 58%";
1280
+ readonly '--primary-grad-to': "14 90% 56%";
1281
+ };
1282
+ readonly dark: {
1283
+ readonly '--tw-background': "20 24% 8%";
1284
+ readonly '--tw-foreground': "40 33% 96%";
1285
+ readonly '--tw-primary': "18 100% 62%";
1286
+ readonly '--tw-accent': "35 100% 58%";
1287
+ readonly '--tw-success': "145 60% 47%";
1288
+ readonly '--tw-destructive': "0 73% 52%";
1289
+ readonly '--tw-border': "18 24% 22%";
1290
+ readonly '--radius': "0.85rem";
1291
+ readonly '--surface': "rgba(41, 24, 18, 0.84)";
1292
+ readonly '--surface-strong': "rgba(59, 34, 24, 0.9)";
1293
+ readonly '--grey': "rgba(70, 42, 29, 0.88)";
1294
+ readonly '--grey-strong': "rgba(92, 54, 38, 0.9)";
1295
+ readonly '--shadow-sm': "0 18px 36px -20px rgba(67, 20, 7, 0.48)";
1296
+ readonly '--shadow': "0 30px 84px -34px rgba(67, 20, 7, 0.62)";
1297
+ readonly '--primary-grad-from': "35 100% 58%";
1298
+ readonly '--primary-grad-to': "18 100% 62%";
1299
+ };
1300
+ };
1301
+ }, {
1302
+ readonly id: "forest";
1303
+ readonly label: "Forest Mist";
1304
+ readonly description: "Emerald-teal preset with soft botanical surfaces for calmer productivity products.";
1305
+ readonly recommendedFor: ["Operations tools", "Internal platforms", "Products that want a calmer green tone"];
1306
+ readonly tokens: {
1307
+ readonly light: {
1308
+ readonly '--tw-background': "138 40% 98%";
1309
+ readonly '--tw-foreground': "160 25% 14%";
1310
+ readonly '--tw-primary': "158 64% 40%";
1311
+ readonly '--tw-accent': "173 58% 44%";
1312
+ readonly '--tw-success': "145 63% 36%";
1313
+ readonly '--tw-destructive': "0 78% 58%";
1314
+ readonly '--tw-border': "143 21% 88%";
1315
+ readonly '--radius': "0.8rem";
1316
+ readonly '--surface': "rgba(245, 252, 249, 0.92)";
1317
+ readonly '--surface-strong': "rgba(232, 245, 239, 0.96)";
1318
+ readonly '--grey': "rgba(240, 248, 244, 0.96)";
1319
+ readonly '--grey-strong': "rgba(225, 240, 232, 0.98)";
1320
+ readonly '--shadow-sm': "0 12px 28px -18px rgba(5, 86, 66, 0.18)";
1321
+ readonly '--shadow': "0 26px 62px -30px rgba(6, 78, 59, 0.24)";
1322
+ readonly '--primary-grad-from': "173 58% 44%";
1323
+ readonly '--primary-grad-to': "158 64% 40%";
1324
+ };
1325
+ readonly dark: {
1326
+ readonly '--tw-background': "164 35% 8%";
1327
+ readonly '--tw-foreground': "144 35% 96%";
1328
+ readonly '--tw-primary': "160 70% 46%";
1329
+ readonly '--tw-accent': "174 72% 45%";
1330
+ readonly '--tw-success': "145 68% 46%";
1331
+ readonly '--tw-destructive': "0 70% 52%";
1332
+ readonly '--tw-border': "160 20% 20%";
1333
+ readonly '--radius': "0.8rem";
1334
+ readonly '--surface': "rgba(16, 36, 31, 0.84)";
1335
+ readonly '--surface-strong': "rgba(21, 51, 44, 0.9)";
1336
+ readonly '--grey': "rgba(24, 61, 52, 0.88)";
1337
+ readonly '--grey-strong': "rgba(31, 77, 65, 0.9)";
1338
+ readonly '--shadow-sm': "0 18px 34px -20px rgba(1, 44, 34, 0.48)";
1339
+ readonly '--shadow': "0 30px 82px -34px rgba(1, 44, 34, 0.6)";
1340
+ readonly '--primary-grad-from': "174 72% 45%";
1341
+ readonly '--primary-grad-to': "160 70% 46%";
1342
+ };
1343
+ };
1344
+ }, {
1345
+ readonly id: "graphite";
1346
+ readonly label: "Graphite Pulse";
1347
+ readonly description: "Neutral slate preset with restrained blue accents for products that need a steadier enterprise tone.";
1348
+ readonly recommendedFor: ["Enterprise admin panels", "B2B internal tools", "Projects that want a more neutral interface"];
1349
+ readonly tokens: {
1350
+ readonly light: {
1351
+ readonly '--tw-background': "220 18% 97%";
1352
+ readonly '--tw-foreground': "222 24% 14%";
1353
+ readonly '--tw-primary': "221 24% 32%";
1354
+ readonly '--tw-accent': "198 83% 44%";
1355
+ readonly '--tw-success': "160 56% 38%";
1356
+ readonly '--tw-destructive': "0 72% 54%";
1357
+ readonly '--tw-border': "218 17% 86%";
1358
+ readonly '--radius': "0.7rem";
1359
+ readonly '--surface': "rgba(248, 250, 252, 0.94)";
1360
+ readonly '--surface-strong': "rgba(226, 232, 240, 0.96)";
1361
+ readonly '--grey': "rgba(241, 245, 249, 0.98)";
1362
+ readonly '--grey-strong': "rgba(226, 232, 240, 0.99)";
1363
+ readonly '--shadow-sm': "0 12px 30px -20px rgba(15, 23, 42, 0.18)";
1364
+ readonly '--shadow': "0 28px 66px -30px rgba(15, 23, 42, 0.24)";
1365
+ readonly '--primary-grad-from': "198 83% 44%";
1366
+ readonly '--primary-grad-to': "221 24% 32%";
1367
+ };
1368
+ readonly dark: {
1369
+ readonly '--tw-background': "222 32% 8%";
1370
+ readonly '--tw-foreground': "210 25% 96%";
1371
+ readonly '--tw-primary': "210 24% 82%";
1372
+ readonly '--tw-accent': "192 92% 52%";
1373
+ readonly '--tw-success': "158 64% 45%";
1374
+ readonly '--tw-destructive': "0 72% 56%";
1375
+ readonly '--tw-border': "217 19% 24%";
1376
+ readonly '--radius': "0.7rem";
1377
+ readonly '--surface': "rgba(15, 23, 42, 0.82)";
1378
+ readonly '--surface-strong': "rgba(30, 41, 59, 0.92)";
1379
+ readonly '--grey': "rgba(30, 41, 59, 0.9)";
1380
+ readonly '--grey-strong': "rgba(51, 65, 85, 0.92)";
1381
+ readonly '--shadow-sm': "0 18px 38px -22px rgba(2, 6, 23, 0.48)";
1382
+ readonly '--shadow': "0 32px 88px -34px rgba(2, 6, 23, 0.68)";
1383
+ readonly '--primary-grad-from': "192 92% 52%";
1384
+ readonly '--primary-grad-to': "210 24% 82%";
1385
+ };
1386
+ };
1387
+ }];
1388
+ declare const uiDefaultThemePreset: {
1389
+ readonly id: "ocean";
1390
+ readonly label: "Ocean Glass";
1391
+ readonly description: "Blue-cyan preset with clean glass surfaces. Matches the current default visual language.";
1392
+ readonly recommendedFor: ["Admin dashboards", "SaaS CRUD screens", "Projects that want the existing package look"];
1393
+ readonly tokens: {
1394
+ readonly light: {
1395
+ readonly '--tw-background': "0 0% 100%";
1396
+ readonly '--tw-foreground': "222.2 47.4% 11.2%";
1397
+ readonly '--tw-primary': "221.2 83.2% 53.3%";
1398
+ readonly '--tw-accent': "199 89% 48%";
1399
+ readonly '--tw-success': "142.1 76.2% 36.3%";
1400
+ readonly '--tw-destructive': "0 84.2% 60.2%";
1401
+ readonly '--tw-border': "214.3 31.8% 91.4%";
1402
+ readonly '--radius': "0.75rem";
1403
+ readonly '--surface': "rgba(255, 255, 255, 0.92)";
1404
+ readonly '--surface-strong': "rgba(241, 245, 249, 0.96)";
1405
+ readonly '--grey': "rgba(248, 250, 252, 0.96)";
1406
+ readonly '--grey-strong': "rgba(241, 245, 249, 0.98)";
1407
+ readonly '--shadow-sm': "0 10px 28px -18px rgba(15, 23, 42, 0.22)";
1408
+ readonly '--shadow': "0 24px 60px -28px rgba(15, 23, 42, 0.3)";
1409
+ readonly '--primary-grad-from': "199 89% 48%";
1410
+ readonly '--primary-grad-to': "221.2 83.2% 53.3%";
1411
+ };
1412
+ readonly dark: {
1413
+ readonly '--tw-background': "222.2 84% 4.9%";
1414
+ readonly '--tw-foreground': "210 40% 98%";
1415
+ readonly '--tw-primary': "217.2 91.2% 59.8%";
1416
+ readonly '--tw-accent': "199 89% 48%";
1417
+ readonly '--tw-success': "142.1 70.6% 45.3%";
1418
+ readonly '--tw-destructive': "0 62.8% 30.6%";
1419
+ readonly '--tw-border': "217.2 32.6% 17.5%";
1420
+ readonly '--radius': "0.75rem";
1421
+ readonly '--surface': "rgba(15, 23, 42, 0.78)";
1422
+ readonly '--surface-strong': "rgba(30, 41, 59, 0.92)";
1423
+ readonly '--grey': "rgba(30, 41, 59, 0.88)";
1424
+ readonly '--grey-strong': "rgba(51, 65, 85, 0.92)";
1425
+ readonly '--shadow-sm': "0 16px 32px -18px rgba(2, 6, 23, 0.48)";
1426
+ readonly '--shadow': "0 28px 80px -32px rgba(2, 6, 23, 0.7)";
1427
+ readonly '--primary-grad-from': "198.6 88.7% 48.4%";
1428
+ readonly '--primary-grad-to': "221.2 83.2% 53.3%";
1429
+ };
1430
+ };
1431
+ };
921
1432
  declare const uiThemeContract: {
922
1433
  readonly packageName: "@lucasvu/scope-ui";
923
1434
  readonly importOrder: readonly ["import '@lucasvu/scope-ui/styles.css'", "import './styles/ui-theme.css'"];
@@ -926,7 +1437,181 @@ declare const uiThemeContract: {
926
1437
  readonly dark: readonly [".dark", "[data-ui-theme='dark']"];
927
1438
  };
928
1439
  readonly overrideFile: "src/styles/ui-theme.css";
929
- readonly rules: readonly ["Import the package stylesheet before your project theme override stylesheet.", "Override tokens in one shared theme file instead of scattering colors across components.", "Use :root for the default light theme and .dark or [data-ui-theme='dark'] for dark theme.", "Only override tokens declared here. Do not patch component internals unless you are extending the library.", "For AI-generated screens, choose one theme source of truth and keep component code token-driven."];
1440
+ readonly defaultPreset: "ocean";
1441
+ readonly presets: readonly [{
1442
+ readonly id: "ocean";
1443
+ readonly label: "Ocean Glass";
1444
+ readonly description: "Blue-cyan preset with clean glass surfaces. Matches the current default visual language.";
1445
+ readonly recommendedFor: ["Admin dashboards", "SaaS CRUD screens", "Projects that want the existing package look"];
1446
+ readonly tokens: {
1447
+ readonly light: {
1448
+ readonly '--tw-background': "0 0% 100%";
1449
+ readonly '--tw-foreground': "222.2 47.4% 11.2%";
1450
+ readonly '--tw-primary': "221.2 83.2% 53.3%";
1451
+ readonly '--tw-accent': "199 89% 48%";
1452
+ readonly '--tw-success': "142.1 76.2% 36.3%";
1453
+ readonly '--tw-destructive': "0 84.2% 60.2%";
1454
+ readonly '--tw-border': "214.3 31.8% 91.4%";
1455
+ readonly '--radius': "0.75rem";
1456
+ readonly '--surface': "rgba(255, 255, 255, 0.92)";
1457
+ readonly '--surface-strong': "rgba(241, 245, 249, 0.96)";
1458
+ readonly '--grey': "rgba(248, 250, 252, 0.96)";
1459
+ readonly '--grey-strong': "rgba(241, 245, 249, 0.98)";
1460
+ readonly '--shadow-sm': "0 10px 28px -18px rgba(15, 23, 42, 0.22)";
1461
+ readonly '--shadow': "0 24px 60px -28px rgba(15, 23, 42, 0.3)";
1462
+ readonly '--primary-grad-from': "199 89% 48%";
1463
+ readonly '--primary-grad-to': "221.2 83.2% 53.3%";
1464
+ };
1465
+ readonly dark: {
1466
+ readonly '--tw-background': "222.2 84% 4.9%";
1467
+ readonly '--tw-foreground': "210 40% 98%";
1468
+ readonly '--tw-primary': "217.2 91.2% 59.8%";
1469
+ readonly '--tw-accent': "199 89% 48%";
1470
+ readonly '--tw-success': "142.1 70.6% 45.3%";
1471
+ readonly '--tw-destructive': "0 62.8% 30.6%";
1472
+ readonly '--tw-border': "217.2 32.6% 17.5%";
1473
+ readonly '--radius': "0.75rem";
1474
+ readonly '--surface': "rgba(15, 23, 42, 0.78)";
1475
+ readonly '--surface-strong': "rgba(30, 41, 59, 0.92)";
1476
+ readonly '--grey': "rgba(30, 41, 59, 0.88)";
1477
+ readonly '--grey-strong': "rgba(51, 65, 85, 0.92)";
1478
+ readonly '--shadow-sm': "0 16px 32px -18px rgba(2, 6, 23, 0.48)";
1479
+ readonly '--shadow': "0 28px 80px -32px rgba(2, 6, 23, 0.7)";
1480
+ readonly '--primary-grad-from': "198.6 88.7% 48.4%";
1481
+ readonly '--primary-grad-to': "221.2 83.2% 53.3%";
1482
+ };
1483
+ };
1484
+ }, {
1485
+ readonly id: "sunset";
1486
+ readonly label: "Sunset Ember";
1487
+ readonly description: "Warm orange-coral preset with softer cream surfaces for branded landing or growth products.";
1488
+ readonly recommendedFor: ["Growth products", "Commerce backoffices", "Projects that want a warmer visual tone"];
1489
+ readonly tokens: {
1490
+ readonly light: {
1491
+ readonly '--tw-background': "30 100% 98%";
1492
+ readonly '--tw-foreground': "20 24% 14%";
1493
+ readonly '--tw-primary': "14 90% 56%";
1494
+ readonly '--tw-accent': "29 100% 58%";
1495
+ readonly '--tw-success': "145 63% 38%";
1496
+ readonly '--tw-destructive': "0 78% 58%";
1497
+ readonly '--tw-border': "24 45% 89%";
1498
+ readonly '--radius': "0.85rem";
1499
+ readonly '--surface': "rgba(255, 247, 240, 0.92)";
1500
+ readonly '--surface-strong': "rgba(255, 237, 223, 0.96)";
1501
+ readonly '--grey': "rgba(255, 243, 231, 0.96)";
1502
+ readonly '--grey-strong': "rgba(255, 232, 214, 0.98)";
1503
+ readonly '--shadow-sm': "0 12px 30px -18px rgba(194, 65, 12, 0.18)";
1504
+ readonly '--shadow': "0 28px 64px -30px rgba(154, 52, 18, 0.24)";
1505
+ readonly '--primary-grad-from': "29 100% 58%";
1506
+ readonly '--primary-grad-to': "14 90% 56%";
1507
+ };
1508
+ readonly dark: {
1509
+ readonly '--tw-background': "20 24% 8%";
1510
+ readonly '--tw-foreground': "40 33% 96%";
1511
+ readonly '--tw-primary': "18 100% 62%";
1512
+ readonly '--tw-accent': "35 100% 58%";
1513
+ readonly '--tw-success': "145 60% 47%";
1514
+ readonly '--tw-destructive': "0 73% 52%";
1515
+ readonly '--tw-border': "18 24% 22%";
1516
+ readonly '--radius': "0.85rem";
1517
+ readonly '--surface': "rgba(41, 24, 18, 0.84)";
1518
+ readonly '--surface-strong': "rgba(59, 34, 24, 0.9)";
1519
+ readonly '--grey': "rgba(70, 42, 29, 0.88)";
1520
+ readonly '--grey-strong': "rgba(92, 54, 38, 0.9)";
1521
+ readonly '--shadow-sm': "0 18px 36px -20px rgba(67, 20, 7, 0.48)";
1522
+ readonly '--shadow': "0 30px 84px -34px rgba(67, 20, 7, 0.62)";
1523
+ readonly '--primary-grad-from': "35 100% 58%";
1524
+ readonly '--primary-grad-to': "18 100% 62%";
1525
+ };
1526
+ };
1527
+ }, {
1528
+ readonly id: "forest";
1529
+ readonly label: "Forest Mist";
1530
+ readonly description: "Emerald-teal preset with soft botanical surfaces for calmer productivity products.";
1531
+ readonly recommendedFor: ["Operations tools", "Internal platforms", "Products that want a calmer green tone"];
1532
+ readonly tokens: {
1533
+ readonly light: {
1534
+ readonly '--tw-background': "138 40% 98%";
1535
+ readonly '--tw-foreground': "160 25% 14%";
1536
+ readonly '--tw-primary': "158 64% 40%";
1537
+ readonly '--tw-accent': "173 58% 44%";
1538
+ readonly '--tw-success': "145 63% 36%";
1539
+ readonly '--tw-destructive': "0 78% 58%";
1540
+ readonly '--tw-border': "143 21% 88%";
1541
+ readonly '--radius': "0.8rem";
1542
+ readonly '--surface': "rgba(245, 252, 249, 0.92)";
1543
+ readonly '--surface-strong': "rgba(232, 245, 239, 0.96)";
1544
+ readonly '--grey': "rgba(240, 248, 244, 0.96)";
1545
+ readonly '--grey-strong': "rgba(225, 240, 232, 0.98)";
1546
+ readonly '--shadow-sm': "0 12px 28px -18px rgba(5, 86, 66, 0.18)";
1547
+ readonly '--shadow': "0 26px 62px -30px rgba(6, 78, 59, 0.24)";
1548
+ readonly '--primary-grad-from': "173 58% 44%";
1549
+ readonly '--primary-grad-to': "158 64% 40%";
1550
+ };
1551
+ readonly dark: {
1552
+ readonly '--tw-background': "164 35% 8%";
1553
+ readonly '--tw-foreground': "144 35% 96%";
1554
+ readonly '--tw-primary': "160 70% 46%";
1555
+ readonly '--tw-accent': "174 72% 45%";
1556
+ readonly '--tw-success': "145 68% 46%";
1557
+ readonly '--tw-destructive': "0 70% 52%";
1558
+ readonly '--tw-border': "160 20% 20%";
1559
+ readonly '--radius': "0.8rem";
1560
+ readonly '--surface': "rgba(16, 36, 31, 0.84)";
1561
+ readonly '--surface-strong': "rgba(21, 51, 44, 0.9)";
1562
+ readonly '--grey': "rgba(24, 61, 52, 0.88)";
1563
+ readonly '--grey-strong': "rgba(31, 77, 65, 0.9)";
1564
+ readonly '--shadow-sm': "0 18px 34px -20px rgba(1, 44, 34, 0.48)";
1565
+ readonly '--shadow': "0 30px 82px -34px rgba(1, 44, 34, 0.6)";
1566
+ readonly '--primary-grad-from': "174 72% 45%";
1567
+ readonly '--primary-grad-to': "160 70% 46%";
1568
+ };
1569
+ };
1570
+ }, {
1571
+ readonly id: "graphite";
1572
+ readonly label: "Graphite Pulse";
1573
+ readonly description: "Neutral slate preset with restrained blue accents for products that need a steadier enterprise tone.";
1574
+ readonly recommendedFor: ["Enterprise admin panels", "B2B internal tools", "Projects that want a more neutral interface"];
1575
+ readonly tokens: {
1576
+ readonly light: {
1577
+ readonly '--tw-background': "220 18% 97%";
1578
+ readonly '--tw-foreground': "222 24% 14%";
1579
+ readonly '--tw-primary': "221 24% 32%";
1580
+ readonly '--tw-accent': "198 83% 44%";
1581
+ readonly '--tw-success': "160 56% 38%";
1582
+ readonly '--tw-destructive': "0 72% 54%";
1583
+ readonly '--tw-border': "218 17% 86%";
1584
+ readonly '--radius': "0.7rem";
1585
+ readonly '--surface': "rgba(248, 250, 252, 0.94)";
1586
+ readonly '--surface-strong': "rgba(226, 232, 240, 0.96)";
1587
+ readonly '--grey': "rgba(241, 245, 249, 0.98)";
1588
+ readonly '--grey-strong': "rgba(226, 232, 240, 0.99)";
1589
+ readonly '--shadow-sm': "0 12px 30px -20px rgba(15, 23, 42, 0.18)";
1590
+ readonly '--shadow': "0 28px 66px -30px rgba(15, 23, 42, 0.24)";
1591
+ readonly '--primary-grad-from': "198 83% 44%";
1592
+ readonly '--primary-grad-to': "221 24% 32%";
1593
+ };
1594
+ readonly dark: {
1595
+ readonly '--tw-background': "222 32% 8%";
1596
+ readonly '--tw-foreground': "210 25% 96%";
1597
+ readonly '--tw-primary': "210 24% 82%";
1598
+ readonly '--tw-accent': "192 92% 52%";
1599
+ readonly '--tw-success': "158 64% 45%";
1600
+ readonly '--tw-destructive': "0 72% 56%";
1601
+ readonly '--tw-border': "217 19% 24%";
1602
+ readonly '--radius': "0.7rem";
1603
+ readonly '--surface': "rgba(15, 23, 42, 0.82)";
1604
+ readonly '--surface-strong': "rgba(30, 41, 59, 0.92)";
1605
+ readonly '--grey': "rgba(30, 41, 59, 0.9)";
1606
+ readonly '--grey-strong': "rgba(51, 65, 85, 0.92)";
1607
+ readonly '--shadow-sm': "0 18px 38px -22px rgba(2, 6, 23, 0.48)";
1608
+ readonly '--shadow': "0 32px 88px -34px rgba(2, 6, 23, 0.68)";
1609
+ readonly '--primary-grad-from': "192 92% 52%";
1610
+ readonly '--primary-grad-to': "210 24% 82%";
1611
+ };
1612
+ };
1613
+ }];
1614
+ readonly rules: readonly ["Import the package stylesheet before your project theme override stylesheet.", "Choose one approved preset and keep the entire project on that preset instead of mixing palettes page by page.", "Override tokens in one shared theme file instead of scattering colors across components.", "Use :root for the default light theme and .dark or [data-ui-theme='dark'] for dark theme.", "Only override tokens declared here. Do not patch component internals unless you are extending the library.", "For AI-generated screens, choose one theme source of truth and keep component code token-driven."];
930
1615
  readonly tokens: {
931
1616
  name: string;
932
1617
  description: string;
@@ -934,11 +1619,11 @@ declare const uiThemeContract: {
934
1619
  defaultDark: string;
935
1620
  usedBy: string[];
936
1621
  }[];
937
- readonly exampleCss: ":root {\n --tw-primary: 12 88% 56%;\n --tw-accent: 24 95% 52%;\n --primary-grad-from: 24 95% 52%;\n --primary-grad-to: 12 88% 56%;\n --surface: rgba(255, 248, 240, 0.92);\n}\n\n.dark {\n --tw-primary: 18 100% 62%;\n --tw-accent: 35 100% 58%;\n --surface: rgba(24, 24, 27, 0.82);\n}";
1622
+ readonly exampleCss: string;
938
1623
  };
939
- declare const uiProjectAiRules: readonly ["Use @lucasvu/scope-ui as the default UI library.", "Import @lucasvu/scope-ui/styles.css once at the app entry.", "Import the project override theme file after the package stylesheet.", "Read uiAiManifest to choose the correct component by intent before coding.", "Read uiThemeContract before changing colors, shadows, or theme behavior.", "Prefer root exports and avoid MainFe unless the task explicitly targets a legacy screen."];
1624
+ declare const uiProjectAiRules: readonly ["Use @lucasvu/scope-ui as the default UI library.", "Import @lucasvu/scope-ui/styles.css once at the app entry.", "Import the project override theme file after the package stylesheet.", "Stay inside the approved theme preset declared by the project and do not invent a second palette.", "Read uiAiManifest to choose the correct component by intent before coding.", "Read uiThemeContract before changing colors, shadows, radius, or theme behavior.", "Prefer root exports and avoid MainFe unless the task explicitly targets a legacy screen."];
940
1625
 
941
1626
  type ClassValue = string | false | null | undefined;
942
1627
  declare function cn(...values: ClassValue[]): string;
943
1628
 
944
- export { Alert, type AlertProps, ArgonSidebar, AsyncCombobox, type AsyncComboboxProps, Badge, type BadgeProps, Breadcrumb, type BreadcrumbItem, Button$1 as Button, type ButtonProps$1 as ButtonProps, Card$1 as Card, CardAction$1 as CardAction, CardContent$1 as CardContent, CardDescription$1 as CardDescription, CardFooter$1 as CardFooter, CardHeader$1 as CardHeader, CardTitle$1 as CardTitle, Combobox$1 as Combobox, type ComboboxOption$2 as ComboboxOption, FormControl as Control, DataTable$1 as DataTable, type DataTableAlign$1 as DataTableAlign, type DataTableColumn$1 as DataTableColumn, type DataTablePagination$1 as DataTablePagination, type DataTableProps$1 as DataTableProps, type DataTableRowSelection$1 as DataTableRowSelection, type DataTableSortDirection$1 as DataTableSortDirection, type DataTableSortState$1 as DataTableSortState, FormDescription as Description, FormField as Field, Form, FormControl, FormDescription, FormField, type FormFieldProps, FormItem, FormLabel, FormMessage, Input$1 as Input, type InputProps$1 as InputProps, FormItem as Item, FormLabel as Label, LineClampTooltip, type LineClampTooltipProps, Loading, type LoadingProps, index as MainFe, FormMessage as Message, MultiSelect, type MultiSelectOption, NumericInput, type NumericInputProps, type Option, OverflowTooltip, type OverflowTooltipProps, PageTitle$1 as PageTitle, Pagination, type PaginationInfo, type PaginationProps, type PermissionChecker, SearchableSelect, type SearchableSelectOption, type SearchableSelectProps, SectionTitle$1 as SectionTitle, Select, type SelectOption, type SelectProps, Sidebar, SidebarItem, type SidebarProps, Stat, type StatProps, type TabItem, Table$1 as Table, TableBody$1 as TableBody, TableCell$1 as TableCell, TableHeader$1 as TableHeader, TableRow$1 as TableRow, Tabs, type TabsProps, Textarea, type TextareaProps, Tooltip, type Trend, TruncatedText, type TruncatedTextProps, type UiAiComponentDescriptor, type UiAiComponentProp, type UiThemeToken, cn, defaultPermissionChecker, filterSidebarItems, hasActiveDescendant, uiAiManifest, uiProjectAiRules, uiThemeContract };
1629
+ export { Alert, type AlertProps, ArgonSidebar, AsyncCombobox, type AsyncComboboxProps, Badge, type BadgeProps, Breadcrumb, type BreadcrumbItem, Button$1 as Button, type ButtonProps$1 as ButtonProps, Card$1 as Card, CardAction$1 as CardAction, CardContent$1 as CardContent, CardDescription$1 as CardDescription, CardFooter$1 as CardFooter, CardHeader$1 as CardHeader, CardTitle$1 as CardTitle, Combobox$1 as Combobox, type ComboboxOption$2 as ComboboxOption, FormControl as Control, DataTable$1 as DataTable, type DataTableAlign$1 as DataTableAlign, type DataTableColumn$1 as DataTableColumn, type DataTablePagination$1 as DataTablePagination, type DataTableProps$1 as DataTableProps, type DataTableRowSelection$1 as DataTableRowSelection, type DataTableSortDirection$1 as DataTableSortDirection, type DataTableSortState$1 as DataTableSortState, FormDescription as Description, FormField as Field, Form, FormControl, FormDescription, FormField, type FormFieldProps, FormItem, FormLabel, FormMessage, Input$1 as Input, type InputProps$1 as InputProps, FormItem as Item, FormLabel as Label, LineClampTooltip, type LineClampTooltipProps, Loading, type LoadingProps, index as MainFe, FormMessage as Message, MultiSelect, type MultiSelectOption, NumericInput, type NumericInputProps, type Option, OverflowTooltip, type OverflowTooltipProps, PageTitle$1 as PageTitle, Pagination, type PaginationInfo, type PaginationProps, type PermissionChecker, SearchableSelect, type SearchableSelectOption, type SearchableSelectProps, SectionTitle$1 as SectionTitle, Select, type SelectOption, type SelectProps, Sidebar, SidebarItem, type SidebarProps, Stat, type StatProps, type TabItem, Table$1 as Table, TableBody$1 as TableBody, TableCell$1 as TableCell, TableHeader$1 as TableHeader, TableRow$1 as TableRow, Tabs, type TabsProps, Textarea, type TextareaProps, Tooltip, type Trend, TruncatedText, type TruncatedTextProps, type UiAiComponentDescriptor, type UiAiComponentProp, type UiScreenBriefField, type UiScreenKind, type UiThemePreset, type UiThemeToken, cn, defaultPermissionChecker, filterSidebarItems, hasActiveDescendant, uiAiManifest, uiDefaultThemePreset, uiProjectAiRules, uiScreenBlueprint, uiScreenBriefFields, uiThemeContract, uiThemePresets };