@elevasis/ui 2.14.0 → 2.15.0

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.
Files changed (39) hide show
  1. package/dist/{chunk-IO75JNQE.js → chunk-32NXXCQU.js} +1 -1
  2. package/dist/{chunk-QFEQWAPQ.js → chunk-5SXYCICG.js} +2 -2
  3. package/dist/{chunk-QFBENUS2.js → chunk-D7HBX5US.js} +3 -3
  4. package/dist/{chunk-C56A2MAS.js → chunk-FFXHKADZ.js} +12 -5
  5. package/dist/{chunk-PPKJKM3U.js → chunk-SFW573HS.js} +2 -2
  6. package/dist/{chunk-JAUU6TZU.js → chunk-U2RXVZGY.js} +2 -41
  7. package/dist/{chunk-A7346I7H.js → chunk-X75JEGHS.js} +1 -1
  8. package/dist/{chunk-TAUPDLQ7.js → chunk-XJ7KC54A.js} +1 -1
  9. package/dist/{chunk-ETQRV5A6.js → chunk-YNPVQDNB.js} +1 -1
  10. package/dist/components/index.d.ts +141 -49
  11. package/dist/components/index.js +21 -395
  12. package/dist/features/auth/index.d.ts +70 -6
  13. package/dist/features/auth/index.js +1 -1
  14. package/dist/features/crm/index.d.ts +70 -6
  15. package/dist/features/crm/index.js +4 -4
  16. package/dist/features/dashboard/index.js +3 -3
  17. package/dist/features/delivery/index.d.ts +70 -6
  18. package/dist/features/delivery/index.js +4 -4
  19. package/dist/features/lead-gen/index.js +7 -7
  20. package/dist/features/monitoring/index.js +4 -4
  21. package/dist/features/monitoring/requests/index.css +589 -0
  22. package/dist/features/monitoring/requests/index.js +442 -0
  23. package/dist/features/operations/index.js +5 -5
  24. package/dist/features/settings/index.d.ts +70 -6
  25. package/dist/features/settings/index.js +3 -3
  26. package/dist/hooks/index.d.ts +142 -40
  27. package/dist/hooks/index.js +2 -2
  28. package/dist/hooks/published.d.ts +142 -40
  29. package/dist/hooks/published.js +2 -2
  30. package/dist/index.d.ts +142 -40
  31. package/dist/index.js +2 -2
  32. package/dist/initialization/index.d.ts +70 -6
  33. package/dist/profile/index.d.ts +70 -6
  34. package/dist/provider/index.js +1 -1
  35. package/dist/provider/published.js +1 -1
  36. package/dist/supabase/index.d.ts +130 -12
  37. package/dist/types/index.d.ts +70 -6
  38. package/package.json +2 -2
  39. package/src/hooks/README.md +1 -2
@@ -15,8 +15,8 @@ import '../chunk-ELJIFLCB.js';
15
15
  import '../chunk-L4XXM55J.js';
16
16
  import '../chunk-FL67C3WY.js';
17
17
  export { AppearanceProvider, useAppearance } from '../chunk-QJ2KCHKX.js';
18
- import '../chunk-DT3QYZVU.js';
19
18
  import '../chunk-SLVC5OJ2.js';
19
+ import '../chunk-DT3QYZVU.js';
20
20
  import '../chunk-RNP5R5I3.js';
21
21
  import '../chunk-IOKL7BKE.js';
22
22
  import '../chunk-MTJ43R2E.js';
@@ -11,8 +11,8 @@ import '../chunk-ELJIFLCB.js';
11
11
  import '../chunk-L4XXM55J.js';
12
12
  import '../chunk-FL67C3WY.js';
13
13
  export { AppearanceProvider, useAppearance } from '../chunk-QJ2KCHKX.js';
14
- import '../chunk-DT3QYZVU.js';
15
14
  import '../chunk-SLVC5OJ2.js';
15
+ import '../chunk-DT3QYZVU.js';
16
16
  import '../chunk-RNP5R5I3.js';
17
17
  import '../chunk-IOKL7BKE.js';
18
18
  import '../chunk-MTJ43R2E.js';
@@ -1262,10 +1262,8 @@ type Database = {
1262
1262
  };
1263
1263
  deployments: {
1264
1264
  Row: {
1265
- compiled_docs: Json | null;
1266
1265
  created_at: string;
1267
1266
  deployment_version: string | null;
1268
- documentation: Json | null;
1269
1267
  error_message: string | null;
1270
1268
  id: string;
1271
1269
  organization_id: string;
@@ -1277,10 +1275,8 @@ type Database = {
1277
1275
  updated_at: string;
1278
1276
  };
1279
1277
  Insert: {
1280
- compiled_docs?: Json | null;
1281
1278
  created_at?: string;
1282
1279
  deployment_version?: string | null;
1283
- documentation?: Json | null;
1284
1280
  error_message?: string | null;
1285
1281
  id?: string;
1286
1282
  organization_id: string;
@@ -1292,10 +1288,8 @@ type Database = {
1292
1288
  updated_at?: string;
1293
1289
  };
1294
1290
  Update: {
1295
- compiled_docs?: Json | null;
1296
1291
  created_at?: string;
1297
1292
  deployment_version?: string | null;
1298
- documentation?: Json | null;
1299
1293
  error_message?: string | null;
1300
1294
  id?: string;
1301
1295
  organization_id?: string;
@@ -1807,6 +1801,13 @@ type Database = {
1807
1801
  updated_at?: string;
1808
1802
  };
1809
1803
  Relationships: [
1804
+ {
1805
+ foreignKeyName: "fk_milestones_project";
1806
+ columns: ["project_id"];
1807
+ isOneToOne: false;
1808
+ referencedRelation: "prj_projects";
1809
+ referencedColumns: ["id"];
1810
+ },
1810
1811
  {
1811
1812
  foreignKeyName: "prj_milestones_organization_id_fkey";
1812
1813
  columns: ["organization_id"];
@@ -1867,6 +1868,34 @@ type Database = {
1867
1868
  type?: string;
1868
1869
  };
1869
1870
  Relationships: [
1871
+ {
1872
+ foreignKeyName: "fk_notes_created_by";
1873
+ columns: ["created_by"];
1874
+ isOneToOne: false;
1875
+ referencedRelation: "users";
1876
+ referencedColumns: ["id"];
1877
+ },
1878
+ {
1879
+ foreignKeyName: "fk_notes_milestone";
1880
+ columns: ["milestone_id"];
1881
+ isOneToOne: false;
1882
+ referencedRelation: "prj_milestones";
1883
+ referencedColumns: ["id"];
1884
+ },
1885
+ {
1886
+ foreignKeyName: "fk_notes_project";
1887
+ columns: ["project_id"];
1888
+ isOneToOne: false;
1889
+ referencedRelation: "prj_projects";
1890
+ referencedColumns: ["id"];
1891
+ },
1892
+ {
1893
+ foreignKeyName: "fk_notes_task";
1894
+ columns: ["task_id"];
1895
+ isOneToOne: false;
1896
+ referencedRelation: "prj_tasks";
1897
+ referencedColumns: ["id"];
1898
+ },
1870
1899
  {
1871
1900
  foreignKeyName: "prj_notes_created_by_fkey";
1872
1901
  columns: ["created_by"];
@@ -1957,6 +1986,20 @@ type Database = {
1957
1986
  updated_at?: string;
1958
1987
  };
1959
1988
  Relationships: [
1989
+ {
1990
+ foreignKeyName: "fk_projects_company";
1991
+ columns: ["client_company_id"];
1992
+ isOneToOne: false;
1993
+ referencedRelation: "acq_companies";
1994
+ referencedColumns: ["id"];
1995
+ },
1996
+ {
1997
+ foreignKeyName: "fk_projects_deal";
1998
+ columns: ["deal_id"];
1999
+ isOneToOne: false;
2000
+ referencedRelation: "acq_deals";
2001
+ referencedColumns: ["id"];
2002
+ },
1960
2003
  {
1961
2004
  foreignKeyName: "prj_projects_client_company_id_fkey";
1962
2005
  columns: ["client_company_id"];
@@ -2039,6 +2082,27 @@ type Database = {
2039
2082
  updated_at?: string;
2040
2083
  };
2041
2084
  Relationships: [
2085
+ {
2086
+ foreignKeyName: "fk_tasks_milestone";
2087
+ columns: ["milestone_id"];
2088
+ isOneToOne: false;
2089
+ referencedRelation: "prj_milestones";
2090
+ referencedColumns: ["id"];
2091
+ },
2092
+ {
2093
+ foreignKeyName: "fk_tasks_parent";
2094
+ columns: ["parent_task_id"];
2095
+ isOneToOne: false;
2096
+ referencedRelation: "prj_tasks";
2097
+ referencedColumns: ["id"];
2098
+ },
2099
+ {
2100
+ foreignKeyName: "fk_tasks_project";
2101
+ columns: ["project_id"];
2102
+ isOneToOne: false;
2103
+ referencedRelation: "prj_projects";
2104
+ referencedColumns: ["id"];
2105
+ },
2042
2106
  {
2043
2107
  foreignKeyName: "prj_tasks_milestone_id_fkey";
2044
2108
  columns: ["milestone_id"];
@@ -3778,10 +3842,8 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
3778
3842
  };
3779
3843
  deployments: {
3780
3844
  Row: {
3781
- compiled_docs: Json | null;
3782
3845
  created_at: string;
3783
3846
  deployment_version: string | null;
3784
- documentation: Json | null;
3785
3847
  error_message: string | null;
3786
3848
  id: string;
3787
3849
  organization_id: string;
@@ -3793,10 +3855,8 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
3793
3855
  updated_at: string;
3794
3856
  };
3795
3857
  Insert: {
3796
- compiled_docs?: Json | null;
3797
3858
  created_at?: string;
3798
3859
  deployment_version?: string | null;
3799
- documentation?: Json | null;
3800
3860
  error_message?: string | null;
3801
3861
  id?: string;
3802
3862
  organization_id: string;
@@ -3808,10 +3868,8 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
3808
3868
  updated_at?: string;
3809
3869
  };
3810
3870
  Update: {
3811
- compiled_docs?: Json | null;
3812
3871
  created_at?: string;
3813
3872
  deployment_version?: string | null;
3814
- documentation?: Json | null;
3815
3873
  error_message?: string | null;
3816
3874
  id?: string;
3817
3875
  organization_id?: string;
@@ -4300,6 +4358,12 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
4300
4358
  updated_at?: string;
4301
4359
  };
4302
4360
  Relationships: [{
4361
+ foreignKeyName: "fk_milestones_project";
4362
+ columns: ["project_id"];
4363
+ isOneToOne: false;
4364
+ referencedRelation: "prj_projects";
4365
+ referencedColumns: ["id"];
4366
+ }, {
4303
4367
  foreignKeyName: "prj_milestones_organization_id_fkey";
4304
4368
  columns: ["organization_id"];
4305
4369
  isOneToOne: false;
@@ -4357,6 +4421,30 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
4357
4421
  type?: string;
4358
4422
  };
4359
4423
  Relationships: [{
4424
+ foreignKeyName: "fk_notes_created_by";
4425
+ columns: ["created_by"];
4426
+ isOneToOne: false;
4427
+ referencedRelation: "users";
4428
+ referencedColumns: ["id"];
4429
+ }, {
4430
+ foreignKeyName: "fk_notes_milestone";
4431
+ columns: ["milestone_id"];
4432
+ isOneToOne: false;
4433
+ referencedRelation: "prj_milestones";
4434
+ referencedColumns: ["id"];
4435
+ }, {
4436
+ foreignKeyName: "fk_notes_project";
4437
+ columns: ["project_id"];
4438
+ isOneToOne: false;
4439
+ referencedRelation: "prj_projects";
4440
+ referencedColumns: ["id"];
4441
+ }, {
4442
+ foreignKeyName: "fk_notes_task";
4443
+ columns: ["task_id"];
4444
+ isOneToOne: false;
4445
+ referencedRelation: "prj_tasks";
4446
+ referencedColumns: ["id"];
4447
+ }, {
4360
4448
  foreignKeyName: "prj_notes_created_by_fkey";
4361
4449
  columns: ["created_by"];
4362
4450
  isOneToOne: false;
@@ -4441,6 +4529,18 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
4441
4529
  updated_at?: string;
4442
4530
  };
4443
4531
  Relationships: [{
4532
+ foreignKeyName: "fk_projects_company";
4533
+ columns: ["client_company_id"];
4534
+ isOneToOne: false;
4535
+ referencedRelation: "acq_companies";
4536
+ referencedColumns: ["id"];
4537
+ }, {
4538
+ foreignKeyName: "fk_projects_deal";
4539
+ columns: ["deal_id"];
4540
+ isOneToOne: false;
4541
+ referencedRelation: "acq_deals";
4542
+ referencedColumns: ["id"];
4543
+ }, {
4444
4544
  foreignKeyName: "prj_projects_client_company_id_fkey";
4445
4545
  columns: ["client_company_id"];
4446
4546
  isOneToOne: false;
@@ -4519,6 +4619,24 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
4519
4619
  updated_at?: string;
4520
4620
  };
4521
4621
  Relationships: [{
4622
+ foreignKeyName: "fk_tasks_milestone";
4623
+ columns: ["milestone_id"];
4624
+ isOneToOne: false;
4625
+ referencedRelation: "prj_milestones";
4626
+ referencedColumns: ["id"];
4627
+ }, {
4628
+ foreignKeyName: "fk_tasks_parent";
4629
+ columns: ["parent_task_id"];
4630
+ isOneToOne: false;
4631
+ referencedRelation: "prj_tasks";
4632
+ referencedColumns: ["id"];
4633
+ }, {
4634
+ foreignKeyName: "fk_tasks_project";
4635
+ columns: ["project_id"];
4636
+ isOneToOne: false;
4637
+ referencedRelation: "prj_projects";
4638
+ referencedColumns: ["id"];
4639
+ }, {
4522
4640
  foreignKeyName: "prj_tasks_milestone_id_fkey";
4523
4641
  columns: ["milestone_id"];
4524
4642
  isOneToOne: false;
@@ -1704,10 +1704,8 @@ type Database = {
1704
1704
  };
1705
1705
  deployments: {
1706
1706
  Row: {
1707
- compiled_docs: Json | null;
1708
1707
  created_at: string;
1709
1708
  deployment_version: string | null;
1710
- documentation: Json | null;
1711
1709
  error_message: string | null;
1712
1710
  id: string;
1713
1711
  organization_id: string;
@@ -1719,10 +1717,8 @@ type Database = {
1719
1717
  updated_at: string;
1720
1718
  };
1721
1719
  Insert: {
1722
- compiled_docs?: Json | null;
1723
1720
  created_at?: string;
1724
1721
  deployment_version?: string | null;
1725
- documentation?: Json | null;
1726
1722
  error_message?: string | null;
1727
1723
  id?: string;
1728
1724
  organization_id: string;
@@ -1734,10 +1730,8 @@ type Database = {
1734
1730
  updated_at?: string;
1735
1731
  };
1736
1732
  Update: {
1737
- compiled_docs?: Json | null;
1738
1733
  created_at?: string;
1739
1734
  deployment_version?: string | null;
1740
- documentation?: Json | null;
1741
1735
  error_message?: string | null;
1742
1736
  id?: string;
1743
1737
  organization_id?: string;
@@ -2249,6 +2243,13 @@ type Database = {
2249
2243
  updated_at?: string;
2250
2244
  };
2251
2245
  Relationships: [
2246
+ {
2247
+ foreignKeyName: "fk_milestones_project";
2248
+ columns: ["project_id"];
2249
+ isOneToOne: false;
2250
+ referencedRelation: "prj_projects";
2251
+ referencedColumns: ["id"];
2252
+ },
2252
2253
  {
2253
2254
  foreignKeyName: "prj_milestones_organization_id_fkey";
2254
2255
  columns: ["organization_id"];
@@ -2309,6 +2310,34 @@ type Database = {
2309
2310
  type?: string;
2310
2311
  };
2311
2312
  Relationships: [
2313
+ {
2314
+ foreignKeyName: "fk_notes_created_by";
2315
+ columns: ["created_by"];
2316
+ isOneToOne: false;
2317
+ referencedRelation: "users";
2318
+ referencedColumns: ["id"];
2319
+ },
2320
+ {
2321
+ foreignKeyName: "fk_notes_milestone";
2322
+ columns: ["milestone_id"];
2323
+ isOneToOne: false;
2324
+ referencedRelation: "prj_milestones";
2325
+ referencedColumns: ["id"];
2326
+ },
2327
+ {
2328
+ foreignKeyName: "fk_notes_project";
2329
+ columns: ["project_id"];
2330
+ isOneToOne: false;
2331
+ referencedRelation: "prj_projects";
2332
+ referencedColumns: ["id"];
2333
+ },
2334
+ {
2335
+ foreignKeyName: "fk_notes_task";
2336
+ columns: ["task_id"];
2337
+ isOneToOne: false;
2338
+ referencedRelation: "prj_tasks";
2339
+ referencedColumns: ["id"];
2340
+ },
2312
2341
  {
2313
2342
  foreignKeyName: "prj_notes_created_by_fkey";
2314
2343
  columns: ["created_by"];
@@ -2399,6 +2428,20 @@ type Database = {
2399
2428
  updated_at?: string;
2400
2429
  };
2401
2430
  Relationships: [
2431
+ {
2432
+ foreignKeyName: "fk_projects_company";
2433
+ columns: ["client_company_id"];
2434
+ isOneToOne: false;
2435
+ referencedRelation: "acq_companies";
2436
+ referencedColumns: ["id"];
2437
+ },
2438
+ {
2439
+ foreignKeyName: "fk_projects_deal";
2440
+ columns: ["deal_id"];
2441
+ isOneToOne: false;
2442
+ referencedRelation: "acq_deals";
2443
+ referencedColumns: ["id"];
2444
+ },
2402
2445
  {
2403
2446
  foreignKeyName: "prj_projects_client_company_id_fkey";
2404
2447
  columns: ["client_company_id"];
@@ -2481,6 +2524,27 @@ type Database = {
2481
2524
  updated_at?: string;
2482
2525
  };
2483
2526
  Relationships: [
2527
+ {
2528
+ foreignKeyName: "fk_tasks_milestone";
2529
+ columns: ["milestone_id"];
2530
+ isOneToOne: false;
2531
+ referencedRelation: "prj_milestones";
2532
+ referencedColumns: ["id"];
2533
+ },
2534
+ {
2535
+ foreignKeyName: "fk_tasks_parent";
2536
+ columns: ["parent_task_id"];
2537
+ isOneToOne: false;
2538
+ referencedRelation: "prj_tasks";
2539
+ referencedColumns: ["id"];
2540
+ },
2541
+ {
2542
+ foreignKeyName: "fk_tasks_project";
2543
+ columns: ["project_id"];
2544
+ isOneToOne: false;
2545
+ referencedRelation: "prj_projects";
2546
+ referencedColumns: ["id"];
2547
+ },
2484
2548
  {
2485
2549
  foreignKeyName: "prj_tasks_milestone_id_fkey";
2486
2550
  columns: ["milestone_id"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/ui",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
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",
@@ -206,7 +206,7 @@
206
206
  "tsup": "^8.0.0",
207
207
  "typescript": "5.9.2",
208
208
  "vite": "^7.0.0",
209
- "@repo/core": "0.6.0",
209
+ "@repo/core": "0.7.0",
210
210
  "@repo/typescript-config": "0.0.0",
211
211
  "@repo/eslint-config": "0.0.0"
212
212
  },
@@ -8,7 +8,7 @@ The hooks barrel is the published headless hook surface for the UI package.
8
8
  - Scheduling hooks
9
9
  - Monitoring, observability, and notification hooks
10
10
  - Session and SSE hooks
11
- - Operations hooks, including command-view and knowledge-base helpers
11
+ - Operations hooks, including command-view helpers
12
12
  - Feature access, table state, and service helpers
13
13
  - Acquisition and delivery hooks
14
14
 
@@ -21,4 +21,3 @@ The hooks barrel is the published headless hook surface for the UI package.
21
21
  ## Notes
22
22
 
23
23
  - This barrel is intentionally headless. It should not pull in the visual component layer.
24
-