@elevasis/ui 2.37.0 → 2.38.1
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/app/index.d.ts +55 -2
- package/dist/app/index.js +8 -7
- package/dist/auth/index.d.ts +4 -0
- package/dist/auth/index.js +4 -4
- package/dist/charts/index.js +4 -4
- package/dist/{chunk-JPVZRZ3X.js → chunk-4UCAUBOL.js} +1 -1
- package/dist/{chunk-NWMPBG4U.js → chunk-566XWGPP.js} +76 -109
- package/dist/chunk-6D4LCJ52.js +10 -0
- package/dist/{chunk-CWYQRM5T.js → chunk-7ZWXTH5J.js} +2 -8
- package/dist/{chunk-S3KBYQTI.js → chunk-B2DZLPDL.js} +1 -1
- package/dist/{chunk-NYNOMAAS.js → chunk-C6BDBZRO.js} +1 -1
- package/dist/{chunk-JZ2WID2G.js → chunk-H2MEFUQD.js} +1 -1
- package/dist/{chunk-T3NI7DOA.js → chunk-LWDVD3XR.js} +218 -54
- package/dist/{chunk-LNC6PZAE.js → chunk-M7Q4UBRY.js} +1 -1
- package/dist/{chunk-6NREL3KL.js → chunk-P34FFSOX.js} +1 -1
- package/dist/{chunk-5CTJ7TW2.js → chunk-PGWANFNE.js} +5 -4
- package/dist/{chunk-LCJQ6OWC.js → chunk-YGUNUIME.js} +10 -2
- package/dist/components/index.d.ts +46 -0
- package/dist/components/index.js +11 -10
- package/dist/components/navigation/index.js +3 -3
- package/dist/features/auth/index.d.ts +45 -0
- package/dist/features/auth/index.js +12 -11
- package/dist/features/clients/index.js +11 -10
- package/dist/features/crm/index.d.ts +45 -0
- package/dist/features/crm/index.js +11 -10
- package/dist/features/dashboard/index.js +11 -10
- package/dist/features/delivery/index.d.ts +45 -0
- package/dist/features/delivery/index.js +11 -10
- package/dist/features/knowledge/index.js +3 -3
- package/dist/features/lead-gen/index.d.ts +10 -2
- package/dist/features/lead-gen/index.js +11 -10
- package/dist/features/monitoring/index.js +11 -10
- package/dist/features/monitoring/requests/index.js +11 -10
- package/dist/features/operations/index.d.ts +10 -2
- package/dist/features/operations/index.js +11 -10
- package/dist/features/right-panel-host/index.js +0 -1
- package/dist/features/settings/index.d.ts +45 -0
- package/dist/features/settings/index.js +11 -10
- package/dist/hooks/access/index.d.ts +4 -0
- package/dist/hooks/access/index.js +3 -3
- package/dist/hooks/delivery/index.d.ts +45 -0
- package/dist/hooks/delivery/index.js +11 -10
- package/dist/hooks/index.d.ts +50 -0
- package/dist/hooks/index.js +11 -10
- package/dist/hooks/published.d.ts +50 -0
- package/dist/hooks/published.js +11 -10
- package/dist/index.d.ts +60 -2
- package/dist/index.js +11 -10
- package/dist/initialization/index.d.ts +45 -0
- package/dist/knowledge/index.d.ts +10 -2
- package/dist/knowledge/index.js +167 -25
- package/dist/organization/index.js +11 -10
- package/dist/profile/index.d.ts +45 -0
- package/dist/provider/index.d.ts +55 -2
- package/dist/provider/index.js +8 -7
- package/dist/provider/published.d.ts +55 -2
- package/dist/provider/published.js +5 -5
- package/dist/supabase/index.d.ts +87 -0
- package/dist/theme/index.js +3 -2
- package/dist/types/index.d.ts +45 -0
- package/package.json +5 -5
package/dist/supabase/index.d.ts
CHANGED
|
@@ -1460,6 +1460,51 @@ type Database = {
|
|
|
1460
1460
|
}
|
|
1461
1461
|
];
|
|
1462
1462
|
};
|
|
1463
|
+
deployment_organization_models: {
|
|
1464
|
+
Row: {
|
|
1465
|
+
created_at: string;
|
|
1466
|
+
deployment_id: string;
|
|
1467
|
+
model_hash: string | null;
|
|
1468
|
+
organization_id: string;
|
|
1469
|
+
organization_model: Json;
|
|
1470
|
+
schema_version: string;
|
|
1471
|
+
updated_at: string;
|
|
1472
|
+
};
|
|
1473
|
+
Insert: {
|
|
1474
|
+
created_at?: string;
|
|
1475
|
+
deployment_id: string;
|
|
1476
|
+
model_hash?: string | null;
|
|
1477
|
+
organization_id: string;
|
|
1478
|
+
organization_model: Json;
|
|
1479
|
+
schema_version?: string;
|
|
1480
|
+
updated_at?: string;
|
|
1481
|
+
};
|
|
1482
|
+
Update: {
|
|
1483
|
+
created_at?: string;
|
|
1484
|
+
deployment_id?: string;
|
|
1485
|
+
model_hash?: string | null;
|
|
1486
|
+
organization_id?: string;
|
|
1487
|
+
organization_model?: Json;
|
|
1488
|
+
schema_version?: string;
|
|
1489
|
+
updated_at?: string;
|
|
1490
|
+
};
|
|
1491
|
+
Relationships: [
|
|
1492
|
+
{
|
|
1493
|
+
foreignKeyName: "deployment_organization_models_deployment_id_fkey";
|
|
1494
|
+
columns: ["deployment_id"];
|
|
1495
|
+
isOneToOne: true;
|
|
1496
|
+
referencedRelation: "deployments";
|
|
1497
|
+
referencedColumns: ["id"];
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
foreignKeyName: "deployment_organization_models_organization_id_fkey";
|
|
1501
|
+
columns: ["organization_id"];
|
|
1502
|
+
isOneToOne: false;
|
|
1503
|
+
referencedRelation: "organizations";
|
|
1504
|
+
referencedColumns: ["id"];
|
|
1505
|
+
}
|
|
1506
|
+
];
|
|
1507
|
+
};
|
|
1463
1508
|
deployments: {
|
|
1464
1509
|
Row: {
|
|
1465
1510
|
created_at: string;
|
|
@@ -4500,6 +4545,48 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4500
4545
|
referencedColumns: ["id"];
|
|
4501
4546
|
}];
|
|
4502
4547
|
};
|
|
4548
|
+
deployment_organization_models: {
|
|
4549
|
+
Row: {
|
|
4550
|
+
created_at: string;
|
|
4551
|
+
deployment_id: string;
|
|
4552
|
+
model_hash: string | null;
|
|
4553
|
+
organization_id: string;
|
|
4554
|
+
organization_model: Json;
|
|
4555
|
+
schema_version: string;
|
|
4556
|
+
updated_at: string;
|
|
4557
|
+
};
|
|
4558
|
+
Insert: {
|
|
4559
|
+
created_at?: string;
|
|
4560
|
+
deployment_id: string;
|
|
4561
|
+
model_hash?: string | null;
|
|
4562
|
+
organization_id: string;
|
|
4563
|
+
organization_model: Json;
|
|
4564
|
+
schema_version?: string;
|
|
4565
|
+
updated_at?: string;
|
|
4566
|
+
};
|
|
4567
|
+
Update: {
|
|
4568
|
+
created_at?: string;
|
|
4569
|
+
deployment_id?: string;
|
|
4570
|
+
model_hash?: string | null;
|
|
4571
|
+
organization_id?: string;
|
|
4572
|
+
organization_model?: Json;
|
|
4573
|
+
schema_version?: string;
|
|
4574
|
+
updated_at?: string;
|
|
4575
|
+
};
|
|
4576
|
+
Relationships: [{
|
|
4577
|
+
foreignKeyName: "deployment_organization_models_deployment_id_fkey";
|
|
4578
|
+
columns: ["deployment_id"];
|
|
4579
|
+
isOneToOne: true;
|
|
4580
|
+
referencedRelation: "deployments";
|
|
4581
|
+
referencedColumns: ["id"];
|
|
4582
|
+
}, {
|
|
4583
|
+
foreignKeyName: "deployment_organization_models_organization_id_fkey";
|
|
4584
|
+
columns: ["organization_id"];
|
|
4585
|
+
isOneToOne: false;
|
|
4586
|
+
referencedRelation: "organizations";
|
|
4587
|
+
referencedColumns: ["id"];
|
|
4588
|
+
}];
|
|
4589
|
+
};
|
|
4503
4590
|
deployments: {
|
|
4504
4591
|
Row: {
|
|
4505
4592
|
created_at: string;
|
package/dist/theme/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export { useAvailablePresets } from '../chunk-
|
|
2
|
-
export {
|
|
1
|
+
export { useAvailablePresets } from '../chunk-B2DZLPDL.js';
|
|
2
|
+
export { TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, mantineThemeOverride } from '../chunk-7ZWXTH5J.js';
|
|
3
|
+
export { PresetsProvider, usePresetsContext } from '../chunk-6D4LCJ52.js';
|
|
3
4
|
export { generateShades, getPreset, PRESETS as presets } from '../chunk-WF7CONXF.js';
|
|
4
5
|
import '../chunk-WLOQ4IBG.js';
|
|
5
6
|
import '../chunk-I2KLQ2HA.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2214,6 +2214,51 @@ type Database = {
|
|
|
2214
2214
|
}
|
|
2215
2215
|
];
|
|
2216
2216
|
};
|
|
2217
|
+
deployment_organization_models: {
|
|
2218
|
+
Row: {
|
|
2219
|
+
created_at: string;
|
|
2220
|
+
deployment_id: string;
|
|
2221
|
+
model_hash: string | null;
|
|
2222
|
+
organization_id: string;
|
|
2223
|
+
organization_model: Json;
|
|
2224
|
+
schema_version: string;
|
|
2225
|
+
updated_at: string;
|
|
2226
|
+
};
|
|
2227
|
+
Insert: {
|
|
2228
|
+
created_at?: string;
|
|
2229
|
+
deployment_id: string;
|
|
2230
|
+
model_hash?: string | null;
|
|
2231
|
+
organization_id: string;
|
|
2232
|
+
organization_model: Json;
|
|
2233
|
+
schema_version?: string;
|
|
2234
|
+
updated_at?: string;
|
|
2235
|
+
};
|
|
2236
|
+
Update: {
|
|
2237
|
+
created_at?: string;
|
|
2238
|
+
deployment_id?: string;
|
|
2239
|
+
model_hash?: string | null;
|
|
2240
|
+
organization_id?: string;
|
|
2241
|
+
organization_model?: Json;
|
|
2242
|
+
schema_version?: string;
|
|
2243
|
+
updated_at?: string;
|
|
2244
|
+
};
|
|
2245
|
+
Relationships: [
|
|
2246
|
+
{
|
|
2247
|
+
foreignKeyName: "deployment_organization_models_deployment_id_fkey";
|
|
2248
|
+
columns: ["deployment_id"];
|
|
2249
|
+
isOneToOne: true;
|
|
2250
|
+
referencedRelation: "deployments";
|
|
2251
|
+
referencedColumns: ["id"];
|
|
2252
|
+
},
|
|
2253
|
+
{
|
|
2254
|
+
foreignKeyName: "deployment_organization_models_organization_id_fkey";
|
|
2255
|
+
columns: ["organization_id"];
|
|
2256
|
+
isOneToOne: false;
|
|
2257
|
+
referencedRelation: "organizations";
|
|
2258
|
+
referencedColumns: ["id"];
|
|
2259
|
+
}
|
|
2260
|
+
];
|
|
2261
|
+
};
|
|
2217
2262
|
deployments: {
|
|
2218
2263
|
Row: {
|
|
2219
2264
|
created_at: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.38.1",
|
|
4
4
|
"description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -269,11 +269,11 @@
|
|
|
269
269
|
"typescript": "5.9.2",
|
|
270
270
|
"vite": "^7.0.0",
|
|
271
271
|
"vitest": "^3.2.4",
|
|
272
|
-
"@elevasis/sdk": "1.
|
|
272
|
+
"@elevasis/sdk": "1.26.1",
|
|
273
273
|
"@repo/eslint-config": "0.0.0",
|
|
274
|
-
"@repo/
|
|
275
|
-
"@repo/core": "0.
|
|
276
|
-
"@repo/
|
|
274
|
+
"@repo/typescript-config": "0.0.0",
|
|
275
|
+
"@repo/core": "0.33.0",
|
|
276
|
+
"@repo/elevasis-core": "1.0.0"
|
|
277
277
|
},
|
|
278
278
|
"dependencies": {
|
|
279
279
|
"@dagrejs/dagre": "^1.1.4",
|