@elevasis/ui 2.12.0 → 2.13.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/app/index.js +5 -5
- package/dist/{chunk-ISVFJCPP.js → chunk-2CGYLRTX.js} +1 -1
- package/dist/{chunk-PXFV47B3.js → chunk-5IBTTMWX.js} +3 -3
- package/dist/{chunk-GHCYUZZE.js → chunk-67BKMKFG.js} +3 -3
- package/dist/{chunk-ETWKPFOO.js → chunk-6RWMRQN5.js} +1 -1
- package/dist/{chunk-TXZXMTZB.js → chunk-6WPKE7C3.js} +1 -1
- package/dist/{chunk-ZKCQEHEJ.js → chunk-BSW5MUAQ.js} +4 -4
- package/dist/{chunk-V7XHGJQZ.js → chunk-FL67C3WY.js} +6 -1
- package/dist/{chunk-WM7JTTPX.js → chunk-FT27I4S7.js} +61 -2
- package/dist/{chunk-MISBW6WW.js → chunk-H333SX3N.js} +1 -1
- package/dist/{chunk-YEX4MQSY.js → chunk-M25JL54Z.js} +3 -3
- package/dist/{chunk-7PLBPEBW.js → chunk-NLFAEJDH.js} +2 -2
- package/dist/{chunk-235RO24Z.js → chunk-PCK553L4.js} +8 -3
- package/dist/{chunk-TYWZABTP.js → chunk-R73EHHPN.js} +89 -46
- package/dist/{chunk-F6SMVMFC.js → chunk-T7R5P5JJ.js} +3 -3
- package/dist/{chunk-F4TPY6YL.js → chunk-WLOQ4IBG.js} +9 -3
- package/dist/{chunk-R7WLWGPO.js → chunk-ZB5GAV7J.js} +1 -1
- package/dist/components/index.d.ts +14 -8
- package/dist/components/index.js +19 -19
- package/dist/features/auth/index.d.ts +7 -4
- package/dist/features/auth/index.js +2 -2
- package/dist/features/crm/index.d.ts +7 -4
- package/dist/features/crm/index.js +7 -7
- package/dist/features/dashboard/index.js +8 -8
- package/dist/features/delivery/index.d.ts +7 -4
- package/dist/features/delivery/index.js +7 -7
- package/dist/features/lead-gen/index.js +11 -11
- package/dist/features/monitoring/index.js +9 -9
- package/dist/features/monitoring/requests/index.d.ts +125 -0
- package/dist/features/operations/index.js +10 -10
- package/dist/features/settings/index.d.ts +7 -4
- package/dist/features/settings/index.js +9 -9
- package/dist/hooks/index.d.ts +130 -10
- package/dist/hooks/index.js +6 -6
- package/dist/hooks/published.d.ts +130 -10
- package/dist/hooks/published.js +6 -6
- package/dist/index.d.ts +130 -10
- package/dist/index.js +7 -7
- package/dist/initialization/index.d.ts +7 -4
- package/dist/layout/index.d.ts +9 -2
- package/dist/layout/index.js +2 -2
- package/dist/organization/index.js +1 -1
- package/dist/profile/index.d.ts +7 -4
- package/dist/provider/index.js +5 -5
- package/dist/provider/published.js +2 -2
- package/dist/supabase/index.d.ts +14 -8
- package/dist/theme/index.js +3 -3
- package/dist/types/index.d.ts +7 -4
- package/package.json +5 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -2511,7 +2511,7 @@ type Database = {
|
|
|
2511
2511
|
}
|
|
2512
2512
|
];
|
|
2513
2513
|
};
|
|
2514
|
-
|
|
2514
|
+
reported_requests: {
|
|
2515
2515
|
Row: {
|
|
2516
2516
|
affected_page: string | null;
|
|
2517
2517
|
category: string;
|
|
@@ -2530,6 +2530,7 @@ type Database = {
|
|
|
2530
2530
|
status: string;
|
|
2531
2531
|
task_id: string | null;
|
|
2532
2532
|
title: string;
|
|
2533
|
+
type: string;
|
|
2533
2534
|
updated_at: string;
|
|
2534
2535
|
};
|
|
2535
2536
|
Insert: {
|
|
@@ -2550,6 +2551,7 @@ type Database = {
|
|
|
2550
2551
|
status?: string;
|
|
2551
2552
|
task_id?: string | null;
|
|
2552
2553
|
title: string;
|
|
2554
|
+
type: string;
|
|
2553
2555
|
updated_at?: string;
|
|
2554
2556
|
};
|
|
2555
2557
|
Update: {
|
|
@@ -2570,25 +2572,26 @@ type Database = {
|
|
|
2570
2572
|
status?: string;
|
|
2571
2573
|
task_id?: string | null;
|
|
2572
2574
|
title?: string;
|
|
2575
|
+
type?: string;
|
|
2573
2576
|
updated_at?: string;
|
|
2574
2577
|
};
|
|
2575
2578
|
Relationships: [
|
|
2576
2579
|
{
|
|
2577
|
-
foreignKeyName: "
|
|
2580
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2578
2581
|
columns: ["organization_id"];
|
|
2579
2582
|
isOneToOne: false;
|
|
2580
2583
|
referencedRelation: "organizations";
|
|
2581
2584
|
referencedColumns: ["id"];
|
|
2582
2585
|
},
|
|
2583
2586
|
{
|
|
2584
|
-
foreignKeyName: "
|
|
2587
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2585
2588
|
columns: ["project_id"];
|
|
2586
2589
|
isOneToOne: false;
|
|
2587
2590
|
referencedRelation: "prj_projects";
|
|
2588
2591
|
referencedColumns: ["id"];
|
|
2589
2592
|
},
|
|
2590
2593
|
{
|
|
2591
|
-
foreignKeyName: "
|
|
2594
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2592
2595
|
columns: ["task_id"];
|
|
2593
2596
|
isOneToOne: false;
|
|
2594
2597
|
referencedRelation: "prj_tasks";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.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",
|
|
@@ -72,6 +72,10 @@
|
|
|
72
72
|
"types": "./dist/features/monitoring/index.d.ts",
|
|
73
73
|
"import": "./dist/features/monitoring/index.js"
|
|
74
74
|
},
|
|
75
|
+
"./features/monitoring/requests": {
|
|
76
|
+
"types": "./dist/features/monitoring/requests/index.d.ts",
|
|
77
|
+
"import": "./dist/features/monitoring/requests/index.js"
|
|
78
|
+
},
|
|
75
79
|
"./features/seo": {
|
|
76
80
|
"types": "./dist/features/seo/index.d.ts",
|
|
77
81
|
"import": "./dist/features/seo/index.js"
|