@elevasis/ui 1.26.1 → 1.27.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.
- package/dist/charts/index.js +2 -2
- package/dist/{chunk-AWT255UH.js → chunk-2IJCM3VQ.js} +37 -37
- package/dist/chunk-5COLSYBE.js +199 -0
- package/dist/{chunk-RMPXGBNI.js → chunk-5JSR6TL5.js} +2 -2
- package/dist/chunk-BAGYETKM.js +635 -0
- package/dist/{chunk-L3GVDMCA.js → chunk-C27LLJM6.js} +3 -195
- package/dist/{chunk-O4UB5DQQ.js → chunk-F2J7675J.js} +1 -1
- package/dist/chunk-ITCEULI5.js +238 -0
- package/dist/{chunk-4WKWLFBZ.js → chunk-P5EWG45B.js} +1 -1
- package/dist/{chunk-BS4J2LAW.js → chunk-QTD5HPKD.js} +1 -1
- package/dist/{chunk-ZVJKIJFG.js → chunk-RCQPWA5X.js} +13 -42
- package/dist/chunk-TLAIQC7B.js +6382 -0
- package/dist/{chunk-FEZZ3IDU.js → chunk-TXPUIHX2.js} +10 -10
- package/dist/{chunk-L4XXM55J.js → chunk-W4VYXIN7.js} +142 -3
- package/dist/chunk-WJ7W7JU4.js +2115 -0
- package/dist/{chunk-YNGQ7U5H.js → chunk-WLNEJ6JJ.js} +2 -2
- package/dist/{chunk-4INR75ZS.js → chunk-Y2SYGFRF.js} +589 -65
- package/dist/components/index.d.ts +333 -73
- package/dist/components/index.js +838 -686
- package/dist/features/auth/index.d.ts +125 -0
- package/dist/features/auth/index.js +2 -2
- package/dist/features/dashboard/index.d.ts +28 -2
- package/dist/features/dashboard/index.js +21 -635
- package/dist/features/monitoring/index.d.ts +28 -1
- package/dist/features/monitoring/index.js +19 -529
- package/dist/features/operations/index.d.ts +51 -8
- package/dist/features/operations/index.js +25 -3760
- package/dist/features/settings/index.d.ts +153 -1
- package/dist/features/settings/index.js +19 -1438
- package/dist/hooks/index.d.ts +262 -25
- package/dist/hooks/index.js +12 -8
- package/dist/hooks/published.d.ts +137 -25
- package/dist/hooks/published.js +11 -7
- package/dist/index.d.ts +310 -28
- package/dist/index.js +12 -11
- package/dist/initialization/index.d.ts +125 -0
- package/dist/layout/index.d.ts +2 -0
- package/dist/layout/index.js +6 -5
- package/dist/organization/index.js +1 -2
- package/dist/profile/index.d.ts +125 -0
- package/dist/provider/index.d.ts +48 -3
- package/dist/provider/index.js +10 -4
- package/dist/provider/published.d.ts +48 -3
- package/dist/provider/published.js +8 -2
- package/dist/supabase/index.d.ts +242 -0
- package/dist/theme/index.js +2 -2
- package/dist/types/index.d.ts +126 -1
- package/package.json +3 -3
- package/dist/chunk-LR4WVA7W.js +0 -682
- package/dist/chunk-R7WLWGPO.js +0 -126
- package/dist/chunk-TCKIAHDC.js +0 -2626
- package/dist/chunk-V7XHGJQZ.js +0 -145
- package/dist/{chunk-WWEMNIHW.js → chunk-YYBM5LNJ.js} +1 -1
|
@@ -534,6 +534,106 @@ type Database = {
|
|
|
534
534
|
}
|
|
535
535
|
];
|
|
536
536
|
};
|
|
537
|
+
acq_list_companies: {
|
|
538
|
+
Row: {
|
|
539
|
+
added_at: string;
|
|
540
|
+
added_by: string | null;
|
|
541
|
+
company_id: string;
|
|
542
|
+
id: string;
|
|
543
|
+
list_id: string;
|
|
544
|
+
source_execution_id: string | null;
|
|
545
|
+
source_input_hash: string | null;
|
|
546
|
+
source_resource_id: string | null;
|
|
547
|
+
stage: string | null;
|
|
548
|
+
stage_updated_at: string | null;
|
|
549
|
+
};
|
|
550
|
+
Insert: {
|
|
551
|
+
added_at?: string;
|
|
552
|
+
added_by?: string | null;
|
|
553
|
+
company_id: string;
|
|
554
|
+
id?: string;
|
|
555
|
+
list_id: string;
|
|
556
|
+
source_execution_id?: string | null;
|
|
557
|
+
source_input_hash?: string | null;
|
|
558
|
+
source_resource_id?: string | null;
|
|
559
|
+
stage?: string | null;
|
|
560
|
+
stage_updated_at?: string | null;
|
|
561
|
+
};
|
|
562
|
+
Update: {
|
|
563
|
+
added_at?: string;
|
|
564
|
+
added_by?: string | null;
|
|
565
|
+
company_id?: string;
|
|
566
|
+
id?: string;
|
|
567
|
+
list_id?: string;
|
|
568
|
+
source_execution_id?: string | null;
|
|
569
|
+
source_input_hash?: string | null;
|
|
570
|
+
source_resource_id?: string | null;
|
|
571
|
+
stage?: string | null;
|
|
572
|
+
stage_updated_at?: string | null;
|
|
573
|
+
};
|
|
574
|
+
Relationships: [
|
|
575
|
+
{
|
|
576
|
+
foreignKeyName: "acq_list_companies_company_id_fkey";
|
|
577
|
+
columns: ["company_id"];
|
|
578
|
+
isOneToOne: false;
|
|
579
|
+
referencedRelation: "acq_companies";
|
|
580
|
+
referencedColumns: ["id"];
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
foreignKeyName: "acq_list_companies_list_id_fkey";
|
|
584
|
+
columns: ["list_id"];
|
|
585
|
+
isOneToOne: false;
|
|
586
|
+
referencedRelation: "acq_lists";
|
|
587
|
+
referencedColumns: ["id"];
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
foreignKeyName: "acq_list_companies_source_execution_id_fkey";
|
|
591
|
+
columns: ["source_execution_id"];
|
|
592
|
+
isOneToOne: false;
|
|
593
|
+
referencedRelation: "execution_logs";
|
|
594
|
+
referencedColumns: ["execution_id"];
|
|
595
|
+
}
|
|
596
|
+
];
|
|
597
|
+
};
|
|
598
|
+
acq_list_executions: {
|
|
599
|
+
Row: {
|
|
600
|
+
created_at: string;
|
|
601
|
+
execution_id: string;
|
|
602
|
+
id: string;
|
|
603
|
+
list_id: string;
|
|
604
|
+
payload: Json;
|
|
605
|
+
};
|
|
606
|
+
Insert: {
|
|
607
|
+
created_at?: string;
|
|
608
|
+
execution_id: string;
|
|
609
|
+
id?: string;
|
|
610
|
+
list_id: string;
|
|
611
|
+
payload?: Json;
|
|
612
|
+
};
|
|
613
|
+
Update: {
|
|
614
|
+
created_at?: string;
|
|
615
|
+
execution_id?: string;
|
|
616
|
+
id?: string;
|
|
617
|
+
list_id?: string;
|
|
618
|
+
payload?: Json;
|
|
619
|
+
};
|
|
620
|
+
Relationships: [
|
|
621
|
+
{
|
|
622
|
+
foreignKeyName: "acq_list_executions_execution_id_fkey";
|
|
623
|
+
columns: ["execution_id"];
|
|
624
|
+
isOneToOne: false;
|
|
625
|
+
referencedRelation: "execution_logs";
|
|
626
|
+
referencedColumns: ["execution_id"];
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
foreignKeyName: "acq_list_executions_list_id_fkey";
|
|
630
|
+
columns: ["list_id"];
|
|
631
|
+
isOneToOne: false;
|
|
632
|
+
referencedRelation: "acq_lists";
|
|
633
|
+
referencedColumns: ["id"];
|
|
634
|
+
}
|
|
635
|
+
];
|
|
636
|
+
};
|
|
537
637
|
acq_list_members: {
|
|
538
638
|
Row: {
|
|
539
639
|
added_at: string;
|
|
@@ -541,6 +641,11 @@ type Database = {
|
|
|
541
641
|
contact_id: string;
|
|
542
642
|
id: string;
|
|
543
643
|
list_id: string;
|
|
644
|
+
source_execution_id: string | null;
|
|
645
|
+
source_input_hash: string | null;
|
|
646
|
+
source_resource_id: string | null;
|
|
647
|
+
stage: string | null;
|
|
648
|
+
stage_updated_at: string | null;
|
|
544
649
|
};
|
|
545
650
|
Insert: {
|
|
546
651
|
added_at?: string;
|
|
@@ -548,6 +653,11 @@ type Database = {
|
|
|
548
653
|
contact_id: string;
|
|
549
654
|
id?: string;
|
|
550
655
|
list_id: string;
|
|
656
|
+
source_execution_id?: string | null;
|
|
657
|
+
source_input_hash?: string | null;
|
|
658
|
+
source_resource_id?: string | null;
|
|
659
|
+
stage?: string | null;
|
|
660
|
+
stage_updated_at?: string | null;
|
|
551
661
|
};
|
|
552
662
|
Update: {
|
|
553
663
|
added_at?: string;
|
|
@@ -555,6 +665,11 @@ type Database = {
|
|
|
555
665
|
contact_id?: string;
|
|
556
666
|
id?: string;
|
|
557
667
|
list_id?: string;
|
|
668
|
+
source_execution_id?: string | null;
|
|
669
|
+
source_input_hash?: string | null;
|
|
670
|
+
source_resource_id?: string | null;
|
|
671
|
+
stage?: string | null;
|
|
672
|
+
stage_updated_at?: string | null;
|
|
558
673
|
};
|
|
559
674
|
Relationships: [
|
|
560
675
|
{
|
|
@@ -570,6 +685,13 @@ type Database = {
|
|
|
570
685
|
isOneToOne: false;
|
|
571
686
|
referencedRelation: "acq_lists";
|
|
572
687
|
referencedColumns: ["id"];
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
foreignKeyName: "acq_list_members_source_execution_id_fkey";
|
|
691
|
+
columns: ["source_execution_id"];
|
|
692
|
+
isOneToOne: false;
|
|
693
|
+
referencedRelation: "execution_logs";
|
|
694
|
+
referencedColumns: ["execution_id"];
|
|
573
695
|
}
|
|
574
696
|
];
|
|
575
697
|
};
|
|
@@ -577,6 +699,7 @@ type Database = {
|
|
|
577
699
|
Row: {
|
|
578
700
|
batch_ids: string[];
|
|
579
701
|
completed_at: string | null;
|
|
702
|
+
config: Json;
|
|
580
703
|
created_at: string;
|
|
581
704
|
description: string | null;
|
|
582
705
|
id: string;
|
|
@@ -591,6 +714,7 @@ type Database = {
|
|
|
591
714
|
Insert: {
|
|
592
715
|
batch_ids?: string[];
|
|
593
716
|
completed_at?: string | null;
|
|
717
|
+
config?: Json;
|
|
594
718
|
created_at?: string;
|
|
595
719
|
description?: string | null;
|
|
596
720
|
id?: string;
|
|
@@ -605,6 +729,7 @@ type Database = {
|
|
|
605
729
|
Update: {
|
|
606
730
|
batch_ids?: string[];
|
|
607
731
|
completed_at?: string | null;
|
|
732
|
+
config?: Json;
|
|
608
733
|
created_at?: string;
|
|
609
734
|
description?: string | null;
|
|
610
735
|
id?: string;
|
package/dist/layout/index.d.ts
CHANGED
|
@@ -270,6 +270,8 @@ interface LinkItem {
|
|
|
270
270
|
label: string;
|
|
271
271
|
link: string;
|
|
272
272
|
onClick?: () => void;
|
|
273
|
+
/** Optional tour target ID for onboarding highlights on sub-links. */
|
|
274
|
+
dataOnboardingTourId?: string;
|
|
273
275
|
}
|
|
274
276
|
interface LinksGroupProps {
|
|
275
277
|
icon: React$1.ComponentType<{
|
package/dist/layout/index.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
export { AppShellContainer, AppShellContentContainer, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CyberParticles, LinksGroup, Sidebar, SidebarContext, SidebarProvider,
|
|
2
|
-
export { CollapsibleSidebarGroup, PageContainer, SidebarListItem, SubshellLoader, SubshellSidebarSection } from '../chunk-
|
|
1
|
+
export { AppShellContainer, AppShellContentContainer, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CyberParticles, LinksGroup, Sidebar, SidebarContext, SidebarProvider, Topbar, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from '../chunk-C27LLJM6.js';
|
|
2
|
+
export { CollapsibleSidebarGroup, PageContainer, SidebarListItem, SubshellLoader, SubshellSidebarSection } from '../chunk-2IJCM3VQ.js';
|
|
3
3
|
import '../chunk-NNKKBSJN.js';
|
|
4
|
-
export { AppShellCenteredContainer, AppShellError, AppShellLoader } from '../chunk-
|
|
5
|
-
export { sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarListItemIconSize, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, topbarHeight } from '../chunk-QJ2S46NI.js';
|
|
6
|
-
import '../chunk-MHW43EOH.js';
|
|
4
|
+
export { AppShellCenteredContainer, AppShellError, AppShellLoader } from '../chunk-YYBM5LNJ.js';
|
|
7
5
|
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground } from '../chunk-CYXZHBP4.js';
|
|
6
|
+
export { SubshellContainer, SubshellContentContainer, SubshellRightSideContainer, SubshellSidebar } from '../chunk-5COLSYBE.js';
|
|
7
|
+
import '../chunk-MHW43EOH.js';
|
|
8
8
|
import '../chunk-QJ2KCHKX.js';
|
|
9
|
+
export { sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarListItemIconSize, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, topbarHeight } from '../chunk-QJ2S46NI.js';
|
|
9
10
|
import '../chunk-Q7DJKLEN.js';
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
export { OrganizationSwitcher, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from '../chunk-
|
|
1
|
+
export { OrganizationProvider, OrganizationSwitcher, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from '../chunk-W4VYXIN7.js';
|
|
2
2
|
import '../chunk-RNP5R5I3.js';
|
|
3
|
-
export { OrganizationProvider } from '../chunk-V7XHGJQZ.js';
|
|
4
3
|
export { OrganizationContext, useOrganization } from '../chunk-DD3CCMCZ.js';
|
|
5
4
|
import '../chunk-QEPXAWE2.js';
|
|
6
5
|
import '../chunk-BRJ3QZ4E.js';
|
package/dist/profile/index.d.ts
CHANGED
|
@@ -534,6 +534,106 @@ type Database = {
|
|
|
534
534
|
}
|
|
535
535
|
];
|
|
536
536
|
};
|
|
537
|
+
acq_list_companies: {
|
|
538
|
+
Row: {
|
|
539
|
+
added_at: string;
|
|
540
|
+
added_by: string | null;
|
|
541
|
+
company_id: string;
|
|
542
|
+
id: string;
|
|
543
|
+
list_id: string;
|
|
544
|
+
source_execution_id: string | null;
|
|
545
|
+
source_input_hash: string | null;
|
|
546
|
+
source_resource_id: string | null;
|
|
547
|
+
stage: string | null;
|
|
548
|
+
stage_updated_at: string | null;
|
|
549
|
+
};
|
|
550
|
+
Insert: {
|
|
551
|
+
added_at?: string;
|
|
552
|
+
added_by?: string | null;
|
|
553
|
+
company_id: string;
|
|
554
|
+
id?: string;
|
|
555
|
+
list_id: string;
|
|
556
|
+
source_execution_id?: string | null;
|
|
557
|
+
source_input_hash?: string | null;
|
|
558
|
+
source_resource_id?: string | null;
|
|
559
|
+
stage?: string | null;
|
|
560
|
+
stage_updated_at?: string | null;
|
|
561
|
+
};
|
|
562
|
+
Update: {
|
|
563
|
+
added_at?: string;
|
|
564
|
+
added_by?: string | null;
|
|
565
|
+
company_id?: string;
|
|
566
|
+
id?: string;
|
|
567
|
+
list_id?: string;
|
|
568
|
+
source_execution_id?: string | null;
|
|
569
|
+
source_input_hash?: string | null;
|
|
570
|
+
source_resource_id?: string | null;
|
|
571
|
+
stage?: string | null;
|
|
572
|
+
stage_updated_at?: string | null;
|
|
573
|
+
};
|
|
574
|
+
Relationships: [
|
|
575
|
+
{
|
|
576
|
+
foreignKeyName: "acq_list_companies_company_id_fkey";
|
|
577
|
+
columns: ["company_id"];
|
|
578
|
+
isOneToOne: false;
|
|
579
|
+
referencedRelation: "acq_companies";
|
|
580
|
+
referencedColumns: ["id"];
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
foreignKeyName: "acq_list_companies_list_id_fkey";
|
|
584
|
+
columns: ["list_id"];
|
|
585
|
+
isOneToOne: false;
|
|
586
|
+
referencedRelation: "acq_lists";
|
|
587
|
+
referencedColumns: ["id"];
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
foreignKeyName: "acq_list_companies_source_execution_id_fkey";
|
|
591
|
+
columns: ["source_execution_id"];
|
|
592
|
+
isOneToOne: false;
|
|
593
|
+
referencedRelation: "execution_logs";
|
|
594
|
+
referencedColumns: ["execution_id"];
|
|
595
|
+
}
|
|
596
|
+
];
|
|
597
|
+
};
|
|
598
|
+
acq_list_executions: {
|
|
599
|
+
Row: {
|
|
600
|
+
created_at: string;
|
|
601
|
+
execution_id: string;
|
|
602
|
+
id: string;
|
|
603
|
+
list_id: string;
|
|
604
|
+
payload: Json;
|
|
605
|
+
};
|
|
606
|
+
Insert: {
|
|
607
|
+
created_at?: string;
|
|
608
|
+
execution_id: string;
|
|
609
|
+
id?: string;
|
|
610
|
+
list_id: string;
|
|
611
|
+
payload?: Json;
|
|
612
|
+
};
|
|
613
|
+
Update: {
|
|
614
|
+
created_at?: string;
|
|
615
|
+
execution_id?: string;
|
|
616
|
+
id?: string;
|
|
617
|
+
list_id?: string;
|
|
618
|
+
payload?: Json;
|
|
619
|
+
};
|
|
620
|
+
Relationships: [
|
|
621
|
+
{
|
|
622
|
+
foreignKeyName: "acq_list_executions_execution_id_fkey";
|
|
623
|
+
columns: ["execution_id"];
|
|
624
|
+
isOneToOne: false;
|
|
625
|
+
referencedRelation: "execution_logs";
|
|
626
|
+
referencedColumns: ["execution_id"];
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
foreignKeyName: "acq_list_executions_list_id_fkey";
|
|
630
|
+
columns: ["list_id"];
|
|
631
|
+
isOneToOne: false;
|
|
632
|
+
referencedRelation: "acq_lists";
|
|
633
|
+
referencedColumns: ["id"];
|
|
634
|
+
}
|
|
635
|
+
];
|
|
636
|
+
};
|
|
537
637
|
acq_list_members: {
|
|
538
638
|
Row: {
|
|
539
639
|
added_at: string;
|
|
@@ -541,6 +641,11 @@ type Database = {
|
|
|
541
641
|
contact_id: string;
|
|
542
642
|
id: string;
|
|
543
643
|
list_id: string;
|
|
644
|
+
source_execution_id: string | null;
|
|
645
|
+
source_input_hash: string | null;
|
|
646
|
+
source_resource_id: string | null;
|
|
647
|
+
stage: string | null;
|
|
648
|
+
stage_updated_at: string | null;
|
|
544
649
|
};
|
|
545
650
|
Insert: {
|
|
546
651
|
added_at?: string;
|
|
@@ -548,6 +653,11 @@ type Database = {
|
|
|
548
653
|
contact_id: string;
|
|
549
654
|
id?: string;
|
|
550
655
|
list_id: string;
|
|
656
|
+
source_execution_id?: string | null;
|
|
657
|
+
source_input_hash?: string | null;
|
|
658
|
+
source_resource_id?: string | null;
|
|
659
|
+
stage?: string | null;
|
|
660
|
+
stage_updated_at?: string | null;
|
|
551
661
|
};
|
|
552
662
|
Update: {
|
|
553
663
|
added_at?: string;
|
|
@@ -555,6 +665,11 @@ type Database = {
|
|
|
555
665
|
contact_id?: string;
|
|
556
666
|
id?: string;
|
|
557
667
|
list_id?: string;
|
|
668
|
+
source_execution_id?: string | null;
|
|
669
|
+
source_input_hash?: string | null;
|
|
670
|
+
source_resource_id?: string | null;
|
|
671
|
+
stage?: string | null;
|
|
672
|
+
stage_updated_at?: string | null;
|
|
558
673
|
};
|
|
559
674
|
Relationships: [
|
|
560
675
|
{
|
|
@@ -570,6 +685,13 @@ type Database = {
|
|
|
570
685
|
isOneToOne: false;
|
|
571
686
|
referencedRelation: "acq_lists";
|
|
572
687
|
referencedColumns: ["id"];
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
foreignKeyName: "acq_list_members_source_execution_id_fkey";
|
|
691
|
+
columns: ["source_execution_id"];
|
|
692
|
+
isOneToOne: false;
|
|
693
|
+
referencedRelation: "execution_logs";
|
|
694
|
+
referencedColumns: ["execution_id"];
|
|
573
695
|
}
|
|
574
696
|
];
|
|
575
697
|
};
|
|
@@ -577,6 +699,7 @@ type Database = {
|
|
|
577
699
|
Row: {
|
|
578
700
|
batch_ids: string[];
|
|
579
701
|
completed_at: string | null;
|
|
702
|
+
config: Json;
|
|
580
703
|
created_at: string;
|
|
581
704
|
description: string | null;
|
|
582
705
|
id: string;
|
|
@@ -591,6 +714,7 @@ type Database = {
|
|
|
591
714
|
Insert: {
|
|
592
715
|
batch_ids?: string[];
|
|
593
716
|
completed_at?: string | null;
|
|
717
|
+
config?: Json;
|
|
594
718
|
created_at?: string;
|
|
595
719
|
description?: string | null;
|
|
596
720
|
id?: string;
|
|
@@ -605,6 +729,7 @@ type Database = {
|
|
|
605
729
|
Update: {
|
|
606
730
|
batch_ids?: string[];
|
|
607
731
|
completed_at?: string | null;
|
|
732
|
+
config?: Json;
|
|
608
733
|
created_at?: string;
|
|
609
734
|
description?: string | null;
|
|
610
735
|
id?: string;
|
package/dist/provider/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { ReactNode } from 'react';
|
|
2
|
+
import { ReactNode, ComponentType } from 'react';
|
|
3
3
|
import { QueryClient } from '@tanstack/react-query';
|
|
4
4
|
import { MantineThemeOverride } from '@mantine/core';
|
|
5
5
|
|
|
@@ -272,6 +272,51 @@ interface ElevasisServiceProviderProps {
|
|
|
272
272
|
*/
|
|
273
273
|
declare function ElevasisCoreProvider({ auth, queryClient, apiUrl, onError, notifications, children }: ElevasisCoreProviderProps): react_jsx_runtime.JSX.Element;
|
|
274
274
|
|
|
275
|
+
interface FeatureNavLink {
|
|
276
|
+
label: string;
|
|
277
|
+
link: string;
|
|
278
|
+
featureKey?: string;
|
|
279
|
+
onClick?: () => void;
|
|
280
|
+
}
|
|
281
|
+
interface FeatureNavEntry {
|
|
282
|
+
label: string;
|
|
283
|
+
icon: ComponentType;
|
|
284
|
+
link?: string;
|
|
285
|
+
featureKey?: string;
|
|
286
|
+
requiresAdmin?: boolean;
|
|
287
|
+
dataOnboardingTourId?: string;
|
|
288
|
+
links?: FeatureNavLink[];
|
|
289
|
+
}
|
|
290
|
+
type FeatureSidebarComponent = ComponentType;
|
|
291
|
+
interface FeatureModule {
|
|
292
|
+
key: string;
|
|
293
|
+
label?: string;
|
|
294
|
+
navEntry?: FeatureNavEntry;
|
|
295
|
+
sidebar?: FeatureSidebarComponent;
|
|
296
|
+
subshellRoutes?: string[];
|
|
297
|
+
}
|
|
298
|
+
interface FeatureRegistry {
|
|
299
|
+
features: FeatureModule[];
|
|
300
|
+
}
|
|
301
|
+
interface ElevasisFeaturesProviderProps {
|
|
302
|
+
features: FeatureModule[];
|
|
303
|
+
children: ReactNode;
|
|
304
|
+
}
|
|
305
|
+
interface ElevasisFeaturesContextValue {
|
|
306
|
+
navItems: FeatureNavEntry[];
|
|
307
|
+
enabledFeatures: FeatureModule[];
|
|
308
|
+
allFeatures: FeatureModule[];
|
|
309
|
+
isFeatureEnabled: (key: string) => boolean;
|
|
310
|
+
getFeature: (key: string) => FeatureModule | undefined;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
declare function useElevasisFeatures(): ElevasisFeaturesContextValue;
|
|
314
|
+
declare function ElevasisFeaturesProvider({ features, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
|
|
315
|
+
|
|
316
|
+
declare function FeatureShell({ children }: {
|
|
317
|
+
children: ReactNode;
|
|
318
|
+
}): react_jsx_runtime.JSX.Element;
|
|
319
|
+
|
|
275
320
|
interface AppearanceConfig {
|
|
276
321
|
/** Background layers rendered behind app content. Defaults to Elevasis background. */
|
|
277
322
|
background?: ReactNode;
|
|
@@ -334,5 +379,5 @@ interface ElevasisUIProviderProps extends Omit<ElevasisCoreProviderProps, 'theme
|
|
|
334
379
|
}
|
|
335
380
|
declare function ElevasisUIProvider({ theme, children, ...coreProps }: ElevasisUIProviderProps): react_jsx_runtime.JSX.Element;
|
|
336
381
|
|
|
337
|
-
export { AppearanceProvider, ElevasisCoreProvider, ElevasisServiceProvider, ElevasisUIProvider, NotificationProvider, useAppearance, useElevasisServices, useNotificationAdapter };
|
|
338
|
-
export type { ApiKeyConfig, AppearanceConfig, AuthConfig, AuthKitConfig, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, NotificationAdapter, PresetName, WithSchemes };
|
|
382
|
+
export { AppearanceProvider, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, ElevasisUIProvider, FeatureShell, NotificationProvider, useAppearance, useElevasisFeatures, useElevasisServices, useNotificationAdapter };
|
|
383
|
+
export type { ApiKeyConfig, AppearanceConfig, AuthConfig, AuthKitConfig, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureRegistry, FeatureSidebarComponent, NotificationAdapter, PresetName, WithSchemes };
|
package/dist/provider/index.js
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
|
-
export { ElevasisUIProvider } from '../chunk-
|
|
1
|
+
export { ElevasisUIProvider } from '../chunk-5JSR6TL5.js';
|
|
2
2
|
import '../chunk-SZHARWKU.js';
|
|
3
|
-
import '../chunk-
|
|
3
|
+
import '../chunk-TXPUIHX2.js';
|
|
4
4
|
import '../chunk-CYXZHBP4.js';
|
|
5
|
-
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-
|
|
5
|
+
export { ElevasisCoreProvider, ElevasisFeaturesProvider, FeatureShell, NotificationProvider, useElevasisFeatures, useNotificationAdapter } from '../chunk-ITCEULI5.js';
|
|
6
|
+
import '../chunk-5COLSYBE.js';
|
|
6
7
|
import '../chunk-NVOCKXUQ.js';
|
|
7
|
-
import '../chunk-
|
|
8
|
+
import '../chunk-MHW43EOH.js';
|
|
9
|
+
import '../chunk-W4VYXIN7.js';
|
|
8
10
|
export { AppearanceProvider, useAppearance } from '../chunk-QJ2KCHKX.js';
|
|
11
|
+
import '../chunk-QJ2S46NI.js';
|
|
12
|
+
import '../chunk-SLVC5OJ2.js';
|
|
13
|
+
import '../chunk-RNP5R5I3.js';
|
|
9
14
|
import '../chunk-IOKL7BKE.js';
|
|
10
15
|
import '../chunk-TUXTSEAF.js';
|
|
11
16
|
import '../chunk-DD3CCMCZ.js';
|
|
12
17
|
export { ElevasisServiceProvider, useElevasisServices } from '../chunk-QEPXAWE2.js';
|
|
13
18
|
import '../chunk-BRJ3QZ4E.js';
|
|
19
|
+
import '../chunk-Q7DJKLEN.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { ReactNode } from 'react';
|
|
2
|
+
import { ReactNode, ComponentType } from 'react';
|
|
3
3
|
import { QueryClient } from '@tanstack/react-query';
|
|
4
4
|
|
|
5
5
|
/** Framework-agnostic theme overrides bundled with a preset (fonts, radius, component styles). */
|
|
@@ -271,6 +271,51 @@ interface ElevasisServiceProviderProps {
|
|
|
271
271
|
*/
|
|
272
272
|
declare function ElevasisCoreProvider({ auth, queryClient, apiUrl, onError, notifications, children }: ElevasisCoreProviderProps): react_jsx_runtime.JSX.Element;
|
|
273
273
|
|
|
274
|
+
interface FeatureNavLink {
|
|
275
|
+
label: string;
|
|
276
|
+
link: string;
|
|
277
|
+
featureKey?: string;
|
|
278
|
+
onClick?: () => void;
|
|
279
|
+
}
|
|
280
|
+
interface FeatureNavEntry {
|
|
281
|
+
label: string;
|
|
282
|
+
icon: ComponentType;
|
|
283
|
+
link?: string;
|
|
284
|
+
featureKey?: string;
|
|
285
|
+
requiresAdmin?: boolean;
|
|
286
|
+
dataOnboardingTourId?: string;
|
|
287
|
+
links?: FeatureNavLink[];
|
|
288
|
+
}
|
|
289
|
+
type FeatureSidebarComponent = ComponentType;
|
|
290
|
+
interface FeatureModule {
|
|
291
|
+
key: string;
|
|
292
|
+
label?: string;
|
|
293
|
+
navEntry?: FeatureNavEntry;
|
|
294
|
+
sidebar?: FeatureSidebarComponent;
|
|
295
|
+
subshellRoutes?: string[];
|
|
296
|
+
}
|
|
297
|
+
interface FeatureRegistry {
|
|
298
|
+
features: FeatureModule[];
|
|
299
|
+
}
|
|
300
|
+
interface ElevasisFeaturesProviderProps {
|
|
301
|
+
features: FeatureModule[];
|
|
302
|
+
children: ReactNode;
|
|
303
|
+
}
|
|
304
|
+
interface ElevasisFeaturesContextValue {
|
|
305
|
+
navItems: FeatureNavEntry[];
|
|
306
|
+
enabledFeatures: FeatureModule[];
|
|
307
|
+
allFeatures: FeatureModule[];
|
|
308
|
+
isFeatureEnabled: (key: string) => boolean;
|
|
309
|
+
getFeature: (key: string) => FeatureModule | undefined;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
declare function useElevasisFeatures(): ElevasisFeaturesContextValue;
|
|
313
|
+
declare function ElevasisFeaturesProvider({ features, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
|
|
314
|
+
|
|
315
|
+
declare function FeatureShell({ children }: {
|
|
316
|
+
children: ReactNode;
|
|
317
|
+
}): react_jsx_runtime.JSX.Element;
|
|
318
|
+
|
|
274
319
|
interface AppearanceConfig {
|
|
275
320
|
/** Background layers rendered behind app content. Defaults to Elevasis background. */
|
|
276
321
|
background?: ReactNode;
|
|
@@ -312,5 +357,5 @@ declare function useElevasisServices(): ElevasisServiceContextValue;
|
|
|
312
357
|
*/
|
|
313
358
|
declare function ElevasisServiceProvider({ apiRequest, organizationId, isReady, children }: ElevasisServiceProviderProps): react_jsx_runtime.JSX.Element;
|
|
314
359
|
|
|
315
|
-
export { AppearanceProvider, ElevasisCoreProvider, ElevasisServiceProvider, NotificationProvider, useAppearance, useElevasisServices, useNotificationAdapter };
|
|
316
|
-
export type { ApiKeyConfig, AppearanceConfig, AuthConfig, AuthKitConfig, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisTokenOverrides, NotificationAdapter, WithSchemes };
|
|
360
|
+
export { AppearanceProvider, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, FeatureShell, NotificationProvider, useAppearance, useElevasisFeatures, useElevasisServices, useNotificationAdapter };
|
|
361
|
+
export type { ApiKeyConfig, AppearanceConfig, AuthConfig, AuthKitConfig, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisTokenOverrides, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureRegistry, FeatureSidebarComponent, NotificationAdapter, WithSchemes };
|
|
@@ -1,9 +1,15 @@
|
|
|
1
|
-
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-
|
|
1
|
+
export { ElevasisCoreProvider, ElevasisFeaturesProvider, FeatureShell, NotificationProvider, useElevasisFeatures, useNotificationAdapter } from '../chunk-ITCEULI5.js';
|
|
2
|
+
import '../chunk-5COLSYBE.js';
|
|
2
3
|
import '../chunk-NVOCKXUQ.js';
|
|
3
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-MHW43EOH.js';
|
|
5
|
+
import '../chunk-W4VYXIN7.js';
|
|
4
6
|
export { AppearanceProvider, useAppearance } from '../chunk-QJ2KCHKX.js';
|
|
7
|
+
import '../chunk-QJ2S46NI.js';
|
|
8
|
+
import '../chunk-SLVC5OJ2.js';
|
|
9
|
+
import '../chunk-RNP5R5I3.js';
|
|
5
10
|
import '../chunk-IOKL7BKE.js';
|
|
6
11
|
import '../chunk-TUXTSEAF.js';
|
|
7
12
|
import '../chunk-DD3CCMCZ.js';
|
|
8
13
|
export { ElevasisServiceProvider, useElevasisServices } from '../chunk-QEPXAWE2.js';
|
|
9
14
|
import '../chunk-BRJ3QZ4E.js';
|
|
15
|
+
import '../chunk-Q7DJKLEN.js';
|