@sisense/sdk-ui 1.13.0 → 1.14.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/ai/ai-context-provider.d.ts +1 -1
- package/dist/ai/api/chat-rest-api.d.ts +8 -8
- package/dist/ai/chat-config.d.ts +4 -3
- package/dist/ai/chat-home.d.ts +2 -1
- package/dist/ai/chatbot.d.ts +1 -1
- package/dist/ai/get-nlg-query-result.d.ts +1 -1
- package/dist/ai/use-get-nlg-query-result.d.ts +1 -1
- package/dist/ai/use-get-query-recommendations.d.ts +1 -1
- package/dist/ai.cjs +67 -75
- package/dist/ai.js +593 -614
- package/dist/api/rest-api.d.ts +7 -7
- package/dist/api/types/dashboard-dto.d.ts +2 -0
- package/dist/chart-options-processor/translations/axis-section.d.ts +1 -0
- package/dist/chart-options-processor/translations/sunburst/sunburst-series.d.ts +2 -0
- package/dist/chart-options-processor/translations/translations-to-highcharts.d.ts +2 -0
- package/dist/common-filters/types.d.ts +4 -0
- package/dist/common-filters/utils.d.ts +1 -1
- package/dist/dashboard/index.d.ts +3 -0
- package/dist/dashboard-widget/use-fetch-widget-dto-model.d.ts +2 -12
- package/dist/decorators/hook-decorators/with-tracking.d.ts +1 -2
- package/dist/filters/components/cascading-filter-tile/cascading-filter-tile.d.ts +7 -1
- package/dist/filters/components/cascading-filter-tile/cascading-level-filter.d.ts +8 -2
- package/dist/filters/components/criteria-filter-tile/criteria-filter-tile.d.ts +1 -0
- package/dist/filters/components/custom-filter-tile.d.ts +3 -0
- package/dist/filters/components/date-filter/date-range-filter-tile/date-range-filter-tile.d.ts +2 -0
- package/dist/filters/components/date-filter/relative-date-filter-tile/relative-date-filter-tile.d.ts +1 -0
- package/dist/filters/components/filter-tile.d.ts +3 -0
- package/dist/filters/components/icons/background-filter-icon.d.ts +5 -0
- package/dist/filters/components/icons/index.d.ts +1 -0
- package/dist/filters/components/icons/lock-icon.d.ts +2 -0
- package/dist/index.cjs +174 -126
- package/dist/index.d.ts +2 -2
- package/dist/index.js +11866 -11666
- package/dist/pivot-table/formatters/utils.d.ts +1 -1
- package/dist/props.d.ts +12 -12
- package/dist/query/query-result-date-formatting.d.ts +0 -1
- package/dist/table/hooks/use-table-data.d.ts +1 -1
- package/dist/table/table-component.d.ts +4 -4
- package/dist/theme-provider/theme-provider.d.ts +2 -0
- package/dist/translation/resources/en.d.ts +1 -0
- package/dist/translation/resources/index.d.ts +2 -0
- package/dist/types.d.ts +195 -183
- package/dist/{useQuery-D5W0RM1R.js → useQuery-Cxcx_l05.js} +15251 -15187
- package/dist/useQuery-_biaqvma.cjs +603 -0
- package/dist/utils/color/color-interpolation.d.ts +1 -0
- package/package.json +7 -7
- package/dist/useQuery-C8plkncQ.cjs +0 -603
package/dist/ai.js
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
var ct = Object.defineProperty, dt = Object.defineProperties;
|
|
2
2
|
var ut = Object.getOwnPropertyDescriptors;
|
|
3
|
-
var
|
|
4
|
-
var
|
|
3
|
+
var oe = Object.getOwnPropertySymbols;
|
|
4
|
+
var Me = Object.prototype.hasOwnProperty, $e = Object.prototype.propertyIsEnumerable;
|
|
5
5
|
var pe = (e, t, n) => t in e ? ct(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n, R = (e, t) => {
|
|
6
6
|
for (var n in t || (t = {}))
|
|
7
|
-
|
|
8
|
-
if (
|
|
9
|
-
for (var n of
|
|
10
|
-
|
|
7
|
+
Me.call(t, n) && pe(e, n, t[n]);
|
|
8
|
+
if (oe)
|
|
9
|
+
for (var n of oe(t))
|
|
10
|
+
$e.call(t, n) && pe(e, n, t[n]);
|
|
11
11
|
return e;
|
|
12
|
-
},
|
|
13
|
-
var
|
|
12
|
+
}, D = (e, t) => dt(e, ut(t));
|
|
13
|
+
var Ee = (e, t) => {
|
|
14
14
|
var n = {};
|
|
15
15
|
for (var r in e)
|
|
16
|
-
|
|
17
|
-
if (e != null &&
|
|
18
|
-
for (var r of
|
|
19
|
-
t.indexOf(r) < 0 &&
|
|
16
|
+
Me.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]);
|
|
17
|
+
if (e != null && oe)
|
|
18
|
+
for (var r of oe(e))
|
|
19
|
+
t.indexOf(r) < 0 && $e.call(e, r) && (n[r] = e[r]);
|
|
20
20
|
return n;
|
|
21
21
|
};
|
|
22
|
-
var
|
|
23
|
-
var
|
|
24
|
-
var s = (
|
|
22
|
+
var $ = (e, t, n) => (pe(e, typeof t != "symbol" ? t + "" : t, n), n);
|
|
23
|
+
var Z = (e, t, n) => new Promise((r, i) => {
|
|
24
|
+
var s = (l) => {
|
|
25
25
|
try {
|
|
26
|
-
|
|
26
|
+
c(n.next(l));
|
|
27
27
|
} catch (d) {
|
|
28
28
|
i(d);
|
|
29
29
|
}
|
|
30
|
-
}, a = (
|
|
30
|
+
}, a = (l) => {
|
|
31
31
|
try {
|
|
32
|
-
|
|
32
|
+
c(n.throw(l));
|
|
33
33
|
} catch (d) {
|
|
34
34
|
i(d);
|
|
35
35
|
}
|
|
36
|
-
},
|
|
37
|
-
|
|
36
|
+
}, c = (l) => l.done ? r(l.value) : Promise.resolve(l.value).then(s, a);
|
|
37
|
+
c((n = n.apply(e, t)).next());
|
|
38
38
|
});
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import { jsx as o, jsxs as
|
|
42
|
-
import * as
|
|
43
|
-
import { createContext as xe, useMemo as F, useContext as
|
|
39
|
+
import { d4 as ht, d5 as pt, d6 as Ie, d7 as gt, d8 as K, d9 as Ct, da as ft, db as mt, cK as bt, Y as xt, cL as yt, a0 as vt, f as wt, cX as _, X as Oe, dc as kt, n as u, l as L, Z as b, bp as We, a_ as St, dd as Rt, b1 as Lt, b0 as Mt, b2 as ae, de as $t, df as Et, bb as G, b4 as Q, dg as Pe, bd as Tt, dh as Ht, b6 as Bt, di as Dt, b8 as ge, b9 as g, bc as Ft, dj as Nt, dk as Ae, dl as It, bn as Ot, aN as qe, dm as Wt, dn as Pt, dp as At, dq as qt, aV as Te, aW as He, br as zt, dr as Vt, aL as Zt, aM as Qt, aP as ze } from "./useQuery-Cxcx_l05.js";
|
|
40
|
+
import { dt as Lr, ds as Mr } from "./useQuery-Cxcx_l05.js";
|
|
41
|
+
import { jsx as o, jsxs as p, Fragment as H } from "react/jsx-runtime";
|
|
42
|
+
import * as q from "react";
|
|
43
|
+
import { createContext as xe, useMemo as F, useContext as Ve, useCallback as E, useEffect as le, useState as k, useRef as U, useLayoutEffect as ie, Component as jt, createElement as me, isValidElement as Gt, memo as Ut, forwardRef as _t } from "react";
|
|
44
44
|
class Kt extends ht {
|
|
45
45
|
constructor(t, n) {
|
|
46
46
|
super(), this.client = t, this.setOptions(n), this.bindMethods(), this.updateResult();
|
|
@@ -79,12 +79,12 @@ class Kt extends ht {
|
|
|
79
79
|
});
|
|
80
80
|
}
|
|
81
81
|
mutate(t, n) {
|
|
82
|
-
return this.mutateOptions = n, this.currentMutation && this.currentMutation.removeObserver(this), this.currentMutation = this.client.getMutationCache().build(this.client,
|
|
82
|
+
return this.mutateOptions = n, this.currentMutation && this.currentMutation.removeObserver(this), this.currentMutation = this.client.getMutationCache().build(this.client, D(R({}, this.options), {
|
|
83
83
|
variables: typeof t != "undefined" ? t : this.options.variables
|
|
84
84
|
})), this.currentMutation.addObserver(this), this.currentMutation.execute();
|
|
85
85
|
}
|
|
86
86
|
updateResult() {
|
|
87
|
-
const t = this.currentMutation ? this.currentMutation.state : gt(), n =
|
|
87
|
+
const t = this.currentMutation ? this.currentMutation.state : gt(), n = D(R({}, t), {
|
|
88
88
|
isLoading: t.status === "loading",
|
|
89
89
|
isSuccess: t.status === "success",
|
|
90
90
|
isError: t.status === "error",
|
|
@@ -95,20 +95,20 @@ class Kt extends ht {
|
|
|
95
95
|
this.currentResult = n;
|
|
96
96
|
}
|
|
97
97
|
notify(t) {
|
|
98
|
-
|
|
98
|
+
Ie.batch(() => {
|
|
99
99
|
if (this.mutateOptions && this.hasListeners()) {
|
|
100
100
|
if (t.onSuccess) {
|
|
101
101
|
var n, r, i, s;
|
|
102
102
|
(n = (r = this.mutateOptions).onSuccess) == null || n.call(r, this.currentResult.data, this.currentResult.variables, this.currentResult.context), (i = (s = this.mutateOptions).onSettled) == null || i.call(s, this.currentResult.data, null, this.currentResult.variables, this.currentResult.context);
|
|
103
103
|
} else if (t.onError) {
|
|
104
|
-
var a,
|
|
105
|
-
(a = (
|
|
104
|
+
var a, c, l, d;
|
|
105
|
+
(a = (c = this.mutateOptions).onError) == null || a.call(c, this.currentResult.error, this.currentResult.variables, this.currentResult.context), (l = (d = this.mutateOptions).onSettled) == null || l.call(d, void 0, this.currentResult.error, this.currentResult.variables, this.currentResult.context);
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
t.listeners && this.listeners.forEach(({
|
|
109
|
-
listener:
|
|
109
|
+
listener: C
|
|
110
110
|
}) => {
|
|
111
|
-
|
|
111
|
+
C(this.currentResult);
|
|
112
112
|
});
|
|
113
113
|
});
|
|
114
114
|
}
|
|
@@ -116,17 +116,17 @@ class Kt extends ht {
|
|
|
116
116
|
function ye(e, t, n) {
|
|
117
117
|
const r = mt(e, t), i = K({
|
|
118
118
|
context: r.context
|
|
119
|
-
}), [s] =
|
|
120
|
-
|
|
119
|
+
}), [s] = q.useState(() => new Kt(i, r));
|
|
120
|
+
q.useEffect(() => {
|
|
121
121
|
s.setOptions(r);
|
|
122
122
|
}, [s, r]);
|
|
123
|
-
const a = Ct(
|
|
124
|
-
s.mutate(
|
|
123
|
+
const a = Ct(q.useCallback((l) => s.subscribe(Ie.batchCalls(l)), [s]), () => s.getCurrentResult(), () => s.getCurrentResult()), c = q.useCallback((l, d) => {
|
|
124
|
+
s.mutate(l, d).catch(Yt);
|
|
125
125
|
}, [s]);
|
|
126
126
|
if (a.error && ft(s.options.useErrorBoundary, [a.error]))
|
|
127
127
|
throw a.error;
|
|
128
|
-
return
|
|
129
|
-
mutate:
|
|
128
|
+
return D(R({}, a), {
|
|
129
|
+
mutate: c,
|
|
130
130
|
mutateAsync: a.mutate
|
|
131
131
|
});
|
|
132
132
|
}
|
|
@@ -134,49 +134,34 @@ function Yt() {
|
|
|
134
134
|
}
|
|
135
135
|
class Xt {
|
|
136
136
|
constructor(t) {
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
T(this, "getNlgQueryResult", (t) => k(this, null, function* () {
|
|
141
|
-
return this.httpClient.post("api/v2/ai/nlg/queryResult", t);
|
|
142
|
-
}));
|
|
143
|
-
T(this, "getQueryRecommendations", (t, n) => k(this, null, function* () {
|
|
144
|
-
return this.httpClient.get(
|
|
145
|
-
`api/v2/ai/recommendations/query/${t}/${n.numOfRecommendations}`
|
|
146
|
-
);
|
|
137
|
+
$(this, "httpClient");
|
|
138
|
+
$(this, "getChatContexts", () => Z(this, null, function* () {
|
|
139
|
+
return (yield this.httpClient.get("api/datasources?sharedWith=r,w")) || [];
|
|
147
140
|
}));
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
}
|
|
141
|
+
// ==== /v2/ai endpoints ====
|
|
142
|
+
$(this, "getNlgQueryResult", (t) => this.httpClient.post("api/v2/ai/nlg/queryResult", t));
|
|
143
|
+
$(this, "getQueryRecommendations", (t, n) => this.httpClient.get(
|
|
144
|
+
`api/v2/ai/recommendations/query/${t}/${n.numOfRecommendations}`
|
|
145
|
+
));
|
|
146
|
+
$(this, "setLlmConfig", (t) => this.httpClient.post("api/v2/settings/ai/llmProvider", t).catch((n) => {
|
|
147
|
+
console.error("Unable to set llm config", n);
|
|
152
148
|
}));
|
|
153
149
|
// ==== /v2/ai/chats endpoints ====
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
}));
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
T(this, "createChat", (t) => k(this, null, function* () {
|
|
161
|
-
return this.httpClient.post("api/v2/ai/chats", { sourceId: t });
|
|
162
|
-
}));
|
|
163
|
-
T(this, "postChat", (t, n) => k(this, null, function* () {
|
|
164
|
-
return this.httpClient.post(`api/v2/ai/chats/${t}`, n);
|
|
165
|
-
}));
|
|
166
|
-
T(this, "deleteChatHistory", (t) => k(this, null, function* () {
|
|
167
|
-
return this.httpClient.delete(`api/v2/ai/chats/${t}/history`);
|
|
168
|
-
}));
|
|
169
|
-
T(this, "sendFeedback", (t) => k(this, null, function* () {
|
|
170
|
-
return this.httpClient.post("api/v2/ai/feedback", t);
|
|
171
|
-
}));
|
|
150
|
+
$(this, "getAllChats", () => this.httpClient.get("api/v2/ai/chats"));
|
|
151
|
+
$(this, "getChatById", (t) => this.httpClient.get(`api/v2/ai/chats/${t}`));
|
|
152
|
+
$(this, "createChat", (t) => this.httpClient.post("api/v2/ai/chats", { sourceId: t }));
|
|
153
|
+
$(this, "postChat", (t, n) => this.httpClient.post(`api/v2/ai/chats/${t}`, n));
|
|
154
|
+
$(this, "deleteChatHistory", (t) => this.httpClient.delete(`api/v2/ai/chats/${t}/history`));
|
|
155
|
+
$(this, "sendFeedback", (t) => this.httpClient.post("api/v2/ai/feedback", t));
|
|
172
156
|
// ==== misc endpoints ====
|
|
173
|
-
|
|
174
|
-
|
|
157
|
+
$(this, "getDataSourceFields", (t) => this.httpClient.post(
|
|
158
|
+
`api/datasources/${encodeURIComponent(t)}/fields/search`,
|
|
159
|
+
{
|
|
175
160
|
offset: 0,
|
|
176
161
|
count: 9999
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
|
|
162
|
+
}
|
|
163
|
+
));
|
|
164
|
+
$(this, "ai", {
|
|
180
165
|
getNlgQueryResult: this.getNlgQueryResult,
|
|
181
166
|
getQueryRecommendations: this.getQueryRecommendations,
|
|
182
167
|
setLlmConfig: this.setLlmConfig,
|
|
@@ -190,8 +175,6 @@ class Xt {
|
|
|
190
175
|
clearHistory: this.deleteChatHistory
|
|
191
176
|
}
|
|
192
177
|
});
|
|
193
|
-
if (!t)
|
|
194
|
-
throw new Error("HttpClient is required.");
|
|
195
178
|
this.httpClient = t;
|
|
196
179
|
}
|
|
197
180
|
}
|
|
@@ -202,26 +185,16 @@ const Jt = new bt({
|
|
|
202
185
|
refetchOnMount: !1
|
|
203
186
|
}
|
|
204
187
|
}
|
|
205
|
-
}),
|
|
188
|
+
}), Ze = xe(void 0), W = () => Ve(Ze), en = ({ children: e }) => {
|
|
206
189
|
const { app: t } = xt(), n = F(() => t ? new Xt(t.httpClient) : void 0, [t]);
|
|
207
|
-
return /* @__PURE__ */ o(
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
This component is currently in PRIVATE PREVIEW and is exclusively
|
|
212
|
-
available to a select group of pre-approved customers.
|
|
213
|
-
|
|
214
|
-
As a preview feature, this component may have limited support
|
|
215
|
-
and is subject to potential changes.
|
|
216
|
-
=================================================================`;
|
|
217
|
-
function br({ children: e }) {
|
|
218
|
-
return Y(() => {
|
|
219
|
-
console.warn(tn);
|
|
220
|
-
}, []), /* @__PURE__ */ o(en, { children: e });
|
|
190
|
+
return /* @__PURE__ */ o(Ze.Provider, { value: n, children: /* @__PURE__ */ o(yt, { client: Jt, children: e }) });
|
|
191
|
+
};
|
|
192
|
+
function mr({ children: e }) {
|
|
193
|
+
return /* @__PURE__ */ o(en, { children: e });
|
|
221
194
|
}
|
|
222
195
|
const ve = (e, t = !0) => {
|
|
223
196
|
const n = F(() => {
|
|
224
|
-
var
|
|
197
|
+
var C, h;
|
|
225
198
|
if ("jaql" in e)
|
|
226
199
|
return e;
|
|
227
200
|
{
|
|
@@ -230,8 +203,8 @@ const ve = (e, t = !0) => {
|
|
|
230
203
|
const { filters: S = [], relations: w } = vt(e.filters), { metadata: m, filterRelations: x } = wt(
|
|
231
204
|
{
|
|
232
205
|
dataSource: e.dataSource,
|
|
233
|
-
attributes: (
|
|
234
|
-
measures: (
|
|
206
|
+
attributes: (C = e.dimensions) != null ? C : [],
|
|
207
|
+
measures: (h = e.measures) != null ? h : [],
|
|
235
208
|
filters: S,
|
|
236
209
|
filterRelations: w,
|
|
237
210
|
highlights: []
|
|
@@ -246,31 +219,31 @@ const ve = (e, t = !0) => {
|
|
|
246
219
|
}
|
|
247
220
|
};
|
|
248
221
|
}
|
|
249
|
-
}, [e]), r =
|
|
222
|
+
}, [e]), r = W(), { data: i, error: s, isError: a, isLoading: c, isSuccess: l, refetch: d } = _({
|
|
250
223
|
queryKey: ["getNlgQueryResult", n, r],
|
|
251
224
|
queryFn: () => r == null ? void 0 : r.ai.getNlgQueryResult(n),
|
|
252
|
-
select: (
|
|
253
|
-
var
|
|
254
|
-
return (
|
|
225
|
+
select: (C) => {
|
|
226
|
+
var h;
|
|
227
|
+
return (h = C == null ? void 0 : C.data) == null ? void 0 : h.answer;
|
|
255
228
|
},
|
|
256
229
|
enabled: !!r && t
|
|
257
230
|
});
|
|
258
231
|
return {
|
|
259
|
-
isLoading:
|
|
232
|
+
isLoading: c,
|
|
260
233
|
isError: a,
|
|
261
|
-
isSuccess:
|
|
234
|
+
isSuccess: l,
|
|
262
235
|
data: i,
|
|
263
236
|
error: s,
|
|
264
|
-
refetch:
|
|
237
|
+
refetch: E(() => {
|
|
265
238
|
d();
|
|
266
239
|
}, [d])
|
|
267
240
|
};
|
|
268
|
-
},
|
|
269
|
-
const r = e, { enabled: t } = r, n =
|
|
241
|
+
}, tn = (e) => {
|
|
242
|
+
const r = e, { enabled: t } = r, n = Ee(r, ["enabled"]);
|
|
270
243
|
return ve(n, t);
|
|
271
|
-
},
|
|
272
|
-
|
|
273
|
-
),
|
|
244
|
+
}, br = Oe("useGetNlgQueryResult")(
|
|
245
|
+
tn
|
|
246
|
+
), Qe = Object.freeze({
|
|
274
247
|
enableFollowupQuestions: !1,
|
|
275
248
|
enableHeader: !0,
|
|
276
249
|
enableInsights: !0,
|
|
@@ -279,14 +252,14 @@ const ve = (e, t = !0) => {
|
|
|
279
252
|
inputPromptText: 'Ask a question or type "/" for ideas',
|
|
280
253
|
welcomeText: "Welcome to the Analytics Assistant! I can help you explore and gain insights from your data.",
|
|
281
254
|
suggestionsWelcomeText: "Some questions you may have:"
|
|
282
|
-
}),
|
|
255
|
+
}), je = xe(R({}, Qe)), P = () => Ve(je), nn = ({ children: e, value: t }) => {
|
|
283
256
|
const n = Object.entries(t).reduce(
|
|
284
257
|
(r, [i, s]) => (s !== void 0 && (r[i] = s), r),
|
|
285
|
-
R({},
|
|
258
|
+
R({}, Qe)
|
|
286
259
|
);
|
|
287
|
-
return /* @__PURE__ */ o(
|
|
288
|
-
},
|
|
289
|
-
const { contextTitle: t, count: n } = e, r =
|
|
260
|
+
return /* @__PURE__ */ o(je.Provider, { value: n, children: e });
|
|
261
|
+
}, Ge = (e) => {
|
|
262
|
+
const { contextTitle: t, count: n } = e, r = W(), { numOfRecommendations: i } = P(), s = n != null ? n : i, { isLoading: a, isError: c, isSuccess: l, data: d, error: C, refetch: h } = _({
|
|
290
263
|
queryKey: ["getQueryRecommendations", t, s, r],
|
|
291
264
|
queryFn: () => r == null ? void 0 : r.ai.getQueryRecommendations(t, {
|
|
292
265
|
numOfRecommendations: s
|
|
@@ -295,29 +268,34 @@ const ve = (e, t = !0) => {
|
|
|
295
268
|
});
|
|
296
269
|
return {
|
|
297
270
|
isLoading: a,
|
|
298
|
-
isError:
|
|
299
|
-
isSuccess:
|
|
271
|
+
isError: c,
|
|
272
|
+
isSuccess: l,
|
|
300
273
|
data: d != null ? d : [],
|
|
301
|
-
error:
|
|
302
|
-
refetch:
|
|
303
|
-
|
|
304
|
-
}, [
|
|
274
|
+
error: C,
|
|
275
|
+
refetch: E(() => {
|
|
276
|
+
h();
|
|
277
|
+
}, [h])
|
|
305
278
|
};
|
|
306
|
-
},
|
|
307
|
-
|
|
308
|
-
), we = "Oh snap, something went wrong. Please try again later.",
|
|
309
|
-
const t =
|
|
279
|
+
}, xr = Oe("useGetQueryRecommendations")(
|
|
280
|
+
Ge
|
|
281
|
+
), we = "Oh snap, something went wrong. Please try again later.", on = "Oh snap, something went wrong. Please try again later or try asking a different question.", rn = "Something went wrong and we were unable to retrieve the chat thread. Let's start over!", Ue = "Chat unavailable. Please try again later.", ke = "chatHistory", sn = (e) => {
|
|
282
|
+
const t = W(), { hideHistory: n } = P();
|
|
310
283
|
return _({
|
|
311
284
|
queryKey: [ke, e, t],
|
|
312
|
-
queryFn: () =>
|
|
313
|
-
|
|
285
|
+
queryFn: () => Z(void 0, null, function* () {
|
|
286
|
+
if (!t || !e)
|
|
287
|
+
return;
|
|
288
|
+
if (n)
|
|
289
|
+
return [];
|
|
290
|
+
const r = yield t.ai.chat.getById(e);
|
|
291
|
+
return r == null ? void 0 : r.chatHistory;
|
|
314
292
|
}),
|
|
315
293
|
enabled: !!t && !!e
|
|
316
294
|
});
|
|
317
|
-
},
|
|
318
|
-
const t =
|
|
295
|
+
}, _e = (e) => {
|
|
296
|
+
const t = W(), n = K();
|
|
319
297
|
return ye({
|
|
320
|
-
mutationFn: () =>
|
|
298
|
+
mutationFn: () => Z(void 0, null, function* () {
|
|
321
299
|
if (!(!t || !e))
|
|
322
300
|
return t.ai.chat.clearHistory(e);
|
|
323
301
|
}),
|
|
@@ -328,19 +306,19 @@ const ve = (e, t = !0) => {
|
|
|
328
306
|
e && n.setQueriesData([ke, e], []);
|
|
329
307
|
}
|
|
330
308
|
});
|
|
331
|
-
},
|
|
332
|
-
const { data: t, isLoading: n, isError: r } =
|
|
333
|
-
return
|
|
309
|
+
}, Ke = (e) => {
|
|
310
|
+
const { data: t, isLoading: n, isError: r } = sn(e), { mutate: i } = _e(e);
|
|
311
|
+
return le(() => {
|
|
334
312
|
r && i();
|
|
335
313
|
}, [r, i]), {
|
|
336
314
|
history: t,
|
|
337
315
|
isLoading: n,
|
|
338
316
|
isError: r
|
|
339
317
|
};
|
|
340
|
-
},
|
|
341
|
-
const e =
|
|
318
|
+
}, Ye = () => {
|
|
319
|
+
const e = W(), { data: t, isLoading: n, fetchStatus: r } = _({
|
|
342
320
|
queryKey: ["getDataTopics", e],
|
|
343
|
-
queryFn: () =>
|
|
321
|
+
queryFn: () => Z(void 0, null, function* () {
|
|
344
322
|
if (e)
|
|
345
323
|
return e.getChatContexts();
|
|
346
324
|
}),
|
|
@@ -348,7 +326,7 @@ const ve = (e, t = !0) => {
|
|
|
348
326
|
});
|
|
349
327
|
return { data: t, isLoading: n, fetchStatus: r };
|
|
350
328
|
}, Xe = () => {
|
|
351
|
-
const e =
|
|
329
|
+
const e = W(), { data: t, isLoading: n } = _({
|
|
352
330
|
queryKey: ["getAllChats", e],
|
|
353
331
|
queryFn: () => e == null ? void 0 : e.ai.chat.getAll(),
|
|
354
332
|
enabled: !!e
|
|
@@ -357,18 +335,18 @@ const ve = (e, t = !0) => {
|
|
|
357
335
|
data: t != null ? t : [],
|
|
358
336
|
isLoading: n
|
|
359
337
|
};
|
|
360
|
-
},
|
|
361
|
-
const n = K(), r =
|
|
362
|
-
mutationFn: () =>
|
|
338
|
+
}, an = (e, t) => {
|
|
339
|
+
const n = K(), r = W(), i = ye({
|
|
340
|
+
mutationFn: () => Z(void 0, null, function* () {
|
|
363
341
|
if (!(!r || !e))
|
|
364
342
|
return r.ai.chat.create(e);
|
|
365
343
|
}),
|
|
366
344
|
onSuccess: () => n.invalidateQueries(["getAllChats"])
|
|
367
345
|
});
|
|
368
|
-
return
|
|
346
|
+
return le(() => {
|
|
369
347
|
t && i.isIdle && i.mutate();
|
|
370
348
|
}, [t, i]), i;
|
|
371
|
-
},
|
|
349
|
+
}, ln = (e) => {
|
|
372
350
|
switch (e.responseType = e.responseType.toLowerCase(), e.responseType) {
|
|
373
351
|
case "nlq":
|
|
374
352
|
return {
|
|
@@ -385,51 +363,51 @@ const ve = (e, t = !0) => {
|
|
|
385
363
|
default:
|
|
386
364
|
throw Error(`Received unknown responseType, raw response=${JSON.stringify(e)}`);
|
|
387
365
|
}
|
|
388
|
-
},
|
|
389
|
-
const t = K(), n =
|
|
390
|
-
(
|
|
391
|
-
e && t.setQueriesData([ke, e], (
|
|
366
|
+
}, cn = (e) => {
|
|
367
|
+
const t = K(), n = E(
|
|
368
|
+
(c) => {
|
|
369
|
+
e && t.setQueriesData([ke, e], (l) => l && [...l, c]);
|
|
392
370
|
},
|
|
393
371
|
[t, e]
|
|
394
|
-
), { enableFollowupQuestions: r } =
|
|
395
|
-
mutationFn: (
|
|
372
|
+
), { enableFollowupQuestions: r } = P(), i = W(), { mutate: s, isLoading: a } = ye({
|
|
373
|
+
mutationFn: (c) => Z(void 0, null, function* () {
|
|
396
374
|
if (!(!i || !e))
|
|
397
375
|
return i.ai.chat.post(e, {
|
|
398
|
-
text:
|
|
376
|
+
text: c,
|
|
399
377
|
options: { enableFollowup: r }
|
|
400
378
|
});
|
|
401
379
|
}),
|
|
402
|
-
onMutate: (
|
|
380
|
+
onMutate: (c) => {
|
|
403
381
|
n({
|
|
404
|
-
content:
|
|
382
|
+
content: c,
|
|
405
383
|
role: "user"
|
|
406
384
|
});
|
|
407
385
|
},
|
|
408
|
-
onError: (
|
|
409
|
-
|
|
410
|
-
content:
|
|
386
|
+
onError: (c) => {
|
|
387
|
+
c instanceof Error && (console.error("Error when sending message:", c.message), n({
|
|
388
|
+
content: on,
|
|
411
389
|
role: "assistant"
|
|
412
390
|
}));
|
|
413
391
|
},
|
|
414
|
-
onSuccess: (
|
|
415
|
-
|
|
392
|
+
onSuccess: (c) => {
|
|
393
|
+
c && n(ln(c));
|
|
416
394
|
}
|
|
417
395
|
});
|
|
418
396
|
return { mutate: s, isLoading: a };
|
|
419
|
-
},
|
|
420
|
-
var
|
|
421
|
-
const { data: t, isLoading: n } =
|
|
397
|
+
}, Se = (e) => !!e && "type" in e && e.type === "nlq", dn = (e) => {
|
|
398
|
+
var T, N;
|
|
399
|
+
const { data: t, isLoading: n } = Ye(), { data: r, isLoading: i } = Xe(), s = (T = t == null ? void 0 : t.find((M) => M.title === e)) == null ? void 0 : T.title, a = (N = r.find((M) => M.contextTitle === s)) == null ? void 0 : N.chatId, c = n || !!s, l = i || !!a, [d, C] = k(null), { isError: h } = an(
|
|
422
400
|
s,
|
|
423
|
-
|
|
424
|
-
), { history: f, isLoading: S, isError: w } =
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
}, [
|
|
428
|
-
const { mutate: m, isLoading: x } =
|
|
401
|
+
c && !l
|
|
402
|
+
), { history: f, isLoading: S, isError: w } = Ke(a);
|
|
403
|
+
le(() => {
|
|
404
|
+
h ? C(new Error(Ue)) : w && C(new Error(rn));
|
|
405
|
+
}, [h, w]);
|
|
406
|
+
const { mutate: m, isLoading: x } = cn(a), y = F(() => {
|
|
429
407
|
if (f != null && f.length) {
|
|
430
|
-
const
|
|
431
|
-
if (
|
|
432
|
-
return JSON.parse(
|
|
408
|
+
const M = f[f.length - 1];
|
|
409
|
+
if (Se(M))
|
|
410
|
+
return JSON.parse(M.content);
|
|
433
411
|
}
|
|
434
412
|
return null;
|
|
435
413
|
}, [f]);
|
|
@@ -442,21 +420,21 @@ const ve = (e, t = !0) => {
|
|
|
442
420
|
isLoading: S,
|
|
443
421
|
lastError: d
|
|
444
422
|
};
|
|
445
|
-
},
|
|
423
|
+
}, yr = ({
|
|
446
424
|
contextTitle: e
|
|
447
425
|
}) => {
|
|
448
426
|
var i;
|
|
449
|
-
const { data: t } = Xe(), n = (i = t.find((s) => s.contextTitle === e)) == null ? void 0 : i.chatId, { history: r } =
|
|
427
|
+
const { data: t } = Xe(), n = (i = t.find((s) => s.contextTitle === e)) == null ? void 0 : i.chatId, { history: r } = Ke(n);
|
|
450
428
|
return F(() => {
|
|
451
429
|
if (r != null && r.length) {
|
|
452
430
|
const s = r[r.length - 1];
|
|
453
|
-
if (
|
|
431
|
+
if (Se(s))
|
|
454
432
|
return JSON.parse(s.content);
|
|
455
433
|
}
|
|
456
434
|
return null;
|
|
457
435
|
}, [r]);
|
|
458
|
-
},
|
|
459
|
-
const t =
|
|
436
|
+
}, vr = (e) => {
|
|
437
|
+
const t = W(), { data: n, isLoading: r } = _({
|
|
460
438
|
queryKey: ["getDataSourceFields", e, t],
|
|
461
439
|
queryFn: () => e ? t == null ? void 0 : t.ai.getDataSourceFields(e) : void 0,
|
|
462
440
|
select: (i) => i,
|
|
@@ -466,7 +444,7 @@ const ve = (e, t = !0) => {
|
|
|
466
444
|
data: n,
|
|
467
445
|
isLoading: r
|
|
468
446
|
};
|
|
469
|
-
},
|
|
447
|
+
}, un = 500, hn = 500, pn = 500, gn = 900, Cn = u.div`
|
|
470
448
|
box-sizing: border-box;
|
|
471
449
|
position: relative;
|
|
472
450
|
display: flex;
|
|
@@ -476,10 +454,10 @@ const ve = (e, t = !0) => {
|
|
|
476
454
|
background-color: ${({ theme: e }) => e.aiChat.backgroundColor};
|
|
477
455
|
overflow: hidden;
|
|
478
456
|
|
|
479
|
-
min-width: ${
|
|
480
|
-
min-height: ${
|
|
481
|
-
width: ${({ width: e }) => e ?
|
|
482
|
-
height: ${({ height: e }) => e ?
|
|
457
|
+
min-width: ${un}px;
|
|
458
|
+
min-height: ${hn}px;
|
|
459
|
+
width: ${({ width: e }) => e ? Be(e) : `${pn}px`};
|
|
460
|
+
height: ${({ height: e }) => e ? Be(e) : `${gn}px`};
|
|
483
461
|
|
|
484
462
|
${({ theme: e }) => L`
|
|
485
463
|
font-size: ${e.aiChat.primaryFontSize[0]};
|
|
@@ -487,11 +465,11 @@ const ve = (e, t = !0) => {
|
|
|
487
465
|
`}
|
|
488
466
|
border: ${({ theme: e }) => e.aiChat.border === !1 ? "none" : e.aiChat.border};
|
|
489
467
|
`;
|
|
490
|
-
function
|
|
468
|
+
function Be(e) {
|
|
491
469
|
return typeof e == "number" ? `${e}px` : e;
|
|
492
470
|
}
|
|
493
|
-
function
|
|
494
|
-
return /* @__PURE__ */
|
|
471
|
+
function fn({ spin: e }) {
|
|
472
|
+
return /* @__PURE__ */ p(
|
|
495
473
|
"svg",
|
|
496
474
|
{
|
|
497
475
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -525,9 +503,9 @@ function mn({ spin: e }) {
|
|
|
525
503
|
);
|
|
526
504
|
}
|
|
527
505
|
function ce() {
|
|
528
|
-
return /* @__PURE__ */ o("div", { className: "csdk-m-auto", "aria-label": "loading spinner", children: /* @__PURE__ */ o(
|
|
506
|
+
return /* @__PURE__ */ o("div", { className: "csdk-m-auto", "aria-label": "loading spinner", children: /* @__PURE__ */ o(fn, { spin: !0 }) });
|
|
529
507
|
}
|
|
530
|
-
function
|
|
508
|
+
function mn({ theme: e }) {
|
|
531
509
|
return /* @__PURE__ */ o("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ o(
|
|
532
510
|
"path",
|
|
533
511
|
{
|
|
@@ -536,9 +514,9 @@ function bn({ theme: e }) {
|
|
|
536
514
|
}
|
|
537
515
|
) });
|
|
538
516
|
}
|
|
539
|
-
function
|
|
517
|
+
function bn({ theme: e }) {
|
|
540
518
|
const t = e.aiChat.icons.color;
|
|
541
|
-
return /* @__PURE__ */
|
|
519
|
+
return /* @__PURE__ */ p("svg", { xmlns: "http://www.w3.org/2000/svg", width: "25", height: "25", viewBox: "0 0 25 25", fill: "none", children: [
|
|
542
520
|
/* @__PURE__ */ o(
|
|
543
521
|
"path",
|
|
544
522
|
{
|
|
@@ -562,11 +540,11 @@ function xn({ theme: e }) {
|
|
|
562
540
|
)
|
|
563
541
|
] });
|
|
564
542
|
}
|
|
565
|
-
const
|
|
543
|
+
const xn = u.div`
|
|
566
544
|
display: flex;
|
|
567
545
|
flex-direction: column;
|
|
568
546
|
row-gap: 4px;
|
|
569
|
-
`,
|
|
547
|
+
`, yn = u.div`
|
|
570
548
|
font-size: 11px;
|
|
571
549
|
line-height: 18px;
|
|
572
550
|
font-weight: 300;
|
|
@@ -576,7 +554,7 @@ const yn = u.div`
|
|
|
576
554
|
&:hover {
|
|
577
555
|
background-color: ${({ theme: e }) => e.aiChat.dropup.headers.hover.backgroundColor};
|
|
578
556
|
}
|
|
579
|
-
`,
|
|
557
|
+
`, vn = u.div`
|
|
580
558
|
font-size: ${({ theme: e }) => e.aiChat.primaryFontSize[0]};
|
|
581
559
|
line-height: ${({ theme: e }) => e.aiChat.primaryFontSize[1]};
|
|
582
560
|
color: ${({ theme: e }) => e.aiChat.dropup.items.textColor};
|
|
@@ -586,19 +564,19 @@ const yn = u.div`
|
|
|
586
564
|
background-color: ${({ theme: e }) => e.aiChat.dropup.items.hover.backgroundColor};
|
|
587
565
|
}
|
|
588
566
|
`;
|
|
589
|
-
function
|
|
567
|
+
function wn({
|
|
590
568
|
title: e,
|
|
591
569
|
items: t,
|
|
592
570
|
onSelect: n,
|
|
593
571
|
alwaysExpanded: r = !1
|
|
594
572
|
}) {
|
|
595
|
-
const [i, s] =
|
|
596
|
-
return /* @__PURE__ */
|
|
597
|
-
/* @__PURE__ */ o(
|
|
598
|
-
(i || r) && t.map((
|
|
573
|
+
const [i, s] = k(!1), { themeSettings: a } = b();
|
|
574
|
+
return /* @__PURE__ */ p(xn, { children: [
|
|
575
|
+
/* @__PURE__ */ o(yn, { onClick: () => s((c) => !c), theme: a, children: e.toUpperCase() }),
|
|
576
|
+
(i || r) && t.map((c, l) => /* @__PURE__ */ o(vn, { onClick: () => n(c), theme: a, children: c }, l))
|
|
599
577
|
] });
|
|
600
578
|
}
|
|
601
|
-
const
|
|
579
|
+
const kn = u.div`
|
|
602
580
|
font-family: ${({ theme: e }) => e.typography.fontFamily};
|
|
603
581
|
font-size: ${({ theme: e }) => e.aiChat.primaryFontSize[0]};
|
|
604
582
|
line-height: ${({ theme: e }) => e.aiChat.primaryFontSize[1]};
|
|
@@ -610,13 +588,13 @@ const Sn = u.div`
|
|
|
610
588
|
display: flex;
|
|
611
589
|
flex-direction: column;
|
|
612
590
|
row-gap: 4px;
|
|
613
|
-
`,
|
|
591
|
+
`, Sn = u.div`
|
|
614
592
|
font-size: ${({ theme: e }) => e.aiChat.primaryFontSize[0]};
|
|
615
593
|
line-height: ${({ theme: e }) => e.aiChat.primaryFontSize[1]};
|
|
616
594
|
color: ${({ theme: e }) => e.aiChat.dropup.items.textColor};
|
|
617
595
|
padding: 4px 12px;
|
|
618
596
|
`, be = (e) => e.startsWith("/");
|
|
619
|
-
function
|
|
597
|
+
function Rn({
|
|
620
598
|
recentPrompts: e,
|
|
621
599
|
suggestions: t,
|
|
622
600
|
isLoading: n,
|
|
@@ -625,7 +603,7 @@ function Ln({
|
|
|
625
603
|
text: s,
|
|
626
604
|
recommendationsError: a
|
|
627
605
|
}) {
|
|
628
|
-
const
|
|
606
|
+
const l = [
|
|
629
607
|
{
|
|
630
608
|
title: "/recent searches",
|
|
631
609
|
items: e,
|
|
@@ -637,12 +615,12 @@ function Ln({
|
|
|
637
615
|
onSelect: r
|
|
638
616
|
}
|
|
639
617
|
].filter(
|
|
640
|
-
(
|
|
641
|
-
), { themeSettings: d } = b(),
|
|
618
|
+
(h) => h.title.slice(0, s.length) === s
|
|
619
|
+
), { themeSettings: d } = b(), C = l.length === 1;
|
|
642
620
|
return /* @__PURE__ */ o(
|
|
643
|
-
|
|
621
|
+
We,
|
|
644
622
|
{
|
|
645
|
-
open: be(s) &&
|
|
623
|
+
open: be(s) && l.length > 0,
|
|
646
624
|
anchorEl: i,
|
|
647
625
|
placement: "top-start",
|
|
648
626
|
modifiers: [
|
|
@@ -654,15 +632,15 @@ function Ln({
|
|
|
654
632
|
}
|
|
655
633
|
],
|
|
656
634
|
sx: { zIndex: 3 },
|
|
657
|
-
children: /* @__PURE__ */
|
|
635
|
+
children: /* @__PURE__ */ p(kn, { style: { width: i == null ? void 0 : i.offsetWidth }, theme: d, children: [
|
|
658
636
|
n && /* @__PURE__ */ o(ce, {}),
|
|
659
|
-
!n && !a &&
|
|
660
|
-
a && /* @__PURE__ */ o(
|
|
637
|
+
!n && !a && l.map((h) => /* @__PURE__ */ o(wn, D(R({}, h), { alwaysExpanded: C }), h.title)),
|
|
638
|
+
a && /* @__PURE__ */ o(Sn, { theme: d, children: "Recommendations aren't available right now. Try again in a few minutes." })
|
|
661
639
|
] })
|
|
662
640
|
}
|
|
663
641
|
);
|
|
664
642
|
}
|
|
665
|
-
function
|
|
643
|
+
function Y({ title: e, placement: t = "top", children: n }) {
|
|
666
644
|
const { themeSettings: r } = b();
|
|
667
645
|
return /* @__PURE__ */ o(
|
|
668
646
|
St,
|
|
@@ -695,19 +673,19 @@ function X({ title: e, placement: t = "top", children: n }) {
|
|
|
695
673
|
}
|
|
696
674
|
);
|
|
697
675
|
}
|
|
698
|
-
const
|
|
676
|
+
const Ln = 500, Mn = u.div`
|
|
699
677
|
display: flex;
|
|
700
678
|
flex-direction: row;
|
|
701
679
|
align-items: flex-end;
|
|
702
680
|
justify-content: space-between;
|
|
703
681
|
|
|
704
682
|
background-color: ${({ theme: e }) => e.aiChat.backgroundColor};
|
|
705
|
-
`,
|
|
683
|
+
`, $n = u.button`
|
|
706
684
|
height: 34px;
|
|
707
685
|
background-color: inherit;
|
|
708
686
|
cursor: pointer;
|
|
709
687
|
border: none;
|
|
710
|
-
`,
|
|
688
|
+
`, En = u.textarea`
|
|
711
689
|
font-size: inherit;
|
|
712
690
|
line-height: inherit;
|
|
713
691
|
resize: none;
|
|
@@ -735,7 +713,7 @@ const Mn = 500, En = u.div`
|
|
|
735
713
|
color: ${({ theme: e }) => e.aiChat.primaryTextColor};
|
|
736
714
|
|
|
737
715
|
background-color: ${({ theme: e }) => e.aiChat.input.backgroundColor};
|
|
738
|
-
`,
|
|
716
|
+
`, Tn = u.button`
|
|
739
717
|
height: 34px;
|
|
740
718
|
background-color: inherit;
|
|
741
719
|
border-style: none;
|
|
@@ -749,8 +727,8 @@ const Mn = 500, En = u.div`
|
|
|
749
727
|
opacity: 1;
|
|
750
728
|
cursor: pointer;
|
|
751
729
|
`}
|
|
752
|
-
`,
|
|
753
|
-
function
|
|
730
|
+
`, Hn = 34;
|
|
731
|
+
function Bn({
|
|
754
732
|
onSendMessage: e,
|
|
755
733
|
onClearHistoryClick: t,
|
|
756
734
|
disabled: n,
|
|
@@ -758,89 +736,89 @@ function Dn({
|
|
|
758
736
|
suggestions: i,
|
|
759
737
|
isLoading: s,
|
|
760
738
|
recommendationsError: a,
|
|
761
|
-
onChange:
|
|
739
|
+
onChange: c
|
|
762
740
|
}) {
|
|
763
|
-
const [
|
|
741
|
+
const [l, d] = k(""), { inputPromptText: C } = P(), h = E(() => {
|
|
764
742
|
if (n)
|
|
765
743
|
return;
|
|
766
|
-
if (be(
|
|
744
|
+
if (be(l)) {
|
|
767
745
|
d("");
|
|
768
746
|
return;
|
|
769
747
|
}
|
|
770
|
-
const y =
|
|
748
|
+
const y = l.trim();
|
|
771
749
|
y.length !== 0 && (e(y), d(""));
|
|
772
|
-
}, [n, e,
|
|
750
|
+
}, [n, e, l]), f = E(
|
|
773
751
|
(y) => {
|
|
774
752
|
e(y), d("");
|
|
775
753
|
},
|
|
776
754
|
[e]
|
|
777
|
-
), S =
|
|
755
|
+
), S = E(
|
|
778
756
|
(y) => {
|
|
779
|
-
y.key === "Enter" ? (y.preventDefault(),
|
|
757
|
+
y.key === "Enter" ? (y.preventDefault(), h()) : y.key === "Escape" && be(l) && d("");
|
|
780
758
|
},
|
|
781
|
-
[
|
|
782
|
-
), w =
|
|
759
|
+
[h, l]
|
|
760
|
+
), w = E(
|
|
783
761
|
(y) => {
|
|
784
|
-
|
|
762
|
+
c == null || c(y.target.value), d(y.target.value);
|
|
785
763
|
},
|
|
786
|
-
[
|
|
764
|
+
[c]
|
|
787
765
|
), m = U(null);
|
|
788
|
-
|
|
766
|
+
ie(() => {
|
|
789
767
|
m.current && (m.current.style.height = "inherit", m.current.style.height = `${Math.max(
|
|
790
768
|
m.current.scrollHeight + 2,
|
|
791
769
|
// account for 1px top/bottom border
|
|
792
|
-
|
|
770
|
+
Hn
|
|
793
771
|
)}px`);
|
|
794
|
-
}, [
|
|
772
|
+
}, [l]), ie(() => {
|
|
795
773
|
m.current && m.current.focus({ preventScroll: !0 });
|
|
796
774
|
}, []);
|
|
797
775
|
const { themeSettings: x } = b();
|
|
798
|
-
return /* @__PURE__ */
|
|
776
|
+
return /* @__PURE__ */ p(Mn, { theme: x, children: [
|
|
799
777
|
/* @__PURE__ */ o(
|
|
800
|
-
|
|
778
|
+
Rn,
|
|
801
779
|
{
|
|
802
780
|
recentPrompts: r,
|
|
803
781
|
suggestions: i,
|
|
804
782
|
isLoading: s,
|
|
805
783
|
onSelection: f,
|
|
806
784
|
anchorEl: m.current,
|
|
807
|
-
text:
|
|
785
|
+
text: l,
|
|
808
786
|
recommendationsError: a
|
|
809
787
|
}
|
|
810
788
|
),
|
|
811
|
-
t && /* @__PURE__ */ o(
|
|
789
|
+
t && /* @__PURE__ */ o(Y, { title: "Clear chat", placement: "bottom-start", children: /* @__PURE__ */ o($n, { "aria-label": "clear history", onClick: t, children: /* @__PURE__ */ o(bn, { theme: x }) }) }),
|
|
812
790
|
/* @__PURE__ */ o(
|
|
813
|
-
|
|
791
|
+
En,
|
|
814
792
|
{
|
|
815
793
|
"aria-label": "chat input",
|
|
816
794
|
onBlur: (y) => {
|
|
817
|
-
var
|
|
818
|
-
(
|
|
795
|
+
var T;
|
|
796
|
+
(T = document.getElementById("csdk-chatbot-frame")) != null && T.contains(y.relatedTarget) && y.target.focus({ preventScroll: !0 });
|
|
819
797
|
},
|
|
820
|
-
maxLength:
|
|
798
|
+
maxLength: Ln,
|
|
821
799
|
ref: m,
|
|
822
800
|
rows: 1,
|
|
823
801
|
onChange: w,
|
|
824
802
|
spellCheck: "true",
|
|
825
|
-
placeholder:
|
|
826
|
-
value:
|
|
803
|
+
placeholder: C,
|
|
804
|
+
value: l,
|
|
827
805
|
onKeyDown: S,
|
|
828
806
|
theme: x
|
|
829
807
|
}
|
|
830
808
|
),
|
|
831
809
|
/* @__PURE__ */ o(
|
|
832
|
-
|
|
810
|
+
Tn,
|
|
833
811
|
{
|
|
834
812
|
"aria-label": "send chat message",
|
|
835
|
-
disabled: n ||
|
|
836
|
-
onClick:
|
|
813
|
+
disabled: n || l.length === 0,
|
|
814
|
+
onClick: h,
|
|
837
815
|
theme: x,
|
|
838
|
-
children: /* @__PURE__ */ o("span", { "data-state": "closed", children: /* @__PURE__ */ o(
|
|
816
|
+
children: /* @__PURE__ */ o("span", { "data-state": "closed", children: /* @__PURE__ */ o(mn, { theme: x }) })
|
|
839
817
|
}
|
|
840
818
|
)
|
|
841
819
|
] });
|
|
842
820
|
}
|
|
843
|
-
const
|
|
821
|
+
const Dn = u.div`
|
|
844
822
|
display: flex;
|
|
845
823
|
|
|
846
824
|
${({ align: e }) => e === "right" ? L`
|
|
@@ -873,37 +851,37 @@ const Nn = u.div`
|
|
|
873
851
|
|
|
874
852
|
color: ${({ theme: e }) => e.aiChat.primaryTextColor};
|
|
875
853
|
background-color: ${({ theme: e, align: t }) => t === "right" ? e.aiChat.userMessages.backgroundColor : e.aiChat.systemMessages.backgroundColor};
|
|
876
|
-
`,
|
|
854
|
+
`, z = ({ align: e, children: t }) => {
|
|
877
855
|
const { themeSettings: n } = b();
|
|
878
|
-
return /* @__PURE__ */ o(
|
|
856
|
+
return /* @__PURE__ */ o(Dn, { theme: n, align: e, children: /* @__PURE__ */ o(Je, { theme: n, align: e, children: t }) });
|
|
879
857
|
};
|
|
880
858
|
function Fn() {
|
|
881
|
-
const { welcomeText: e } =
|
|
882
|
-
return e === !1 ? null : /* @__PURE__ */ o(
|
|
859
|
+
const { welcomeText: e } = P();
|
|
860
|
+
return e === !1 ? null : /* @__PURE__ */ o(z, { align: "left", children: e });
|
|
883
861
|
}
|
|
884
|
-
const
|
|
862
|
+
const Nn = u.div`
|
|
885
863
|
margin: auto;
|
|
886
864
|
display: flex;
|
|
887
865
|
flex-direction: column;
|
|
888
866
|
align-items: center;
|
|
889
867
|
row-gap: 21px;
|
|
890
|
-
`,
|
|
868
|
+
`, In = u.div`
|
|
891
869
|
color: ${({ theme: e }) => e.aiChat.primaryTextColor};
|
|
892
870
|
text-align: center;
|
|
893
871
|
font-weight: 600;
|
|
894
|
-
`,
|
|
872
|
+
`, On = u.div`
|
|
895
873
|
color: rgba(54, 163, 217, 1);
|
|
896
874
|
cursor: pointer;
|
|
897
875
|
`;
|
|
898
876
|
function et({ text: e, action: t }) {
|
|
899
877
|
const { themeSettings: n } = b();
|
|
900
|
-
return /* @__PURE__ */
|
|
901
|
-
/* @__PURE__ */ o(
|
|
878
|
+
return /* @__PURE__ */ p(Nn, { children: [
|
|
879
|
+
/* @__PURE__ */ o(In, { theme: n, children: e }),
|
|
902
880
|
/* @__PURE__ */ o(Rt, {}),
|
|
903
|
-
t && /* @__PURE__ */ o(
|
|
881
|
+
t && /* @__PURE__ */ o(On, { onClick: t.onClick, children: t.text })
|
|
904
882
|
] });
|
|
905
883
|
}
|
|
906
|
-
const
|
|
884
|
+
const re = u.div`
|
|
907
885
|
width: 5px;
|
|
908
886
|
height: 5px;
|
|
909
887
|
border-radius: 50%;
|
|
@@ -934,21 +912,21 @@ const ie = u.div`
|
|
|
934
912
|
`;
|
|
935
913
|
function tt() {
|
|
936
914
|
const { themeSettings: e } = b(), t = e.aiChat.icons.color;
|
|
937
|
-
return /* @__PURE__ */
|
|
915
|
+
return /* @__PURE__ */ p(
|
|
938
916
|
"div",
|
|
939
917
|
{
|
|
940
918
|
className: "csdk-flex csdk-justify-between csdk-w-[28px] csdk-py-[14.5px]",
|
|
941
919
|
"aria-label": "loading dots",
|
|
942
920
|
children: [
|
|
943
|
-
/* @__PURE__ */ o(
|
|
944
|
-
/* @__PURE__ */ o(
|
|
945
|
-
/* @__PURE__ */ o(
|
|
946
|
-
/* @__PURE__ */ o(
|
|
921
|
+
/* @__PURE__ */ o(re, { color: t }),
|
|
922
|
+
/* @__PURE__ */ o(re, { color: t }),
|
|
923
|
+
/* @__PURE__ */ o(re, { color: t }),
|
|
924
|
+
/* @__PURE__ */ o(re, { color: t })
|
|
947
925
|
]
|
|
948
926
|
}
|
|
949
927
|
);
|
|
950
928
|
}
|
|
951
|
-
const
|
|
929
|
+
const Wn = u.div`
|
|
952
930
|
display: flex;
|
|
953
931
|
|
|
954
932
|
${({ align: e }) => e === "right" ? L`
|
|
@@ -956,7 +934,7 @@ const Pn = u.div`
|
|
|
956
934
|
` : L`
|
|
957
935
|
justify-content: flex-start;
|
|
958
936
|
`}
|
|
959
|
-
`,
|
|
937
|
+
`, Pn = u.button`
|
|
960
938
|
font-family: inherit;
|
|
961
939
|
font-size: inherit;
|
|
962
940
|
line-height: inherit;
|
|
@@ -1009,7 +987,7 @@ const Pn = u.div`
|
|
|
1009
987
|
return "";
|
|
1010
988
|
}}
|
|
1011
989
|
`;
|
|
1012
|
-
function
|
|
990
|
+
function se({
|
|
1013
991
|
children: e,
|
|
1014
992
|
align: t,
|
|
1015
993
|
onClick: n,
|
|
@@ -1018,8 +996,8 @@ function ae({
|
|
|
1018
996
|
accessibleName: s
|
|
1019
997
|
}) {
|
|
1020
998
|
const { themeSettings: a } = b();
|
|
1021
|
-
return /* @__PURE__ */ o(
|
|
1022
|
-
|
|
999
|
+
return /* @__PURE__ */ o(Wn, { align: t, children: /* @__PURE__ */ o(
|
|
1000
|
+
Pn,
|
|
1023
1001
|
{
|
|
1024
1002
|
"aria-label": s,
|
|
1025
1003
|
theme: a,
|
|
@@ -1031,20 +1009,20 @@ function ae({
|
|
|
1031
1009
|
}
|
|
1032
1010
|
) });
|
|
1033
1011
|
}
|
|
1034
|
-
function
|
|
1035
|
-
return /* @__PURE__ */
|
|
1036
|
-
/* @__PURE__ */ o(
|
|
1037
|
-
/* @__PURE__ */
|
|
1038
|
-
/* @__PURE__ */ o(
|
|
1039
|
-
/* @__PURE__ */ o(
|
|
1012
|
+
function An({ onCancel: e, onConfirm: t }) {
|
|
1013
|
+
return /* @__PURE__ */ p(H, { children: [
|
|
1014
|
+
/* @__PURE__ */ o(z, { align: "left", children: "Do you want to clear this chat?" }),
|
|
1015
|
+
/* @__PURE__ */ p("div", { className: "csdk-flex csdk-gap-x-2", children: [
|
|
1016
|
+
/* @__PURE__ */ o(se, { align: "right", onClick: t, accessibleName: "confirm clear chat", children: /* @__PURE__ */ o("div", { className: "csdk-py-[6px] csdk-px-[20px]", children: "Yes" }) }),
|
|
1017
|
+
/* @__PURE__ */ o(se, { align: "right", onClick: e, accessibleName: "cancel clear chat", children: /* @__PURE__ */ o("div", { className: "csdk-py-[6px] csdk-px-[20px]", children: "No" }) })
|
|
1040
1018
|
] })
|
|
1041
1019
|
] });
|
|
1042
1020
|
}
|
|
1043
|
-
const
|
|
1021
|
+
const qn = xe(null), Ce = {
|
|
1044
1022
|
didCatch: !1,
|
|
1045
1023
|
error: null
|
|
1046
1024
|
};
|
|
1047
|
-
class
|
|
1025
|
+
class zn extends jt {
|
|
1048
1026
|
constructor(t) {
|
|
1049
1027
|
super(t), this.resetErrorBoundary = this.resetErrorBoundary.bind(this), this.state = Ce;
|
|
1050
1028
|
}
|
|
@@ -1077,7 +1055,7 @@ class Vn extends jt {
|
|
|
1077
1055
|
} = this.state, {
|
|
1078
1056
|
resetKeys: i
|
|
1079
1057
|
} = this.props;
|
|
1080
|
-
if (r && n.error !== null &&
|
|
1058
|
+
if (r && n.error !== null && Vn(t.resetKeys, i)) {
|
|
1081
1059
|
var s, a;
|
|
1082
1060
|
(s = (a = this.props).onReset) === null || s === void 0 || s.call(a, {
|
|
1083
1061
|
next: i,
|
|
@@ -1096,47 +1074,47 @@ class Vn extends jt {
|
|
|
1096
1074
|
didCatch: s,
|
|
1097
1075
|
error: a
|
|
1098
1076
|
} = this.state;
|
|
1099
|
-
let
|
|
1077
|
+
let c = t;
|
|
1100
1078
|
if (s) {
|
|
1101
|
-
const
|
|
1079
|
+
const l = {
|
|
1102
1080
|
error: a,
|
|
1103
1081
|
resetErrorBoundary: this.resetErrorBoundary
|
|
1104
1082
|
};
|
|
1105
1083
|
if (typeof n == "function")
|
|
1106
|
-
|
|
1084
|
+
c = n(l);
|
|
1107
1085
|
else if (r)
|
|
1108
|
-
|
|
1086
|
+
c = me(r, l);
|
|
1109
1087
|
else if (i === null || Gt(i))
|
|
1110
|
-
|
|
1088
|
+
c = i;
|
|
1111
1089
|
else
|
|
1112
1090
|
throw a;
|
|
1113
1091
|
}
|
|
1114
|
-
return me(
|
|
1092
|
+
return me(qn.Provider, {
|
|
1115
1093
|
value: {
|
|
1116
1094
|
didCatch: s,
|
|
1117
1095
|
error: a,
|
|
1118
1096
|
resetErrorBoundary: this.resetErrorBoundary
|
|
1119
1097
|
}
|
|
1120
|
-
},
|
|
1098
|
+
}, c);
|
|
1121
1099
|
}
|
|
1122
1100
|
}
|
|
1123
|
-
function
|
|
1101
|
+
function Vn() {
|
|
1124
1102
|
let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : [], t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : [];
|
|
1125
1103
|
return e.length !== t.length || e.some((n, r) => !Object.is(n, t[r]));
|
|
1126
1104
|
}
|
|
1127
|
-
function
|
|
1105
|
+
function Zn(e) {
|
|
1128
1106
|
return Mt("MuiDialog", e);
|
|
1129
1107
|
}
|
|
1130
|
-
const fe = Lt("MuiDialog", ["root", "scrollPaper", "scrollBody", "container", "paper", "paperScrollPaper", "paperScrollBody", "paperWidthFalse", "paperWidthXs", "paperWidthSm", "paperWidthMd", "paperWidthLg", "paperWidthXl", "paperFullWidth", "paperFullScreen"]), nt = /* @__PURE__ */
|
|
1108
|
+
const fe = Lt("MuiDialog", ["root", "scrollPaper", "scrollBody", "container", "paper", "paperScrollPaper", "paperScrollBody", "paperWidthFalse", "paperWidthXs", "paperWidthSm", "paperWidthMd", "paperWidthLg", "paperWidthXl", "paperFullWidth", "paperFullScreen"]), nt = /* @__PURE__ */ q.createContext({});
|
|
1131
1109
|
process.env.NODE_ENV !== "production" && (nt.displayName = "DialogContext");
|
|
1132
|
-
const
|
|
1110
|
+
const Qn = ["aria-describedby", "aria-labelledby", "BackdropComponent", "BackdropProps", "children", "className", "disableEscapeKeyDown", "fullScreen", "fullWidth", "maxWidth", "onBackdropClick", "onClick", "onClose", "open", "PaperComponent", "PaperProps", "scroll", "TransitionComponent", "transitionDuration", "TransitionProps"], jn = ae($t, {
|
|
1133
1111
|
name: "MuiDialog",
|
|
1134
1112
|
slot: "Backdrop",
|
|
1135
1113
|
overrides: (e, t) => t.backdrop
|
|
1136
1114
|
})({
|
|
1137
1115
|
// Improve scrollable dialog support.
|
|
1138
1116
|
zIndex: -1
|
|
1139
|
-
}),
|
|
1117
|
+
}), Gn = (e) => {
|
|
1140
1118
|
const {
|
|
1141
1119
|
classes: t,
|
|
1142
1120
|
scroll: n,
|
|
@@ -1148,8 +1126,8 @@ const jn = ["aria-describedby", "aria-labelledby", "BackdropComponent", "Backdro
|
|
|
1148
1126
|
container: ["container", `scroll${G(n)}`],
|
|
1149
1127
|
paper: ["paper", `paperScroll${G(n)}`, `paperWidth${G(String(r))}`, i && "paperFullWidth", s && "paperFullScreen"]
|
|
1150
1128
|
};
|
|
1151
|
-
return
|
|
1152
|
-
},
|
|
1129
|
+
return Ft(a, Zn, t);
|
|
1130
|
+
}, Un = ae(Et, {
|
|
1153
1131
|
name: "MuiDialog",
|
|
1154
1132
|
slot: "Root",
|
|
1155
1133
|
overridesResolver: (e, t) => t.root
|
|
@@ -1158,7 +1136,7 @@ const jn = ["aria-describedby", "aria-labelledby", "BackdropComponent", "Backdro
|
|
|
1158
1136
|
// Use !important to override the Modal inline-style.
|
|
1159
1137
|
position: "absolute !important"
|
|
1160
1138
|
}
|
|
1161
|
-
}),
|
|
1139
|
+
}), _n = ae("div", {
|
|
1162
1140
|
name: "MuiDialog",
|
|
1163
1141
|
slot: "Container",
|
|
1164
1142
|
overridesResolver: (e, t) => {
|
|
@@ -1191,7 +1169,7 @@ const jn = ["aria-describedby", "aria-labelledby", "BackdropComponent", "Backdro
|
|
|
1191
1169
|
height: "100%",
|
|
1192
1170
|
width: "0"
|
|
1193
1171
|
}
|
|
1194
|
-
})),
|
|
1172
|
+
})), Kn = ae(Pe, {
|
|
1195
1173
|
name: "MuiDialog",
|
|
1196
1174
|
slot: "Paper",
|
|
1197
1175
|
overridesResolver: (e, t) => {
|
|
@@ -1250,8 +1228,8 @@ const jn = ["aria-describedby", "aria-labelledby", "BackdropComponent", "Backdro
|
|
|
1250
1228
|
margin: 0,
|
|
1251
1229
|
maxWidth: "100%"
|
|
1252
1230
|
}
|
|
1253
|
-
})), ot = /* @__PURE__ */
|
|
1254
|
-
const r =
|
|
1231
|
+
})), ot = /* @__PURE__ */ q.forwardRef(function(t, n) {
|
|
1232
|
+
const r = Tt({
|
|
1255
1233
|
props: t,
|
|
1256
1234
|
name: "MuiDialog"
|
|
1257
1235
|
}), i = Ht(), s = {
|
|
@@ -1259,79 +1237,79 @@ const jn = ["aria-describedby", "aria-labelledby", "BackdropComponent", "Backdro
|
|
|
1259
1237
|
exit: i.transitions.duration.leavingScreen
|
|
1260
1238
|
}, {
|
|
1261
1239
|
"aria-describedby": a,
|
|
1262
|
-
"aria-labelledby":
|
|
1263
|
-
BackdropComponent:
|
|
1240
|
+
"aria-labelledby": c,
|
|
1241
|
+
BackdropComponent: l,
|
|
1264
1242
|
BackdropProps: d,
|
|
1265
|
-
children:
|
|
1266
|
-
className:
|
|
1243
|
+
children: C,
|
|
1244
|
+
className: h,
|
|
1267
1245
|
disableEscapeKeyDown: f = !1,
|
|
1268
1246
|
fullScreen: S = !1,
|
|
1269
1247
|
fullWidth: w = !1,
|
|
1270
1248
|
maxWidth: m = "sm",
|
|
1271
1249
|
onBackdropClick: x,
|
|
1272
1250
|
onClick: y,
|
|
1273
|
-
onClose:
|
|
1274
|
-
open:
|
|
1275
|
-
PaperComponent:
|
|
1276
|
-
PaperProps:
|
|
1251
|
+
onClose: T,
|
|
1252
|
+
open: N,
|
|
1253
|
+
PaperComponent: M = Pe,
|
|
1254
|
+
PaperProps: J = {},
|
|
1277
1255
|
scroll: B = "paper",
|
|
1278
|
-
TransitionComponent:
|
|
1279
|
-
transitionDuration:
|
|
1256
|
+
TransitionComponent: ee = Nt,
|
|
1257
|
+
transitionDuration: te = s,
|
|
1280
1258
|
TransitionProps: de
|
|
1281
|
-
} = r, ue = Bt(r,
|
|
1259
|
+
} = r, ue = Bt(r, Qn), V = Q({}, r, {
|
|
1282
1260
|
disableEscapeKeyDown: f,
|
|
1283
1261
|
fullScreen: S,
|
|
1284
1262
|
fullWidth: w,
|
|
1285
1263
|
maxWidth: m,
|
|
1286
1264
|
scroll: B
|
|
1287
|
-
}), j =
|
|
1288
|
-
|
|
1289
|
-
}, he = (
|
|
1290
|
-
y && y(
|
|
1291
|
-
}, v = Dt(
|
|
1265
|
+
}), j = Gn(V), I = q.useRef(), ne = (A) => {
|
|
1266
|
+
I.current = A.target === A.currentTarget;
|
|
1267
|
+
}, he = (A) => {
|
|
1268
|
+
y && y(A), I.current && (I.current = null, x && x(A), T && T(A, "backdropClick"));
|
|
1269
|
+
}, v = Dt(c), O = q.useMemo(() => ({
|
|
1292
1270
|
titleId: v
|
|
1293
1271
|
}), [v]);
|
|
1294
|
-
return /* @__PURE__ */ o(
|
|
1295
|
-
className: ge(j.root,
|
|
1272
|
+
return /* @__PURE__ */ o(Un, Q({
|
|
1273
|
+
className: ge(j.root, h),
|
|
1296
1274
|
closeAfterTransition: !0,
|
|
1297
1275
|
components: {
|
|
1298
|
-
Backdrop:
|
|
1276
|
+
Backdrop: jn
|
|
1299
1277
|
},
|
|
1300
1278
|
componentsProps: {
|
|
1301
1279
|
backdrop: Q({
|
|
1302
|
-
transitionDuration:
|
|
1303
|
-
as:
|
|
1280
|
+
transitionDuration: te,
|
|
1281
|
+
as: l
|
|
1304
1282
|
}, d)
|
|
1305
1283
|
},
|
|
1306
1284
|
disableEscapeKeyDown: f,
|
|
1307
|
-
onClose:
|
|
1308
|
-
open:
|
|
1285
|
+
onClose: T,
|
|
1286
|
+
open: N,
|
|
1309
1287
|
ref: n,
|
|
1310
1288
|
onClick: he,
|
|
1311
|
-
ownerState:
|
|
1289
|
+
ownerState: V
|
|
1312
1290
|
}, ue, {
|
|
1313
|
-
children: /* @__PURE__ */ o(
|
|
1291
|
+
children: /* @__PURE__ */ o(ee, Q({
|
|
1314
1292
|
appear: !0,
|
|
1315
|
-
in:
|
|
1316
|
-
timeout:
|
|
1293
|
+
in: N,
|
|
1294
|
+
timeout: te,
|
|
1317
1295
|
role: "presentation"
|
|
1318
1296
|
}, de, {
|
|
1319
|
-
children: /* @__PURE__ */ o(
|
|
1297
|
+
children: /* @__PURE__ */ o(_n, {
|
|
1320
1298
|
className: ge(j.container),
|
|
1321
|
-
onMouseDown:
|
|
1322
|
-
ownerState:
|
|
1323
|
-
children: /* @__PURE__ */ o(
|
|
1324
|
-
as:
|
|
1299
|
+
onMouseDown: ne,
|
|
1300
|
+
ownerState: V,
|
|
1301
|
+
children: /* @__PURE__ */ o(Kn, Q({
|
|
1302
|
+
as: M,
|
|
1325
1303
|
elevation: 24,
|
|
1326
1304
|
role: "dialog",
|
|
1327
1305
|
"aria-describedby": a,
|
|
1328
1306
|
"aria-labelledby": v
|
|
1329
|
-
},
|
|
1330
|
-
className: ge(j.paper,
|
|
1331
|
-
ownerState:
|
|
1307
|
+
}, J, {
|
|
1308
|
+
className: ge(j.paper, J.className),
|
|
1309
|
+
ownerState: V,
|
|
1332
1310
|
children: /* @__PURE__ */ o(nt.Provider, {
|
|
1333
|
-
value:
|
|
1334
|
-
children:
|
|
1311
|
+
value: O,
|
|
1312
|
+
children: C
|
|
1335
1313
|
})
|
|
1336
1314
|
}))
|
|
1337
1315
|
})
|
|
@@ -1346,11 +1324,11 @@ process.env.NODE_ENV !== "production" && (ot.propTypes = {
|
|
|
1346
1324
|
/**
|
|
1347
1325
|
* The id(s) of the element(s) that describe the dialog.
|
|
1348
1326
|
*/
|
|
1349
|
-
"aria-describedby":
|
|
1327
|
+
"aria-describedby": g.string,
|
|
1350
1328
|
/**
|
|
1351
1329
|
* The id(s) of the element(s) that label the dialog.
|
|
1352
1330
|
*/
|
|
1353
|
-
"aria-labelledby":
|
|
1331
|
+
"aria-labelledby": g.string,
|
|
1354
1332
|
/**
|
|
1355
1333
|
* A backdrop component. This prop enables custom backdrop rendering.
|
|
1356
1334
|
* @deprecated Use `slots.backdrop` instead. While this prop currently works, it will be removed in the next major version.
|
|
@@ -1365,92 +1343,92 @@ process.env.NODE_ENV !== "production" && (ot.propTypes = {
|
|
|
1365
1343
|
* zIndex: -1,
|
|
1366
1344
|
* })
|
|
1367
1345
|
*/
|
|
1368
|
-
BackdropComponent:
|
|
1346
|
+
BackdropComponent: g.elementType,
|
|
1369
1347
|
/**
|
|
1370
1348
|
* @ignore
|
|
1371
1349
|
*/
|
|
1372
|
-
BackdropProps:
|
|
1350
|
+
BackdropProps: g.object,
|
|
1373
1351
|
/**
|
|
1374
1352
|
* Dialog children, usually the included sub-components.
|
|
1375
1353
|
*/
|
|
1376
|
-
children:
|
|
1354
|
+
children: g.node,
|
|
1377
1355
|
/**
|
|
1378
1356
|
* Override or extend the styles applied to the component.
|
|
1379
1357
|
*/
|
|
1380
|
-
classes:
|
|
1358
|
+
classes: g.object,
|
|
1381
1359
|
/**
|
|
1382
1360
|
* @ignore
|
|
1383
1361
|
*/
|
|
1384
|
-
className:
|
|
1362
|
+
className: g.string,
|
|
1385
1363
|
/**
|
|
1386
1364
|
* If `true`, hitting escape will not fire the `onClose` callback.
|
|
1387
1365
|
* @default false
|
|
1388
1366
|
*/
|
|
1389
|
-
disableEscapeKeyDown:
|
|
1367
|
+
disableEscapeKeyDown: g.bool,
|
|
1390
1368
|
/**
|
|
1391
1369
|
* If `true`, the dialog is full-screen.
|
|
1392
1370
|
* @default false
|
|
1393
1371
|
*/
|
|
1394
|
-
fullScreen:
|
|
1372
|
+
fullScreen: g.bool,
|
|
1395
1373
|
/**
|
|
1396
1374
|
* If `true`, the dialog stretches to `maxWidth`.
|
|
1397
1375
|
*
|
|
1398
1376
|
* Notice that the dialog width grow is limited by the default margin.
|
|
1399
1377
|
* @default false
|
|
1400
1378
|
*/
|
|
1401
|
-
fullWidth:
|
|
1379
|
+
fullWidth: g.bool,
|
|
1402
1380
|
/**
|
|
1403
1381
|
* Determine the max-width of the dialog.
|
|
1404
1382
|
* The dialog width grows with the size of the screen.
|
|
1405
1383
|
* Set to `false` to disable `maxWidth`.
|
|
1406
1384
|
* @default 'sm'
|
|
1407
1385
|
*/
|
|
1408
|
-
maxWidth:
|
|
1386
|
+
maxWidth: g.oneOfType([g.oneOf(["xs", "sm", "md", "lg", "xl", !1]), g.string]),
|
|
1409
1387
|
/**
|
|
1410
1388
|
* Callback fired when the backdrop is clicked.
|
|
1411
1389
|
* @deprecated Use the `onClose` prop with the `reason` argument to handle the `backdropClick` events.
|
|
1412
1390
|
*/
|
|
1413
|
-
onBackdropClick:
|
|
1391
|
+
onBackdropClick: g.func,
|
|
1414
1392
|
/**
|
|
1415
1393
|
* @ignore
|
|
1416
1394
|
*/
|
|
1417
|
-
onClick:
|
|
1395
|
+
onClick: g.func,
|
|
1418
1396
|
/**
|
|
1419
1397
|
* Callback fired when the component requests to be closed.
|
|
1420
1398
|
*
|
|
1421
1399
|
* @param {object} event The event source of the callback.
|
|
1422
1400
|
* @param {string} reason Can be: `"escapeKeyDown"`, `"backdropClick"`.
|
|
1423
1401
|
*/
|
|
1424
|
-
onClose:
|
|
1402
|
+
onClose: g.func,
|
|
1425
1403
|
/**
|
|
1426
1404
|
* If `true`, the component is shown.
|
|
1427
1405
|
*/
|
|
1428
|
-
open:
|
|
1406
|
+
open: g.bool.isRequired,
|
|
1429
1407
|
/**
|
|
1430
1408
|
* The component used to render the body of the dialog.
|
|
1431
1409
|
* @default Paper
|
|
1432
1410
|
*/
|
|
1433
|
-
PaperComponent:
|
|
1411
|
+
PaperComponent: g.elementType,
|
|
1434
1412
|
/**
|
|
1435
1413
|
* Props applied to the [`Paper`](/material-ui/api/paper/) element.
|
|
1436
1414
|
* @default {}
|
|
1437
1415
|
*/
|
|
1438
|
-
PaperProps:
|
|
1416
|
+
PaperProps: g.object,
|
|
1439
1417
|
/**
|
|
1440
1418
|
* Determine the container for scrolling the dialog.
|
|
1441
1419
|
* @default 'paper'
|
|
1442
1420
|
*/
|
|
1443
|
-
scroll:
|
|
1421
|
+
scroll: g.oneOf(["body", "paper"]),
|
|
1444
1422
|
/**
|
|
1445
1423
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
1446
1424
|
*/
|
|
1447
|
-
sx:
|
|
1425
|
+
sx: g.oneOfType([g.arrayOf(g.oneOfType([g.func, g.object, g.bool])), g.func, g.object]),
|
|
1448
1426
|
/**
|
|
1449
1427
|
* The component used for the transition.
|
|
1450
1428
|
* [Follow this guide](/material-ui/transitions/#transitioncomponent-prop) to learn more about the requirements for this component.
|
|
1451
1429
|
* @default Fade
|
|
1452
1430
|
*/
|
|
1453
|
-
TransitionComponent:
|
|
1431
|
+
TransitionComponent: g.elementType,
|
|
1454
1432
|
/**
|
|
1455
1433
|
* The duration for the transition, in milliseconds.
|
|
1456
1434
|
* You may specify a single timeout for all transitions, or individually with an object.
|
|
@@ -1459,19 +1437,19 @@ process.env.NODE_ENV !== "production" && (ot.propTypes = {
|
|
|
1459
1437
|
* exit: theme.transitions.duration.leavingScreen,
|
|
1460
1438
|
* }
|
|
1461
1439
|
*/
|
|
1462
|
-
transitionDuration:
|
|
1463
|
-
appear:
|
|
1464
|
-
enter:
|
|
1465
|
-
exit:
|
|
1440
|
+
transitionDuration: g.oneOfType([g.number, g.shape({
|
|
1441
|
+
appear: g.number,
|
|
1442
|
+
enter: g.number,
|
|
1443
|
+
exit: g.number
|
|
1466
1444
|
})]),
|
|
1467
1445
|
/**
|
|
1468
1446
|
* Props applied to the transition element.
|
|
1469
1447
|
* By default, the element is based on this [`Transition`](https://reactcommunity.org/react-transition-group/transition/) component.
|
|
1470
1448
|
*/
|
|
1471
|
-
TransitionProps:
|
|
1449
|
+
TransitionProps: g.object
|
|
1472
1450
|
});
|
|
1473
|
-
function
|
|
1474
|
-
return /* @__PURE__ */
|
|
1451
|
+
function Yn() {
|
|
1452
|
+
return /* @__PURE__ */ p("svg", { xmlns: "http://www.w3.org/2000/svg", width: "30", height: "30", viewBox: "0 0 30 30", fill: "none", children: [
|
|
1475
1453
|
/* @__PURE__ */ o("rect", { x: "1", y: "1", width: "28", height: "28", rx: "14", stroke: "#9EA2AB" }),
|
|
1476
1454
|
/* @__PURE__ */ o(
|
|
1477
1455
|
"path",
|
|
@@ -1569,18 +1547,18 @@ const rt = {
|
|
|
1569
1547
|
errorBG: "rgba(231, 71, 39, 0.1)"
|
|
1570
1548
|
}
|
|
1571
1549
|
}
|
|
1572
|
-
},
|
|
1550
|
+
}, Xn = {
|
|
1573
1551
|
shouldForwardProp: (e) => !e.startsWith("$")
|
|
1574
|
-
},
|
|
1575
|
-
|
|
1576
|
-
|
|
1552
|
+
}, X = u(
|
|
1553
|
+
Ae,
|
|
1554
|
+
Xn
|
|
1577
1555
|
)(({ $hoverColor: e }) => ({
|
|
1578
1556
|
padding: 2,
|
|
1579
1557
|
"&.MuiIconButton-root:hover": {
|
|
1580
1558
|
backgroundColor: e != null ? e : rt.interaction.defaultHover
|
|
1581
1559
|
}
|
|
1582
1560
|
}));
|
|
1583
|
-
function
|
|
1561
|
+
function Jn({ fill: e = "rgba(38, 46, 61, 0.67)" }) {
|
|
1584
1562
|
return /* @__PURE__ */ o("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ o(
|
|
1585
1563
|
"path",
|
|
1586
1564
|
{
|
|
@@ -1591,7 +1569,7 @@ function eo({ fill: e = "rgba(38, 46, 61, 0.67)" }) {
|
|
|
1591
1569
|
}
|
|
1592
1570
|
) });
|
|
1593
1571
|
}
|
|
1594
|
-
function
|
|
1572
|
+
function eo({ fill: e = "rgba(38, 46, 61, 0.67)" }) {
|
|
1595
1573
|
return /* @__PURE__ */ o("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ o(
|
|
1596
1574
|
"path",
|
|
1597
1575
|
{
|
|
@@ -1602,7 +1580,7 @@ function to({ fill: e = "rgba(38, 46, 61, 0.67)" }) {
|
|
|
1602
1580
|
}
|
|
1603
1581
|
) });
|
|
1604
1582
|
}
|
|
1605
|
-
function
|
|
1583
|
+
function to() {
|
|
1606
1584
|
return /* @__PURE__ */ o("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ o(
|
|
1607
1585
|
"path",
|
|
1608
1586
|
{
|
|
@@ -1614,7 +1592,7 @@ function no() {
|
|
|
1614
1592
|
}
|
|
1615
1593
|
) });
|
|
1616
1594
|
}
|
|
1617
|
-
function
|
|
1595
|
+
function no({ fill: e = "rgba(38, 46, 61, 0.67)" }) {
|
|
1618
1596
|
return /* @__PURE__ */ o("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ o(
|
|
1619
1597
|
"path",
|
|
1620
1598
|
{
|
|
@@ -1625,23 +1603,23 @@ function oo({ fill: e = "rgba(38, 46, 61, 0.67)" }) {
|
|
|
1625
1603
|
}
|
|
1626
1604
|
) });
|
|
1627
1605
|
}
|
|
1628
|
-
const
|
|
1606
|
+
const Re = (e) => qe(e.chart.backgroundColor), oo = ({ title: e }) => {
|
|
1629
1607
|
const { themeSettings: t } = b();
|
|
1630
|
-
return /* @__PURE__ */ o(
|
|
1631
|
-
},
|
|
1632
|
-
const [t, n] =
|
|
1608
|
+
return /* @__PURE__ */ o(Y, { title: e, children: /* @__PURE__ */ o(X, { disableTouchRipple: !0, $hoverColor: Re(t), children: /* @__PURE__ */ o(eo, { fill: t.chart.textColor }) }) });
|
|
1609
|
+
}, ro = ({ items: e }) => {
|
|
1610
|
+
const [t, n] = k(null), r = (a) => {
|
|
1633
1611
|
n(a.currentTarget);
|
|
1634
1612
|
}, i = () => {
|
|
1635
1613
|
n(null);
|
|
1636
1614
|
}, { themeSettings: s } = b();
|
|
1637
|
-
return /* @__PURE__ */
|
|
1615
|
+
return /* @__PURE__ */ p(H, { children: [
|
|
1638
1616
|
/* @__PURE__ */ o(
|
|
1639
|
-
|
|
1617
|
+
X,
|
|
1640
1618
|
{
|
|
1641
1619
|
onClick: r,
|
|
1642
|
-
$hoverColor:
|
|
1620
|
+
$hoverColor: Re(s),
|
|
1643
1621
|
"aria-label": "three dots button",
|
|
1644
|
-
children: /* @__PURE__ */ o(
|
|
1622
|
+
children: /* @__PURE__ */ o(no, { fill: s.chart.textColor })
|
|
1645
1623
|
}
|
|
1646
1624
|
),
|
|
1647
1625
|
/* @__PURE__ */ o(
|
|
@@ -1658,7 +1636,7 @@ const Le = (e) => ze(e.chart.backgroundColor), ro = ({ title: e }) => {
|
|
|
1658
1636
|
},
|
|
1659
1637
|
open: !!t,
|
|
1660
1638
|
onClose: i,
|
|
1661
|
-
children: e.map((a) => /* @__PURE__ */
|
|
1639
|
+
children: e.map((a) => /* @__PURE__ */ p(
|
|
1662
1640
|
Ot,
|
|
1663
1641
|
{
|
|
1664
1642
|
onClick: () => {
|
|
@@ -1680,15 +1658,15 @@ const Le = (e) => ze(e.chart.backgroundColor), ro = ({ title: e }) => {
|
|
|
1680
1658
|
}
|
|
1681
1659
|
)
|
|
1682
1660
|
] });
|
|
1683
|
-
},
|
|
1661
|
+
}, io = ({ onClick: e }) => {
|
|
1684
1662
|
const { themeSettings: t } = b();
|
|
1685
|
-
return /* @__PURE__ */ o(
|
|
1686
|
-
},
|
|
1663
|
+
return /* @__PURE__ */ o(Y, { title: "Preview", children: /* @__PURE__ */ o(X, { onClick: e, $hoverColor: Re(t), children: /* @__PURE__ */ o(Jn, { fill: t.chart.textColor }) }) });
|
|
1664
|
+
}, so = u.div`
|
|
1687
1665
|
display: flex;
|
|
1688
1666
|
padding-top: 6px;
|
|
1689
1667
|
padding-bottom: 6px;
|
|
1690
1668
|
`;
|
|
1691
|
-
function
|
|
1669
|
+
function ao({
|
|
1692
1670
|
infoTooltipText: e,
|
|
1693
1671
|
onRefresh: t,
|
|
1694
1672
|
onExpand: n
|
|
@@ -1698,24 +1676,24 @@ function lo({
|
|
|
1698
1676
|
{
|
|
1699
1677
|
title: "Refresh",
|
|
1700
1678
|
onClick: t,
|
|
1701
|
-
icon: /* @__PURE__ */ o(
|
|
1679
|
+
icon: /* @__PURE__ */ o(to, {})
|
|
1702
1680
|
}
|
|
1703
1681
|
],
|
|
1704
1682
|
[t]
|
|
1705
1683
|
);
|
|
1706
|
-
return /* @__PURE__ */
|
|
1707
|
-
/* @__PURE__ */ o(
|
|
1708
|
-
/* @__PURE__ */ o(
|
|
1709
|
-
/* @__PURE__ */ o(
|
|
1684
|
+
return /* @__PURE__ */ p(so, { "aria-label": "chatbot chart toolbar", children: [
|
|
1685
|
+
/* @__PURE__ */ o(oo, { title: e != null ? e : "" }),
|
|
1686
|
+
/* @__PURE__ */ o(ro, { items: r }),
|
|
1687
|
+
/* @__PURE__ */ o(io, { onClick: n })
|
|
1710
1688
|
] });
|
|
1711
1689
|
}
|
|
1712
|
-
function
|
|
1713
|
-
const [n, r] =
|
|
1714
|
-
const { detailedDescription: a, jaql:
|
|
1690
|
+
function lo({ content: e, dataSource: t }) {
|
|
1691
|
+
const [n, r] = k(!1), { chartElement: i, expandedElement: s } = F(() => {
|
|
1692
|
+
const { detailedDescription: a, jaql: c } = e, l = qt(e), d = l.chartType.toLowerCase(), C = {
|
|
1715
1693
|
cornerRadius: "Small",
|
|
1716
1694
|
header: {
|
|
1717
1695
|
renderToolbar: (m) => /* @__PURE__ */ o(
|
|
1718
|
-
|
|
1696
|
+
ao,
|
|
1719
1697
|
{
|
|
1720
1698
|
infoTooltipText: a,
|
|
1721
1699
|
onRefresh: m,
|
|
@@ -1723,45 +1701,45 @@ function co({ content: e, dataSource: t }) {
|
|
|
1723
1701
|
}
|
|
1724
1702
|
)
|
|
1725
1703
|
}
|
|
1726
|
-
},
|
|
1704
|
+
}, h = c.metadata.filter((m) => m.panel === "scope").map(Wt), f = c.metadata.filter((m) => m.panel !== "scope");
|
|
1727
1705
|
let S, w;
|
|
1728
1706
|
if (d === "table") {
|
|
1729
1707
|
const { dataOptions: m } = Pt(f), x = {
|
|
1730
1708
|
dataOptions: m,
|
|
1731
1709
|
dataSource: t,
|
|
1732
|
-
filters:
|
|
1710
|
+
filters: h
|
|
1733
1711
|
};
|
|
1734
|
-
S = /* @__PURE__ */ o("div", { className: "csdk-h-[245px]", children: /* @__PURE__ */ o(
|
|
1712
|
+
S = /* @__PURE__ */ o("div", { className: "csdk-h-[245px]", children: /* @__PURE__ */ o(Te, D(R({}, x), { styleOptions: C })) }), w = /* @__PURE__ */ o(Te, D(R({}, x), { styleOptions: { header: { hidden: !0 } } }));
|
|
1735
1713
|
} else {
|
|
1736
1714
|
const { dataOptions: m, chartStyleOptions: x, expandedChartStyleOptions: y } = At(
|
|
1737
1715
|
f,
|
|
1738
|
-
|
|
1739
|
-
),
|
|
1716
|
+
l
|
|
1717
|
+
), T = R(R({}, x), C), N = {
|
|
1740
1718
|
chartType: d,
|
|
1741
1719
|
dataOptions: m,
|
|
1742
1720
|
dataSource: t,
|
|
1743
|
-
filters:
|
|
1721
|
+
filters: h
|
|
1744
1722
|
};
|
|
1745
|
-
S = /* @__PURE__ */ o("div", { children: /* @__PURE__ */ o(
|
|
1746
|
-
const
|
|
1723
|
+
S = /* @__PURE__ */ o("div", { children: /* @__PURE__ */ o(He, D(R({}, N), { styleOptions: T })) });
|
|
1724
|
+
const M = D(R({}, y), {
|
|
1747
1725
|
header: { hidden: !0 }
|
|
1748
1726
|
});
|
|
1749
|
-
w = /* @__PURE__ */ o(
|
|
1727
|
+
w = /* @__PURE__ */ o(He, D(R({}, N), { styleOptions: M }));
|
|
1750
1728
|
}
|
|
1751
1729
|
return { chartElement: S, expandedElement: w };
|
|
1752
1730
|
}, [e, t]);
|
|
1753
|
-
return /* @__PURE__ */
|
|
1731
|
+
return /* @__PURE__ */ p(H, { children: [
|
|
1754
1732
|
i,
|
|
1755
|
-
/* @__PURE__ */
|
|
1756
|
-
/* @__PURE__ */
|
|
1733
|
+
/* @__PURE__ */ p(ot, { open: n, onClose: () => r(!1), maxWidth: "xl", fullWidth: !0, children: [
|
|
1734
|
+
/* @__PURE__ */ p("div", { className: "csdk-flex csdk-items-center csdk-justify-between csdk-py-[30px] csdk-px-[40px]", children: [
|
|
1757
1735
|
/* @__PURE__ */ o("div", { className: "csdk-text-ai-lg csdk-semibold csdk-text-text-active", children: e.queryTitle }),
|
|
1758
|
-
/* @__PURE__ */ o(
|
|
1736
|
+
/* @__PURE__ */ o(Ae, { onClick: () => r(!1), "aria-label": "close expanded chart", children: /* @__PURE__ */ o(Yn, {}) })
|
|
1759
1737
|
] }),
|
|
1760
1738
|
/* @__PURE__ */ o("div", { className: "csdk-h-screen", children: s })
|
|
1761
1739
|
] })
|
|
1762
1740
|
] });
|
|
1763
1741
|
}
|
|
1764
|
-
function
|
|
1742
|
+
function co({ theme: e }) {
|
|
1765
1743
|
return /* @__PURE__ */ o("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ o(
|
|
1766
1744
|
"path",
|
|
1767
1745
|
{
|
|
@@ -1772,20 +1750,20 @@ function uo({ theme: e }) {
|
|
|
1772
1750
|
}
|
|
1773
1751
|
) });
|
|
1774
1752
|
}
|
|
1775
|
-
function
|
|
1753
|
+
function uo({ onClick: e, disabled: t }) {
|
|
1776
1754
|
const { themeSettings: n } = b();
|
|
1777
|
-
return /* @__PURE__ */ o(
|
|
1778
|
-
|
|
1755
|
+
return /* @__PURE__ */ o(Y, { title: "Incorrect response", children: /* @__PURE__ */ o(
|
|
1756
|
+
X,
|
|
1779
1757
|
{
|
|
1780
1758
|
"aria-label": "thumbs-down",
|
|
1781
1759
|
onClick: e,
|
|
1782
1760
|
$hoverColor: n.aiChat.icons.feedbackIcons.hoverColor,
|
|
1783
1761
|
disabled: t,
|
|
1784
|
-
children: /* @__PURE__ */ o(
|
|
1762
|
+
children: /* @__PURE__ */ o(co, { theme: n })
|
|
1785
1763
|
}
|
|
1786
1764
|
) });
|
|
1787
1765
|
}
|
|
1788
|
-
function
|
|
1766
|
+
function ho({ theme: e }) {
|
|
1789
1767
|
return /* @__PURE__ */ o("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", children: /* @__PURE__ */ o(
|
|
1790
1768
|
"path",
|
|
1791
1769
|
{
|
|
@@ -1796,78 +1774,78 @@ function po({ theme: e }) {
|
|
|
1796
1774
|
}
|
|
1797
1775
|
) });
|
|
1798
1776
|
}
|
|
1799
|
-
function
|
|
1777
|
+
function po({ onClick: e, disabled: t }) {
|
|
1800
1778
|
const { themeSettings: n } = b();
|
|
1801
|
-
return /* @__PURE__ */ o(
|
|
1802
|
-
|
|
1779
|
+
return /* @__PURE__ */ o(Y, { title: "Correct response", children: /* @__PURE__ */ o(
|
|
1780
|
+
X,
|
|
1803
1781
|
{
|
|
1804
1782
|
"aria-label": "thumbs-up",
|
|
1805
1783
|
onClick: e,
|
|
1806
1784
|
$hoverColor: n.aiChat.icons.feedbackIcons.hoverColor,
|
|
1807
1785
|
disabled: t,
|
|
1808
|
-
children: /* @__PURE__ */ o(
|
|
1786
|
+
children: /* @__PURE__ */ o(ho, { theme: n })
|
|
1809
1787
|
}
|
|
1810
1788
|
) });
|
|
1811
1789
|
}
|
|
1812
|
-
const
|
|
1813
|
-
const [e, t] =
|
|
1790
|
+
const go = () => {
|
|
1791
|
+
const [e, t] = k(!1), n = U(null), r = E(() => {
|
|
1814
1792
|
t(!0);
|
|
1815
|
-
}, []), i =
|
|
1793
|
+
}, []), i = E(() => {
|
|
1816
1794
|
t(!1);
|
|
1817
1795
|
}, []);
|
|
1818
|
-
return [
|
|
1796
|
+
return [E(
|
|
1819
1797
|
(a) => {
|
|
1820
|
-
var
|
|
1821
|
-
((
|
|
1798
|
+
var c;
|
|
1799
|
+
((c = n.current) == null ? void 0 : c.nodeType) === Node.ELEMENT_NODE && (n.current.removeEventListener("mouseenter", r), n.current.removeEventListener("mouseleave", i)), (a == null ? void 0 : a.nodeType) === Node.ELEMENT_NODE && (a.addEventListener("mouseenter", r), a.addEventListener("mouseleave", i)), n.current = a;
|
|
1822
1800
|
},
|
|
1823
1801
|
[r, i]
|
|
1824
1802
|
), e];
|
|
1825
|
-
},
|
|
1803
|
+
}, Co = u.div`
|
|
1826
1804
|
display: flex;
|
|
1827
1805
|
flex-direction: column;
|
|
1828
1806
|
row-gap: ${({ theme: e }) => e.aiChat.body.gapBetweenMessages};
|
|
1829
1807
|
`;
|
|
1830
|
-
function
|
|
1831
|
-
const [n, r] =
|
|
1808
|
+
function fo({ visible: e, onSend: t }) {
|
|
1809
|
+
const [n, r] = k(!1), i = E(
|
|
1832
1810
|
(a) => {
|
|
1833
1811
|
r(!0), t(a === "up" ? 1 : -1);
|
|
1834
1812
|
},
|
|
1835
1813
|
[t]
|
|
1836
1814
|
), s = `csdk-transition-opacity csdk-delay-150 csdk-duration-500 ${n ? "csdk-opacity-0" : "csdk-opacity-100"}`;
|
|
1837
|
-
return e ? /* @__PURE__ */
|
|
1838
|
-
/* @__PURE__ */ o(
|
|
1839
|
-
/* @__PURE__ */ o(
|
|
1815
|
+
return e ? /* @__PURE__ */ p("div", { className: `csdk-flex csdk-items-center ${s}`, children: [
|
|
1816
|
+
/* @__PURE__ */ o(po, { onClick: () => i("up"), disabled: n }),
|
|
1817
|
+
/* @__PURE__ */ o(uo, { onClick: () => i("down"), disabled: n })
|
|
1840
1818
|
] }) : null;
|
|
1841
1819
|
}
|
|
1842
|
-
function
|
|
1820
|
+
function De({
|
|
1843
1821
|
sourceId: e,
|
|
1844
1822
|
data: t,
|
|
1845
1823
|
type: n,
|
|
1846
1824
|
buttonVisibility: r = "onHover",
|
|
1847
1825
|
renderContent: i
|
|
1848
1826
|
}) {
|
|
1849
|
-
const s =
|
|
1850
|
-
|
|
1851
|
-
(
|
|
1827
|
+
const s = W(), a = zt(
|
|
1828
|
+
E(
|
|
1829
|
+
(h) => {
|
|
1852
1830
|
s && s.ai.sendFeedback({
|
|
1853
1831
|
sourceId: e,
|
|
1854
1832
|
type: n,
|
|
1855
1833
|
data: t,
|
|
1856
|
-
rating:
|
|
1834
|
+
rating: h
|
|
1857
1835
|
});
|
|
1858
1836
|
},
|
|
1859
1837
|
[s, e, t, n]
|
|
1860
1838
|
),
|
|
1861
1839
|
200
|
|
1862
|
-
), [
|
|
1863
|
-
return /* @__PURE__ */ o(
|
|
1840
|
+
), [c, l] = go(), d = F(() => r === "onHover" ? l : r !== "never", [l, r]), { themeSettings: C } = b();
|
|
1841
|
+
return /* @__PURE__ */ o(Co, { ref: c, theme: C, children: i(/* @__PURE__ */ o(fo, { onSend: a, visible: d })) });
|
|
1864
1842
|
}
|
|
1865
|
-
const
|
|
1843
|
+
const mo = 18 * 5;
|
|
1866
1844
|
function it({ text: e }) {
|
|
1867
|
-
const [t, n] =
|
|
1868
|
-
return
|
|
1869
|
-
s.current && s.current.scrollHeight >
|
|
1870
|
-
}, [e]), /* @__PURE__ */
|
|
1845
|
+
const [t, n] = k(!0), [r, i] = k(!1), s = U(null);
|
|
1846
|
+
return ie(() => {
|
|
1847
|
+
s.current && s.current.scrollHeight > mo && i(!0);
|
|
1848
|
+
}, [e]), /* @__PURE__ */ p("div", { children: [
|
|
1871
1849
|
/* @__PURE__ */ o("div", { ref: s, className: `${t ? "csdk-line-clamp-5" : ""} csdk-whitespace-pre-wrap`, children: e }),
|
|
1872
1850
|
r && /* @__PURE__ */ o("div", { className: "csdk-mt-3 csdk-flex csdk-justify-end", children: /* @__PURE__ */ o(
|
|
1873
1851
|
"div",
|
|
@@ -1879,11 +1857,11 @@ function it({ text: e }) {
|
|
|
1879
1857
|
) })
|
|
1880
1858
|
] });
|
|
1881
1859
|
}
|
|
1882
|
-
function
|
|
1860
|
+
function bo({ nlgRequest: e }) {
|
|
1883
1861
|
const { data: t, isLoading: n, isError: r } = ve(e);
|
|
1884
|
-
return n ? /* @__PURE__ */ o(tt, {}) : r ? /* @__PURE__ */ o(
|
|
1862
|
+
return n ? /* @__PURE__ */ o(tt, {}) : r ? /* @__PURE__ */ o(z, { align: "left", children: we }) : /* @__PURE__ */ o(z, { align: "full", children: /* @__PURE__ */ o(it, { text: t != null ? t : "No insights available." }) });
|
|
1885
1863
|
}
|
|
1886
|
-
function
|
|
1864
|
+
function xo() {
|
|
1887
1865
|
const { themeSettings: e } = b();
|
|
1888
1866
|
return /* @__PURE__ */ o("svg", { width: "24", height: "25", viewBox: "0 0 24 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ o(
|
|
1889
1867
|
"path",
|
|
@@ -1895,13 +1873,13 @@ function yo() {
|
|
|
1895
1873
|
}
|
|
1896
1874
|
) });
|
|
1897
1875
|
}
|
|
1898
|
-
function
|
|
1899
|
-
return /* @__PURE__ */ o(
|
|
1876
|
+
function yo({ onClick: e }) {
|
|
1877
|
+
return /* @__PURE__ */ o(se, { align: "left", onClick: e, children: /* @__PURE__ */ p(
|
|
1900
1878
|
"div",
|
|
1901
1879
|
{
|
|
1902
1880
|
className: "csdk-py-[5px] csdk-px-2 csdk-flex csdk-items-center csdk-gap-x-1 csdk-select-none",
|
|
1903
1881
|
children: [
|
|
1904
|
-
/* @__PURE__ */ o(
|
|
1882
|
+
/* @__PURE__ */ o(xo, {}),
|
|
1905
1883
|
"Insights"
|
|
1906
1884
|
]
|
|
1907
1885
|
}
|
|
@@ -1911,66 +1889,66 @@ const Fe = u.div`
|
|
|
1911
1889
|
display: flex;
|
|
1912
1890
|
align-items: center;
|
|
1913
1891
|
column-gap: 10px;
|
|
1914
|
-
`,
|
|
1915
|
-
function
|
|
1916
|
-
const { chatMode: n = "analyze", enableInsights: r } =
|
|
1917
|
-
console.debug(`JAQL for ${s}`,
|
|
1918
|
-
const
|
|
1892
|
+
`, vo = (e) => !!e && "aeiou".includes(e[0]);
|
|
1893
|
+
function wo({ data: e, alwaysShowFeedback: t }) {
|
|
1894
|
+
const { chatMode: n = "analyze", enableInsights: r } = P(), { themeSettings: i } = b(), { queryTitle: s, chartRecommendations: a, jaql: c } = e;
|
|
1895
|
+
console.debug(`JAQL for ${s}`, c), console.debug(`chart recommendations for ${s}`, a);
|
|
1896
|
+
const l = "chartType" in a ? a.chartType : "table";
|
|
1919
1897
|
let d;
|
|
1920
|
-
|
|
1921
|
-
const
|
|
1898
|
+
vo(l) ? d = `an ${l}` : d = `a ${l}`, l !== "table" && (d += " chart");
|
|
1899
|
+
const C = c.datasource.title, [h, f] = k(!1), S = E(() => {
|
|
1922
1900
|
f((x) => !x);
|
|
1923
1901
|
}, []), w = {
|
|
1924
1902
|
jaql: {
|
|
1925
|
-
datasource:
|
|
1926
|
-
metadata:
|
|
1903
|
+
datasource: C,
|
|
1904
|
+
metadata: c.metadata
|
|
1927
1905
|
}
|
|
1928
1906
|
}, m = n === "analyze";
|
|
1929
|
-
return /* @__PURE__ */
|
|
1907
|
+
return /* @__PURE__ */ p(H, { children: [
|
|
1930
1908
|
/* @__PURE__ */ o(
|
|
1931
|
-
|
|
1909
|
+
De,
|
|
1932
1910
|
{
|
|
1933
|
-
sourceId:
|
|
1911
|
+
sourceId: C,
|
|
1934
1912
|
data: e,
|
|
1935
1913
|
type: "chats/nlq",
|
|
1936
1914
|
buttonVisibility: t ? "always" : "onHover",
|
|
1937
|
-
renderContent: (x) => /* @__PURE__ */
|
|
1938
|
-
/* @__PURE__ */
|
|
1915
|
+
renderContent: (x) => /* @__PURE__ */ p(H, { children: [
|
|
1916
|
+
/* @__PURE__ */ p(Fe, { children: [
|
|
1939
1917
|
/* @__PURE__ */ o(Je, { align: "left", theme: i, children: `Here's ${d} showing ${e.queryTitle.toLowerCase()}.` }),
|
|
1940
1918
|
x
|
|
1941
1919
|
] }),
|
|
1942
|
-
m && /* @__PURE__ */ o(
|
|
1920
|
+
m && /* @__PURE__ */ o(lo, { content: e, dataSource: C })
|
|
1943
1921
|
] })
|
|
1944
1922
|
}
|
|
1945
1923
|
),
|
|
1946
1924
|
r && /* @__PURE__ */ o(
|
|
1947
|
-
|
|
1925
|
+
De,
|
|
1948
1926
|
{
|
|
1949
|
-
sourceId:
|
|
1927
|
+
sourceId: C,
|
|
1950
1928
|
data: w,
|
|
1951
1929
|
type: "nlg/queryResult",
|
|
1952
|
-
buttonVisibility:
|
|
1953
|
-
renderContent: (x) => /* @__PURE__ */
|
|
1954
|
-
/* @__PURE__ */
|
|
1955
|
-
/* @__PURE__ */ o(
|
|
1930
|
+
buttonVisibility: h ? "onHover" : "never",
|
|
1931
|
+
renderContent: (x) => /* @__PURE__ */ p(H, { children: [
|
|
1932
|
+
/* @__PURE__ */ p(Fe, { children: [
|
|
1933
|
+
/* @__PURE__ */ o(yo, { onClick: S }),
|
|
1956
1934
|
x
|
|
1957
1935
|
] }),
|
|
1958
|
-
|
|
1936
|
+
h && /* @__PURE__ */ o(bo, { nlgRequest: w })
|
|
1959
1937
|
] })
|
|
1960
1938
|
}
|
|
1961
1939
|
)
|
|
1962
1940
|
] });
|
|
1963
1941
|
}
|
|
1964
|
-
function
|
|
1965
|
-
if (
|
|
1942
|
+
function ko({ message: e, isLastMessage: t }) {
|
|
1943
|
+
if (Se(e)) {
|
|
1966
1944
|
const n = JSON.parse(e.content);
|
|
1967
|
-
return /* @__PURE__ */ o(
|
|
1945
|
+
return /* @__PURE__ */ o(wo, { data: n, alwaysShowFeedback: t });
|
|
1968
1946
|
}
|
|
1969
|
-
return /* @__PURE__ */ o(
|
|
1947
|
+
return /* @__PURE__ */ o(z, { align: e.role === "user" ? "right" : "left", children: e.content });
|
|
1970
1948
|
}
|
|
1971
|
-
const
|
|
1972
|
-
function
|
|
1973
|
-
return /* @__PURE__ */ o(
|
|
1949
|
+
const So = Ut(ko), Ro = ({ error: e }) => (console.debug("Unexpected error occurred when resolving a chat message:", e), /* @__PURE__ */ o(z, { align: "left", children: we }));
|
|
1950
|
+
function Lo({ messages: e }) {
|
|
1951
|
+
return /* @__PURE__ */ o(H, { children: e.map((t, n) => /* @__PURE__ */ o(zn, { fallbackRender: Ro, children: /* @__PURE__ */ o(So, { message: t, isLastMessage: n === e.length - 1 }, n) }, n)) });
|
|
1974
1952
|
}
|
|
1975
1953
|
function st({ color: e }) {
|
|
1976
1954
|
return /* @__PURE__ */ o(
|
|
@@ -1991,7 +1969,7 @@ function st({ color: e }) {
|
|
|
1991
1969
|
}
|
|
1992
1970
|
);
|
|
1993
1971
|
}
|
|
1994
|
-
function
|
|
1972
|
+
function Mo({ onClick: e, color: t }) {
|
|
1995
1973
|
return /* @__PURE__ */ o(
|
|
1996
1974
|
"div",
|
|
1997
1975
|
{
|
|
@@ -2002,7 +1980,7 @@ function Eo({ onClick: e, color: t }) {
|
|
|
2002
1980
|
}
|
|
2003
1981
|
);
|
|
2004
1982
|
}
|
|
2005
|
-
const
|
|
1983
|
+
const $o = u.button`
|
|
2006
1984
|
font-size: inherit;
|
|
2007
1985
|
line-height: inherit;
|
|
2008
1986
|
box-sizing: border-box;
|
|
@@ -2052,24 +2030,24 @@ const To = u.button`
|
|
|
2052
2030
|
return "";
|
|
2053
2031
|
}}
|
|
2054
2032
|
`;
|
|
2055
|
-
function
|
|
2033
|
+
function Ne({ question: e, onClick: t }) {
|
|
2056
2034
|
const { themeSettings: n } = b();
|
|
2057
|
-
return /* @__PURE__ */ o(
|
|
2035
|
+
return /* @__PURE__ */ o($o, { onClick: t, theme: n, children: e });
|
|
2058
2036
|
}
|
|
2059
|
-
const
|
|
2037
|
+
const Eo = u.div`
|
|
2060
2038
|
display: flex;
|
|
2061
2039
|
flex-direction: column;
|
|
2062
2040
|
align-items: flex-start;
|
|
2063
2041
|
row-gap: ${({ theme: e }) => e.aiChat.suggestions.gap};
|
|
2064
2042
|
`;
|
|
2065
|
-
function
|
|
2066
|
-
const [n, r] =
|
|
2067
|
-
return /* @__PURE__ */
|
|
2068
|
-
i.map((a) => /* @__PURE__ */ o(
|
|
2069
|
-
i.length < e.length && /* @__PURE__ */ o(
|
|
2043
|
+
function To({ questions: e, onSelection: t }) {
|
|
2044
|
+
const [n, r] = k(!0), i = F(() => n && e.length > 5 ? e.slice(0, 4) : e, [e, n]), { themeSettings: s } = b();
|
|
2045
|
+
return /* @__PURE__ */ p(Eo, { "aria-label": "list of suggested questions", theme: s, children: [
|
|
2046
|
+
i.map((a) => /* @__PURE__ */ o(Ne, { question: a, onClick: () => t(a) }, a)),
|
|
2047
|
+
i.length < e.length && /* @__PURE__ */ o(Ne, { question: "See more", onClick: () => r(!1) })
|
|
2070
2048
|
] });
|
|
2071
2049
|
}
|
|
2072
|
-
const
|
|
2050
|
+
const Ho = u.div`
|
|
2073
2051
|
width: 283px;
|
|
2074
2052
|
height: 32px;
|
|
2075
2053
|
border-radius: 10px;
|
|
@@ -2093,23 +2071,23 @@ const Bo = u.div`
|
|
|
2093
2071
|
background-position: -200% 0;
|
|
2094
2072
|
}
|
|
2095
2073
|
}
|
|
2096
|
-
`,
|
|
2074
|
+
`, Bo = u.div`
|
|
2097
2075
|
display: flex;
|
|
2098
2076
|
flex-direction: column;
|
|
2099
2077
|
row-gap: 1rem;
|
|
2100
2078
|
`;
|
|
2101
|
-
function
|
|
2079
|
+
function Do() {
|
|
2102
2080
|
const { themeSettings: e } = b();
|
|
2103
|
-
return /* @__PURE__ */ o(
|
|
2081
|
+
return /* @__PURE__ */ o(Bo, { children: Array.from({ length: 3 }, (t, n) => /* @__PURE__ */ o(Ho, { theme: e }, n)) });
|
|
2104
2082
|
}
|
|
2105
2083
|
function Fo({ questions: e, isLoading: t, onSelection: n }) {
|
|
2106
|
-
const r = e.length > 0, { suggestionsWelcomeText: i } =
|
|
2107
|
-
return t ? /* @__PURE__ */ o(
|
|
2108
|
-
i && /* @__PURE__ */ o(
|
|
2109
|
-
/* @__PURE__ */ o(
|
|
2084
|
+
const r = e.length > 0, { suggestionsWelcomeText: i } = P();
|
|
2085
|
+
return t ? /* @__PURE__ */ o(Do, {}) : r ? /* @__PURE__ */ p(H, { children: [
|
|
2086
|
+
i && /* @__PURE__ */ o(z, { align: "left", children: i }),
|
|
2087
|
+
/* @__PURE__ */ o(To, { onSelection: n, questions: e })
|
|
2110
2088
|
] }) : null;
|
|
2111
2089
|
}
|
|
2112
|
-
const
|
|
2090
|
+
const No = u.div`
|
|
2113
2091
|
flex: 0 0 80px;
|
|
2114
2092
|
padding-left: 14px;
|
|
2115
2093
|
padding-right: 14px;
|
|
@@ -2118,7 +2096,7 @@ const Io = u.div`
|
|
|
2118
2096
|
position: relative;
|
|
2119
2097
|
|
|
2120
2098
|
background-color: ${({ style: e }) => e.backgroundColor};
|
|
2121
|
-
`,
|
|
2099
|
+
`, Io = u.div`
|
|
2122
2100
|
font-size: 18px;
|
|
2123
2101
|
line-height: 22px;
|
|
2124
2102
|
font-weight: 600;
|
|
@@ -2126,12 +2104,12 @@ const Io = u.div`
|
|
|
2126
2104
|
|
|
2127
2105
|
color: ${({ style: e }) => e.textColor};
|
|
2128
2106
|
`, at = _t(function({ title: t, leftNav: n, rightNav: r, style: i }, s) {
|
|
2129
|
-
return /* @__PURE__ */
|
|
2107
|
+
return /* @__PURE__ */ p(No, { ref: s, style: i, children: [
|
|
2130
2108
|
n,
|
|
2131
|
-
/* @__PURE__ */ o(
|
|
2109
|
+
/* @__PURE__ */ o(Io, { style: i, children: t }),
|
|
2132
2110
|
r && /* @__PURE__ */ o("div", { className: "csdk-ml-auto", children: r })
|
|
2133
2111
|
] });
|
|
2134
|
-
}),
|
|
2112
|
+
}), Oo = u.div`
|
|
2135
2113
|
text-align: center;
|
|
2136
2114
|
font-size: 11px;
|
|
2137
2115
|
line-height: 18px;
|
|
@@ -2145,13 +2123,13 @@ const Io = u.div`
|
|
|
2145
2123
|
|
|
2146
2124
|
color: ${({ theme: e }) => e.aiChat.secondaryTextColor};
|
|
2147
2125
|
`;
|
|
2148
|
-
function
|
|
2149
|
-
return /* @__PURE__ */
|
|
2126
|
+
function Wo({ theme: e }) {
|
|
2127
|
+
return /* @__PURE__ */ p(Oo, { theme: e, children: [
|
|
2150
2128
|
/* @__PURE__ */ o("div", { children: "Content is powered by AI, so surprises and mistakes are possible." }),
|
|
2151
2129
|
/* @__PURE__ */ o("div", { children: " Please rate responses so we can improve!" })
|
|
2152
2130
|
] });
|
|
2153
2131
|
}
|
|
2154
|
-
const
|
|
2132
|
+
const Po = u.div`
|
|
2155
2133
|
font-size: inherit;
|
|
2156
2134
|
line-height: inherit;
|
|
2157
2135
|
padding-left: 16px;
|
|
@@ -2164,9 +2142,9 @@ const Ao = u.div`
|
|
|
2164
2142
|
background-color: ${({ theme: e }) => e.aiChat.suggestions.backgroundColor};
|
|
2165
2143
|
`, lt = () => {
|
|
2166
2144
|
const { themeSettings: e } = b();
|
|
2167
|
-
return /* @__PURE__ */ o(
|
|
2145
|
+
return /* @__PURE__ */ o(Po, { theme: e, children: "Beta" });
|
|
2168
2146
|
};
|
|
2169
|
-
function
|
|
2147
|
+
function Ao() {
|
|
2170
2148
|
const { themeSettings: e } = b();
|
|
2171
2149
|
return /* @__PURE__ */ o("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ o(
|
|
2172
2150
|
"path",
|
|
@@ -2178,10 +2156,10 @@ function qo() {
|
|
|
2178
2156
|
}
|
|
2179
2157
|
) });
|
|
2180
2158
|
}
|
|
2181
|
-
const
|
|
2159
|
+
const qo = (e, t) => {
|
|
2182
2160
|
const n = new Vt(e);
|
|
2183
2161
|
return n.alpha = t, n;
|
|
2184
|
-
},
|
|
2162
|
+
}, zo = u.div`
|
|
2185
2163
|
font-size: inherit;
|
|
2186
2164
|
line-height: inherit;
|
|
2187
2165
|
padding-left: 8px;
|
|
@@ -2189,7 +2167,7 @@ const zo = (e, t) => {
|
|
|
2189
2167
|
padding-top: 4px;
|
|
2190
2168
|
border-radius: 16px;
|
|
2191
2169
|
margin-bottom: 4px;
|
|
2192
|
-
box-shadow: ${({ theme: e }) => `0 4px 8px 0 ${
|
|
2170
|
+
box-shadow: ${({ theme: e }) => `0 4px 8px 0 ${qo(e.aiChat.primaryTextColor, 0.2)}`};
|
|
2193
2171
|
cursor: pointer;
|
|
2194
2172
|
color: ${({ theme: e }) => e.aiChat.clickableMessages.textColor};
|
|
2195
2173
|
background-color: ${({ theme: e }) => e.aiChat.clickableMessages.backgroundColor};
|
|
@@ -2198,10 +2176,10 @@ const zo = (e, t) => {
|
|
|
2198
2176
|
color: ${({ theme: e }) => e.aiChat.clickableMessages.hover.textColor};
|
|
2199
2177
|
background-color: ${({ theme: e }) => e.aiChat.clickableMessages.hover.backgroundColor};
|
|
2200
2178
|
box-shadow: none;
|
|
2201
|
-
`,
|
|
2179
|
+
`, Vo = ({ onClick: e }) => {
|
|
2202
2180
|
const { themeSettings: t } = b();
|
|
2203
|
-
return /* @__PURE__ */ o(
|
|
2204
|
-
},
|
|
2181
|
+
return /* @__PURE__ */ o(zo, { theme: t, onClick: e, children: /* @__PURE__ */ o(Ao, {}) });
|
|
2182
|
+
}, Zo = ({ isVisible: e, onClick: t, anchorElement: n }) => /* @__PURE__ */ o(We, { anchorEl: n, open: e, placement: "top", sx: { zIndex: 2 }, children: /* @__PURE__ */ o(Vo, { onClick: t }) }), Qo = u.div`
|
|
2205
2183
|
display: flex;
|
|
2206
2184
|
flex-direction: column;
|
|
2207
2185
|
row-gap: ${({ theme: e }) => e.aiChat.body.gapBetweenMessages};
|
|
@@ -2212,7 +2190,7 @@ const zo = (e, t) => {
|
|
|
2212
2190
|
padding-bottom: ${({ theme: e }) => e.aiChat.body.paddingBottom};
|
|
2213
2191
|
flex: initial;
|
|
2214
2192
|
height: 100%;
|
|
2215
|
-
`,
|
|
2193
|
+
`, jo = u.div`
|
|
2216
2194
|
padding-left: ${({ theme: e }) => e.aiChat.footer.paddingLeft};
|
|
2217
2195
|
padding-right: ${({ theme: e }) => e.aiChat.footer.paddingRight};
|
|
2218
2196
|
padding-top: ${({ theme: e }) => e.aiChat.footer.paddingTop};
|
|
@@ -2220,51 +2198,51 @@ const zo = (e, t) => {
|
|
|
2220
2198
|
display: flex;
|
|
2221
2199
|
flex-direction: column;
|
|
2222
2200
|
row-gap: 6px;
|
|
2223
|
-
`,
|
|
2201
|
+
`, Go = u.div`
|
|
2224
2202
|
display: flex;
|
|
2225
2203
|
flex-direction: column;
|
|
2226
2204
|
row-gap: ${({ theme: e }) => e.aiChat.suggestions.gap};
|
|
2227
2205
|
`;
|
|
2228
|
-
function
|
|
2206
|
+
function Uo({ contextTitle: e, onGoBack: t }) {
|
|
2229
2207
|
const {
|
|
2230
2208
|
data: n,
|
|
2231
2209
|
isLoading: r,
|
|
2232
2210
|
isError: i
|
|
2233
|
-
} =
|
|
2211
|
+
} = Ge({
|
|
2234
2212
|
contextTitle: e
|
|
2235
2213
|
}), s = F(
|
|
2236
2214
|
() => n.map((v) => v.nlqPrompt),
|
|
2237
2215
|
[n]
|
|
2238
2216
|
), {
|
|
2239
2217
|
history: a,
|
|
2240
|
-
lastNlqResponse:
|
|
2241
|
-
isAwaitingResponse:
|
|
2218
|
+
lastNlqResponse: c,
|
|
2219
|
+
isAwaitingResponse: l,
|
|
2242
2220
|
sendMessage: d,
|
|
2243
|
-
isLoading:
|
|
2244
|
-
chatId:
|
|
2221
|
+
isLoading: C,
|
|
2222
|
+
chatId: h,
|
|
2245
2223
|
lastError: f
|
|
2246
|
-
} =
|
|
2247
|
-
S(),
|
|
2248
|
-
}, B = U(null),
|
|
2224
|
+
} = dn(e), { mutate: S, isLoading: w } = _e(h), [m, x] = k(!1), [y, T] = k(!1), N = () => x(!0), M = () => x(!1), J = () => {
|
|
2225
|
+
S(), M();
|
|
2226
|
+
}, B = U(null), ee = U(null), te = () => {
|
|
2249
2227
|
if (!(B != null && B.current))
|
|
2250
2228
|
return;
|
|
2251
|
-
const { scrollTop: v, clientHeight:
|
|
2252
|
-
if (v === void 0 ||
|
|
2229
|
+
const { scrollTop: v, clientHeight: O, scrollHeight: A } = B.current;
|
|
2230
|
+
if (v === void 0 || O === void 0 || A === void 0)
|
|
2253
2231
|
return;
|
|
2254
|
-
const
|
|
2255
|
-
y !==
|
|
2232
|
+
const Le = A - v - O > O / 2;
|
|
2233
|
+
y !== Le && T(Le);
|
|
2256
2234
|
};
|
|
2257
|
-
|
|
2235
|
+
ie(() => {
|
|
2258
2236
|
B.current && (B.current.scrollTop = B.current.scrollHeight);
|
|
2259
|
-
}, [a, m,
|
|
2260
|
-
const de = U(null), { enableFollowupQuestions: ue, enableHeader:
|
|
2237
|
+
}, [a, m, l]);
|
|
2238
|
+
const de = U(null), { enableFollowupQuestions: ue, enableHeader: V, numOfRecentPrompts: j } = P(), { themeSettings: I } = b(), ne = V ? /* @__PURE__ */ o(
|
|
2261
2239
|
at,
|
|
2262
2240
|
{
|
|
2263
2241
|
ref: de,
|
|
2264
2242
|
title: e,
|
|
2265
|
-
leftNav: t && /* @__PURE__ */ o(
|
|
2243
|
+
leftNav: t && /* @__PURE__ */ o(Mo, { onClick: t, color: I.aiChat.header.textColor }),
|
|
2266
2244
|
rightNav: /* @__PURE__ */ o(lt, {}),
|
|
2267
|
-
style:
|
|
2245
|
+
style: I.aiChat.header
|
|
2268
2246
|
}
|
|
2269
2247
|
) : null, he = F(
|
|
2270
2248
|
() => [
|
|
@@ -2274,20 +2252,20 @@ function _o({ contextTitle: e, onGoBack: t }) {
|
|
|
2274
2252
|
].slice(0, j),
|
|
2275
2253
|
[a, j, s]
|
|
2276
2254
|
);
|
|
2277
|
-
return (f == null ? void 0 : f.message) ===
|
|
2278
|
-
|
|
2255
|
+
return (f == null ? void 0 : f.message) === Ue ? /* @__PURE__ */ p(H, { children: [
|
|
2256
|
+
V && ne,
|
|
2279
2257
|
/* @__PURE__ */ o(et, { text: f.message })
|
|
2280
|
-
] }) : /* @__PURE__ */
|
|
2281
|
-
|
|
2282
|
-
/* @__PURE__ */
|
|
2258
|
+
] }) : /* @__PURE__ */ p(H, { children: [
|
|
2259
|
+
ne,
|
|
2260
|
+
/* @__PURE__ */ p(Qo, { ref: B, theme: I, onScroll: te, children: [
|
|
2283
2261
|
/* @__PURE__ */ o(
|
|
2284
|
-
|
|
2262
|
+
Zo,
|
|
2285
2263
|
{
|
|
2286
2264
|
isVisible: y,
|
|
2287
|
-
anchorElement:
|
|
2265
|
+
anchorElement: ee.current,
|
|
2288
2266
|
onClick: () => {
|
|
2289
|
-
var v,
|
|
2290
|
-
(
|
|
2267
|
+
var v, O;
|
|
2268
|
+
(O = B.current) == null || O.scroll({
|
|
2291
2269
|
top: (v = B.current) == null ? void 0 : v.scrollHeight,
|
|
2292
2270
|
behavior: "smooth"
|
|
2293
2271
|
});
|
|
@@ -2303,10 +2281,10 @@ function _o({ contextTitle: e, onGoBack: t }) {
|
|
|
2303
2281
|
onSelection: d
|
|
2304
2282
|
}
|
|
2305
2283
|
),
|
|
2306
|
-
f && /* @__PURE__ */ o(
|
|
2307
|
-
|
|
2308
|
-
ue &&
|
|
2309
|
-
|
|
2284
|
+
f && /* @__PURE__ */ o(z, { align: "left", children: f.message }),
|
|
2285
|
+
C ? /* @__PURE__ */ o(ce, {}) : /* @__PURE__ */ o(Lo, { messages: a }),
|
|
2286
|
+
ue && c && /* @__PURE__ */ o(Go, { theme: I, children: c.followupQuestions.slice(0, 2).map((v, O) => /* @__PURE__ */ o(
|
|
2287
|
+
se,
|
|
2310
2288
|
{
|
|
2311
2289
|
align: "left",
|
|
2312
2290
|
onClick: () => {
|
|
@@ -2314,36 +2292,36 @@ function _o({ contextTitle: e, onGoBack: t }) {
|
|
|
2314
2292
|
},
|
|
2315
2293
|
children: /* @__PURE__ */ o("div", { className: "csdk-py-[7px] csdk-px-4", children: v })
|
|
2316
2294
|
},
|
|
2317
|
-
|
|
2295
|
+
O
|
|
2318
2296
|
)) }),
|
|
2319
|
-
(
|
|
2297
|
+
(l || w) && /* @__PURE__ */ o(tt, {}),
|
|
2320
2298
|
m && /* @__PURE__ */ o(
|
|
2321
|
-
|
|
2299
|
+
An,
|
|
2322
2300
|
{
|
|
2323
|
-
onCancel:
|
|
2324
|
-
onConfirm:
|
|
2301
|
+
onCancel: M,
|
|
2302
|
+
onConfirm: J
|
|
2325
2303
|
}
|
|
2326
2304
|
)
|
|
2327
2305
|
] }),
|
|
2328
|
-
/* @__PURE__ */
|
|
2306
|
+
/* @__PURE__ */ p(jo, { ref: ee, theme: I, children: [
|
|
2329
2307
|
/* @__PURE__ */ o(
|
|
2330
|
-
|
|
2308
|
+
Bn,
|
|
2331
2309
|
{
|
|
2332
2310
|
onSendMessage: d,
|
|
2333
|
-
disabled:
|
|
2334
|
-
onClearHistoryClick:
|
|
2311
|
+
disabled: l || C,
|
|
2312
|
+
onClearHistoryClick: N,
|
|
2335
2313
|
suggestions: s,
|
|
2336
2314
|
recentPrompts: he,
|
|
2337
|
-
isLoading: r ||
|
|
2315
|
+
isLoading: r || C,
|
|
2338
2316
|
recommendationsError: i,
|
|
2339
|
-
onChange:
|
|
2317
|
+
onChange: M
|
|
2340
2318
|
}
|
|
2341
2319
|
),
|
|
2342
|
-
/* @__PURE__ */ o(
|
|
2320
|
+
/* @__PURE__ */ o(Wo, { theme: I })
|
|
2343
2321
|
] })
|
|
2344
2322
|
] });
|
|
2345
2323
|
}
|
|
2346
|
-
const
|
|
2324
|
+
const _o = u.button`
|
|
2347
2325
|
font-family: ${({ theme: e }) => e.typography.fontFamily};
|
|
2348
2326
|
padding: 30px;
|
|
2349
2327
|
border: none;
|
|
@@ -2356,38 +2334,38 @@ const Ko = u.button`
|
|
|
2356
2334
|
cursor: pointer;
|
|
2357
2335
|
|
|
2358
2336
|
background-color: ${({ theme: e }) => e.aiChat.dataTopics.items.backgroundColor};
|
|
2359
|
-
`,
|
|
2337
|
+
`, Ko = u.div`
|
|
2360
2338
|
font-size: 20px;
|
|
2361
2339
|
line-height: 28px;
|
|
2362
2340
|
|
|
2363
2341
|
color: ${({ theme: e }) => e.aiChat.dataTopics.items.textColor};
|
|
2364
|
-
`,
|
|
2342
|
+
`, Yo = u.div`
|
|
2365
2343
|
font-size: ${({ theme: e }) => e.aiChat.primaryFontSize[0]};
|
|
2366
2344
|
line-height: ${({ theme: e }) => e.aiChat.primaryFontSize[1]};
|
|
2367
2345
|
|
|
2368
|
-
color: ${({ theme: e }) =>
|
|
2369
|
-
`,
|
|
2346
|
+
color: ${({ theme: e }) => qe(e.aiChat.dataTopics.items.textColor, 0, 0.5)};
|
|
2347
|
+
`, Xo = u.div`
|
|
2370
2348
|
width: 16px;
|
|
2371
2349
|
height: 16px;
|
|
2372
2350
|
transform: rotate(180deg);
|
|
2373
2351
|
`;
|
|
2374
|
-
function
|
|
2352
|
+
function Jo(e) {
|
|
2375
2353
|
const { title: t, description: n, onClick: r } = e, { themeSettings: i } = b();
|
|
2376
|
-
return /* @__PURE__ */
|
|
2377
|
-
/* @__PURE__ */
|
|
2378
|
-
/* @__PURE__ */ o(
|
|
2379
|
-
/* @__PURE__ */ o(
|
|
2354
|
+
return /* @__PURE__ */ p(_o, { onClick: r, theme: i, children: [
|
|
2355
|
+
/* @__PURE__ */ p("div", { children: [
|
|
2356
|
+
/* @__PURE__ */ o(Ko, { theme: i, children: t }),
|
|
2357
|
+
/* @__PURE__ */ o(Yo, { theme: i, children: n })
|
|
2380
2358
|
] }),
|
|
2381
|
-
/* @__PURE__ */ o(
|
|
2359
|
+
/* @__PURE__ */ o(Xo, { children: /* @__PURE__ */ o(st, { color: i.aiChat.icons.color }) })
|
|
2382
2360
|
] });
|
|
2383
2361
|
}
|
|
2384
|
-
const
|
|
2362
|
+
const er = u.div`
|
|
2385
2363
|
padding: 20px;
|
|
2386
2364
|
display: flex;
|
|
2387
2365
|
flex-direction: column;
|
|
2388
2366
|
gap: 20px;
|
|
2389
2367
|
overflow: auto;
|
|
2390
|
-
`,
|
|
2368
|
+
`, tr = u.div`
|
|
2391
2369
|
font-size: 24px;
|
|
2392
2370
|
line-height: 32px;
|
|
2393
2371
|
font-weight: 600;
|
|
@@ -2395,136 +2373,137 @@ const tr = u.div`
|
|
|
2395
2373
|
padding-bottom: 4px;
|
|
2396
2374
|
|
|
2397
2375
|
color: ${({ theme: e }) => e.aiChat.primaryTextColor};
|
|
2398
|
-
`,
|
|
2376
|
+
`, nr = u.div`
|
|
2399
2377
|
font-size: 15px;
|
|
2400
2378
|
line-height: 22px;
|
|
2401
2379
|
|
|
2402
2380
|
color: ${({ theme: e }) => e.aiChat.primaryTextColor};
|
|
2403
2381
|
`;
|
|
2404
|
-
function
|
|
2382
|
+
function or(e) {
|
|
2405
2383
|
const { dataTopics: t } = e, { themeSettings: n } = b();
|
|
2406
|
-
return /* @__PURE__ */
|
|
2407
|
-
/* @__PURE__ */ o(
|
|
2408
|
-
/* @__PURE__ */
|
|
2384
|
+
return /* @__PURE__ */ p(er, { children: [
|
|
2385
|
+
/* @__PURE__ */ o(tr, { theme: n, children: "Data Topics" }),
|
|
2386
|
+
/* @__PURE__ */ p(nr, { theme: n, children: [
|
|
2409
2387
|
"Analytics Chatbot is designed to help you interact with your data using natural language.",
|
|
2410
2388
|
/* @__PURE__ */ o("br", {}),
|
|
2411
2389
|
/* @__PURE__ */ o("br", {}),
|
|
2412
2390
|
"Pick a topic you would like to explore:"
|
|
2413
2391
|
] }),
|
|
2414
|
-
t.map((r) => /* @__PURE__ */ me(
|
|
2392
|
+
t.map((r) => /* @__PURE__ */ me(Jo, D(R({}, r), { key: r.title })))
|
|
2415
2393
|
] });
|
|
2416
2394
|
}
|
|
2417
|
-
const
|
|
2418
|
-
function
|
|
2419
|
-
return /* @__PURE__ */
|
|
2395
|
+
const rr = "#FFCB05", ir = "#000000", sr = "#FFFFFF";
|
|
2396
|
+
function ar({ colorSchema: e }) {
|
|
2397
|
+
return /* @__PURE__ */ p("svg", { xmlns: "http://www.w3.org/2000/svg", width: "28", height: "32", viewBox: "0 0 28 32", fill: "none", children: [
|
|
2420
2398
|
/* @__PURE__ */ o(
|
|
2421
2399
|
"path",
|
|
2422
2400
|
{
|
|
2423
2401
|
d: "M15.6151 8.47656H15.5936V15.0679H15.6151C16.9896 15.0679 18.3078 15.6128 19.2797 16.5827C20.2517 17.5526 20.7977 18.8681 20.7977 20.2398C20.7977 21.6115 20.2517 22.927 19.2797 23.8969C18.3078 24.8668 16.9896 25.4117 15.6151 25.4117H15.5936V32.0006H15.6151C17.1627 32.0006 18.6952 31.6964 20.1251 31.1054C21.5549 30.5144 22.8541 29.6481 23.9484 28.556C25.0428 27.4639 25.9109 26.1674 26.5031 24.7405C27.0954 23.3136 27.4002 21.7843 27.4002 20.2398C27.4002 18.6953 27.0954 17.166 26.5031 15.7391C25.9109 14.3122 25.0428 13.0157 23.9484 11.9236C22.8541 10.8315 21.5549 9.96523 20.1251 9.37419C18.6952 8.78315 17.1627 8.47895 15.6151 8.47895V8.47656Z",
|
|
2424
|
-
fill: e === "yellow-black" ?
|
|
2402
|
+
fill: e === "yellow-black" ? ir : sr
|
|
2425
2403
|
}
|
|
2426
2404
|
),
|
|
2427
2405
|
/* @__PURE__ */ o(
|
|
2428
2406
|
"path",
|
|
2429
2407
|
{
|
|
2430
2408
|
d: "M12.7349 23.5217H12.7564V16.9375H12.7349C11.3603 16.9375 10.0421 16.3926 9.07021 15.4227C8.09828 14.4528 7.55226 13.1373 7.55226 11.7656C7.55226 10.3939 8.09828 9.07845 9.07021 8.10853C10.0421 7.13861 11.3603 6.59371 12.7349 6.59371H12.7564V0H12.7349C9.60924 4.64793e-08 6.61164 1.23909 4.4015 3.44467C2.19135 5.65026 0.949707 8.64168 0.949707 11.7608C0.949707 14.88 2.19135 17.8714 4.4015 20.077C6.61164 22.2826 9.60924 23.5217 12.7349 23.5217Z",
|
|
2431
|
-
fill:
|
|
2409
|
+
fill: rr
|
|
2432
2410
|
}
|
|
2433
2411
|
)
|
|
2434
2412
|
] });
|
|
2435
2413
|
}
|
|
2436
|
-
const
|
|
2414
|
+
const lr = u.div`
|
|
2437
2415
|
margin-left: 14px;
|
|
2438
|
-
`,
|
|
2416
|
+
`, cr = u.div`
|
|
2439
2417
|
display: flex;
|
|
2440
2418
|
flex-direction: column;
|
|
2441
|
-
justify-content:
|
|
2419
|
+
justify-content: top;
|
|
2442
2420
|
overflow: hidden;
|
|
2443
2421
|
height: 100%;
|
|
2444
2422
|
|
|
2445
2423
|
background-color: ${({ theme: e }) => e.aiChat.dataTopics.backgroundColor};
|
|
2446
2424
|
`;
|
|
2447
|
-
function
|
|
2448
|
-
const {
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
),
|
|
2455
|
-
[t, e]
|
|
2456
|
-
), s = Zt(Qt(r.aiChat.header.backgroundColor)) > 0.5;
|
|
2457
|
-
return /* @__PURE__ */ h(D, { children: [
|
|
2458
|
-
n.enableHeader ? /* @__PURE__ */ o(
|
|
2425
|
+
function dr({ dataTopicsList: e, onDataTopicClick: t }) {
|
|
2426
|
+
const { enableHeader: n } = P(), { themeSettings: r } = b(), i = F(() => e == null ? void 0 : e.map((a) => ({
|
|
2427
|
+
title: a,
|
|
2428
|
+
onClick: () => t(a)
|
|
2429
|
+
})), [e, t]), s = Zt(Qt(r.aiChat.header.backgroundColor)) > 0.5;
|
|
2430
|
+
return /* @__PURE__ */ p(H, { children: [
|
|
2431
|
+
n ? /* @__PURE__ */ o(
|
|
2459
2432
|
at,
|
|
2460
2433
|
{
|
|
2461
2434
|
title: "Analytics Chatbot",
|
|
2462
|
-
leftNav: /* @__PURE__ */ o(
|
|
2435
|
+
leftNav: /* @__PURE__ */ o(lr, { children: /* @__PURE__ */ o(ar, { colorSchema: s ? "yellow-white" : "yellow-black" }) }),
|
|
2463
2436
|
rightNav: /* @__PURE__ */ o(lt, {}),
|
|
2464
2437
|
style: r.aiChat.header
|
|
2465
2438
|
}
|
|
2466
2439
|
) : null,
|
|
2467
|
-
/* @__PURE__ */
|
|
2440
|
+
/* @__PURE__ */ p(cr, { theme: r, children: [
|
|
2468
2441
|
!i && /* @__PURE__ */ o(ce, {}),
|
|
2469
|
-
i && /* @__PURE__ */ o(
|
|
2442
|
+
i && /* @__PURE__ */ o(or, { dataTopics: i })
|
|
2470
2443
|
] })
|
|
2471
2444
|
] });
|
|
2472
2445
|
}
|
|
2473
|
-
function
|
|
2474
|
-
const [e, t] =
|
|
2475
|
-
|
|
2476
|
-
if (a &&
|
|
2477
|
-
|
|
2478
|
-
|
|
2446
|
+
function ur() {
|
|
2447
|
+
const [e, t] = k([]), [n, r] = k(), [i, s] = k(), { data: a, fetchStatus: c } = Ye(), { dataTopicsList: l = [] } = P();
|
|
2448
|
+
le(() => {
|
|
2449
|
+
if (a && c === "idle") {
|
|
2450
|
+
let h = a;
|
|
2451
|
+
l && l.length && (h = a == null ? void 0 : a.filter((f) => l == null ? void 0 : l.includes(f.title))), t(h.map((f) => f.title)), h.length ? h.length === 1 && (s(void 0), r(h[0].title)) : s("None of the provided data models or perspectives are available");
|
|
2479
2452
|
}
|
|
2480
|
-
}, [
|
|
2481
|
-
const
|
|
2482
|
-
|
|
2483
|
-
}, [
|
|
2484
|
-
return
|
|
2485
|
-
|
|
2453
|
+
}, [a, l, c]);
|
|
2454
|
+
const d = K(), C = E(() => {
|
|
2455
|
+
s(void 0), d.invalidateQueries(["getDataTopics"]);
|
|
2456
|
+
}, [d]);
|
|
2457
|
+
return i ? /* @__PURE__ */ o(et, { text: i, action: { text: "Refresh", onClick: C } }) : e.length === 1 && !n ? /* @__PURE__ */ o(ce, {}) : n ? /* @__PURE__ */ o(H, { children: /* @__PURE__ */ o(
|
|
2458
|
+
Uo,
|
|
2486
2459
|
{
|
|
2487
|
-
contextTitle:
|
|
2488
|
-
onGoBack:
|
|
2460
|
+
contextTitle: n,
|
|
2461
|
+
onGoBack: e.length === 1 ? void 0 : () => r(void 0)
|
|
2489
2462
|
}
|
|
2490
|
-
) : /* @__PURE__ */ o(
|
|
2463
|
+
) }) : /* @__PURE__ */ o(
|
|
2464
|
+
dr,
|
|
2465
|
+
{
|
|
2466
|
+
dataTopicsList: e,
|
|
2467
|
+
onDataTopicClick: (h) => r(h)
|
|
2468
|
+
}
|
|
2469
|
+
);
|
|
2491
2470
|
}
|
|
2492
|
-
const
|
|
2471
|
+
const wr = ze({
|
|
2493
2472
|
componentName: "Chatbot"
|
|
2494
2473
|
})((e) => {
|
|
2495
2474
|
const { width: t, height: n, config: r } = e, { themeSettings: i } = b();
|
|
2496
|
-
return /* @__PURE__ */ o(
|
|
2497
|
-
|
|
2475
|
+
return /* @__PURE__ */ o(nn, { value: r != null ? r : {}, children: /* @__PURE__ */ o(
|
|
2476
|
+
Cn,
|
|
2498
2477
|
{
|
|
2499
2478
|
id: "csdk-chatbot-frame",
|
|
2500
2479
|
width: t,
|
|
2501
2480
|
height: n,
|
|
2502
2481
|
theme: i,
|
|
2503
2482
|
tabIndex: 0,
|
|
2504
|
-
children: /* @__PURE__ */ o(
|
|
2483
|
+
children: /* @__PURE__ */ o(ur, {})
|
|
2505
2484
|
}
|
|
2506
2485
|
) });
|
|
2507
|
-
}),
|
|
2486
|
+
}), kr = ze({
|
|
2508
2487
|
componentName: "GetNlgQueryResult"
|
|
2509
2488
|
})(function(t) {
|
|
2510
2489
|
const { data: n, isLoading: r, isError: i } = ve(t);
|
|
2511
2490
|
if (i)
|
|
2512
|
-
return /* @__PURE__ */ o(
|
|
2491
|
+
return /* @__PURE__ */ o(H, { children: we });
|
|
2513
2492
|
const s = n != null ? n : "Oops, no data came back for that.";
|
|
2514
2493
|
return /* @__PURE__ */ o(it, { text: r ? "Loading..." : s });
|
|
2515
2494
|
});
|
|
2516
2495
|
export {
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2496
|
+
mr as AiContextProvider,
|
|
2497
|
+
wr as Chatbot,
|
|
2498
|
+
kr as GetNlgQueryResult,
|
|
2499
|
+
Lr as JaqlElement,
|
|
2500
|
+
Mr as deriveChartFamily,
|
|
2522
2501
|
At as getChartOptions,
|
|
2523
2502
|
Pt as getTableOptions,
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2503
|
+
dn as useChatSession,
|
|
2504
|
+
vr as useGetDataSourceFields,
|
|
2505
|
+
br as useGetNlgQueryResult,
|
|
2506
|
+
xr as useGetQueryRecommendations,
|
|
2507
|
+
yr as useLastNlqResponse
|
|
2529
2508
|
};
|
|
2530
|
-
(function(){"use strict";try{if(typeof document!="undefined"){var e=document.createElement("style");e.appendChild(document.createTextNode('@charset "UTF-8";[class|=csdk],[class|=csdk]:before,[class|=csdk]:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#d5d5d5;font-family:inherit}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.csdk-absolute{position:absolute}.csdk-relative{position:relative}.csdk-left-2{left:.5rem}.csdk-right-0{right:0}.csdk-right-\\[-15px\\]{right:-15px}.csdk-right-\\[-5px\\]{right:-5px}.csdk-right-\\[0px\\]{right:0}.csdk-right-\\[4px\\]{right:4px}.csdk-top-1\\/2{top:50%}.csdk-top-\\[3px\\]{top:3px}.csdk-top-\\[7px\\]{top:7px}.csdk-z-\\[401\\]{z-index:401}.csdk-m-3{margin:.75rem}.csdk-m-auto{margin:auto}.csdk-m-checkbox,.csdk-m-radio{margin:6px 10px 6px 6px}.csdk-mx-auto{margin-left:auto;margin-right:auto}.csdk-my-1{margin-top:.25rem;margin-bottom:.25rem}.csdk-my-2{margin-top:.5rem;margin-bottom:.5rem}.csdk-my-\\[2px\\]{margin-top:2px;margin-bottom:2px}.csdk-my-\\[5px\\]{margin-top:5px;margin-bottom:5px}.csdk-mb-1{margin-bottom:.25rem}.csdk-mb-\\[10px\\]{margin-bottom:10px}.csdk-mb-\\[3px\\]{margin-bottom:3px}.csdk-mb-\\[4px\\]{margin-bottom:4px}.csdk-mb-px{margin-bottom:1px}.csdk-ml-1{margin-left:.25rem}.csdk-ml-1\\.5{margin-left:.375rem}.csdk-ml-2{margin-left:.5rem}.csdk-ml-\\[4px\\]{margin-left:4px}.csdk-ml-\\[5px\\]{margin-left:5px}.csdk-ml-\\[6px\\]{margin-left:6px}.csdk-ml-\\[7px\\]{margin-left:7px}.csdk-ml-auto{margin-left:auto}.csdk-mr-2{margin-right:.5rem}.csdk-mr-\\[5px\\]{margin-right:5px}.csdk-mr-\\[7px\\]{margin-right:7px}.csdk-mt-2{margin-top:.5rem}.csdk-mt-3{margin-top:.75rem}.csdk-mt-\\[6px\\]{margin-top:6px}.csdk-box-border{box-sizing:border-box}.csdk-line-clamp-5{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:5}.csdk-flex{display:flex}.csdk-grid{display:grid}.csdk-h-5{height:1.25rem}.csdk-h-6{height:1.5rem}.csdk-h-\\[10px\\]{height:10px}.csdk-h-\\[18px\\]{height:18px}.csdk-h-\\[20px\\]{height:20px}.csdk-h-\\[245px\\]{height:245px}.csdk-h-button{height:28px}.csdk-h-checkbox{height:12px}.csdk-h-full{height:100%}.csdk-h-radio{height:12px}.csdk-h-screen{height:100vh}.csdk-max-h-32{max-height:8rem}.csdk-max-h-\\[150px\\]{max-height:150px}.csdk-min-h-\\[20px\\]{min-height:20px}.csdk-min-h-\\[26px\\]{min-height:26px}.csdk-min-h-\\[32px\\]{min-height:32px}.csdk-w-5{width:1.25rem}.csdk-w-\\[10px\\]{width:10px}.csdk-w-\\[152px\\]{width:152px}.csdk-w-\\[18px\\]{width:18px}.csdk-w-\\[240px\\]{width:240px}.csdk-w-\\[28px\\]{width:28px}.csdk-w-\\[300px\\]{width:300px}.csdk-w-\\[60px\\]{width:60px}.csdk-w-checkbox{width:12px}.csdk-w-fit{width:-moz-fit-content;width:fit-content}.csdk-w-full{width:100%}.csdk-w-max{width:-moz-max-content;width:max-content}.csdk-w-min{width:-moz-min-content;width:min-content}.csdk-w-radio{width:12px}.csdk-min-w-\\[216px\\]{min-width:216px}.csdk-min-w-fit{min-width:-moz-fit-content;min-width:fit-content}.csdk-max-w-xs{max-width:20rem}.-csdk-translate-y-1\\/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.csdk-translate-x-1\\/2{--tw-translate-x: 50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-csdk-rotate-90{--tw-rotate: -90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.csdk-rotate-45{--tw-rotate: 45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.csdk-scale-x-\\[-1\\]{--tw-scale-x: -1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.csdk-transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes csdk-spin{to{transform:rotate(360deg)}}.csdk-animate-spin{animation:csdk-spin 1s linear infinite}.csdk-cursor-pointer{cursor:pointer}.csdk-select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.csdk-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.csdk-flex-row{flex-direction:row}.csdk-flex-col{flex-direction:column}.csdk-flex-wrap{flex-wrap:wrap}.csdk-items-center{align-items:center}.csdk-justify-end{justify-content:flex-end}.csdk-justify-center{justify-content:center}.csdk-justify-between{justify-content:space-between}.csdk-justify-evenly{justify-content:space-evenly}.csdk-gap-1{gap:.25rem}.csdk-gap-2{gap:.5rem}.csdk-gap-\\[5px\\]{gap:5px}.csdk-gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.csdk-gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.csdk-gap-y-0{row-gap:0px}.csdk-gap-y-0\\.5{row-gap:.125rem}.csdk-gap-y-4{row-gap:1rem}.csdk-self-start{align-self:flex-start}.csdk-self-center{align-self:center}.csdk-overflow-auto{overflow:auto}.csdk-overflow-hidden{overflow:hidden}.\\!csdk-overflow-visible{overflow:visible!important}.csdk-text-ellipsis{text-overflow:ellipsis}.csdk-whitespace-nowrap{white-space:nowrap}.csdk-whitespace-pre-wrap{white-space:pre-wrap}.csdk-rounded{border-radius:.25rem}.csdk-rounded-\\[4px\\]{border-radius:4px}.csdk-rounded-full{border-radius:9999px}.csdk-rounded-md{border-radius:.375rem}.csdk-rounded-pill{border-radius:4px}.csdk-border{border-width:1px}.csdk-border-0{border-width:0px}.csdk-border-input{border-width:1px}.csdk-border-b{border-bottom-width:1px}.csdk-border-l{border-left-width:1px}.csdk-border-l-\\[70px\\]{border-left-width:70px}.csdk-border-r-\\[70px\\]{border-right-width:70px}.csdk-border-t{border-top-width:1px}.csdk-border-t-\\[13px\\]{border-top-width:13px}.csdk-border-solid{border-style:solid}.csdk-border-none{border-style:none}.csdk-border-UI-default{--tw-border-opacity: 1;border-color:rgb(110 115 125 / var(--tw-border-opacity))}.csdk-border-\\[\\#dadada\\]{--tw-border-opacity: 1;border-color:rgb(218 218 218 / var(--tw-border-opacity))}.csdk-border-\\[\\#e4e4e4\\]{--tw-border-opacity: 1;border-color:rgb(228 228 228 / var(--tw-border-opacity))}.csdk-border-transparent{border-color:transparent}.csdk-border-b-\\[\\#dadada\\]{--tw-border-opacity: 1;border-bottom-color:rgb(218 218 218 / var(--tw-border-opacity))}.csdk-border-l-\\[transparent\\]{border-left-color:transparent}.csdk-border-r-\\[transparent\\]{border-right-color:transparent}.csdk-border-t-\\[\\#dadada\\]{--tw-border-opacity: 1;border-top-color:rgb(218 218 218 / var(--tw-border-opacity))}.csdk-bg-\\[\\#f4f4f8\\]{--tw-bg-opacity: 1;background-color:rgb(244 244 248 / var(--tw-bg-opacity))}.csdk-bg-background-priority{background-color:#f4f4f8}.csdk-bg-primary-primary{background-color:#ffcb05}.csdk-bg-transparent{background-color:transparent}.csdk-bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.csdk-p-1{padding:.25rem}.csdk-p-1\\.5{padding:.375rem}.csdk-p-3{padding:.75rem}.csdk-p-\\[10px\\]{padding:10px}.csdk-p-\\[20px\\]{padding:20px}.csdk-p-\\[4px\\]{padding:4px}.csdk-p-button{padding:4px 24px}.csdk-p-px{padding:1px}.csdk-px-1{padding-left:.25rem;padding-right:.25rem}.csdk-px-2{padding-left:.5rem;padding-right:.5rem}.csdk-px-4{padding-left:1rem;padding-right:1rem}.csdk-px-\\[12px\\]{padding-left:12px;padding-right:12px}.csdk-px-\\[20px\\]{padding-left:20px;padding-right:20px}.csdk-px-\\[40px\\]{padding-left:40px;padding-right:40px}.csdk-px-\\[8px\\]{padding-left:8px;padding-right:8px}.csdk-py-\\[14\\.5px\\]{padding-top:14.5px;padding-bottom:14.5px}.csdk-py-\\[30px\\]{padding-top:30px;padding-bottom:30px}.csdk-py-\\[3px\\]{padding-top:3px;padding-bottom:3px}.csdk-py-\\[5px\\]{padding-top:5px;padding-bottom:5px}.csdk-py-\\[6px\\]{padding-top:6px;padding-bottom:6px}.csdk-py-\\[7px\\]{padding-top:7px;padding-bottom:7px}.csdk-pb-\\[0px\\]{padding-bottom:0}.csdk-pl-1{padding-left:.25rem}.csdk-pl-2{padding-left:.5rem}.csdk-pl-2\\.5{padding-left:.625rem}.csdk-pl-3{padding-left:.75rem}.csdk-pr-10{padding-right:2.5rem}.csdk-pt-48{padding-top:12rem}.csdk-text-left{text-align:left}.csdk-text-center{text-align:center}.csdk-text-\\[13px\\]{font-size:13px}.csdk-text-ai-lg{font-size:18px;line-height:22px}.csdk-text-ai-sm{font-size:13px;line-height:18px}.csdk-text-ai-xs{font-size:11px;line-height:18px}.csdk-text-pill{font-size:13px}.csdk-text-xs{font-size:.75rem;line-height:1rem}.csdk-font-normal{font-weight:400}.csdk-leading-4{line-height:1rem}.csdk-leading-\\[16px\\]{line-height:16px}.csdk-leading-\\[18px\\]{line-height:18px}.csdk-leading-\\[26px\\]{line-height:26px}.csdk-leading-none{line-height:1}.csdk-tracking-\\[0\\.3px\\]{letter-spacing:.3px}.csdk-text-UI-default{--tw-text-opacity: 1;color:rgb(110 115 125 / var(--tw-text-opacity))}.csdk-text-semantic-error{color:#e74727}.csdk-text-text-active{color:#262e3d}.csdk-text-text-content{color:#262e3dcc}.csdk-text-text-link{color:#36a3d9}.csdk-text-text-linkButton{--tw-text-opacity: 1;color:rgb(30 175 243 / var(--tw-text-opacity))}.csdk-accent-UI-default{accent-color:#6e737d}.csdk-opacity-0{opacity:0}.csdk-opacity-100{opacity:1}.csdk-opacity-50{opacity:.5}.csdk-opacity-80{opacity:.8}.csdk-shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.csdk-shadow-gray-500{--tw-shadow-color: #6b7280;--tw-shadow: var(--tw-shadow-colored)}.csdk-outline-0{outline-width:0px}.csdk-transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.csdk-transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.csdk-delay-150{transition-delay:.15s}.csdk-duration-500{transition-duration:.5s}.invalid\\:csdk-border-input:invalid{border-width:1px}.invalid\\:csdk-border-solid:invalid{border-style:solid}.invalid\\:csdk-border-semantic-error:invalid{border-color:#e74727}.hover\\:csdk-border-2:hover{border-width:2px}.hover\\:csdk-bg-interaction-primaryHovered:hover{background-color:#f2b900}.hover\\:csdk-bg-row-hover:hover{background-color:#e0e0e04d}.focus\\:csdk-border-input:focus{border-width:1px}.focus\\:csdk-border-solid:focus{border-style:solid}.focus\\:csdk-border-UI-default:focus{--tw-border-opacity: 1;border-color:rgb(110 115 125 / var(--tw-border-opacity))}.disabled\\:csdk-cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:csdk-opacity-30:disabled{opacity:.3}._container_1wquj_1{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;padding:0 20px;text-align:center;margin:15px}._container_1wquj_1 ._card_1wquj_11{position:relative;padding:10px;box-shadow:0 2px 4px #0000001a;border-radius:4px;z-index:1;width:100%}._container_1wquj_1 ._text_1wquj_19{font-size:13px;text-align:center;font-weight:700;word-wrap:break-word}.highcharts-series.highcharts-area-series.area-series--without-pointer-events .highcharts-area{pointer-events:none}.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::-moz-selection{background:transparent}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:#ffffff80}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px #000000a6;border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px #0006;background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:#fffc;margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;box-sizing:border-box;background:#fffc;text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.csdk-map-container .leaflet-interactive{outline:none}.csdk-scattermap-tooltip-row{display:flex;justify-content:space-between}.csdk-treemap-tooltip-wrapper{min-width:210px;color:#acacac;font-size:14px;line-height:16px;background:#fff;border-radius:10px;overflow:hidden;margin-right:-1px;padding-bottom:10px}.csdk-treemap-tooltip-level{display:flex;align-items:center;position:relative;padding:8px;font-size:14px;border-bottom:1px solid #ccc}.csdk-treemap-tooltip-level span{padding:0 2px}.csdk-treemap-tooltip-value{padding:10px 10px 0;font-size:12px;line-height:16px}.highcharts-sunburst-series.highcharts-legend-item{pointer-events:none!important}.csdk-boxplot-tooltip-row{display:flex;justify-content:space-between}.csdk-boxplot-tooltip-row>*{margin-right:10px}.csdk-boxplot-tooltip-row>*:last-child{margin-right:0}._alert_box_10ttx_1{position:absolute;display:flex;justify-content:center;z-index:1;margin-top:1%}._alert_box_10ttx_1 ._content_10ttx_8{background-color:#616161;padding:5px;border-radius:3px;text-align:center}._alert_box_10ttx_1 ._content_10ttx_8 ._alert_10ttx_1{color:#fff;margin:0 8px;line-height:1;font-size:12px}._wrapper_g0ngm_1{width:100%;height:100%;position:relative}._title_g0ngm_7{font-size:18px;color:#9ea2ab;letter-spacing:normal;text-align:center;position:absolute;width:100%;top:11%}._image_g0ngm_18{width:66.6%;height:100%;margin:0 auto;display:block}.fixedDataTableCellGroupLayout_cellGroup{backface-visibility:hidden;left:0;overflow:hidden;position:absolute;top:0;white-space:nowrap}.fixedDataTable_isRTL .fixedDataTableCellGroupLayout_cellGroup{right:0;left:auto}.fixedDataTableCellGroupLayout_cellGroup>.public_fixedDataTableCell_main{display:inline-block;vertical-align:top;white-space:normal}.fixedDataTableCellGroupLayout_cellGroupWrapper{position:absolute;top:0}.fixedDataTableCellLayout_main{border-right-style:solid;border-right-width:1px;border-width:0 1px 0 0;box-sizing:border-box;display:block;overflow:hidden;position:absolute;white-space:normal}.fixedDataTable_isRTL .fixedDataTableCellLayout_main{border-right-width:0;border-left-style:solid;border-left-width:1px}.fixedDataTableCellLayout_lastChild{border-width:0 1px 1px 0}.fixedDataTableCellLayout_alignRight{text-align:right}.fixedDataTableCellLayout_alignCenter{text-align:center}.fixedDataTableCellLayout_wrap{display:table-cell;vertical-align:middle;box-sizing:border-box}.fixedDataTableCellLayout_wrap1{display:table}.fixedDataTableCellLayout_wrap2{display:table-row}.fixedDataTableCellLayout_wrap3{display:table-cell;vertical-align:middle}.fixedDataTableCellLayout_columnResizerContainer{position:absolute;right:0;width:6px;z-index:1}.fixedDataTable_isRTL .fixedDataTableCellLayout_columnResizerContainer{left:0;right:auto}.fixedDataTableCellLayout_columnResizerContainer:hover{cursor:ew-resize}.fixedDataTableCellLayout_columnResizerContainer:hover .fixedDataTableCellLayout_columnResizerKnob{visibility:visible}.fixedDataTableCellLayout_columnResizerKnob{position:absolute;right:0;visibility:hidden;width:4px}.fixedDataTable_isRTL .fixedDataTableCellLayout_columnResizerKnob{left:0;right:auto}.fixedDataTableColumnResizerLineLayout_mouseArea{cursor:ew-resize;position:absolute;right:-5px;width:12px}.fixedDataTable_isRTL .fixedDataTableColumnResizerLineLayout_mouseArea{right:auto;left:-5px}.fixedDataTableColumnResizerLineLayout_main{border-right-style:solid;border-right-width:1px;box-sizing:border-box;position:absolute;z-index:10;pointer-events:none}.fixedDataTable_isRTL .fixedDataTableColumnResizerLineLayout_main{border-right-width:0;border-left-style:solid;border-left-width:1px}.fixedDataTableColumnResizerLineLayout_hiddenElem{display:none!important}.fixedDataTableLayout_main{border-style:solid;border-width:1px;box-sizing:border-box;overflow:hidden;position:relative}.fixedDataTableLayout_header,.fixedDataTableLayout_hasBottomBorder{border-bottom-style:solid;border-bottom-width:1px}.fixedDataTableLayout_footer .public_fixedDataTableCell_main{border-top-style:solid;border-top-width:1px}.fixedDataTableLayout_topShadow,.fixedDataTableLayout_bottomShadow{height:4px;left:0;position:absolute;right:0;z-index:1}.fixedDataTableLayout_bottomShadow{margin-top:-4px}.fixedDataTableLayout_rowsContainer{overflow:hidden;position:relative}.fixedDataTableRowLayout_main{box-sizing:border-box;overflow:hidden;position:absolute;top:0}.fixedDataTableRowLayout_body{left:0;right:0;position:absolute;top:0}.fixedDataTableRowLayout_rowExpanded{box-sizing:border-box;left:0;position:absolute}.fixedDataTableRowLayout_fixedColumnsDivider{backface-visibility:hidden;border-left-style:solid;border-left-width:1px;left:0;position:absolute;top:0;width:0}.fixedDataTable_isRTL .fixedDataTableRowLayout_fixedColumnsDivider{border-left-width:0;border-right-style:solid;border-right-width:1px}.fixedDataTableRowLayout_columnsShadow{position:absolute;width:4px}.fixedDataTableRowLayout_columnsRightShadow{right:1px}.fixedDataTable_isRTL .fixedDataTableRowLayout_columnsRightShadow{left:1px;right:auto}.fixedDataTableRowLayout_rowWrapper{position:absolute;top:0}.ScrollbarLayout_main{box-sizing:border-box;outline:none;overflow:hidden;position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ScrollbarLayout_mainVertical{bottom:0;right:0;top:0;width:15px}.ScrollbarLayout_mainHorizontal{height:15px;left:0;transition-property:background-color height}.ScrollbarLayout_mainHorizontal.public_Scrollbar_mainActive,.ScrollbarLayout_mainHorizontal:hover{height:17px}.ScrollbarLayout_face{left:0;overflow:hidden;position:absolute;z-index:1;transition-duration:.25s;transition-timing-function:ease;transition-property:width}.ScrollbarLayout_face:after{border-radius:6px;content:"";display:block;position:absolute;transition:background-color .25s ease}.ScrollbarLayout_faceHorizontal{bottom:0;left:0;top:0}.ScrollbarLayout_faceHorizontal:after{bottom:4px;left:0;top:4px;width:100%}.fixedDataTable_isRTL .ScrollbarLayout_faceHorizontal,.fixedDataTable_isRTL .ScrollbarLayout_faceHorizontal:after{right:0;left:auto}.ScrollbarLayout_faceHorizontal.public_Scrollbar_faceActive:after,.ScrollbarLayout_main:hover .ScrollbarLayout_faceHorizontal:after{bottom:2px}.ScrollbarLayout_faceVertical{left:0;right:0;top:0}.ScrollbarLayout_faceVertical:after{height:100%;left:4px;right:4px;top:0}.ScrollbarLayout_main:hover .ScrollbarLayout_faceVertical:after,.ScrollbarLayout_faceVertical.public_Scrollbar_faceActive:after{left:2px;right:2px}.public_fixedDataTable_main,.public_fixedDataTable_header,.public_fixedDataTable_hasBottomBorder{border-color:#d3d3d3}.public_fixedDataTable_header .public_fixedDataTableCell_main{font-weight:700}.public_fixedDataTable_header,.public_fixedDataTable_scrollbarSpacer,.public_fixedDataTable_header .public_fixedDataTableCell_main{background-color:#f6f7f8;background-image:linear-gradient(#fff,#efefef)}.public_fixedDataTable_scrollbarSpacer{position:absolute;z-index:99;top:0}.public_fixedDataTable_footer .public_fixedDataTableCell_main{background-color:#f6f7f8;border-color:#d3d3d3}.public_fixedDataTable_topShadow{background-image:linear-gradient(180deg,#0000001a,#0000)}.public_fixedDataTable_bottomShadow{background-image:linear-gradient(0deg,#0000001a,#0000)}.public_fixedDataTable_horizontalScrollbar .public_Scrollbar_mainHorizontal{background-color:#fff}.public_fixedDataTableCell_main{background-color:#fff;border-color:#d3d3d3}.public_fixedDataTableCell_highlighted{background-color:#f4f4f4}.public_fixedDataTableCell_cellContent{padding:8px}.public_fixedDataTableCell_columnResizerKnob{background-color:#0284ff}.public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap1 .public_fixedDataTableCell_cellContent{margin-left:12px}.public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap.public_fixedDataTableCell_cellContent{padding-left:20px}.fixedDataTable_isRTL .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap1 .public_fixedDataTableCell_cellContent{margin-left:auto;margin-right:12px}.fixedDataTable_isRTL .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap.public_fixedDataTableCell_cellContent{padding-right:20px}.fixedDataTableCellLayout_columnReorderContainer{border-color:#0284ff;background-color:#0000001a;width:12px;margin-right:-12px;float:left;cursor:move}.fixedDataTable_isRTL .fixedDataTableCellLayout_columnReorderContainer{margin-right:auto;margin-left:-12px;float:right}.fixedDataTableCellLayout_columnReorderContainer:after{content:"::";position:absolute;top:50%;left:1px;transform:translateY(-50%)}.fixedDataTable_isRTL .fixedDataTableCellLayout_columnReorderContainer:after{left:auto;right:1px}.public_fixedDataTableColumnResizerLine_main{border-color:#0284ff}.public_fixedDataTableRow_main{background-color:#fff}.public_fixedDataTableRow_highlighted,.public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main{background-color:#f6f7f8}.public_fixedDataTableRow_fixedColumnsDivider{border-color:#d3d3d3}.public_fixedDataTableRow_columnsShadow{background-image:linear-gradient(90deg,#0000001a,#0000)}.fixedDataTable_isRTL .public_fixedDataTableRow_columnsShadow{background-image:linear-gradient(270deg,#0000001a,#0000)}.public_fixedDataTableRow_columnsRightShadow{transform:rotate(180deg)}.public_Scrollbar_main.public_Scrollbar_mainActive,.public_Scrollbar_main{background-color:#fff;border-left:1px solid #d3d3d3}.fixedDataTable_isRTL .public_Scrollbar_main.public_Scrollbar_mainActive,.fixedDataTable_isRTL .public_Scrollbar_main{border-right:1px solid #d3d3d3;border-left-width:0}.public_Scrollbar_mainOpaque,.public_Scrollbar_mainOpaque.public_Scrollbar_mainActive,.public_Scrollbar_mainOpaque:hover{background-color:#fff}.public_Scrollbar_face:after{background-color:#c2c2c2}.public_Scrollbar_main:hover .public_Scrollbar_face:after,.public_Scrollbar_mainActive .public_Scrollbar_face:after,.public_Scrollbar_faceActive:after{background-color:#7d7d7d}._tableWrapper_1ode4_16 .public_fixedDataTable_header,._tableWrapper_1ode4_16 .public_fixedDataTable_scrollbarSpacer,._tableWrapper_1ode4_16 .public_fixedDataTable_header .public_fixedDataTableCell_main{background-color:transparent;background-image:none;border-bottom:1px solid #edeef1}._tableWrapper_1ode4_16 .public_fixedDataTable_scrollbarSpacer{margin-left:3px}._tableWrapper_1ode4_16 .public_fixedDataTable_main,._tableWrapper_1ode4_16 .fixedDataTableLayout_main{border:none}._tableWrapper_1ode4_16 .public_fixedDataTableRow_highlighted,._tableWrapper_1ode4_16 .public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main,._tableWrapper_1ode4_16 .public_fixedDataTableRow_main{background-color:transparent}._tableWrapper_1ode4_16 .public_fixedDataTableCell_main{background-color:transparent;border-color:#edeef1}._tableWrapper_1ode4_16 .public_fixedDataTable_header,._tableWrapper_1ode4_16 .public_fixedDataTable_hasBottomBorder,._tableWrapper_1ode4_16 .public_fixedDataTable_scrollbarSpacer{border-bottom:none}._tableWrapper_1ode4_16 .public_fixedDataTable_header .fixedDataTableCellGroupLayout_cellGroup{border-top:1px solid #edeef1;border-bottom:1px solid #edeef1;box-sizing:border-box}._tableWrapper_1ode4_16 .public_Scrollbar_main{border-left:none;background-color:transparent}._tableWrapper_1ode4_16 .fixedDataTableRowLayout_rowWrapper{border-left:1px solid #edeef1}._tableWrapper_1ode4_16 .public_Scrollbar_main.public_Scrollbar_mainOpaque{left:-1px}._tableWrapper_1ode4_16 .public_fixedDataTableCell_cellContent{padding:0 24px 0 12px}._tableWrapper_1ode4_16{height:100%;width:100%;box-sizing:border-box;-webkit-user-select:text;-moz-user-select:text;user-select:text}._table_1ode4_16{background:transparent;font-size:13px;border:none}._tableHeader_1ode4_78{color:#5c6372;background-color:transparent;margin:0;border:none;width:100%;overflow:hidden;box-sizing:border-box}._tableCell_1ode4_88{color:#5c6372;background-color:transparent;border:none;border-right:1px solid #edeef1;border-bottom:1px solid #edeef1;overflow:hidden;width:100%;box-sizing:border-box}._tableCellContent_1ode4_99{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._headerColor_1ode4_105,._rowColor_1ode4_109{background-color:#f9f9fb}._headerCell_2qf2w_16{display:flex;justify-content:left;align-items:center;margin-left:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:400;width:100%;cursor:pointer}._headerCell_2qf2w_16:hover ._noSort_2qf2w_29._standard_2qf2w_29{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjMxMyAxN2g3LjY2N2EuNDkuNDkgMCAwMS40NzkuNS40OS40OSAwIDAxLS40OC41SDQuMzE0YS40OS40OSAwIDAxLS40NzktLjVjMC0uMjc2LjIxNS0uNS40OC0uNXptNS43NS0zaC01Ljc1YS40OS40OSAwIDAwLS40NzkuNWMwIC4yNzYuMjE1LjUuNDguNWg1Ljc1YS40OS40OSAwIDAwLjQ3OC0uNS40OS40OSAwIDAwLS40NzktLjV6bS01Ljc1LTNoMy44MzNhLjQ5LjQ5IDAgMDEuNDguNS40OS40OSAwIDAxLS40OC41SDQuMzEzYS40OS40OSAwIDAxLS40NzktLjVjMC0uMjc2LjIxNS0uNS40OC0uNXptMC0zSDYuMjNhLjQ5LjQ5IDAgMDEuNDc5LjUuNDkuNDkgMCAwMS0uNDguNUg0LjMxNGEuNDkuNDkgMCAwMS0uNDc5LS41YzAtLjI3Ni4yMTUtLjUuNDgtLjV6bTEwLjU0MiAwYS40OS40OSAwIDAwLS40OC41djQuNzkzbC0yLjA1Ny0yLjE0N2EuNDY1LjQ2NSAwIDAwLS42NzggMCAuNTE1LjUxNSAwIDAwMCAuNzA4bDIuODY2IDIuOTlhLjQ2OC40NjggMCAwMC42OTYgMGwyLjg2Ni0yLjk5YS41MTYuNTE2IDAgMDAwLS43MDguNDY1LjQ2NSAwIDAwLS42NzggMGwtMi4wNTYgMi4xNDZWOC41YS40OS40OSAwIDAwLS40OC0uNXoiIGZpbGw9IiM1QzYzNzIiLz48L3N2Zz4K)}._headerCell_2qf2w_16:hover ._noSort_2qf2w_29._caret_2qf2w_33{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExLjk5OSAxMy44NGwzLjE3NS0yLjcxOWEuNS41IDAgMDEuNjUuNzZsLTMuNSAyLjk5OGEuNS41IDAgMDEtLjY1IDBsLTMuNS0yLjk5OGEuNS41IDAgMDEuNjUtLjc2TDEyIDEzLjg0MXoiIGZpbGw9IiM1QjYzNzIiLz48L3N2Zz4K);transform:rotate(180deg)}._headerLabel_2qf2w_38{text-align:left;overflow:hidden}._icon_2qf2w_43{margin-right:10px;width:20px;box-sizing:border-box;display:inline-block}._numberIcon_2qf2w_50{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3IDVINmEyIDIgMCAwIDAtMiAydjEwYTIgMiAwIDAgMCAyIDJoMTFhMiAyIDAgMCAwIDItMlY3YTIgMiAwIDAgMC0yLTJ6TTUgN2ExIDEgMCAwIDEgMS0xaDExYTEgMSAwIDAgMSAxIDF2MTBhMSAxIDAgMCAxLTEgMUg2YTEgMSAwIDAgMS0xLTFWN3ptNC41IDRoLjc2NmwtLjU3MiAySDguNWEuNS41IDAgMCAwIDAgMWguOTA5bC0uMzkgMS4zNjNhLjUuNSAwIDAgMCAuOTYyLjI3NEwxMC40NDkgMTRoMS45NmwtLjM5IDEuMzYzYS41LjUgMCAwIDAgLjk2Mi4yNzRMMTMuNDQ5IDE0SDE0LjVhLjUuNSAwIDAgMCAwLTFoLS43NjZsLjU3Mi0ySDE1LjVhLjUuNSAwIDAgMCAwLTFoLS45MDlsLjM5LTEuMzYzYS41LjUgMCAwIDAtLjk2Mi0uMjc0TDEzLjU1MSAxMGgtMS45NmwuMzktMS4zNjNhLjUuNSAwIDAgMC0uOTYyLS4yNzRMMTAuNTUxIDEwSDkuNWEuNS41IDAgMCAwIDAgMXptMy43NjYgMGgtMS45NmwtLjU3MiAyaDEuOTZsLjU3Mi0yeiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._dateIcon_2qf2w_54{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTkgNVYzLjVhLjUuNSAwIDAgMSAxIDBWNWgzVjMuNWEuNS41IDAgMCAxIDEgMFY1aDNhMiAyIDAgMCAxIDIgMnYxMGEyIDIgMCAwIDEtMiAySDZhMiAyIDAgMCAxLTItMlY3YTIgMiAwIDAgMSAyLTJoM3ptMSAxaDN2LjVhLjUuNSAwIDAgMCAxIDBWNmgzYTEgMSAwIDAgMSAxIDF2MUg1VjdhMSAxIDAgMCAxIDEtMWgzdi41YS41LjUgMCAwIDAgMSAwVjZ6TTUgMTdWOWgxM3Y4YTEgMSAwIDAgMS0xIDFINmExIDEgMCAwIDEtMS0xem05LjUtNWgtNmEuNS41IDAgMCAxIDAtMWg2YS41LjUgMCAwIDEgMCAxem0tNiAyaDZhLjUuNSAwIDAgMCAwLTFoLTZhLjUuNSAwIDAgMCAwIDF6bTYgMmgtNmEuNS41IDAgMCAxIDAtMWg2YS41LjUgMCAwIDEgMCAxeiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._textIcon_2qf2w_58{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYgNWgxMWEyIDIgMCAwIDEgMiAydjEwYTIgMiAwIDAgMS0yIDJINmEyIDIgMCAwIDEtMi0yVjdhMiAyIDAgMCAxIDItMnptMCAxYTEgMSAwIDAgMC0xIDF2MTBhMSAxIDAgMCAwIDEgMWgxMWExIDEgMCAwIDAgMS0xVjdhMSAxIDAgMCAwLTEtMUg2em04IDEwSDlhLjUuNSAwIDAgMSAwLTFoMlY5SDguNWEuNS41IDAgMCAwLS41LjV2MmEuNS41IDAgMCAxLTEgMHYtMkExLjUgMS41IDAgMCAxIDguNSA4aDZBMS41IDEuNSAwIDAgMSAxNiA5LjV2MmEuNS41IDAgMCAxLTEgMHYtMmEuNS41IDAgMCAwLS41LS41SDEydjZoMmEuNS41IDAgMCAxIDAgMXoiIGZpbGw9IiM1QjYzNzIiLz48L3N2Zz4K)}._booleanIcon_2qf2w_62{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3IDVINmEyIDIgMCAwIDAtMiAydjEwYTIgMiAwIDAgMCAyIDJoMTFhMiAyIDAgMCAwIDItMlY3YTIgMiAwIDAgMC0yLTJ6TTUgN2ExIDEgMCAwIDEgMS0xaDExYTEgMSAwIDAgMSAxIDF2MTBhMSAxIDAgMCAxLTEgMUg2YTEgMSAwIDAgMS0xLTFWN3oiIGZpbGw9IiM1QjYzNzIiLz48cGF0aCBkPSJNOC44IDE1LjM5NGEuNS41IDAgMCAxLS4xLS43TDEzLjQyOCA4LjRhLjUuNSAwIDEgMSAuOC42TDkuNSAxNS4yOTRhLjUuNSAwIDAgMS0uNy4xeiIgZmlsbD0iIzVCNjM3MiIvPjxyZWN0IHg9IjYiIHk9IjgiIHdpZHRoPSI1IiBoZWlnaHQ9IjEiIHJ4PSIuNSIgZmlsbD0iIzVCNjM3MiIvPjxwYXRoIGQ9Ik04LjUgOGEuNS41IDAgMCAxIC41LjV2NGEuNS41IDAgMCAxLTEgMHYtNGEuNS41IDAgMCAxIC41LS41eiIgZmlsbD0iIzVCNjM3MiIvPjxyZWN0IHg9IjEzIiB5PSIxMiIgd2lkdGg9IjQiIGhlaWdodD0iMSIgcng9Ii41IiBmaWxsPSIjNUI2MzcyIi8+PHJlY3QgeD0iMTMiIHk9IjE0IiB3aWR0aD0iMyIgaGVpZ2h0PSIxIiByeD0iLjUiIGZpbGw9IiM1QjYzNzIiLz48cGF0aCBkPSJNMTMuNSAxMmEuNS41IDAgMCAxIC41LjV2NGEuNS41IDAgMCAxLTEgMHYtNGEuNS41IDAgMCAxIC41LS41eiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._sortIcon_2qf2w_66{position:absolute;right:0;width:24px;height:24px;background-repeat:no-repeat}._sortAscending_2qf2w_74._standard_2qf2w_29{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjMxMyAxN2g3LjY2N2EuNDkuNDkgMCAwMS40NzkuNS40OS40OSAwIDAxLS40OC41SDQuMzE0YS40OS40OSAwIDAxLS40NzktLjVjMC0uMjc2LjIxNS0uNS40OC0uNXptNS43NS0zaC01Ljc1YS40OS40OSAwIDAwLS40NzkuNWMwIC4yNzYuMjE1LjUuNDguNWg1Ljc1YS40OS40OSAwIDAwLjQ3OC0uNS40OS40OSAwIDAwLS40NzktLjV6bS01Ljc1LTNoMy44MzNhLjQ5LjQ5IDAgMDEuNDguNS40OS40OSAwIDAxLS40OC41SDQuMzEzYS40OS40OSAwIDAxLS40NzktLjVjMC0uMjc2LjIxNS0uNS40OC0uNXptMC0zSDYuMjNhLjQ5LjQ5IDAgMDEuNDc5LjUuNDkuNDkgMCAwMS0uNDguNUg0LjMxNGEuNDkuNDkgMCAwMS0uNDc5LS41YzAtLjI3Ni4yMTUtLjUuNDgtLjV6bTEwLjU0MiAwYS40OS40OSAwIDAwLS40OC41djQuNzkzbC0yLjA1Ny0yLjE0N2EuNDY1LjQ2NSAwIDAwLS42NzggMCAuNTE1LjUxNSAwIDAwMCAuNzA4bDIuODY2IDIuOTlhLjQ2OC40NjggMCAwMC42OTYgMGwyLjg2Ni0yLjk5YS41MTYuNTE2IDAgMDAwLS43MDguNDY1LjQ2NSAwIDAwLS42NzggMGwtMi4wNTYgMi4xNDZWOC41YS40OS40OSAwIDAwLS40OC0uNXoiIGZpbGw9IiM1QzYzNzIiLz48L3N2Zz4K)}._sortDescending_2qf2w_78._standard_2qf2w_29{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjMxMyA3aDcuNjY3YS40OS40OSAwIDAwLjQ3OS0uNS40OS40OSAwIDAwLS40OC0uNUg0LjMxNGEuNDkuNDkgMCAwMC0uNDc5LjVjMCAuMjc2LjIxNS41LjQ4LjV6bTUuNzUgM2gtNS43NWEuNDkuNDkgMCAwMS0uNDc5LS41YzAtLjI3Ni4yMTUtLjUuNDgtLjVoNS43NWEuNDkuNDkgMCAwMS40NzguNS40OS40OSAwIDAxLS40NzkuNXptLTUuNzUgM2gzLjgzM2EuNDkuNDkgMCAwMC40OC0uNS40OS40OSAwIDAwLS40OC0uNUg0LjMxM2EuNDkuNDkgMCAwMC0uNDc5LjVjMCAuMjc2LjIxNS41LjQ4LjV6bTAgM0g2LjIzYS40OS40OSAwIDAwLjQ3OS0uNS40OS40OSAwIDAwLS40OC0uNUg0LjMxNGEuNDkuNDkgMCAwMC0uNDc5LjVjMCAuMjc2LjIxNS41LjQ4LjV6bTEwLjU0MiAwYS40OS40OSAwIDAxLS40OC0uNXYtNC43OTNsLTIuMDU3IDIuMTQ3YS40NjUuNDY1IDAgMDEtLjY3OCAwIC41MTUuNTE1IDAgMDEwLS43MDhsMi44NjYtMi45OWEuNDY4LjQ2OCAwIDAxLjY5NiAwbDIuODY2IDIuOTlhLjUxNi41MTYgMCAwMTAgLjcwOC40NjUuNDY1IDAgMDEtLjY3OCAwbC0yLjA1Ni0yLjE0NlYxNS41YS40OS40OSAwIDAxLS40OC41eiIgZmlsbD0iIzVDNjM3MiIvPjwvc3ZnPgo=)}._sortAscending_2qf2w_74._caret_2qf2w_33{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExLjk5OSAxMy44NGwzLjE3NS0yLjcxOWEuNS41IDAgMDEuNjUuNzZsLTMuNSAyLjk5OGEuNS41IDAgMDEtLjY1IDBsLTMuNS0yLjk5OGEuNS41IDAgMDEuNjUtLjc2TDEyIDEzLjg0MXoiIGZpbGw9IiM1QjYzNzIiLz48L3N2Zz4K);transform:rotate(180deg)}._sortAscending_2qf2w_74._caret_2qf2w_33:hover{transform:rotate(0)}._sortDescending_2qf2w_78._caret_2qf2w_33{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExLjk5OSAxMy44NGwzLjE3NS0yLjcxOWEuNS41IDAgMDEuNjUuNzZsLTMuNSAyLjk5OGEuNS41IDAgMDEtLjY1IDBsLTMuNS0yLjk5OGEuNS41IDAgMDEuNjUtLjc2TDEyIDEzLjg0MXoiIGZpbGw9IiM1QjYzNzIiLz48L3N2Zz4K)}._sortDescending_2qf2w_78._caret_2qf2w_33:hover{transform:rotate(180deg)}._headerLabel_2qf2w_38{text-align:left;flex-grow:1}._headerLabel_2qf2w_38,._headerLabel_2qf2w_38 *{overflow:hidden;text-overflow:ellipsis}._icon_t30x8_1{width:24px;height:24px;margin-right:5px;box-sizing:border-box;display:inline-block;background-repeat:no-repeat;flex-grow:0}._numberIcon_t30x8_11{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3IDVINmEyIDIgMCAwIDAtMiAydjEwYTIgMiAwIDAgMCAyIDJoMTFhMiAyIDAgMCAwIDItMlY3YTIgMiAwIDAgMC0yLTJ6TTUgN2ExIDEgMCAwIDEgMS0xaDExYTEgMSAwIDAgMSAxIDF2MTBhMSAxIDAgMCAxLTEgMUg2YTEgMSAwIDAgMS0xLTFWN3ptNC41IDRoLjc2NmwtLjU3MiAySDguNWEuNS41IDAgMCAwIDAgMWguOTA5bC0uMzkgMS4zNjNhLjUuNSAwIDAgMCAuOTYyLjI3NEwxMC40NDkgMTRoMS45NmwtLjM5IDEuMzYzYS41LjUgMCAwIDAgLjk2Mi4yNzRMMTMuNDQ5IDE0SDE0LjVhLjUuNSAwIDAgMCAwLTFoLS43NjZsLjU3Mi0ySDE1LjVhLjUuNSAwIDAgMCAwLTFoLS45MDlsLjM5LTEuMzYzYS41LjUgMCAwIDAtLjk2Mi0uMjc0TDEzLjU1MSAxMGgtMS45NmwuMzktMS4zNjNhLjUuNSAwIDAgMC0uOTYyLS4yNzRMMTAuNTUxIDEwSDkuNWEuNS41IDAgMCAwIDAgMXptMy43NjYgMGgtMS45NmwtLjU3MiAyaDEuOTZsLjU3Mi0yeiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._dateIcon_t30x8_15{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTkgNVYzLjVhLjUuNSAwIDAgMSAxIDBWNWgzVjMuNWEuNS41IDAgMCAxIDEgMFY1aDNhMiAyIDAgMCAxIDIgMnYxMGEyIDIgMCAwIDEtMiAySDZhMiAyIDAgMCAxLTItMlY3YTIgMiAwIDAgMSAyLTJoM3ptMSAxaDN2LjVhLjUuNSAwIDAgMCAxIDBWNmgzYTEgMSAwIDAgMSAxIDF2MUg1VjdhMSAxIDAgMCAxIDEtMWgzdi41YS41LjUgMCAwIDAgMSAwVjZ6TTUgMTdWOWgxM3Y4YTEgMSAwIDAgMS0xIDFINmExIDEgMCAwIDEtMS0xem05LjUtNWgtNmEuNS41IDAgMCAxIDAtMWg2YS41LjUgMCAwIDEgMCAxem0tNiAyaDZhLjUuNSAwIDAgMCAwLTFoLTZhLjUuNSAwIDAgMCAwIDF6bTYgMmgtNmEuNS41IDAgMCAxIDAtMWg2YS41LjUgMCAwIDEgMCAxeiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._textIcon_t30x8_19{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYgNWgxMWEyIDIgMCAwIDEgMiAydjEwYTIgMiAwIDAgMS0yIDJINmEyIDIgMCAwIDEtMi0yVjdhMiAyIDAgMCAxIDItMnptMCAxYTEgMSAwIDAgMC0xIDF2MTBhMSAxIDAgMCAwIDEgMWgxMWExIDEgMCAwIDAgMS0xVjdhMSAxIDAgMCAwLTEtMUg2em04IDEwSDlhLjUuNSAwIDAgMSAwLTFoMlY5SDguNWEuNS41IDAgMCAwLS41LjV2MmEuNS41IDAgMCAxLTEgMHYtMkExLjUgMS41IDAgMCAxIDguNSA4aDZBMS41IDEuNSAwIDAgMSAxNiA5LjV2MmEuNS41IDAgMCAxLTEgMHYtMmEuNS41IDAgMCAwLS41LS41SDEydjZoMmEuNS41IDAgMCAxIDAgMXoiIGZpbGw9IiM1QjYzNzIiLz48L3N2Zz4K)}._booleanIcon_t30x8_23{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3IDVINmEyIDIgMCAwIDAtMiAydjEwYTIgMiAwIDAgMCAyIDJoMTFhMiAyIDAgMCAwIDItMlY3YTIgMiAwIDAgMC0yLTJ6TTUgN2ExIDEgMCAwIDEgMS0xaDExYTEgMSAwIDAgMSAxIDF2MTBhMSAxIDAgMCAxLTEgMUg2YTEgMSAwIDAgMS0xLTFWN3oiIGZpbGw9IiM1QjYzNzIiLz48cGF0aCBkPSJNOC44IDE1LjM5NGEuNS41IDAgMCAxLS4xLS43TDEzLjQyOCA4LjRhLjUuNSAwIDEgMSAuOC42TDkuNSAxNS4yOTRhLjUuNSAwIDAgMS0uNy4xeiIgZmlsbD0iIzVCNjM3MiIvPjxyZWN0IHg9IjYiIHk9IjgiIHdpZHRoPSI1IiBoZWlnaHQ9IjEiIHJ4PSIuNSIgZmlsbD0iIzVCNjM3MiIvPjxwYXRoIGQ9Ik04LjUgOGEuNS41IDAgMCAxIC41LjV2NGEuNS41IDAgMCAxLTEgMHYtNGEuNS41IDAgMCAxIC41LS41eiIgZmlsbD0iIzVCNjM3MiIvPjxyZWN0IHg9IjEzIiB5PSIxMiIgd2lkdGg9IjQiIGhlaWdodD0iMSIgcng9Ii41IiBmaWxsPSIjNUI2MzcyIi8+PHJlY3QgeD0iMTMiIHk9IjE0IiB3aWR0aD0iMyIgaGVpZ2h0PSIxIiByeD0iLjUiIGZpbGw9IiM1QjYzNzIiLz48cGF0aCBkPSJNMTMuNSAxMmEuNS41IDAgMCAxIC41LjV2NGEuNS41IDAgMCAxLTEgMHYtNGEuNS41IDAgMCAxIC41LS41eiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._component_1rw9b_1{flex-grow:1;font-family:Open Sans}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__navigation-icon:before{border-color:#ccc;border-style:solid;border-width:3px 3px 0 0;content:"";display:block;height:9px;position:absolute;top:6px;width:9px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{margin-left:-4px;position:absolute;width:0}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{box-sizing:content-box;position:absolute;border:8px solid transparent;height:0;width:1px;content:"";z-index:-1;border-width:8px;left:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{top:0;margin-top:-8px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{border-top:none;border-bottom-color:#f0f0f0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{top:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{top:-1px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{bottom:0;margin-bottom:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after{border-bottom:none;border-top-color:#fff}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after{bottom:0}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{bottom:-1px;border-top-color:#aeaeae}.react-datepicker-wrapper{display:inline-block;padding:0;border:0}.react-datepicker{font-family:Helvetica Neue,helvetica,arial,sans-serif;font-size:.8rem;background-color:#fff;color:#000;border:1px solid #aeaeae;border-radius:.3rem;display:inline-block;position:relative}.react-datepicker--time-only .react-datepicker__triangle{left:35px}.react-datepicker--time-only .react-datepicker__time-container{border-left:0}.react-datepicker--time-only .react-datepicker__time,.react-datepicker--time-only .react-datepicker__time-box{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.react-datepicker__triangle{position:absolute;left:50px}.react-datepicker-popper{z-index:1}.react-datepicker-popper[data-placement^=bottom]{padding-top:10px}.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle,.react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle{left:auto;right:50px}.react-datepicker-popper[data-placement^=top]{padding-bottom:10px}.react-datepicker-popper[data-placement^=right]{padding-left:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^=left]{padding-right:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{text-align:center;background-color:#f0f0f0;border-bottom:1px solid #aeaeae;border-top-left-radius:.3rem;padding:8px 0;position:relative}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px}.react-datepicker__header--time:not(.react-datepicker__header--time--only){border-top-left-radius:0}.react-datepicker__header:not(.react-datepicker__header--has-time-select){border-top-right-radius:.3rem}.react-datepicker__year-dropdown-container--select,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--scroll{display:inline-block;margin:0 15px}.react-datepicker__current-month,.react-datepicker-time__header,.react-datepicker-year-header{margin-top:0;color:#000;font-weight:700;font-size:.944rem}.react-datepicker-time__header{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.react-datepicker__navigation{align-items:center;background:none;display:flex;justify-content:center;text-align:center;cursor:pointer;position:absolute;top:2px;padding:0;border:none;z-index:1;height:32px;width:32px;text-indent:-999em;overflow:hidden}.react-datepicker__navigation--previous{left:2px}.react-datepicker__navigation--next{right:2px}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:85px}.react-datepicker__navigation--years{position:relative;top:0;display:block;margin-left:auto;margin-right:auto}.react-datepicker__navigation--years-previous{top:4px}.react-datepicker__navigation--years-upcoming{top:-4px}.react-datepicker__navigation:hover *:before{border-color:#a6a6a6}.react-datepicker__navigation-icon{position:relative;top:-1px;font-size:20px;width:0}.react-datepicker__navigation-icon--next{left:-2px}.react-datepicker__navigation-icon--next:before{transform:rotate(45deg);left:-7px}.react-datepicker__navigation-icon--previous{right:-2px}.react-datepicker__navigation-icon--previous:before{transform:rotate(225deg);right:-7px}.react-datepicker__month-container{float:left}.react-datepicker__year{margin:.4rem;text-align:center}.react-datepicker__year-wrapper{display:flex;flex-wrap:wrap;max-width:180px}.react-datepicker__year .react-datepicker__year-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__month{margin:.4rem;text-align:center}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__input-time-container{clear:both;width:100%;float:left;margin:5px 0 10px 15px;text-align:left}.react-datepicker__input-time-container .react-datepicker-time__caption,.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-left:10px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:auto}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]{-moz-appearance:textfield}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{margin-left:5px;display:inline-block}.react-datepicker__time-container{float:right;border-left:1px solid #aeaeae;width:85px}.react-datepicker__time-container--with-today-button{display:inline;border:1px solid #aeaeae;border-radius:.3rem;position:absolute;right:-87px;top:0}.react-datepicker__time-container .react-datepicker__time{position:relative;background:#fff;border-bottom-right-radius:.3rem}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{width:85px;overflow-x:hidden;margin:0 auto;text-align:center;border-bottom-right-radius:.3rem}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{list-style:none;margin:0;height:calc(195px + .85rem);overflow-y:scroll;padding-right:0;padding-left:0;width:100%;box-sizing:content-box}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{cursor:pointer;background-color:#f0f0f0}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#216ba5;color:#fff;font-weight:700}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#216ba5}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{cursor:default;background-color:transparent}.react-datepicker__week-number{color:#ccc;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer}.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected,.react-datepicker__week-number--keyboard-selected):hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__week-number--selected{border-radius:.3rem;background-color:#216ba5;color:#fff}.react-datepicker__week-number--selected:hover{background-color:#1d5d90}.react-datepicker__week-number--keyboard-selected{border-radius:.3rem;background-color:#2a87d0;color:#fff}.react-datepicker__week-number--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day-names{white-space:nowrap;margin-bottom:-8px}.react-datepicker__week{white-space:nowrap}.react-datepicker__day-name,.react-datepicker__day,.react-datepicker__time-name{color:#000;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text,.react-datepicker__year-text{cursor:pointer}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover,.react-datepicker__year-text:hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today,.react-datepicker__year-text--today{font-weight:700}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted,.react-datepicker__year-text--highlighted{border-radius:.3rem;background-color:#3dcc4a;color:#fff}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover,.react-datepicker__year-text--highlighted:hover{background-color:#32be3f}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1,.react-datepicker__year-text--highlighted-custom-1{color:#f0f}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2,.react-datepicker__year-text--highlighted-custom-2{color:green}.react-datepicker__day--holidays,.react-datepicker__month-text--holidays,.react-datepicker__quarter-text--holidays,.react-datepicker__year-text--holidays{position:relative;border-radius:.3rem;background-color:#ff6803;color:#fff}.react-datepicker__day--holidays .holiday-overlay,.react-datepicker__month-text--holidays .holiday-overlay,.react-datepicker__quarter-text--holidays .holiday-overlay,.react-datepicker__year-text--holidays .holiday-overlay{position:absolute;bottom:100%;left:50%;transform:translate(-50%);background-color:#333;color:#fff;padding:4px;border-radius:4px;white-space:nowrap;visibility:hidden;opacity:0;transition:visibility 0s,opacity .3s ease-in-out}.react-datepicker__day--holidays:hover,.react-datepicker__month-text--holidays:hover,.react-datepicker__quarter-text--holidays:hover,.react-datepicker__year-text--holidays:hover{background-color:#cf5300}.react-datepicker__day--holidays:hover .holiday-overlay,.react-datepicker__month-text--holidays:hover .holiday-overlay,.react-datepicker__quarter-text--holidays:hover .holiday-overlay,.react-datepicker__year-text--holidays:hover .holiday-overlay{visibility:visible;opacity:1}.react-datepicker__day--selected,.react-datepicker__day--in-selecting-range,.react-datepicker__day--in-range,.react-datepicker__month-text--selected,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--selected,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--selected,.react-datepicker__year-text--in-selecting-range,.react-datepicker__year-text--in-range{border-radius:.3rem;background-color:#216ba5;color:#fff}.react-datepicker__day--selected:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--in-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__quarter-text--selected:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--in-range:hover,.react-datepicker__year-text--selected:hover,.react-datepicker__year-text--in-selecting-range:hover,.react-datepicker__year-text--in-range:hover{background-color:#1d5d90}.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected,.react-datepicker__year-text--keyboard-selected{border-radius:.3rem;background-color:#bad9f1;color:#000}.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover,.react-datepicker__year-text--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range){background-color:#216ba580}.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range){background-color:#f0f0f0;color:#000}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled,.react-datepicker__year-text--disabled{cursor:default;color:#ccc}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover,.react-datepicker__year-text--disabled:hover{background-color:transparent}.react-datepicker__input-container{position:relative;display:inline-block;width:100%}.react-datepicker__input-container .react-datepicker__calendar-icon{position:absolute;padding:.5rem;box-sizing:content-box}.react-datepicker__view-calendar-icon input{padding:6px 10px 5px 25px}.react-datepicker__year-read-view,.react-datepicker__month-read-view,.react-datepicker__month-year-read-view{border:1px solid transparent;border-radius:.3rem;position:relative}.react-datepicker__year-read-view:hover,.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover{cursor:pointer}.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow{border-top-color:#b3b3b3}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{transform:rotate(135deg);right:-16px;top:0}.react-datepicker__year-dropdown,.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown{background-color:#f0f0f0;position:absolute;width:50%;left:25%;top:30px;z-index:1;text-align:center;border-radius:.3rem;border:1px solid #aeaeae}.react-datepicker__year-dropdown:hover,.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover{cursor:pointer}.react-datepicker__year-dropdown--scrollable,.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__year-option,.react-datepicker__month-option,.react-datepicker__month-year-option{line-height:20px;width:100%;display:block;margin-left:auto;margin-right:auto}.react-datepicker__year-option:first-of-type,.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.react-datepicker__year-option:last-of-type,.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type{-webkit-user-select:none;-moz-user-select:none;user-select:none;border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.react-datepicker__year-option:hover,.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover{background-color:#ccc}.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3}.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3}.react-datepicker__year-option--selected,.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected{position:absolute;left:15px}.react-datepicker__close-icon{cursor:pointer;background-color:transparent;border:0;outline:0;padding:0 6px 0 0;position:absolute;top:0;right:0;height:100%;display:table-cell;vertical-align:middle}.react-datepicker__close-icon:after{cursor:pointer;background-color:#216ba5;color:#fff;border-radius:50%;height:16px;width:16px;padding:2px;font-size:12px;line-height:1;text-align:center;display:table-cell;vertical-align:middle;content:"×"}.react-datepicker__close-icon--disabled{cursor:default}.react-datepicker__close-icon--disabled:after{cursor:default;background-color:#ccc}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;cursor:pointer;text-align:center;font-weight:700;padding:5px 0;clear:left}.react-datepicker__portal{position:fixed;width:100vw;height:100vh;background-color:#000c;left:0;top:0;justify-content:center;align-items:center;display:flex;z-index:2147483647}.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:3rem;line-height:3rem}@media (max-width: 400px),(max-height: 550px){.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:2rem;line-height:2rem}}.react-datepicker__portal .react-datepicker__current-month,.react-datepicker__portal .react-datepicker-time__header{font-size:1.44rem}.react-datepicker__children-container{width:13.8rem;margin:.4rem;padding-right:.2rem;padding-left:.2rem;height:auto}.react-datepicker__aria-live{position:absolute;clip-path:circle(0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;width:1px;white-space:nowrap}.react-datepicker__calendar-icon{width:1em;height:1em;vertical-align:-.125em}')),document.head.appendChild(e)}}catch(t){console.error("vite-plugin-css-injected-by-js",t)}})();
|
|
2509
|
+
(function(){"use strict";try{if(typeof document!="undefined"){var e=document.createElement("style");e.appendChild(document.createTextNode('@charset "UTF-8";[class|=csdk],[class|=csdk]:before,[class|=csdk]:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#d5d5d5;font-family:inherit}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.csdk-absolute{position:absolute}.csdk-relative{position:relative}.csdk-left-2{left:.5rem}.csdk-right-0{right:0}.csdk-right-\\[-15px\\]{right:-15px}.csdk-right-\\[-5px\\]{right:-5px}.csdk-right-\\[0px\\]{right:0}.csdk-right-\\[4px\\]{right:4px}.csdk-top-1\\/2{top:50%}.csdk-top-\\[3px\\]{top:3px}.csdk-top-\\[7px\\]{top:7px}.csdk-z-\\[401\\]{z-index:401}.csdk-m-3{margin:.75rem}.csdk-m-auto{margin:auto}.csdk-m-checkbox,.csdk-m-radio{margin:6px 10px 6px 6px}.csdk-mx-auto{margin-left:auto;margin-right:auto}.csdk-my-1{margin-top:.25rem;margin-bottom:.25rem}.csdk-my-2{margin-top:.5rem;margin-bottom:.5rem}.csdk-my-\\[2px\\]{margin-top:2px;margin-bottom:2px}.csdk-my-\\[5px\\]{margin-top:5px;margin-bottom:5px}.csdk-mb-1{margin-bottom:.25rem}.csdk-mb-\\[10px\\]{margin-bottom:10px}.csdk-mb-\\[3px\\]{margin-bottom:3px}.csdk-mb-\\[4px\\]{margin-bottom:4px}.csdk-mb-px{margin-bottom:1px}.csdk-ml-1{margin-left:.25rem}.csdk-ml-1\\.5{margin-left:.375rem}.csdk-ml-2{margin-left:.5rem}.csdk-ml-\\[4px\\]{margin-left:4px}.csdk-ml-\\[5px\\]{margin-left:5px}.csdk-ml-\\[6px\\]{margin-left:6px}.csdk-ml-\\[7px\\]{margin-left:7px}.csdk-ml-auto{margin-left:auto}.csdk-mr-2{margin-right:.5rem}.csdk-mr-\\[5px\\]{margin-right:5px}.csdk-mr-\\[7px\\]{margin-right:7px}.csdk-mt-2{margin-top:.5rem}.csdk-mt-3{margin-top:.75rem}.csdk-mt-\\[6px\\]{margin-top:6px}.csdk-box-border{box-sizing:border-box}.csdk-line-clamp-5{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:5}.csdk-flex{display:flex}.csdk-grid{display:grid}.csdk-h-5{height:1.25rem}.csdk-h-6{height:1.5rem}.csdk-h-\\[10px\\]{height:10px}.csdk-h-\\[18px\\]{height:18px}.csdk-h-\\[20px\\]{height:20px}.csdk-h-\\[245px\\]{height:245px}.csdk-h-button{height:28px}.csdk-h-checkbox{height:12px}.csdk-h-full{height:100%}.csdk-h-radio{height:12px}.csdk-h-screen{height:100vh}.csdk-max-h-32{max-height:8rem}.csdk-max-h-\\[150px\\]{max-height:150px}.csdk-min-h-\\[20px\\]{min-height:20px}.csdk-min-h-\\[32px\\]{min-height:32px}.csdk-w-5{width:1.25rem}.csdk-w-\\[10px\\]{width:10px}.csdk-w-\\[152px\\]{width:152px}.csdk-w-\\[18px\\]{width:18px}.csdk-w-\\[240px\\]{width:240px}.csdk-w-\\[28px\\]{width:28px}.csdk-w-\\[300px\\]{width:300px}.csdk-w-\\[60px\\]{width:60px}.csdk-w-checkbox{width:12px}.csdk-w-fit{width:-moz-fit-content;width:fit-content}.csdk-w-full{width:100%}.csdk-w-max{width:-moz-max-content;width:max-content}.csdk-w-radio{width:12px}.csdk-min-w-fit{min-width:-moz-fit-content;min-width:fit-content}.csdk-max-w-xs{max-width:20rem}.-csdk-translate-y-1\\/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.csdk-translate-x-1\\/2{--tw-translate-x: 50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-csdk-rotate-90{--tw-rotate: -90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.csdk-rotate-45{--tw-rotate: 45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.csdk-scale-x-\\[-1\\]{--tw-scale-x: -1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.csdk-transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes csdk-spin{to{transform:rotate(360deg)}}.csdk-animate-spin{animation:csdk-spin 1s linear infinite}.csdk-cursor-pointer{cursor:pointer}.csdk-select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.csdk-grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.csdk-flex-row{flex-direction:row}.csdk-flex-col{flex-direction:column}.csdk-flex-wrap{flex-wrap:wrap}.csdk-items-center{align-items:center}.csdk-justify-end{justify-content:flex-end}.csdk-justify-center{justify-content:center}.csdk-justify-between{justify-content:space-between}.csdk-justify-evenly{justify-content:space-evenly}.csdk-gap-1{gap:.25rem}.csdk-gap-2{gap:.5rem}.csdk-gap-\\[5px\\]{gap:5px}.csdk-gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.csdk-gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.csdk-gap-y-0{row-gap:0px}.csdk-gap-y-0\\.5{row-gap:.125rem}.csdk-gap-y-4{row-gap:1rem}.csdk-self-center{align-self:center}.csdk-overflow-auto{overflow:auto}.csdk-overflow-hidden{overflow:hidden}.\\!csdk-overflow-visible{overflow:visible!important}.csdk-whitespace-nowrap{white-space:nowrap}.csdk-whitespace-pre-wrap{white-space:pre-wrap}.csdk-rounded{border-radius:.25rem}.csdk-rounded-\\[4px\\]{border-radius:4px}.csdk-rounded-full{border-radius:9999px}.csdk-rounded-md{border-radius:.375rem}.csdk-border{border-width:1px}.csdk-border-0{border-width:0px}.csdk-border-input{border-width:1px}.csdk-border-b{border-bottom-width:1px}.csdk-border-l{border-left-width:1px}.csdk-border-l-\\[70px\\]{border-left-width:70px}.csdk-border-r-\\[70px\\]{border-right-width:70px}.csdk-border-t{border-top-width:1px}.csdk-border-t-\\[13px\\]{border-top-width:13px}.csdk-border-solid{border-style:solid}.csdk-border-none{border-style:none}.csdk-border-UI-default{--tw-border-opacity: 1;border-color:rgb(110 115 125 / var(--tw-border-opacity))}.csdk-border-\\[\\#e4e4e4\\]{--tw-border-opacity: 1;border-color:rgb(228 228 228 / var(--tw-border-opacity))}.csdk-border-transparent{border-color:transparent}.csdk-border-l-\\[transparent\\]{border-left-color:transparent}.csdk-border-r-\\[transparent\\]{border-right-color:transparent}.csdk-bg-\\[\\#f4f4f8\\]{--tw-bg-opacity: 1;background-color:rgb(244 244 248 / var(--tw-bg-opacity))}.csdk-bg-background-priority{background-color:#f4f4f8}.csdk-bg-primary-primary{background-color:#ffcb05}.csdk-bg-transparent{background-color:transparent}.csdk-bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.csdk-p-1{padding:.25rem}.csdk-p-1\\.5{padding:.375rem}.csdk-p-3{padding:.75rem}.csdk-p-\\[10px\\]{padding:10px}.csdk-p-\\[20px\\]{padding:20px}.csdk-p-\\[4px\\]{padding:4px}.csdk-p-\\[8px\\]{padding:8px}.csdk-p-button{padding:4px 24px}.csdk-p-px{padding:1px}.csdk-px-1{padding-left:.25rem;padding-right:.25rem}.csdk-px-2{padding-left:.5rem;padding-right:.5rem}.csdk-px-4{padding-left:1rem;padding-right:1rem}.csdk-px-\\[12px\\]{padding-left:12px;padding-right:12px}.csdk-px-\\[20px\\]{padding-left:20px;padding-right:20px}.csdk-px-\\[40px\\]{padding-left:40px;padding-right:40px}.csdk-px-\\[8px\\]{padding-left:8px;padding-right:8px}.csdk-py-\\[14\\.5px\\]{padding-top:14.5px;padding-bottom:14.5px}.csdk-py-\\[30px\\]{padding-top:30px;padding-bottom:30px}.csdk-py-\\[5px\\]{padding-top:5px;padding-bottom:5px}.csdk-py-\\[6px\\]{padding-top:6px;padding-bottom:6px}.csdk-py-\\[7px\\]{padding-top:7px;padding-bottom:7px}.csdk-pb-\\[0px\\]{padding-bottom:0}.csdk-pl-1{padding-left:.25rem}.csdk-pl-2{padding-left:.5rem}.csdk-pl-2\\.5{padding-left:.625rem}.csdk-pl-3{padding-left:.75rem}.csdk-pr-10{padding-right:2.5rem}.csdk-pt-48{padding-top:12rem}.csdk-text-left{text-align:left}.csdk-text-center{text-align:center}.csdk-text-\\[13px\\]{font-size:13px}.csdk-text-ai-lg{font-size:18px;line-height:22px}.csdk-text-ai-sm{font-size:13px;line-height:18px}.csdk-text-ai-xs{font-size:11px;line-height:18px}.csdk-text-xs{font-size:.75rem;line-height:1rem}.csdk-font-normal{font-weight:400}.csdk-leading-4{line-height:1rem}.csdk-leading-\\[16px\\]{line-height:16px}.csdk-leading-\\[18px\\]{line-height:18px}.csdk-leading-\\[26px\\]{line-height:26px}.csdk-leading-none{line-height:1}.csdk-text-UI-default{--tw-text-opacity: 1;color:rgb(110 115 125 / var(--tw-text-opacity))}.csdk-text-semantic-error{color:#e74727}.csdk-text-text-active{color:#262e3d}.csdk-text-text-content{color:#262e3dcc}.csdk-text-text-link{color:#36a3d9}.csdk-text-text-linkButton{--tw-text-opacity: 1;color:rgb(30 175 243 / var(--tw-text-opacity))}.csdk-accent-UI-default{accent-color:#6e737d}.csdk-opacity-0{opacity:0}.csdk-opacity-100{opacity:1}.csdk-opacity-50{opacity:.5}.csdk-opacity-80{opacity:.8}.csdk-shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.csdk-shadow-gray-500{--tw-shadow-color: #6b7280;--tw-shadow: var(--tw-shadow-colored)}.csdk-outline-0{outline-width:0px}.csdk-transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.csdk-transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.csdk-delay-150{transition-delay:.15s}.csdk-duration-500{transition-duration:.5s}.invalid\\:csdk-border-input:invalid{border-width:1px}.invalid\\:csdk-border-solid:invalid{border-style:solid}.invalid\\:csdk-border-semantic-error:invalid{border-color:#e74727}.hover\\:csdk-border-2:hover{border-width:2px}.hover\\:csdk-bg-interaction-primaryHovered:hover{background-color:#f2b900}.hover\\:csdk-bg-row-hover:hover{background-color:#e0e0e04d}.focus\\:csdk-border-input:focus{border-width:1px}.focus\\:csdk-border-solid:focus{border-style:solid}.focus\\:csdk-border-UI-default:focus{--tw-border-opacity: 1;border-color:rgb(110 115 125 / var(--tw-border-opacity))}.disabled\\:csdk-cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:csdk-opacity-30:disabled{opacity:.3}._container_1wquj_1{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;padding:0 20px;text-align:center;margin:15px}._container_1wquj_1 ._card_1wquj_11{position:relative;padding:10px;box-shadow:0 2px 4px #0000001a;border-radius:4px;z-index:1;width:100%}._container_1wquj_1 ._text_1wquj_19{font-size:13px;text-align:center;font-weight:700;word-wrap:break-word}.highcharts-series.highcharts-area-series.area-series--without-pointer-events .highcharts-area{pointer-events:none}.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::-moz-selection{background:transparent}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:#ffffff80}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px #000000a6;border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px #0006;background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fff;background:#fffc;margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;box-sizing:border-box;background:#fffc;text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:#fff;color:#333;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.csdk-map-container .leaflet-interactive{outline:none}.csdk-scattermap-tooltip-row{display:flex;justify-content:space-between}.csdk-treemap-tooltip-wrapper{min-width:210px;color:#acacac;font-size:14px;line-height:16px;background:#fff;border-radius:10px;overflow:hidden;margin-right:-1px;padding-bottom:10px}.csdk-treemap-tooltip-level{display:flex;align-items:center;position:relative;padding:8px;font-size:14px;border-bottom:1px solid #ccc}.csdk-treemap-tooltip-level span{padding:0 2px}.csdk-treemap-tooltip-value{padding:10px 10px 0;font-size:12px;line-height:16px}.highcharts-sunburst-series.highcharts-legend-item{pointer-events:none!important}.csdk-boxplot-tooltip-row{display:flex;justify-content:space-between}.csdk-boxplot-tooltip-row>*{margin-right:10px}.csdk-boxplot-tooltip-row>*:last-child{margin-right:0}._alert_box_10ttx_1{position:absolute;display:flex;justify-content:center;z-index:1;margin-top:1%}._alert_box_10ttx_1 ._content_10ttx_8{background-color:#616161;padding:5px;border-radius:3px;text-align:center}._alert_box_10ttx_1 ._content_10ttx_8 ._alert_10ttx_1{color:#fff;margin:0 8px;line-height:1;font-size:12px}._wrapper_g0ngm_1{width:100%;height:100%;position:relative}._title_g0ngm_7{font-size:18px;color:#9ea2ab;letter-spacing:normal;text-align:center;position:absolute;width:100%;top:11%}._image_g0ngm_18{width:66.6%;height:100%;margin:0 auto;display:block}.fixedDataTableCellGroupLayout_cellGroup{backface-visibility:hidden;left:0;overflow:hidden;position:absolute;top:0;white-space:nowrap}.fixedDataTable_isRTL .fixedDataTableCellGroupLayout_cellGroup{right:0;left:auto}.fixedDataTableCellGroupLayout_cellGroup>.public_fixedDataTableCell_main{display:inline-block;vertical-align:top;white-space:normal}.fixedDataTableCellGroupLayout_cellGroupWrapper{position:absolute;top:0}.fixedDataTableCellLayout_main{border-right-style:solid;border-right-width:1px;border-width:0 1px 0 0;box-sizing:border-box;display:block;overflow:hidden;position:absolute;white-space:normal}.fixedDataTable_isRTL .fixedDataTableCellLayout_main{border-right-width:0;border-left-style:solid;border-left-width:1px}.fixedDataTableCellLayout_lastChild{border-width:0 1px 1px 0}.fixedDataTableCellLayout_alignRight{text-align:right}.fixedDataTableCellLayout_alignCenter{text-align:center}.fixedDataTableCellLayout_wrap{display:table-cell;vertical-align:middle;box-sizing:border-box}.fixedDataTableCellLayout_wrap1{display:table}.fixedDataTableCellLayout_wrap2{display:table-row}.fixedDataTableCellLayout_wrap3{display:table-cell;vertical-align:middle}.fixedDataTableCellLayout_columnResizerContainer{position:absolute;right:0;width:6px;z-index:1}.fixedDataTable_isRTL .fixedDataTableCellLayout_columnResizerContainer{left:0;right:auto}.fixedDataTableCellLayout_columnResizerContainer:hover{cursor:ew-resize}.fixedDataTableCellLayout_columnResizerContainer:hover .fixedDataTableCellLayout_columnResizerKnob{visibility:visible}.fixedDataTableCellLayout_columnResizerKnob{position:absolute;right:0;visibility:hidden;width:4px}.fixedDataTable_isRTL .fixedDataTableCellLayout_columnResizerKnob{left:0;right:auto}.fixedDataTableColumnResizerLineLayout_mouseArea{cursor:ew-resize;position:absolute;right:-5px;width:12px}.fixedDataTable_isRTL .fixedDataTableColumnResizerLineLayout_mouseArea{right:auto;left:-5px}.fixedDataTableColumnResizerLineLayout_main{border-right-style:solid;border-right-width:1px;box-sizing:border-box;position:absolute;z-index:10;pointer-events:none}.fixedDataTable_isRTL .fixedDataTableColumnResizerLineLayout_main{border-right-width:0;border-left-style:solid;border-left-width:1px}.fixedDataTableColumnResizerLineLayout_hiddenElem{display:none!important}.fixedDataTableLayout_main{border-style:solid;border-width:1px;box-sizing:border-box;overflow:hidden;position:relative}.fixedDataTableLayout_header,.fixedDataTableLayout_hasBottomBorder{border-bottom-style:solid;border-bottom-width:1px}.fixedDataTableLayout_footer .public_fixedDataTableCell_main{border-top-style:solid;border-top-width:1px}.fixedDataTableLayout_topShadow,.fixedDataTableLayout_bottomShadow{height:4px;left:0;position:absolute;right:0;z-index:1}.fixedDataTableLayout_bottomShadow{margin-top:-4px}.fixedDataTableLayout_rowsContainer{overflow:hidden;position:relative}.fixedDataTableRowLayout_main{box-sizing:border-box;overflow:hidden;position:absolute;top:0}.fixedDataTableRowLayout_body{left:0;right:0;position:absolute;top:0}.fixedDataTableRowLayout_rowExpanded{box-sizing:border-box;left:0;position:absolute}.fixedDataTableRowLayout_fixedColumnsDivider{backface-visibility:hidden;border-left-style:solid;border-left-width:1px;left:0;position:absolute;top:0;width:0}.fixedDataTable_isRTL .fixedDataTableRowLayout_fixedColumnsDivider{border-left-width:0;border-right-style:solid;border-right-width:1px}.fixedDataTableRowLayout_columnsShadow{position:absolute;width:4px}.fixedDataTableRowLayout_columnsRightShadow{right:1px}.fixedDataTable_isRTL .fixedDataTableRowLayout_columnsRightShadow{left:1px;right:auto}.fixedDataTableRowLayout_rowWrapper{position:absolute;top:0}.ScrollbarLayout_main{box-sizing:border-box;outline:none;overflow:hidden;position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ScrollbarLayout_mainVertical{bottom:0;right:0;top:0;width:15px}.ScrollbarLayout_mainHorizontal{height:15px;left:0;transition-property:background-color height}.ScrollbarLayout_mainHorizontal.public_Scrollbar_mainActive,.ScrollbarLayout_mainHorizontal:hover{height:17px}.ScrollbarLayout_face{left:0;overflow:hidden;position:absolute;z-index:1;transition-duration:.25s;transition-timing-function:ease;transition-property:width}.ScrollbarLayout_face:after{border-radius:6px;content:"";display:block;position:absolute;transition:background-color .25s ease}.ScrollbarLayout_faceHorizontal{bottom:0;left:0;top:0}.ScrollbarLayout_faceHorizontal:after{bottom:4px;left:0;top:4px;width:100%}.fixedDataTable_isRTL .ScrollbarLayout_faceHorizontal,.fixedDataTable_isRTL .ScrollbarLayout_faceHorizontal:after{right:0;left:auto}.ScrollbarLayout_faceHorizontal.public_Scrollbar_faceActive:after,.ScrollbarLayout_main:hover .ScrollbarLayout_faceHorizontal:after{bottom:2px}.ScrollbarLayout_faceVertical{left:0;right:0;top:0}.ScrollbarLayout_faceVertical:after{height:100%;left:4px;right:4px;top:0}.ScrollbarLayout_main:hover .ScrollbarLayout_faceVertical:after,.ScrollbarLayout_faceVertical.public_Scrollbar_faceActive:after{left:2px;right:2px}.public_fixedDataTable_main,.public_fixedDataTable_header,.public_fixedDataTable_hasBottomBorder{border-color:#d3d3d3}.public_fixedDataTable_header .public_fixedDataTableCell_main{font-weight:700}.public_fixedDataTable_header,.public_fixedDataTable_scrollbarSpacer,.public_fixedDataTable_header .public_fixedDataTableCell_main{background-color:#f6f7f8;background-image:linear-gradient(#fff,#efefef)}.public_fixedDataTable_scrollbarSpacer{position:absolute;z-index:99;top:0}.public_fixedDataTable_footer .public_fixedDataTableCell_main{background-color:#f6f7f8;border-color:#d3d3d3}.public_fixedDataTable_topShadow{background-image:linear-gradient(180deg,#0000001a,#0000)}.public_fixedDataTable_bottomShadow{background-image:linear-gradient(0deg,#0000001a,#0000)}.public_fixedDataTable_horizontalScrollbar .public_Scrollbar_mainHorizontal{background-color:#fff}.public_fixedDataTableCell_main{background-color:#fff;border-color:#d3d3d3}.public_fixedDataTableCell_highlighted{background-color:#f4f4f4}.public_fixedDataTableCell_cellContent{padding:8px}.public_fixedDataTableCell_columnResizerKnob{background-color:#0284ff}.public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap1 .public_fixedDataTableCell_cellContent{margin-left:12px}.public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap.public_fixedDataTableCell_cellContent{padding-left:20px}.fixedDataTable_isRTL .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap1 .public_fixedDataTableCell_cellContent{margin-left:auto;margin-right:12px}.fixedDataTable_isRTL .public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_wrap.public_fixedDataTableCell_cellContent{padding-right:20px}.fixedDataTableCellLayout_columnReorderContainer{border-color:#0284ff;background-color:#0000001a;width:12px;margin-right:-12px;float:left;cursor:move}.fixedDataTable_isRTL .fixedDataTableCellLayout_columnReorderContainer{margin-right:auto;margin-left:-12px;float:right}.fixedDataTableCellLayout_columnReorderContainer:after{content:"::";position:absolute;top:50%;left:1px;transform:translateY(-50%)}.fixedDataTable_isRTL .fixedDataTableCellLayout_columnReorderContainer:after{left:auto;right:1px}.public_fixedDataTableColumnResizerLine_main{border-color:#0284ff}.public_fixedDataTableRow_main{background-color:#fff}.public_fixedDataTableRow_highlighted,.public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main{background-color:#f6f7f8}.public_fixedDataTableRow_fixedColumnsDivider{border-color:#d3d3d3}.public_fixedDataTableRow_columnsShadow{background-image:linear-gradient(90deg,#0000001a,#0000)}.fixedDataTable_isRTL .public_fixedDataTableRow_columnsShadow{background-image:linear-gradient(270deg,#0000001a,#0000)}.public_fixedDataTableRow_columnsRightShadow{transform:rotate(180deg)}.public_Scrollbar_main.public_Scrollbar_mainActive,.public_Scrollbar_main{background-color:#fff;border-left:1px solid #d3d3d3}.fixedDataTable_isRTL .public_Scrollbar_main.public_Scrollbar_mainActive,.fixedDataTable_isRTL .public_Scrollbar_main{border-right:1px solid #d3d3d3;border-left-width:0}.public_Scrollbar_mainOpaque,.public_Scrollbar_mainOpaque.public_Scrollbar_mainActive,.public_Scrollbar_mainOpaque:hover{background-color:#fff}.public_Scrollbar_face:after{background-color:#c2c2c2}.public_Scrollbar_main:hover .public_Scrollbar_face:after,.public_Scrollbar_mainActive .public_Scrollbar_face:after,.public_Scrollbar_faceActive:after{background-color:#7d7d7d}._tableWrapper_1ode4_16 .public_fixedDataTable_header,._tableWrapper_1ode4_16 .public_fixedDataTable_scrollbarSpacer,._tableWrapper_1ode4_16 .public_fixedDataTable_header .public_fixedDataTableCell_main{background-color:transparent;background-image:none;border-bottom:1px solid #edeef1}._tableWrapper_1ode4_16 .public_fixedDataTable_scrollbarSpacer{margin-left:3px}._tableWrapper_1ode4_16 .public_fixedDataTable_main,._tableWrapper_1ode4_16 .fixedDataTableLayout_main{border:none}._tableWrapper_1ode4_16 .public_fixedDataTableRow_highlighted,._tableWrapper_1ode4_16 .public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main,._tableWrapper_1ode4_16 .public_fixedDataTableRow_main{background-color:transparent}._tableWrapper_1ode4_16 .public_fixedDataTableCell_main{background-color:transparent;border-color:#edeef1}._tableWrapper_1ode4_16 .public_fixedDataTable_header,._tableWrapper_1ode4_16 .public_fixedDataTable_hasBottomBorder,._tableWrapper_1ode4_16 .public_fixedDataTable_scrollbarSpacer{border-bottom:none}._tableWrapper_1ode4_16 .public_fixedDataTable_header .fixedDataTableCellGroupLayout_cellGroup{border-top:1px solid #edeef1;border-bottom:1px solid #edeef1;box-sizing:border-box}._tableWrapper_1ode4_16 .public_Scrollbar_main{border-left:none;background-color:transparent}._tableWrapper_1ode4_16 .fixedDataTableRowLayout_rowWrapper{border-left:1px solid #edeef1}._tableWrapper_1ode4_16 .public_Scrollbar_main.public_Scrollbar_mainOpaque{left:-1px}._tableWrapper_1ode4_16 .public_fixedDataTableCell_cellContent{padding:0 24px 0 12px}._tableWrapper_1ode4_16{height:100%;width:100%;box-sizing:border-box;-webkit-user-select:text;-moz-user-select:text;user-select:text}._table_1ode4_16{background:transparent;font-size:13px;border:none}._tableHeader_1ode4_78{color:#5c6372;background-color:transparent;margin:0;border:none;width:100%;overflow:hidden;box-sizing:border-box}._tableCell_1ode4_88{color:#5c6372;background-color:transparent;border:none;border-right:1px solid #edeef1;border-bottom:1px solid #edeef1;overflow:hidden;width:100%;box-sizing:border-box}._tableCellContent_1ode4_99{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._headerColor_1ode4_105,._rowColor_1ode4_109{background-color:#f9f9fb}._headerCell_2qf2w_16{display:flex;justify-content:left;align-items:center;margin-left:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:400;width:100%;cursor:pointer}._headerCell_2qf2w_16:hover ._noSort_2qf2w_29._standard_2qf2w_29{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjMxMyAxN2g3LjY2N2EuNDkuNDkgMCAwMS40NzkuNS40OS40OSAwIDAxLS40OC41SDQuMzE0YS40OS40OSAwIDAxLS40NzktLjVjMC0uMjc2LjIxNS0uNS40OC0uNXptNS43NS0zaC01Ljc1YS40OS40OSAwIDAwLS40NzkuNWMwIC4yNzYuMjE1LjUuNDguNWg1Ljc1YS40OS40OSAwIDAwLjQ3OC0uNS40OS40OSAwIDAwLS40NzktLjV6bS01Ljc1LTNoMy44MzNhLjQ5LjQ5IDAgMDEuNDguNS40OS40OSAwIDAxLS40OC41SDQuMzEzYS40OS40OSAwIDAxLS40NzktLjVjMC0uMjc2LjIxNS0uNS40OC0uNXptMC0zSDYuMjNhLjQ5LjQ5IDAgMDEuNDc5LjUuNDkuNDkgMCAwMS0uNDguNUg0LjMxNGEuNDkuNDkgMCAwMS0uNDc5LS41YzAtLjI3Ni4yMTUtLjUuNDgtLjV6bTEwLjU0MiAwYS40OS40OSAwIDAwLS40OC41djQuNzkzbC0yLjA1Ny0yLjE0N2EuNDY1LjQ2NSAwIDAwLS42NzggMCAuNTE1LjUxNSAwIDAwMCAuNzA4bDIuODY2IDIuOTlhLjQ2OC40NjggMCAwMC42OTYgMGwyLjg2Ni0yLjk5YS41MTYuNTE2IDAgMDAwLS43MDguNDY1LjQ2NSAwIDAwLS42NzggMGwtMi4wNTYgMi4xNDZWOC41YS40OS40OSAwIDAwLS40OC0uNXoiIGZpbGw9IiM1QzYzNzIiLz48L3N2Zz4K)}._headerCell_2qf2w_16:hover ._noSort_2qf2w_29._caret_2qf2w_33{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExLjk5OSAxMy44NGwzLjE3NS0yLjcxOWEuNS41IDAgMDEuNjUuNzZsLTMuNSAyLjk5OGEuNS41IDAgMDEtLjY1IDBsLTMuNS0yLjk5OGEuNS41IDAgMDEuNjUtLjc2TDEyIDEzLjg0MXoiIGZpbGw9IiM1QjYzNzIiLz48L3N2Zz4K);transform:rotate(180deg)}._headerLabel_2qf2w_38{text-align:left;overflow:hidden}._icon_2qf2w_43{margin-right:10px;width:20px;box-sizing:border-box;display:inline-block}._numberIcon_2qf2w_50{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3IDVINmEyIDIgMCAwIDAtMiAydjEwYTIgMiAwIDAgMCAyIDJoMTFhMiAyIDAgMCAwIDItMlY3YTIgMiAwIDAgMC0yLTJ6TTUgN2ExIDEgMCAwIDEgMS0xaDExYTEgMSAwIDAgMSAxIDF2MTBhMSAxIDAgMCAxLTEgMUg2YTEgMSAwIDAgMS0xLTFWN3ptNC41IDRoLjc2NmwtLjU3MiAySDguNWEuNS41IDAgMCAwIDAgMWguOTA5bC0uMzkgMS4zNjNhLjUuNSAwIDAgMCAuOTYyLjI3NEwxMC40NDkgMTRoMS45NmwtLjM5IDEuMzYzYS41LjUgMCAwIDAgLjk2Mi4yNzRMMTMuNDQ5IDE0SDE0LjVhLjUuNSAwIDAgMCAwLTFoLS43NjZsLjU3Mi0ySDE1LjVhLjUuNSAwIDAgMCAwLTFoLS45MDlsLjM5LTEuMzYzYS41LjUgMCAwIDAtLjk2Mi0uMjc0TDEzLjU1MSAxMGgtMS45NmwuMzktMS4zNjNhLjUuNSAwIDAgMC0uOTYyLS4yNzRMMTAuNTUxIDEwSDkuNWEuNS41IDAgMCAwIDAgMXptMy43NjYgMGgtMS45NmwtLjU3MiAyaDEuOTZsLjU3Mi0yeiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._dateIcon_2qf2w_54{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTkgNVYzLjVhLjUuNSAwIDAgMSAxIDBWNWgzVjMuNWEuNS41IDAgMCAxIDEgMFY1aDNhMiAyIDAgMCAxIDIgMnYxMGEyIDIgMCAwIDEtMiAySDZhMiAyIDAgMCAxLTItMlY3YTIgMiAwIDAgMSAyLTJoM3ptMSAxaDN2LjVhLjUuNSAwIDAgMCAxIDBWNmgzYTEgMSAwIDAgMSAxIDF2MUg1VjdhMSAxIDAgMCAxIDEtMWgzdi41YS41LjUgMCAwIDAgMSAwVjZ6TTUgMTdWOWgxM3Y4YTEgMSAwIDAgMS0xIDFINmExIDEgMCAwIDEtMS0xem05LjUtNWgtNmEuNS41IDAgMCAxIDAtMWg2YS41LjUgMCAwIDEgMCAxem0tNiAyaDZhLjUuNSAwIDAgMCAwLTFoLTZhLjUuNSAwIDAgMCAwIDF6bTYgMmgtNmEuNS41IDAgMCAxIDAtMWg2YS41LjUgMCAwIDEgMCAxeiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._textIcon_2qf2w_58{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYgNWgxMWEyIDIgMCAwIDEgMiAydjEwYTIgMiAwIDAgMS0yIDJINmEyIDIgMCAwIDEtMi0yVjdhMiAyIDAgMCAxIDItMnptMCAxYTEgMSAwIDAgMC0xIDF2MTBhMSAxIDAgMCAwIDEgMWgxMWExIDEgMCAwIDAgMS0xVjdhMSAxIDAgMCAwLTEtMUg2em04IDEwSDlhLjUuNSAwIDAgMSAwLTFoMlY5SDguNWEuNS41IDAgMCAwLS41LjV2MmEuNS41IDAgMCAxLTEgMHYtMkExLjUgMS41IDAgMCAxIDguNSA4aDZBMS41IDEuNSAwIDAgMSAxNiA5LjV2MmEuNS41IDAgMCAxLTEgMHYtMmEuNS41IDAgMCAwLS41LS41SDEydjZoMmEuNS41IDAgMCAxIDAgMXoiIGZpbGw9IiM1QjYzNzIiLz48L3N2Zz4K)}._booleanIcon_2qf2w_62{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3IDVINmEyIDIgMCAwIDAtMiAydjEwYTIgMiAwIDAgMCAyIDJoMTFhMiAyIDAgMCAwIDItMlY3YTIgMiAwIDAgMC0yLTJ6TTUgN2ExIDEgMCAwIDEgMS0xaDExYTEgMSAwIDAgMSAxIDF2MTBhMSAxIDAgMCAxLTEgMUg2YTEgMSAwIDAgMS0xLTFWN3oiIGZpbGw9IiM1QjYzNzIiLz48cGF0aCBkPSJNOC44IDE1LjM5NGEuNS41IDAgMCAxLS4xLS43TDEzLjQyOCA4LjRhLjUuNSAwIDEgMSAuOC42TDkuNSAxNS4yOTRhLjUuNSAwIDAgMS0uNy4xeiIgZmlsbD0iIzVCNjM3MiIvPjxyZWN0IHg9IjYiIHk9IjgiIHdpZHRoPSI1IiBoZWlnaHQ9IjEiIHJ4PSIuNSIgZmlsbD0iIzVCNjM3MiIvPjxwYXRoIGQ9Ik04LjUgOGEuNS41IDAgMCAxIC41LjV2NGEuNS41IDAgMCAxLTEgMHYtNGEuNS41IDAgMCAxIC41LS41eiIgZmlsbD0iIzVCNjM3MiIvPjxyZWN0IHg9IjEzIiB5PSIxMiIgd2lkdGg9IjQiIGhlaWdodD0iMSIgcng9Ii41IiBmaWxsPSIjNUI2MzcyIi8+PHJlY3QgeD0iMTMiIHk9IjE0IiB3aWR0aD0iMyIgaGVpZ2h0PSIxIiByeD0iLjUiIGZpbGw9IiM1QjYzNzIiLz48cGF0aCBkPSJNMTMuNSAxMmEuNS41IDAgMCAxIC41LjV2NGEuNS41IDAgMCAxLTEgMHYtNGEuNS41IDAgMCAxIC41LS41eiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._sortIcon_2qf2w_66{position:absolute;right:0;width:24px;height:24px;background-repeat:no-repeat}._sortAscending_2qf2w_74._standard_2qf2w_29{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjMxMyAxN2g3LjY2N2EuNDkuNDkgMCAwMS40NzkuNS40OS40OSAwIDAxLS40OC41SDQuMzE0YS40OS40OSAwIDAxLS40NzktLjVjMC0uMjc2LjIxNS0uNS40OC0uNXptNS43NS0zaC01Ljc1YS40OS40OSAwIDAwLS40NzkuNWMwIC4yNzYuMjE1LjUuNDguNWg1Ljc1YS40OS40OSAwIDAwLjQ3OC0uNS40OS40OSAwIDAwLS40NzktLjV6bS01Ljc1LTNoMy44MzNhLjQ5LjQ5IDAgMDEuNDguNS40OS40OSAwIDAxLS40OC41SDQuMzEzYS40OS40OSAwIDAxLS40NzktLjVjMC0uMjc2LjIxNS0uNS40OC0uNXptMC0zSDYuMjNhLjQ5LjQ5IDAgMDEuNDc5LjUuNDkuNDkgMCAwMS0uNDguNUg0LjMxNGEuNDkuNDkgMCAwMS0uNDc5LS41YzAtLjI3Ni4yMTUtLjUuNDgtLjV6bTEwLjU0MiAwYS40OS40OSAwIDAwLS40OC41djQuNzkzbC0yLjA1Ny0yLjE0N2EuNDY1LjQ2NSAwIDAwLS42NzggMCAuNTE1LjUxNSAwIDAwMCAuNzA4bDIuODY2IDIuOTlhLjQ2OC40NjggMCAwMC42OTYgMGwyLjg2Ni0yLjk5YS41MTYuNTE2IDAgMDAwLS43MDguNDY1LjQ2NSAwIDAwLS42NzggMGwtMi4wNTYgMi4xNDZWOC41YS40OS40OSAwIDAwLS40OC0uNXoiIGZpbGw9IiM1QzYzNzIiLz48L3N2Zz4K)}._sortDescending_2qf2w_78._standard_2qf2w_29{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjMxMyA3aDcuNjY3YS40OS40OSAwIDAwLjQ3OS0uNS40OS40OSAwIDAwLS40OC0uNUg0LjMxNGEuNDkuNDkgMCAwMC0uNDc5LjVjMCAuMjc2LjIxNS41LjQ4LjV6bTUuNzUgM2gtNS43NWEuNDkuNDkgMCAwMS0uNDc5LS41YzAtLjI3Ni4yMTUtLjUuNDgtLjVoNS43NWEuNDkuNDkgMCAwMS40NzguNS40OS40OSAwIDAxLS40NzkuNXptLTUuNzUgM2gzLjgzM2EuNDkuNDkgMCAwMC40OC0uNS40OS40OSAwIDAwLS40OC0uNUg0LjMxM2EuNDkuNDkgMCAwMC0uNDc5LjVjMCAuMjc2LjIxNS41LjQ4LjV6bTAgM0g2LjIzYS40OS40OSAwIDAwLjQ3OS0uNS40OS40OSAwIDAwLS40OC0uNUg0LjMxNGEuNDkuNDkgMCAwMC0uNDc5LjVjMCAuMjc2LjIxNS41LjQ4LjV6bTEwLjU0MiAwYS40OS40OSAwIDAxLS40OC0uNXYtNC43OTNsLTIuMDU3IDIuMTQ3YS40NjUuNDY1IDAgMDEtLjY3OCAwIC41MTUuNTE1IDAgMDEwLS43MDhsMi44NjYtMi45OWEuNDY4LjQ2OCAwIDAxLjY5NiAwbDIuODY2IDIuOTlhLjUxNi41MTYgMCAwMTAgLjcwOC40NjUuNDY1IDAgMDEtLjY3OCAwbC0yLjA1Ni0yLjE0NlYxNS41YS40OS40OSAwIDAxLS40OC41eiIgZmlsbD0iIzVDNjM3MiIvPjwvc3ZnPgo=)}._sortAscending_2qf2w_74._caret_2qf2w_33{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExLjk5OSAxMy44NGwzLjE3NS0yLjcxOWEuNS41IDAgMDEuNjUuNzZsLTMuNSAyLjk5OGEuNS41IDAgMDEtLjY1IDBsLTMuNS0yLjk5OGEuNS41IDAgMDEuNjUtLjc2TDEyIDEzLjg0MXoiIGZpbGw9IiM1QjYzNzIiLz48L3N2Zz4K);transform:rotate(180deg)}._sortAscending_2qf2w_74._caret_2qf2w_33:hover{transform:rotate(0)}._sortDescending_2qf2w_78._caret_2qf2w_33{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExLjk5OSAxMy44NGwzLjE3NS0yLjcxOWEuNS41IDAgMDEuNjUuNzZsLTMuNSAyLjk5OGEuNS41IDAgMDEtLjY1IDBsLTMuNS0yLjk5OGEuNS41IDAgMDEuNjUtLjc2TDEyIDEzLjg0MXoiIGZpbGw9IiM1QjYzNzIiLz48L3N2Zz4K)}._sortDescending_2qf2w_78._caret_2qf2w_33:hover{transform:rotate(180deg)}._headerLabel_2qf2w_38{text-align:left;flex-grow:1}._headerLabel_2qf2w_38,._headerLabel_2qf2w_38 *{overflow:hidden;text-overflow:ellipsis}._icon_t30x8_1{width:24px;height:24px;margin-right:5px;box-sizing:border-box;display:inline-block;background-repeat:no-repeat;flex-grow:0}._numberIcon_t30x8_11{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3IDVINmEyIDIgMCAwIDAtMiAydjEwYTIgMiAwIDAgMCAyIDJoMTFhMiAyIDAgMCAwIDItMlY3YTIgMiAwIDAgMC0yLTJ6TTUgN2ExIDEgMCAwIDEgMS0xaDExYTEgMSAwIDAgMSAxIDF2MTBhMSAxIDAgMCAxLTEgMUg2YTEgMSAwIDAgMS0xLTFWN3ptNC41IDRoLjc2NmwtLjU3MiAySDguNWEuNS41IDAgMCAwIDAgMWguOTA5bC0uMzkgMS4zNjNhLjUuNSAwIDAgMCAuOTYyLjI3NEwxMC40NDkgMTRoMS45NmwtLjM5IDEuMzYzYS41LjUgMCAwIDAgLjk2Mi4yNzRMMTMuNDQ5IDE0SDE0LjVhLjUuNSAwIDAgMCAwLTFoLS43NjZsLjU3Mi0ySDE1LjVhLjUuNSAwIDAgMCAwLTFoLS45MDlsLjM5LTEuMzYzYS41LjUgMCAwIDAtLjk2Mi0uMjc0TDEzLjU1MSAxMGgtMS45NmwuMzktMS4zNjNhLjUuNSAwIDAgMC0uOTYyLS4yNzRMMTAuNTUxIDEwSDkuNWEuNS41IDAgMCAwIDAgMXptMy43NjYgMGgtMS45NmwtLjU3MiAyaDEuOTZsLjU3Mi0yeiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._dateIcon_t30x8_15{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTkgNVYzLjVhLjUuNSAwIDAgMSAxIDBWNWgzVjMuNWEuNS41IDAgMCAxIDEgMFY1aDNhMiAyIDAgMCAxIDIgMnYxMGEyIDIgMCAwIDEtMiAySDZhMiAyIDAgMCAxLTItMlY3YTIgMiAwIDAgMSAyLTJoM3ptMSAxaDN2LjVhLjUuNSAwIDAgMCAxIDBWNmgzYTEgMSAwIDAgMSAxIDF2MUg1VjdhMSAxIDAgMCAxIDEtMWgzdi41YS41LjUgMCAwIDAgMSAwVjZ6TTUgMTdWOWgxM3Y4YTEgMSAwIDAgMS0xIDFINmExIDEgMCAwIDEtMS0xem05LjUtNWgtNmEuNS41IDAgMCAxIDAtMWg2YS41LjUgMCAwIDEgMCAxem0tNiAyaDZhLjUuNSAwIDAgMCAwLTFoLTZhLjUuNSAwIDAgMCAwIDF6bTYgMmgtNmEuNS41IDAgMCAxIDAtMWg2YS41LjUgMCAwIDEgMCAxeiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._textIcon_t30x8_19{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYgNWgxMWEyIDIgMCAwIDEgMiAydjEwYTIgMiAwIDAgMS0yIDJINmEyIDIgMCAwIDEtMi0yVjdhMiAyIDAgMCAxIDItMnptMCAxYTEgMSAwIDAgMC0xIDF2MTBhMSAxIDAgMCAwIDEgMWgxMWExIDEgMCAwIDAgMS0xVjdhMSAxIDAgMCAwLTEtMUg2em04IDEwSDlhLjUuNSAwIDAgMSAwLTFoMlY5SDguNWEuNS41IDAgMCAwLS41LjV2MmEuNS41IDAgMCAxLTEgMHYtMkExLjUgMS41IDAgMCAxIDguNSA4aDZBMS41IDEuNSAwIDAgMSAxNiA5LjV2MmEuNS41IDAgMCAxLTEgMHYtMmEuNS41IDAgMCAwLS41LS41SDEydjZoMmEuNS41IDAgMCAxIDAgMXoiIGZpbGw9IiM1QjYzNzIiLz48L3N2Zz4K)}._booleanIcon_t30x8_23{background-image:url(data:image/svg+xml;charset=utf8;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3IDVINmEyIDIgMCAwIDAtMiAydjEwYTIgMiAwIDAgMCAyIDJoMTFhMiAyIDAgMCAwIDItMlY3YTIgMiAwIDAgMC0yLTJ6TTUgN2ExIDEgMCAwIDEgMS0xaDExYTEgMSAwIDAgMSAxIDF2MTBhMSAxIDAgMCAxLTEgMUg2YTEgMSAwIDAgMS0xLTFWN3oiIGZpbGw9IiM1QjYzNzIiLz48cGF0aCBkPSJNOC44IDE1LjM5NGEuNS41IDAgMCAxLS4xLS43TDEzLjQyOCA4LjRhLjUuNSAwIDEgMSAuOC42TDkuNSAxNS4yOTRhLjUuNSAwIDAgMS0uNy4xeiIgZmlsbD0iIzVCNjM3MiIvPjxyZWN0IHg9IjYiIHk9IjgiIHdpZHRoPSI1IiBoZWlnaHQ9IjEiIHJ4PSIuNSIgZmlsbD0iIzVCNjM3MiIvPjxwYXRoIGQ9Ik04LjUgOGEuNS41IDAgMCAxIC41LjV2NGEuNS41IDAgMCAxLTEgMHYtNGEuNS41IDAgMCAxIC41LS41eiIgZmlsbD0iIzVCNjM3MiIvPjxyZWN0IHg9IjEzIiB5PSIxMiIgd2lkdGg9IjQiIGhlaWdodD0iMSIgcng9Ii41IiBmaWxsPSIjNUI2MzcyIi8+PHJlY3QgeD0iMTMiIHk9IjE0IiB3aWR0aD0iMyIgaGVpZ2h0PSIxIiByeD0iLjUiIGZpbGw9IiM1QjYzNzIiLz48cGF0aCBkPSJNMTMuNSAxMmEuNS41IDAgMCAxIC41LjV2NGEuNS41IDAgMCAxLTEgMHYtNGEuNS41IDAgMCAxIC41LS41eiIgZmlsbD0iIzVCNjM3MiIvPjwvc3ZnPgo=)}._component_1rw9b_1{flex-grow:1;font-family:Open Sans}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__navigation-icon:before{border-color:#ccc;border-style:solid;border-width:3px 3px 0 0;content:"";display:block;height:9px;position:absolute;top:6px;width:9px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{margin-left:-4px;position:absolute;width:0}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{box-sizing:content-box;position:absolute;border:8px solid transparent;height:0;width:1px;content:"";z-index:-1;border-width:8px;left:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{top:0;margin-top:-8px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{border-top:none;border-bottom-color:#f0f0f0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:after{top:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{top:-1px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{bottom:0;margin-bottom:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after{border-bottom:none;border-top-color:#fff}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:after{bottom:0}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before{bottom:-1px;border-top-color:#aeaeae}.react-datepicker-wrapper{display:inline-block;padding:0;border:0}.react-datepicker{font-family:Helvetica Neue,helvetica,arial,sans-serif;font-size:.8rem;background-color:#fff;color:#000;border:1px solid #aeaeae;border-radius:.3rem;display:inline-block;position:relative}.react-datepicker--time-only .react-datepicker__triangle{left:35px}.react-datepicker--time-only .react-datepicker__time-container{border-left:0}.react-datepicker--time-only .react-datepicker__time,.react-datepicker--time-only .react-datepicker__time-box{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.react-datepicker__triangle{position:absolute;left:50px}.react-datepicker-popper{z-index:1}.react-datepicker-popper[data-placement^=bottom]{padding-top:10px}.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle,.react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle{left:auto;right:50px}.react-datepicker-popper[data-placement^=top]{padding-bottom:10px}.react-datepicker-popper[data-placement^=right]{padding-left:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^=left]{padding-right:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{text-align:center;background-color:#f0f0f0;border-bottom:1px solid #aeaeae;border-top-left-radius:.3rem;padding:8px 0;position:relative}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px}.react-datepicker__header--time:not(.react-datepicker__header--time--only){border-top-left-radius:0}.react-datepicker__header:not(.react-datepicker__header--has-time-select){border-top-right-radius:.3rem}.react-datepicker__year-dropdown-container--select,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--scroll{display:inline-block;margin:0 15px}.react-datepicker__current-month,.react-datepicker-time__header,.react-datepicker-year-header{margin-top:0;color:#000;font-weight:700;font-size:.944rem}.react-datepicker-time__header{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.react-datepicker__navigation{align-items:center;background:none;display:flex;justify-content:center;text-align:center;cursor:pointer;position:absolute;top:2px;padding:0;border:none;z-index:1;height:32px;width:32px;text-indent:-999em;overflow:hidden}.react-datepicker__navigation--previous{left:2px}.react-datepicker__navigation--next{right:2px}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:85px}.react-datepicker__navigation--years{position:relative;top:0;display:block;margin-left:auto;margin-right:auto}.react-datepicker__navigation--years-previous{top:4px}.react-datepicker__navigation--years-upcoming{top:-4px}.react-datepicker__navigation:hover *:before{border-color:#a6a6a6}.react-datepicker__navigation-icon{position:relative;top:-1px;font-size:20px;width:0}.react-datepicker__navigation-icon--next{left:-2px}.react-datepicker__navigation-icon--next:before{transform:rotate(45deg);left:-7px}.react-datepicker__navigation-icon--previous{right:-2px}.react-datepicker__navigation-icon--previous:before{transform:rotate(225deg);right:-7px}.react-datepicker__month-container{float:left}.react-datepicker__year{margin:.4rem;text-align:center}.react-datepicker__year-wrapper{display:flex;flex-wrap:wrap;max-width:180px}.react-datepicker__year .react-datepicker__year-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__month{margin:.4rem;text-align:center}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__input-time-container{clear:both;width:100%;float:left;margin:5px 0 10px 15px;text-align:left}.react-datepicker__input-time-container .react-datepicker-time__caption,.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-left:10px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:auto}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]{-moz-appearance:textfield}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{margin-left:5px;display:inline-block}.react-datepicker__time-container{float:right;border-left:1px solid #aeaeae;width:85px}.react-datepicker__time-container--with-today-button{display:inline;border:1px solid #aeaeae;border-radius:.3rem;position:absolute;right:-87px;top:0}.react-datepicker__time-container .react-datepicker__time{position:relative;background:#fff;border-bottom-right-radius:.3rem}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{width:85px;overflow-x:hidden;margin:0 auto;text-align:center;border-bottom-right-radius:.3rem}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{list-style:none;margin:0;height:calc(195px + .85rem);overflow-y:scroll;padding-right:0;padding-left:0;width:100%;box-sizing:content-box}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{cursor:pointer;background-color:#f0f0f0}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#216ba5;color:#fff;font-weight:700}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#216ba5}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{cursor:default;background-color:transparent}.react-datepicker__week-number{color:#ccc;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer}.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected,.react-datepicker__week-number--keyboard-selected):hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__week-number--selected{border-radius:.3rem;background-color:#216ba5;color:#fff}.react-datepicker__week-number--selected:hover{background-color:#1d5d90}.react-datepicker__week-number--keyboard-selected{border-radius:.3rem;background-color:#2a87d0;color:#fff}.react-datepicker__week-number--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day-names{white-space:nowrap;margin-bottom:-8px}.react-datepicker__week{white-space:nowrap}.react-datepicker__day-name,.react-datepicker__day,.react-datepicker__time-name{color:#000;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text,.react-datepicker__year-text{cursor:pointer}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover,.react-datepicker__year-text:hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today,.react-datepicker__year-text--today{font-weight:700}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted,.react-datepicker__year-text--highlighted{border-radius:.3rem;background-color:#3dcc4a;color:#fff}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover,.react-datepicker__year-text--highlighted:hover{background-color:#32be3f}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1,.react-datepicker__year-text--highlighted-custom-1{color:#f0f}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2,.react-datepicker__year-text--highlighted-custom-2{color:green}.react-datepicker__day--holidays,.react-datepicker__month-text--holidays,.react-datepicker__quarter-text--holidays,.react-datepicker__year-text--holidays{position:relative;border-radius:.3rem;background-color:#ff6803;color:#fff}.react-datepicker__day--holidays .holiday-overlay,.react-datepicker__month-text--holidays .holiday-overlay,.react-datepicker__quarter-text--holidays .holiday-overlay,.react-datepicker__year-text--holidays .holiday-overlay{position:absolute;bottom:100%;left:50%;transform:translate(-50%);background-color:#333;color:#fff;padding:4px;border-radius:4px;white-space:nowrap;visibility:hidden;opacity:0;transition:visibility 0s,opacity .3s ease-in-out}.react-datepicker__day--holidays:hover,.react-datepicker__month-text--holidays:hover,.react-datepicker__quarter-text--holidays:hover,.react-datepicker__year-text--holidays:hover{background-color:#cf5300}.react-datepicker__day--holidays:hover .holiday-overlay,.react-datepicker__month-text--holidays:hover .holiday-overlay,.react-datepicker__quarter-text--holidays:hover .holiday-overlay,.react-datepicker__year-text--holidays:hover .holiday-overlay{visibility:visible;opacity:1}.react-datepicker__day--selected,.react-datepicker__day--in-selecting-range,.react-datepicker__day--in-range,.react-datepicker__month-text--selected,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--selected,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--selected,.react-datepicker__year-text--in-selecting-range,.react-datepicker__year-text--in-range{border-radius:.3rem;background-color:#216ba5;color:#fff}.react-datepicker__day--selected:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--in-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__quarter-text--selected:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--in-range:hover,.react-datepicker__year-text--selected:hover,.react-datepicker__year-text--in-selecting-range:hover,.react-datepicker__year-text--in-range:hover{background-color:#1d5d90}.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected,.react-datepicker__year-text--keyboard-selected{border-radius:.3rem;background-color:#bad9f1;color:#000}.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover,.react-datepicker__year-text--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range){background-color:#216ba580}.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range){background-color:#f0f0f0;color:#000}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled,.react-datepicker__year-text--disabled{cursor:default;color:#ccc}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover,.react-datepicker__year-text--disabled:hover{background-color:transparent}.react-datepicker__input-container{position:relative;display:inline-block;width:100%}.react-datepicker__input-container .react-datepicker__calendar-icon{position:absolute;padding:.5rem;box-sizing:content-box}.react-datepicker__view-calendar-icon input{padding:6px 10px 5px 25px}.react-datepicker__year-read-view,.react-datepicker__month-read-view,.react-datepicker__month-year-read-view{border:1px solid transparent;border-radius:.3rem;position:relative}.react-datepicker__year-read-view:hover,.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover{cursor:pointer}.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow{border-top-color:#b3b3b3}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{transform:rotate(135deg);right:-16px;top:0}.react-datepicker__year-dropdown,.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown{background-color:#f0f0f0;position:absolute;width:50%;left:25%;top:30px;z-index:1;text-align:center;border-radius:.3rem;border:1px solid #aeaeae}.react-datepicker__year-dropdown:hover,.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover{cursor:pointer}.react-datepicker__year-dropdown--scrollable,.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__year-option,.react-datepicker__month-option,.react-datepicker__month-year-option{line-height:20px;width:100%;display:block;margin-left:auto;margin-right:auto}.react-datepicker__year-option:first-of-type,.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.react-datepicker__year-option:last-of-type,.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type{-webkit-user-select:none;-moz-user-select:none;user-select:none;border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.react-datepicker__year-option:hover,.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover{background-color:#ccc}.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3}.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3}.react-datepicker__year-option--selected,.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected{position:absolute;left:15px}.react-datepicker__close-icon{cursor:pointer;background-color:transparent;border:0;outline:0;padding:0 6px 0 0;position:absolute;top:0;right:0;height:100%;display:table-cell;vertical-align:middle}.react-datepicker__close-icon:after{cursor:pointer;background-color:#216ba5;color:#fff;border-radius:50%;height:16px;width:16px;padding:2px;font-size:12px;line-height:1;text-align:center;display:table-cell;vertical-align:middle;content:"×"}.react-datepicker__close-icon--disabled{cursor:default}.react-datepicker__close-icon--disabled:after{cursor:default;background-color:#ccc}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;cursor:pointer;text-align:center;font-weight:700;padding:5px 0;clear:left}.react-datepicker__portal{position:fixed;width:100vw;height:100vh;background-color:#000c;left:0;top:0;justify-content:center;align-items:center;display:flex;z-index:2147483647}.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:3rem;line-height:3rem}@media (max-width: 400px),(max-height: 550px){.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:2rem;line-height:2rem}}.react-datepicker__portal .react-datepicker__current-month,.react-datepicker__portal .react-datepicker-time__header{font-size:1.44rem}.react-datepicker__children-container{width:13.8rem;margin:.4rem;padding-right:.2rem;padding-left:.2rem;height:auto}.react-datepicker__aria-live{position:absolute;clip-path:circle(0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;width:1px;white-space:nowrap}.react-datepicker__calendar-icon{width:1em;height:1em;vertical-align:-.125em}')),document.head.appendChild(e)}}catch(t){console.error("vite-plugin-css-injected-by-js",t)}})();
|