@elevasis/ui 2.25.4 → 2.25.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/app/index.css +2 -6
- package/dist/app/index.d.ts +63 -56
- package/dist/app/index.js +3 -2
- package/dist/charts/index.js +1 -1
- package/dist/chunk-5RLYII6P.js +314 -0
- package/dist/chunk-6U7AIIHF.js +880 -0
- package/dist/{chunk-5O5VC4HB.js → chunk-7F3IQMLI.js} +1 -1
- package/dist/{chunk-ZBRRVDYJ.js → chunk-ARJPZ66V.js} +42 -760
- package/dist/{chunk-IS53MXE4.js → chunk-BDKM56TP.js} +1 -1
- package/dist/{chunk-FVXM2MN6.js → chunk-C7IBFI5B.js} +1 -1
- package/dist/{chunk-DUUH3CHC.js → chunk-CPAJXBTL.js} +10 -6
- package/dist/{chunk-3FBCFSDF.js → chunk-ECNNI3NT.js} +2 -1
- package/dist/chunk-HAEJ4M54.js +94 -0
- package/dist/{chunk-7RPH2VXV.js → chunk-JXSBOG2R.js} +1 -1
- package/dist/{chunk-E7WTCAVX.js → chunk-KNISO652.js} +2 -2
- package/dist/{chunk-5PLAJ6IS.js → chunk-L7D6KNHV.js} +457 -335
- package/dist/{chunk-JMI7L7Y7.js → chunk-LPM7O6XM.js} +2 -233
- package/dist/{chunk-2XWXFT2Z.js → chunk-QARSVM7Q.js} +1 -1
- package/dist/{chunk-FYT6LYJP.js → chunk-SBQ4MYQV.js} +3 -2
- package/dist/{chunk-MU4VPAMR.js → chunk-YRKQNPK2.js} +1 -1
- package/dist/components/index.css +2 -6
- package/dist/components/index.d.ts +11 -2
- package/dist/components/index.js +25 -23
- package/dist/components/navigation/index.css +2 -6
- package/dist/features/auth/index.css +2 -6
- package/dist/features/crm/index.css +2 -6
- package/dist/features/crm/index.js +9 -8
- package/dist/features/dashboard/index.css +2 -6
- package/dist/features/dashboard/index.js +9 -8
- package/dist/features/delivery/index.css +2 -6
- package/dist/features/delivery/index.js +10 -9
- package/dist/features/knowledge/index.d.ts +33 -0
- package/dist/features/knowledge/index.js +406 -0
- package/dist/features/lead-gen/index.css +2 -6
- package/dist/features/lead-gen/index.d.ts +158 -151
- package/dist/features/lead-gen/index.js +10 -9
- package/dist/features/monitoring/index.css +2 -6
- package/dist/features/monitoring/index.js +10 -9
- package/dist/features/monitoring/requests/index.css +2 -6
- package/dist/features/monitoring/requests/index.js +8 -7
- package/dist/features/operations/index.css +2 -6
- package/dist/features/operations/index.js +15 -13
- package/dist/features/settings/index.css +2 -6
- package/dist/features/settings/index.js +9 -8
- package/dist/hooks/delivery/index.css +2 -6
- package/dist/hooks/index.css +2 -6
- package/dist/hooks/index.d.ts +14 -3
- package/dist/hooks/index.js +8 -7
- package/dist/hooks/published.css +2 -6
- package/dist/hooks/published.d.ts +14 -3
- package/dist/hooks/published.js +8 -7
- package/dist/index.css +2 -6
- package/dist/index.d.ts +611 -593
- package/dist/index.js +8 -7
- package/dist/knowledge/index.d.ts +643 -0
- package/dist/knowledge/index.js +496 -0
- package/dist/organization/index.css +2 -6
- package/dist/provider/index.css +2 -6
- package/dist/provider/index.d.ts +346 -339
- package/dist/provider/index.js +6 -5
- package/dist/provider/published.css +2 -6
- package/dist/provider/published.d.ts +346 -339
- package/dist/provider/published.js +5 -4
- package/dist/vite-plugin-knowledge/index.d.ts +37 -0
- package/dist/vite-plugin-knowledge/index.js +67 -0
- package/package.json +45 -33
- package/src/knowledge/README.md +31 -0
- package/dist/{chunk-U2KJXTTV.js → chunk-TAIX4NO3.js} +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { ReactNode, ComponentType } from 'react';
|
|
3
|
-
import
|
|
3
|
+
import * as z from 'zod';
|
|
4
|
+
import { z as z$1 } from 'zod';
|
|
4
5
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
5
6
|
|
|
6
7
|
interface LeadGenSidebarProps {
|
|
@@ -50,19 +51,19 @@ interface LeadGenSidebarMiddleProps {
|
|
|
50
51
|
}
|
|
51
52
|
declare const LeadGenSidebarMiddle: ({ items }?: LeadGenSidebarMiddleProps) => react_jsx_runtime.JSX.Element;
|
|
52
53
|
|
|
53
|
-
declare const TransitionItemRequestSchema: z.ZodObject<{
|
|
54
|
-
pipelineKey: z.ZodString;
|
|
55
|
-
stageKey: z.ZodString;
|
|
56
|
-
stateKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
57
|
-
reason: z.ZodOptional<z.ZodString>;
|
|
58
|
-
expectedUpdatedAt: z.ZodOptional<z.ZodString>;
|
|
59
|
-
}, z.core.$strict>;
|
|
60
|
-
type TransitionItemRequest = z.infer<typeof TransitionItemRequestSchema>;
|
|
54
|
+
declare const TransitionItemRequestSchema: z$1.ZodObject<{
|
|
55
|
+
pipelineKey: z$1.ZodString;
|
|
56
|
+
stageKey: z$1.ZodString;
|
|
57
|
+
stateKey: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
58
|
+
reason: z$1.ZodOptional<z$1.ZodString>;
|
|
59
|
+
expectedUpdatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
60
|
+
}, z$1.core.$strict>;
|
|
61
|
+
type TransitionItemRequest = z$1.infer<typeof TransitionItemRequestSchema>;
|
|
61
62
|
/**
|
|
62
63
|
* Lifecycle status enum for `acq_lists.status` (mirrors DB CHECK constraint
|
|
63
64
|
* from migration 20260428000003_lead_gen_acq_lists_status_and_config.sql).
|
|
64
65
|
*/
|
|
65
|
-
declare const ListStatusSchema: z.ZodEnum<{
|
|
66
|
+
declare const ListStatusSchema: z$1.ZodEnum<{
|
|
66
67
|
closing: "closing";
|
|
67
68
|
draft: "draft";
|
|
68
69
|
enriching: "enriching";
|
|
@@ -73,190 +74,191 @@ declare const ListStatusSchema: z.ZodEnum<{
|
|
|
73
74
|
* Single list as returned by /api/acquisition/lists/:id etc.
|
|
74
75
|
* Camel-cased domain shape matching AcqList in types.ts.
|
|
75
76
|
*/
|
|
76
|
-
declare const AcqListResponseSchema: z.ZodObject<{
|
|
77
|
-
id: z.ZodString;
|
|
78
|
-
organizationId: z.ZodString;
|
|
79
|
-
name: z.ZodString;
|
|
80
|
-
description: z.ZodNullable<z.ZodString>;
|
|
81
|
-
batchIds: z.ZodArray<z.ZodString>;
|
|
82
|
-
instantlyCampaignId: z.ZodNullable<z.ZodString>;
|
|
83
|
-
status: z.ZodEnum<{
|
|
77
|
+
declare const AcqListResponseSchema: z$1.ZodObject<{
|
|
78
|
+
id: z$1.ZodString;
|
|
79
|
+
organizationId: z$1.ZodString;
|
|
80
|
+
name: z$1.ZodString;
|
|
81
|
+
description: z$1.ZodNullable<z$1.ZodString>;
|
|
82
|
+
batchIds: z$1.ZodArray<z$1.ZodString>;
|
|
83
|
+
instantlyCampaignId: z$1.ZodNullable<z$1.ZodString>;
|
|
84
|
+
status: z$1.ZodEnum<{
|
|
84
85
|
closing: "closing";
|
|
85
86
|
draft: "draft";
|
|
86
87
|
enriching: "enriching";
|
|
87
88
|
launched: "launched";
|
|
88
89
|
archived: "archived";
|
|
89
90
|
}>;
|
|
90
|
-
metadata: z.ZodObject<{
|
|
91
|
-
buildPlanSnapshot: z.ZodOptional<z.ZodObject<{
|
|
92
|
-
templateId: z.ZodString;
|
|
93
|
-
templateLabel: z.ZodString;
|
|
94
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
95
|
-
id: z.ZodString;
|
|
96
|
-
label: z.ZodString;
|
|
97
|
-
description: z.ZodOptional<z.ZodString>;
|
|
98
|
-
primaryEntity: z.ZodEnum<{
|
|
91
|
+
metadata: z$1.ZodObject<{
|
|
92
|
+
buildPlanSnapshot: z$1.ZodOptional<z$1.ZodObject<{
|
|
93
|
+
templateId: z$1.ZodString;
|
|
94
|
+
templateLabel: z$1.ZodString;
|
|
95
|
+
steps: z$1.ZodArray<z$1.ZodObject<{
|
|
96
|
+
id: z$1.ZodString;
|
|
97
|
+
label: z$1.ZodString;
|
|
98
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
99
|
+
primaryEntity: z$1.ZodEnum<{
|
|
99
100
|
company: "company";
|
|
100
101
|
contact: "contact";
|
|
101
102
|
}>;
|
|
102
|
-
outputs: z.ZodArray<z.ZodEnum<{
|
|
103
|
+
outputs: z$1.ZodArray<z$1.ZodEnum<{
|
|
103
104
|
company: "company";
|
|
104
105
|
contact: "contact";
|
|
105
106
|
export: "export";
|
|
106
107
|
}>>;
|
|
107
|
-
stageKey: z.ZodString;
|
|
108
|
-
dependsOn: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
109
|
-
dependencyMode: z.ZodLiteral<"per-record-eligibility">;
|
|
110
|
-
capabilityKey: z.ZodString;
|
|
111
|
-
defaultBatchSize: z.ZodNumber;
|
|
112
|
-
maxBatchSize: z.ZodNumber;
|
|
113
|
-
}, z.core.$strip>>;
|
|
114
|
-
}, z.core.$strip>>;
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
}, z.core.$strip>;
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
108
|
+
stageKey: z$1.ZodString;
|
|
109
|
+
dependsOn: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
110
|
+
dependencyMode: z$1.ZodLiteral<"per-record-eligibility">;
|
|
111
|
+
capabilityKey: z$1.ZodString;
|
|
112
|
+
defaultBatchSize: z$1.ZodNumber;
|
|
113
|
+
maxBatchSize: z$1.ZodNumber;
|
|
114
|
+
}, z$1.core.$strip>>;
|
|
115
|
+
}, z$1.core.$strip>>;
|
|
116
|
+
stepConfig: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
117
|
+
}, z$1.core.$catchall<z$1.ZodUnknown>>;
|
|
118
|
+
launchedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
119
|
+
completedAt: z$1.ZodNullable<z$1.ZodString>;
|
|
120
|
+
createdAt: z$1.ZodString;
|
|
121
|
+
scrapingConfig: z$1.ZodObject<{
|
|
122
|
+
vertical: z$1.ZodOptional<z$1.ZodString>;
|
|
123
|
+
geography: z$1.ZodOptional<z$1.ZodString>;
|
|
124
|
+
size: z$1.ZodOptional<z$1.ZodString>;
|
|
125
|
+
apifyInput: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
126
|
+
}, z$1.core.$strip>;
|
|
127
|
+
icp: z$1.ZodObject<{
|
|
128
|
+
qualificationRubricKey: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
129
|
+
targetDescription: z$1.ZodOptional<z$1.ZodString>;
|
|
130
|
+
minReviewCount: z$1.ZodOptional<z$1.ZodNumber>;
|
|
131
|
+
minRating: z$1.ZodOptional<z$1.ZodNumber>;
|
|
132
|
+
excludeFranchises: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
133
|
+
customRules: z$1.ZodOptional<z$1.ZodString>;
|
|
134
|
+
}, z$1.core.$strip>;
|
|
135
|
+
pipelineConfig: z$1.ZodObject<{
|
|
136
|
+
stages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
137
|
+
key: z$1.ZodString;
|
|
138
|
+
label: z$1.ZodOptional<z$1.ZodString>;
|
|
139
|
+
enabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
140
|
+
order: z$1.ZodOptional<z$1.ZodNumber>;
|
|
141
|
+
}, z$1.core.$strip>>>;
|
|
142
|
+
}, z$1.core.$strip>;
|
|
143
|
+
}, z$1.core.$strip>;
|
|
144
|
+
declare const ListCompaniesQuerySchema: z$1.ZodObject<{
|
|
145
|
+
search: z$1.ZodOptional<z$1.ZodString>;
|
|
146
|
+
listId: z$1.ZodOptional<z$1.ZodString>;
|
|
147
|
+
domain: z$1.ZodOptional<z$1.ZodString>;
|
|
148
|
+
website: z$1.ZodOptional<z$1.ZodString>;
|
|
149
|
+
segment: z$1.ZodOptional<z$1.ZodString>;
|
|
150
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
151
|
+
batchId: z$1.ZodOptional<z$1.ZodString>;
|
|
152
|
+
status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
151
153
|
active: "active";
|
|
152
154
|
invalid: "invalid";
|
|
153
155
|
}>>;
|
|
154
|
-
includeAll: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
155
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
156
|
-
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
157
|
-
}, z.core.$strict>;
|
|
158
|
-
declare const ListContactsQuerySchema: z.ZodObject<{
|
|
159
|
-
search: z.ZodOptional<z.ZodString>;
|
|
160
|
-
listId: z.ZodOptional<z.ZodString>;
|
|
161
|
-
openingLineIsNull: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
162
|
-
batchId: z.ZodOptional<z.ZodString>;
|
|
163
|
-
contactStatus: z.ZodOptional<z.ZodEnum<{
|
|
156
|
+
includeAll: z$1.ZodOptional<z$1.ZodPipe<z$1.ZodTransform<unknown, unknown>, z$1.ZodBoolean>>;
|
|
157
|
+
limit: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
158
|
+
offset: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
159
|
+
}, z$1.core.$strict>;
|
|
160
|
+
declare const ListContactsQuerySchema: z$1.ZodObject<{
|
|
161
|
+
search: z$1.ZodOptional<z$1.ZodString>;
|
|
162
|
+
listId: z$1.ZodOptional<z$1.ZodString>;
|
|
163
|
+
openingLineIsNull: z$1.ZodOptional<z$1.ZodPipe<z$1.ZodTransform<unknown, unknown>, z$1.ZodBoolean>>;
|
|
164
|
+
batchId: z$1.ZodOptional<z$1.ZodString>;
|
|
165
|
+
contactStatus: z$1.ZodOptional<z$1.ZodEnum<{
|
|
164
166
|
active: "active";
|
|
165
167
|
invalid: "invalid";
|
|
166
168
|
}>>;
|
|
167
|
-
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
168
|
-
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
169
|
-
}, z.core.$strict>;
|
|
170
|
-
declare const AcqCompanyResponseSchema: z.ZodObject<{
|
|
171
|
-
id: z.ZodString;
|
|
172
|
-
organizationId: z.ZodString;
|
|
173
|
-
name: z.ZodString;
|
|
174
|
-
domain: z.ZodNullable<z.ZodString>;
|
|
175
|
-
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
176
|
-
website: z.ZodNullable<z.ZodString>;
|
|
177
|
-
numEmployees: z.ZodNullable<z.ZodNumber>;
|
|
178
|
-
foundedYear: z.ZodNullable<z.ZodNumber>;
|
|
179
|
-
locationCity: z.ZodNullable<z.ZodString>;
|
|
180
|
-
locationState: z.ZodNullable<z.ZodString>;
|
|
181
|
-
category: z.ZodNullable<z.ZodString>;
|
|
182
|
-
categoryPain: z.ZodNullable<z.ZodString>;
|
|
183
|
-
segment: z.ZodNullable<z.ZodString>;
|
|
184
|
-
pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
185
|
-
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
186
|
-
source: z.ZodNullable<z.ZodString>;
|
|
187
|
-
batchId: z.ZodNullable<z.ZodString>;
|
|
188
|
-
status: z.ZodEnum<{
|
|
169
|
+
limit: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
170
|
+
offset: z$1.ZodDefault<z$1.ZodCoercedNumber<unknown>>;
|
|
171
|
+
}, z$1.core.$strict>;
|
|
172
|
+
declare const AcqCompanyResponseSchema: z$1.ZodObject<{
|
|
173
|
+
id: z$1.ZodString;
|
|
174
|
+
organizationId: z$1.ZodString;
|
|
175
|
+
name: z$1.ZodString;
|
|
176
|
+
domain: z$1.ZodNullable<z$1.ZodString>;
|
|
177
|
+
linkedinUrl: z$1.ZodNullable<z$1.ZodString>;
|
|
178
|
+
website: z$1.ZodNullable<z$1.ZodString>;
|
|
179
|
+
numEmployees: z$1.ZodNullable<z$1.ZodNumber>;
|
|
180
|
+
foundedYear: z$1.ZodNullable<z$1.ZodNumber>;
|
|
181
|
+
locationCity: z$1.ZodNullable<z$1.ZodString>;
|
|
182
|
+
locationState: z$1.ZodNullable<z$1.ZodString>;
|
|
183
|
+
category: z$1.ZodNullable<z$1.ZodString>;
|
|
184
|
+
categoryPain: z$1.ZodNullable<z$1.ZodString>;
|
|
185
|
+
segment: z$1.ZodNullable<z$1.ZodString>;
|
|
186
|
+
pipelineStatus: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
187
|
+
enrichmentData: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
188
|
+
source: z$1.ZodNullable<z$1.ZodString>;
|
|
189
|
+
batchId: z$1.ZodNullable<z$1.ZodString>;
|
|
190
|
+
status: z$1.ZodEnum<{
|
|
189
191
|
active: "active";
|
|
190
192
|
invalid: "invalid";
|
|
191
193
|
}>;
|
|
192
|
-
contactCount: z.ZodNumber;
|
|
193
|
-
verticalResearch: z.ZodNullable<z.ZodString>;
|
|
194
|
-
createdAt: z.ZodString;
|
|
195
|
-
updatedAt: z.ZodString;
|
|
196
|
-
}, z.core.$strip>;
|
|
197
|
-
declare const AcqContactResponseSchema: z.ZodObject<{
|
|
198
|
-
id: z.ZodString;
|
|
199
|
-
organizationId: z.ZodString;
|
|
200
|
-
companyId: z.ZodNullable<z.ZodString>;
|
|
201
|
-
email: z.ZodString;
|
|
202
|
-
emailValid: z.ZodNullable<z.ZodEnum<{
|
|
194
|
+
contactCount: z$1.ZodNumber;
|
|
195
|
+
verticalResearch: z$1.ZodNullable<z$1.ZodString>;
|
|
196
|
+
createdAt: z$1.ZodString;
|
|
197
|
+
updatedAt: z$1.ZodString;
|
|
198
|
+
}, z$1.core.$strip>;
|
|
199
|
+
declare const AcqContactResponseSchema: z$1.ZodObject<{
|
|
200
|
+
id: z$1.ZodString;
|
|
201
|
+
organizationId: z$1.ZodString;
|
|
202
|
+
companyId: z$1.ZodNullable<z$1.ZodString>;
|
|
203
|
+
email: z$1.ZodString;
|
|
204
|
+
emailValid: z$1.ZodNullable<z$1.ZodEnum<{
|
|
203
205
|
VALID: "VALID";
|
|
204
206
|
INVALID: "INVALID";
|
|
205
207
|
RISKY: "RISKY";
|
|
206
208
|
UNKNOWN: "UNKNOWN";
|
|
207
209
|
}>>;
|
|
208
|
-
firstName: z.ZodNullable<z.ZodString>;
|
|
209
|
-
lastName: z.ZodNullable<z.ZodString>;
|
|
210
|
-
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
211
|
-
title: z.ZodNullable<z.ZodString>;
|
|
212
|
-
headline: z.ZodNullable<z.ZodString>;
|
|
213
|
-
filterReason: z.ZodNullable<z.ZodString>;
|
|
214
|
-
openingLine: z.ZodNullable<z.ZodString>;
|
|
215
|
-
source: z.ZodNullable<z.ZodString>;
|
|
216
|
-
sourceId: z.ZodNullable<z.ZodString>;
|
|
217
|
-
pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
218
|
-
enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
219
|
-
attioPersonId: z.ZodNullable<z.ZodString>;
|
|
220
|
-
batchId: z.ZodNullable<z.ZodString>;
|
|
221
|
-
status: z.ZodEnum<{
|
|
210
|
+
firstName: z$1.ZodNullable<z$1.ZodString>;
|
|
211
|
+
lastName: z$1.ZodNullable<z$1.ZodString>;
|
|
212
|
+
linkedinUrl: z$1.ZodNullable<z$1.ZodString>;
|
|
213
|
+
title: z$1.ZodNullable<z$1.ZodString>;
|
|
214
|
+
headline: z$1.ZodNullable<z$1.ZodString>;
|
|
215
|
+
filterReason: z$1.ZodNullable<z$1.ZodString>;
|
|
216
|
+
openingLine: z$1.ZodNullable<z$1.ZodString>;
|
|
217
|
+
source: z$1.ZodNullable<z$1.ZodString>;
|
|
218
|
+
sourceId: z$1.ZodNullable<z$1.ZodString>;
|
|
219
|
+
pipelineStatus: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
220
|
+
enrichmentData: z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
|
|
221
|
+
attioPersonId: z$1.ZodNullable<z$1.ZodString>;
|
|
222
|
+
batchId: z$1.ZodNullable<z$1.ZodString>;
|
|
223
|
+
status: z$1.ZodEnum<{
|
|
222
224
|
active: "active";
|
|
223
225
|
invalid: "invalid";
|
|
224
226
|
}>;
|
|
225
|
-
company: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
226
|
-
id: z.ZodString;
|
|
227
|
-
name: z.ZodString;
|
|
228
|
-
domain: z.ZodNullable<z.ZodString>;
|
|
229
|
-
website: z.ZodNullable<z.ZodString>;
|
|
230
|
-
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
231
|
-
segment: z.ZodNullable<z.ZodString>;
|
|
232
|
-
category: z.ZodNullable<z.ZodString>;
|
|
233
|
-
status: z.ZodEnum<{
|
|
227
|
+
company: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
228
|
+
id: z$1.ZodString;
|
|
229
|
+
name: z$1.ZodString;
|
|
230
|
+
domain: z$1.ZodNullable<z$1.ZodString>;
|
|
231
|
+
website: z$1.ZodNullable<z$1.ZodString>;
|
|
232
|
+
linkedinUrl: z$1.ZodNullable<z$1.ZodString>;
|
|
233
|
+
segment: z$1.ZodNullable<z$1.ZodString>;
|
|
234
|
+
category: z$1.ZodNullable<z$1.ZodString>;
|
|
235
|
+
status: z$1.ZodEnum<{
|
|
234
236
|
active: "active";
|
|
235
237
|
invalid: "invalid";
|
|
236
238
|
}>;
|
|
237
|
-
}, z.core.$strip>>>;
|
|
238
|
-
createdAt: z.ZodString;
|
|
239
|
-
updatedAt: z.ZodString;
|
|
240
|
-
}, z.core.$strip>;
|
|
241
|
-
declare const AcqArtifactOwnerKindSchema: z.ZodEnum<{
|
|
239
|
+
}, z$1.core.$strip>>>;
|
|
240
|
+
createdAt: z$1.ZodString;
|
|
241
|
+
updatedAt: z$1.ZodString;
|
|
242
|
+
}, z$1.core.$strip>;
|
|
243
|
+
declare const AcqArtifactOwnerKindSchema: z$1.ZodEnum<{
|
|
242
244
|
company: "company";
|
|
243
245
|
contact: "contact";
|
|
244
246
|
list: "list";
|
|
245
247
|
deal: "deal";
|
|
246
248
|
list_member: "list_member";
|
|
247
249
|
}>;
|
|
248
|
-
type ListCompaniesQuery = z.infer<typeof ListCompaniesQuerySchema>;
|
|
249
|
-
type ListContactsQuery = z.infer<typeof ListContactsQuerySchema>;
|
|
250
|
-
type AcqCompanyResponse = z.infer<typeof AcqCompanyResponseSchema>;
|
|
251
|
-
type AcqContactResponse = z.infer<typeof AcqContactResponseSchema>;
|
|
252
|
-
type AcqArtifactOwnerKind = z.infer<typeof AcqArtifactOwnerKindSchema>;
|
|
253
|
-
type ListStatus = z.infer<typeof ListStatusSchema>;
|
|
254
|
-
type AcqListResponse = z.infer<typeof AcqListResponseSchema>;
|
|
250
|
+
type ListCompaniesQuery = z$1.infer<typeof ListCompaniesQuerySchema>;
|
|
251
|
+
type ListContactsQuery = z$1.infer<typeof ListContactsQuerySchema>;
|
|
252
|
+
type AcqCompanyResponse = z$1.infer<typeof AcqCompanyResponseSchema>;
|
|
253
|
+
type AcqContactResponse = z$1.infer<typeof AcqContactResponseSchema>;
|
|
254
|
+
type AcqArtifactOwnerKind = z$1.infer<typeof AcqArtifactOwnerKindSchema>;
|
|
255
|
+
type ListStatus = z$1.infer<typeof ListStatusSchema>;
|
|
256
|
+
type AcqListResponse = z$1.infer<typeof AcqListResponseSchema>;
|
|
255
257
|
|
|
256
258
|
interface Action {
|
|
257
259
|
key: string;
|
|
258
260
|
label: string;
|
|
259
|
-
payloadSchema?: z.ZodTypeAny;
|
|
261
|
+
payloadSchema?: z$1.ZodTypeAny;
|
|
260
262
|
}
|
|
261
263
|
|
|
262
264
|
type FeatureSidebarComponent = ComponentType;
|
|
@@ -870,6 +872,11 @@ interface ListBuilderWorkflow {
|
|
|
870
872
|
description: string;
|
|
871
873
|
category: ListBuilderWorkflowCategory;
|
|
872
874
|
stagesAffected: readonly LeadGenStageKey[];
|
|
875
|
+
configSchema?: z.ZodSchema<unknown>;
|
|
876
|
+
ConfigForm?: ComponentType<{
|
|
877
|
+
value: Record<string, unknown>;
|
|
878
|
+
onChange: (next: Record<string, unknown>) => void;
|
|
879
|
+
}>;
|
|
873
880
|
inputForm?: ComponentType<ListBuilderWorkflowFormProps>;
|
|
874
881
|
defaultInput?: (list: AcqListResponse) => unknown;
|
|
875
882
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { CompanyCleanupForm, CompanyDetailModal, ContactDetailModal, EmailDiscoveryForm, EmailVerificationForm, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListBuilderIndexPage, ListBuilderPage, RunWorkflowModal, WebsiteExtractForm, formatDate, getEnrichmentColor, getEnrichmentStatus, getStateKeyColor, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { CompanyCleanupForm, CompanyDetailModal, ContactDetailModal, EmailDiscoveryForm, EmailVerificationForm, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListBuilderIndexPage, ListBuilderPage, RunWorkflowModal, WebsiteExtractForm, formatDate, getEnrichmentColor, getEnrichmentStatus, getStateKeyColor, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-L7D6KNHV.js';
|
|
2
|
+
import '../../chunk-BDKM56TP.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-TUMSNGTX.js';
|
|
5
5
|
import '../../chunk-X4WBGKJQ.js';
|
|
@@ -7,24 +7,25 @@ import '../../chunk-IIMU5YAJ.js';
|
|
|
7
7
|
import '../../chunk-PDHTXPSF.js';
|
|
8
8
|
import '../../chunk-KVJ3LFH2.js';
|
|
9
9
|
import '../../chunk-7M2VOCYN.js';
|
|
10
|
-
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, useArtifacts, useCompanies, useCompany, useCompanyFacets, useContact, useContacts, useCreateArtifact, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useDeriveActions, useListMember, useListMembers, useListProgress, useTransitionListCompany, useTransitionListMember, useUpdateCompany, useUpdateContact, useUpdateListStatus } from '../../chunk-
|
|
11
|
-
import '../../chunk-BRXELOHC.js';
|
|
10
|
+
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, useArtifacts, useCompanies, useCompany, useCompanyFacets, useContact, useContacts, useCreateArtifact, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useDeriveActions, useListMember, useListMembers, useListProgress, useTransitionListCompany, useTransitionListMember, useUpdateCompany, useUpdateContact, useUpdateListStatus } from '../../chunk-CPAJXBTL.js';
|
|
12
11
|
import '../../chunk-VKMNWHTL.js';
|
|
13
12
|
import '../../chunk-HKBEURCV.js';
|
|
13
|
+
import '../../chunk-BRXELOHC.js';
|
|
14
14
|
import '../../chunk-22UVE3RA.js';
|
|
15
15
|
import '../../chunk-3ZMAGTWF.js';
|
|
16
16
|
import '../../chunk-VMJVQAFZ.js';
|
|
17
|
-
import '../../chunk-
|
|
17
|
+
import '../../chunk-YRKQNPK2.js';
|
|
18
18
|
import '../../chunk-QIW6OCEI.js';
|
|
19
19
|
import '../../chunk-WLOQ4IBG.js';
|
|
20
|
-
import '../../chunk-
|
|
21
|
-
export { EMPTY_LIST_ACTIONS, ListActionsProvider, findListActionByCapability, getListActionWorkflowId, useListActions } from '../../chunk-JMI7L7Y7.js';
|
|
22
|
-
import '../../chunk-V3HUIZJX.js';
|
|
20
|
+
import '../../chunk-TAIX4NO3.js';
|
|
23
21
|
import '../../chunk-TKAYX2SP.js';
|
|
24
22
|
import '../../chunk-U36X6NZM.js';
|
|
23
|
+
import '../../chunk-NYBEU5TE.js';
|
|
24
|
+
export { EMPTY_LIST_ACTIONS, ListActionsProvider, findListActionByCapability, getListActionWorkflowId, useListActions } from '../../chunk-LPM7O6XM.js';
|
|
25
25
|
import '../../chunk-SZHARWKU.js';
|
|
26
|
+
import '../../chunk-V3HUIZJX.js';
|
|
26
27
|
import '../../chunk-3KMDHCAR.js';
|
|
27
|
-
import '../../chunk-
|
|
28
|
+
import '../../chunk-5RLYII6P.js';
|
|
28
29
|
import '../../chunk-T6INEVX6.js';
|
|
29
30
|
import '../../chunk-2IFYDILW.js';
|
|
30
31
|
import '../../chunk-Q7DJKLEN.js';
|
|
@@ -543,12 +543,8 @@
|
|
|
543
543
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
544
544
|
--tab-border-color: var(--color-border);
|
|
545
545
|
}
|
|
546
|
-
|
|
547
|
-
background-color:
|
|
548
|
-
}
|
|
549
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
550
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
551
|
-
background-color: transparent;
|
|
546
|
+
.mantine-Tabs-tab:hover {
|
|
547
|
+
background-color: var(--color-surface-hover);
|
|
552
548
|
}
|
|
553
549
|
.mantine-Pagination-control:not([data-active]) {
|
|
554
550
|
background: var(--color-surface);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-JXSBOG2R.js';
|
|
2
|
+
import '../../chunk-QARSVM7Q.js';
|
|
3
3
|
import '../../chunk-LGKLC5MG.js';
|
|
4
4
|
import '../../chunk-KMAXFJPH.js';
|
|
5
5
|
import '../../chunk-RYTEQBAO.js';
|
|
@@ -7,24 +7,25 @@ import '../../chunk-PDHTXPSF.js';
|
|
|
7
7
|
import '../../chunk-KVJ3LFH2.js';
|
|
8
8
|
import '../../chunk-E4WQGJNS.js';
|
|
9
9
|
import '../../chunk-7M2VOCYN.js';
|
|
10
|
-
import '../../chunk-
|
|
11
|
-
import '../../chunk-BRXELOHC.js';
|
|
10
|
+
import '../../chunk-CPAJXBTL.js';
|
|
12
11
|
import '../../chunk-VKMNWHTL.js';
|
|
13
12
|
import '../../chunk-HKBEURCV.js';
|
|
13
|
+
import '../../chunk-BRXELOHC.js';
|
|
14
14
|
import '../../chunk-22UVE3RA.js';
|
|
15
15
|
import '../../chunk-3ZMAGTWF.js';
|
|
16
16
|
import '../../chunk-VMJVQAFZ.js';
|
|
17
|
-
import '../../chunk-
|
|
17
|
+
import '../../chunk-YRKQNPK2.js';
|
|
18
18
|
import '../../chunk-QIW6OCEI.js';
|
|
19
19
|
import '../../chunk-WLOQ4IBG.js';
|
|
20
|
-
import '../../chunk-
|
|
21
|
-
import '../../chunk-JMI7L7Y7.js';
|
|
22
|
-
import '../../chunk-V3HUIZJX.js';
|
|
20
|
+
import '../../chunk-TAIX4NO3.js';
|
|
23
21
|
import '../../chunk-TKAYX2SP.js';
|
|
24
22
|
import '../../chunk-U36X6NZM.js';
|
|
23
|
+
import '../../chunk-NYBEU5TE.js';
|
|
24
|
+
import '../../chunk-LPM7O6XM.js';
|
|
25
25
|
import '../../chunk-SZHARWKU.js';
|
|
26
|
+
import '../../chunk-V3HUIZJX.js';
|
|
26
27
|
import '../../chunk-3KMDHCAR.js';
|
|
27
|
-
import '../../chunk-
|
|
28
|
+
import '../../chunk-5RLYII6P.js';
|
|
28
29
|
import '../../chunk-T6INEVX6.js';
|
|
29
30
|
import '../../chunk-2IFYDILW.js';
|
|
30
31
|
import '../../chunk-Q7DJKLEN.js';
|
|
@@ -159,12 +159,8 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
|
|
163
|
-
background-color:
|
|
164
|
-
}
|
|
165
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
-
background-color: transparent;
|
|
162
|
+
.mantine-Tabs-tab:hover {
|
|
163
|
+
background-color: var(--color-surface-hover);
|
|
168
164
|
}
|
|
169
165
|
.mantine-Pagination-control:not([data-active]) {
|
|
170
166
|
background: var(--color-surface);
|
|
@@ -2,24 +2,25 @@ import { TableSelectionToolbar } from '../../../chunk-TUMSNGTX.js';
|
|
|
2
2
|
import { FilterBar } from '../../../chunk-PDHTXPSF.js';
|
|
3
3
|
import { ConfirmationModal, CustomModal } from '../../../chunk-KVJ3LFH2.js';
|
|
4
4
|
import '../../../chunk-7M2VOCYN.js';
|
|
5
|
-
import { usePaginationState, useRequestsList, useUpdateRequestStatus, useDeleteRequest, useTableSelection, useRequest } from '../../../chunk-
|
|
6
|
-
import '../../../chunk-BRXELOHC.js';
|
|
5
|
+
import { usePaginationState, useRequestsList, useUpdateRequestStatus, useDeleteRequest, useTableSelection, useRequest } from '../../../chunk-CPAJXBTL.js';
|
|
7
6
|
import '../../../chunk-VKMNWHTL.js';
|
|
8
7
|
import '../../../chunk-HKBEURCV.js';
|
|
8
|
+
import '../../../chunk-BRXELOHC.js';
|
|
9
9
|
import '../../../chunk-22UVE3RA.js';
|
|
10
10
|
import '../../../chunk-3ZMAGTWF.js';
|
|
11
11
|
import '../../../chunk-VMJVQAFZ.js';
|
|
12
|
-
import '../../../chunk-
|
|
12
|
+
import '../../../chunk-YRKQNPK2.js';
|
|
13
13
|
import '../../../chunk-QIW6OCEI.js';
|
|
14
14
|
import '../../../chunk-WLOQ4IBG.js';
|
|
15
|
-
import '../../../chunk-
|
|
16
|
-
import '../../../chunk-JMI7L7Y7.js';
|
|
17
|
-
import '../../../chunk-V3HUIZJX.js';
|
|
15
|
+
import '../../../chunk-TAIX4NO3.js';
|
|
18
16
|
import '../../../chunk-TKAYX2SP.js';
|
|
19
17
|
import { PageTitleCaption, CardHeader, ContextViewer, JsonViewer } from '../../../chunk-U36X6NZM.js';
|
|
18
|
+
import '../../../chunk-NYBEU5TE.js';
|
|
19
|
+
import '../../../chunk-LPM7O6XM.js';
|
|
20
20
|
import '../../../chunk-SZHARWKU.js';
|
|
21
|
+
import '../../../chunk-V3HUIZJX.js';
|
|
21
22
|
import '../../../chunk-3KMDHCAR.js';
|
|
22
|
-
import '../../../chunk-
|
|
23
|
+
import '../../../chunk-5RLYII6P.js';
|
|
23
24
|
import '../../../chunk-T6INEVX6.js';
|
|
24
25
|
import '../../../chunk-2IFYDILW.js';
|
|
25
26
|
import '../../../chunk-Q7DJKLEN.js';
|
|
@@ -159,12 +159,8 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
|
|
163
|
-
background-color:
|
|
164
|
-
}
|
|
165
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
-
background-color: transparent;
|
|
162
|
+
.mantine-Tabs-tab:hover {
|
|
163
|
+
background-color: var(--color-surface-hover);
|
|
168
164
|
}
|
|
169
165
|
.mantine-Pagination-control:not([data-active]) {
|
|
170
166
|
background: var(--color-surface);
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-
|
|
2
|
-
import '../../chunk-ROSMICXG.js';
|
|
1
|
+
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-ARJPZ66V.js';
|
|
3
2
|
import '../../chunk-N55DVMAG.js';
|
|
4
3
|
import '../../chunk-ZTWA5H77.js';
|
|
5
|
-
|
|
6
|
-
import '../../chunk-
|
|
7
|
-
|
|
8
|
-
import '../../chunk-
|
|
4
|
+
import '../../chunk-ROSMICXG.js';
|
|
5
|
+
import '../../chunk-6U7AIIHF.js';
|
|
6
|
+
export { OperationsOverview } from '../../chunk-7F3IQMLI.js';
|
|
7
|
+
import '../../chunk-ECNNI3NT.js';
|
|
8
|
+
import '../../chunk-BDKM56TP.js';
|
|
9
|
+
import '../../chunk-QARSVM7Q.js';
|
|
9
10
|
import '../../chunk-LGKLC5MG.js';
|
|
10
11
|
import '../../chunk-KMAXFJPH.js';
|
|
11
12
|
import '../../chunk-RYTEQBAO.js';
|
|
@@ -14,24 +15,25 @@ import '../../chunk-IIMU5YAJ.js';
|
|
|
14
15
|
import '../../chunk-KVJ3LFH2.js';
|
|
15
16
|
import '../../chunk-E4WQGJNS.js';
|
|
16
17
|
import '../../chunk-7M2VOCYN.js';
|
|
17
|
-
import '../../chunk-
|
|
18
|
-
import '../../chunk-BRXELOHC.js';
|
|
18
|
+
import '../../chunk-CPAJXBTL.js';
|
|
19
19
|
import '../../chunk-VKMNWHTL.js';
|
|
20
20
|
import '../../chunk-HKBEURCV.js';
|
|
21
|
+
import '../../chunk-BRXELOHC.js';
|
|
21
22
|
import '../../chunk-22UVE3RA.js';
|
|
22
23
|
import '../../chunk-3ZMAGTWF.js';
|
|
23
24
|
import '../../chunk-VMJVQAFZ.js';
|
|
24
|
-
import '../../chunk-
|
|
25
|
+
import '../../chunk-YRKQNPK2.js';
|
|
25
26
|
import '../../chunk-QIW6OCEI.js';
|
|
26
27
|
import '../../chunk-WLOQ4IBG.js';
|
|
27
|
-
import '../../chunk-
|
|
28
|
-
import '../../chunk-JMI7L7Y7.js';
|
|
29
|
-
import '../../chunk-V3HUIZJX.js';
|
|
28
|
+
import '../../chunk-TAIX4NO3.js';
|
|
30
29
|
import '../../chunk-TKAYX2SP.js';
|
|
31
30
|
import '../../chunk-U36X6NZM.js';
|
|
31
|
+
import '../../chunk-NYBEU5TE.js';
|
|
32
|
+
import '../../chunk-LPM7O6XM.js';
|
|
32
33
|
import '../../chunk-SZHARWKU.js';
|
|
34
|
+
import '../../chunk-V3HUIZJX.js';
|
|
33
35
|
import '../../chunk-3KMDHCAR.js';
|
|
34
|
-
import '../../chunk-
|
|
36
|
+
import '../../chunk-5RLYII6P.js';
|
|
35
37
|
import '../../chunk-T6INEVX6.js';
|
|
36
38
|
import '../../chunk-2IFYDILW.js';
|
|
37
39
|
import '../../chunk-Q7DJKLEN.js';
|
|
@@ -159,12 +159,8 @@
|
|
|
159
159
|
[data-mantine-color-scheme=dark] .mantine-Tabs-root {
|
|
160
160
|
--tab-border-color: var(--color-border);
|
|
161
161
|
}
|
|
162
|
-
|
|
163
|
-
background-color:
|
|
164
|
-
}
|
|
165
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active],
|
|
166
|
-
[data-mantine-color-scheme] .mantine-Tabs-tab[data-active]:hover {
|
|
167
|
-
background-color: transparent;
|
|
162
|
+
.mantine-Tabs-tab:hover {
|
|
163
|
+
background-color: var(--color-surface-hover);
|
|
168
164
|
}
|
|
169
165
|
.mantine-Pagination-control:not([data-active]) {
|
|
170
166
|
background: var(--color-surface);
|