impact-nova 1.7.4 → 1.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ui/ag-grid-react/headers/components/truncated-text.d.ts +15 -0
- package/dist/components/ui/ag-grid-react/headers/components/truncated-text.js +27 -0
- package/dist/components/ui/ag-grid-react/headers/custom-header-group.js +22 -15
- package/dist/components/ui/ag-grid-react/headers/custom-header.js +47 -43
- package/dist/components/ui/breadcrumb.js +1 -1
- package/dist/components/ui/button-group.d.ts +3 -0
- package/dist/components/ui/button-group.js +129 -78
- package/dist/components/ui/checkbox.d.ts +3 -0
- package/dist/components/ui/checkbox.js +64 -53
- package/dist/components/ui/data-table/data-table-saved-views.d.ts +2 -0
- package/dist/components/ui/data-table/data-table-saved-views.js +348 -0
- package/dist/components/ui/data-table/data-table-view-options.d.ts +8 -0
- package/dist/components/ui/data-table/index.d.ts +2 -0
- package/dist/components/ui/data-table/index.js +16 -14
- package/dist/components/ui/date-picker/date-range-picker.js +239 -196
- package/dist/components/ui/date-picker/month-range-picker.js +226 -183
- package/dist/components/ui/date-picker/week-range-picker.js +265 -222
- package/dist/components/ui/dialog.js +6 -6
- package/dist/components/ui/filter-panel/filter-panel.js +15 -8
- package/dist/components/ui/filter-strip/filter-strip.js +8 -9
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/input.js +107 -43
- package/dist/components/ui/notification-panel/notification-panel.d.ts +4 -4
- package/dist/components/ui/notification-panel/notification-panel.js +78 -16
- package/dist/components/ui/radio-group.d.ts +3 -0
- package/dist/components/ui/radio-group.js +101 -52
- package/dist/components/ui/select/select.js +579 -554
- package/dist/components/ui/sidebar.js +5 -5
- package/dist/components/ui/textarea.d.ts +3 -0
- package/dist/components/ui/textarea.js +104 -58
- package/dist/components/ui/types/data-table-saved-views.types.d.ts +71 -0
- package/dist/components/ui/types/helper-text.types.d.ts +5 -0
- package/dist/components/ui/types/select.types.d.ts +6 -0
- package/dist/i18n/defaultMessages.d.ts +19 -0
- package/dist/i18n/defaultMessages.js +33 -15
- package/dist/i18n/locales/de.js +19 -1
- package/dist/i18n/locales/es.js +19 -1
- package/dist/i18n/locales/hi.js +19 -1
- package/dist/i18n/locales/kn.js +19 -1
- package/dist/icons/assets/blocks.svg.js +1 -1
- package/dist/icons/assets/drawBrush.svg.js +5 -0
- package/dist/icons/assets/info-badge.svg.js +5 -0
- package/dist/icons/assets/priority-alert.svg.js +5 -0
- package/dist/icons/assets/settings.svg.js +1 -1
- package/dist/icons/assets/webp/sales.webp.js +4 -0
- package/dist/icons/index.d.ts +4 -0
- package/dist/icons/index.js +253 -245
- package/dist/impact-nova.css +1 -1
- package/dist/index.js +91 -89
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import * as n from "react";
|
|
|
3
3
|
import * as k from "@radix-ui/react-collapsible";
|
|
4
4
|
import { Slot as N } from "@radix-ui/react-slot";
|
|
5
5
|
import { cva as H } from "class-variance-authority";
|
|
6
|
-
import { ChevronRight as A,
|
|
6
|
+
import { ChevronRight as A, HamburgerOpen as L, HamburgerClosed as P } from "../../icons/index.js";
|
|
7
7
|
import { cn as l } from "../../lib/utils.js";
|
|
8
8
|
import { Button as j } from "./button.js";
|
|
9
9
|
import { Input as W } from "./input.js";
|
|
@@ -227,7 +227,7 @@ const ne = n.forwardRef(({ className: t, ...r }, e) => /* @__PURE__ */ a(
|
|
|
227
227
|
ref: e,
|
|
228
228
|
"data-sidebar": "header",
|
|
229
229
|
className: l(
|
|
230
|
-
"flex mt-
|
|
230
|
+
"flex mt-3 mb-[34px] items-center px-3 transition-all duration-200 ease-linear",
|
|
231
231
|
t
|
|
232
232
|
),
|
|
233
233
|
...r
|
|
@@ -240,7 +240,7 @@ const ie = n.forwardRef(({ className: t, ...r }, e) => /* @__PURE__ */ a(
|
|
|
240
240
|
ref: e,
|
|
241
241
|
"data-sidebar": "footer",
|
|
242
242
|
className: l(
|
|
243
|
-
"flex shrink-0 flex-col gap-2
|
|
243
|
+
"flex shrink-0 flex-col gap-2 pt-2 min-w-0 w-full overflow-x-hidden group-data-[state=collapsed]:px-0",
|
|
244
244
|
t
|
|
245
245
|
),
|
|
246
246
|
...r
|
|
@@ -252,7 +252,7 @@ const oe = n.forwardRef(({ className: t, ...r }, e) => /* @__PURE__ */ a(
|
|
|
252
252
|
{
|
|
253
253
|
ref: e,
|
|
254
254
|
"data-sidebar": "separator",
|
|
255
|
-
className: l("
|
|
255
|
+
className: l("w-auto bg-[#31416e]", t),
|
|
256
256
|
...r
|
|
257
257
|
}
|
|
258
258
|
));
|
|
@@ -471,7 +471,7 @@ const D = n.forwardRef(
|
|
|
471
471
|
);
|
|
472
472
|
D.displayName = "SidebarMenuCollapsible";
|
|
473
473
|
const pe = H(
|
|
474
|
-
"peer/menu-button flex w-full items-center gap-[22px] overflow-visible py-[14px] px-[
|
|
474
|
+
"peer/menu-button flex w-full items-center gap-[22px] overflow-visible py-[14px] px-[20px] text-left text-[14px] outline-none ring-navigation-ring transition-[width,height,padding,background-color] hover:bg-navigation-item-active hover:text-navigation-on-hover focus-visible:ring-2 disabled:pointer-events-none disabled:text-navigation-muted group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:text-navigation-muted aria-disabled:opacity-50 hover:aria-disabled:bg-transparent data-[active=true]:bg-navigation-item-active data-[active=true]:font-medium data-[active=true]:text-navigation-on-hover cursor-pointer group-data-[state=collapsed]:!w-[var(--sidebar-width-icon)] group-data-[state=collapsed]:!h-12 group-data-[state=collapsed]:!p-0 group-data-[state=collapsed]:!pl-[20px] [&>span:last-child]:truncate [&>svg]:size-5 [&>img]:size-5 [&>svg]:shrink-0 [&>svg]:text-inherit group-data-[state=collapsed]:[&>span]:hidden group-data-[state=collapsed]:[&>svg:not(:first-of-type)]:hidden [&>[data-sidebar=menu-button-chevron]]:ml-auto [&>[data-sidebar=menu-button-chevron]]:size-4 [&>[data-sidebar=menu-button-chevron]]:transition-transform [&>[data-sidebar=menu-button-chevron]]:duration-200 [&>[data-sidebar=menu-button-chevron]]:rotate-90 data-[state=open]:[&>[data-sidebar=menu-button-chevron]]:rotate-[270deg] before:absolute before:left-0 before:top-0 before:w-1 before:bg-success before:rounded-r-[4px] before:transition-[height] before:duration-200 before:linear before:z-20 data-[active=false]:before:h-0 data-[active=true]:before:h-full",
|
|
475
475
|
{
|
|
476
476
|
variants: {
|
|
477
477
|
variant: {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import { HelperTextPosition } from './types/helper-text.types';
|
|
2
3
|
import * as React from "react";
|
|
3
4
|
declare const textareaVariants: (props?: {
|
|
4
5
|
isError?: boolean;
|
|
@@ -7,6 +8,8 @@ declare const textareaVariants: (props?: {
|
|
|
7
8
|
export interface TextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "disabled">, VariantProps<typeof textareaVariants> {
|
|
8
9
|
label?: string;
|
|
9
10
|
helperText?: React.ReactNode;
|
|
11
|
+
/** @default "absolute" */
|
|
12
|
+
helperTextPosition?: HelperTextPosition;
|
|
10
13
|
characterLimit?: number;
|
|
11
14
|
}
|
|
12
15
|
declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import * as
|
|
3
|
-
import { cva as
|
|
4
|
-
import {
|
|
5
|
-
|
|
1
|
+
import { jsxs as e, jsx as d, Fragment as w } from "react/jsx-runtime";
|
|
2
|
+
import * as m from "react";
|
|
3
|
+
import { cva as N } from "class-variance-authority";
|
|
4
|
+
import { Info as f } from "../../icons/index.js";
|
|
5
|
+
import { cn as t } from "../../lib/utils.js";
|
|
6
|
+
const y = N(
|
|
6
7
|
"flex min-h-20 w-full rounded-md border border-field bg-transparent px-3 py-2 text-base shadow-sm placeholder:text-content-empty focus-visible:outline-none focus-visible:border-brand hover:border-brand disabled:cursor-not-allowed disabled:bg-disabled-surface disabled:text-disabled-foreground disabled:border-stroke md:text-sm",
|
|
7
8
|
{
|
|
8
9
|
variants: {
|
|
@@ -19,88 +20,133 @@ const v = p(
|
|
|
19
20
|
isError: !1
|
|
20
21
|
}
|
|
21
22
|
}
|
|
22
|
-
),
|
|
23
|
+
), k = m.forwardRef(
|
|
23
24
|
({
|
|
24
|
-
className:
|
|
25
|
-
label:
|
|
26
|
-
helperText:
|
|
27
|
-
|
|
25
|
+
className: b,
|
|
26
|
+
label: u,
|
|
27
|
+
helperText: s,
|
|
28
|
+
helperTextPosition: l = "absolute",
|
|
29
|
+
characterLimit: c,
|
|
28
30
|
isError: a,
|
|
29
31
|
disabled: r,
|
|
30
|
-
value:
|
|
31
|
-
onChange:
|
|
32
|
-
...
|
|
33
|
-
},
|
|
34
|
-
const [
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}, [
|
|
38
|
-
const h = (
|
|
39
|
-
o(
|
|
32
|
+
value: i,
|
|
33
|
+
onChange: g,
|
|
34
|
+
...n
|
|
35
|
+
}, v) => {
|
|
36
|
+
const [p, o] = m.useState(0);
|
|
37
|
+
m.useEffect(() => {
|
|
38
|
+
i ? o(String(i).length) : n.defaultValue && o(String(n.defaultValue).length);
|
|
39
|
+
}, [i, n.defaultValue]);
|
|
40
|
+
const h = (x) => {
|
|
41
|
+
o(x.target.value.length), g?.(x);
|
|
40
42
|
};
|
|
41
|
-
return /* @__PURE__ */
|
|
42
|
-
/* @__PURE__ */
|
|
43
|
-
|
|
43
|
+
return /* @__PURE__ */ e("div", { className: "flex w-full min-w-[240px] flex-col gap-[6px]", children: [
|
|
44
|
+
/* @__PURE__ */ e("div", { className: "flex flex-col gap-[6px]", children: [
|
|
45
|
+
u && /* @__PURE__ */ e(
|
|
44
46
|
"label",
|
|
45
47
|
{
|
|
46
|
-
className:
|
|
48
|
+
className: t(
|
|
47
49
|
"text-xs font-medium leading-[18px] text-content-tertiary",
|
|
48
50
|
r && "opacity-70",
|
|
49
51
|
a && "text-destructive"
|
|
50
52
|
),
|
|
51
53
|
children: [
|
|
52
|
-
|
|
54
|
+
u,
|
|
53
55
|
" ",
|
|
54
|
-
|
|
56
|
+
n.required && /* @__PURE__ */ d("span", { className: "text-destructive", children: "*" })
|
|
55
57
|
]
|
|
56
58
|
}
|
|
57
59
|
),
|
|
58
|
-
/* @__PURE__ */
|
|
59
|
-
"
|
|
60
|
+
/* @__PURE__ */ e(
|
|
61
|
+
"div",
|
|
60
62
|
{
|
|
61
|
-
className:
|
|
62
|
-
|
|
63
|
-
"bg-canvas",
|
|
64
|
-
r && "bg-disabled-surface"
|
|
63
|
+
className: t(
|
|
64
|
+
s && l === "absolute" && "relative"
|
|
65
65
|
),
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
66
|
+
children: [
|
|
67
|
+
/* @__PURE__ */ d(
|
|
68
|
+
"textarea",
|
|
69
|
+
{
|
|
70
|
+
className: t(
|
|
71
|
+
y({ isError: a, disabled: r, className: b }),
|
|
72
|
+
"bg-canvas",
|
|
73
|
+
r && "bg-disabled-surface"
|
|
74
|
+
),
|
|
75
|
+
ref: v,
|
|
76
|
+
disabled: !!r,
|
|
77
|
+
value: i,
|
|
78
|
+
onChange: h,
|
|
79
|
+
"data-component": "textarea",
|
|
80
|
+
...n
|
|
81
|
+
}
|
|
82
|
+
),
|
|
83
|
+
s && l === "absolute" && /* @__PURE__ */ e(
|
|
84
|
+
"div",
|
|
85
|
+
{
|
|
86
|
+
className: t(
|
|
87
|
+
"absolute left-0 top-full z-10 mt-1 flex min-w-0 max-w-full items-center gap-[6px] text-[12px] font-medium leading-[18px] text-navigation-muted",
|
|
88
|
+
a && "text-destructive"
|
|
89
|
+
),
|
|
90
|
+
children: [
|
|
91
|
+
/* @__PURE__ */ d(
|
|
92
|
+
f,
|
|
93
|
+
{
|
|
94
|
+
size: "xs",
|
|
95
|
+
className: t(
|
|
96
|
+
"shrink-0",
|
|
97
|
+
a ? "text-destructive" : "text-content-muted"
|
|
98
|
+
)
|
|
99
|
+
}
|
|
100
|
+
),
|
|
101
|
+
/* @__PURE__ */ d("p", { className: "min-w-0", children: s })
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
)
|
|
105
|
+
]
|
|
72
106
|
}
|
|
73
107
|
)
|
|
74
108
|
] }),
|
|
75
|
-
(l ||
|
|
76
|
-
/* @__PURE__ */
|
|
109
|
+
(s && l === "flow" || c) && /* @__PURE__ */ e("div", { className: "flex items-center justify-between gap-[6px]", children: [
|
|
110
|
+
/* @__PURE__ */ d(
|
|
77
111
|
"div",
|
|
78
112
|
{
|
|
79
|
-
className:
|
|
80
|
-
"flex items-center gap-[6px]",
|
|
113
|
+
className: t(
|
|
114
|
+
"flex min-w-0 flex-1 items-center gap-[6px]",
|
|
81
115
|
a && "text-destructive"
|
|
82
116
|
),
|
|
83
|
-
children: l && /* @__PURE__ */
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
117
|
+
children: s && l === "flow" && /* @__PURE__ */ e(w, { children: [
|
|
118
|
+
/* @__PURE__ */ d(
|
|
119
|
+
f,
|
|
120
|
+
{
|
|
121
|
+
size: "xs",
|
|
122
|
+
className: t(
|
|
123
|
+
"shrink-0",
|
|
124
|
+
a ? "text-destructive" : "text-content-muted"
|
|
125
|
+
)
|
|
126
|
+
}
|
|
127
|
+
),
|
|
128
|
+
/* @__PURE__ */ d(
|
|
129
|
+
"p",
|
|
130
|
+
{
|
|
131
|
+
className: t(
|
|
132
|
+
"min-w-0 text-[12px] font-medium leading-[18px] text-navigation-muted",
|
|
133
|
+
a && "text-destructive"
|
|
134
|
+
),
|
|
135
|
+
children: s
|
|
136
|
+
}
|
|
137
|
+
)
|
|
138
|
+
] })
|
|
93
139
|
}
|
|
94
140
|
),
|
|
95
|
-
|
|
141
|
+
c && /* @__PURE__ */ e(
|
|
96
142
|
"div",
|
|
97
143
|
{
|
|
98
|
-
className: "text-[
|
|
144
|
+
className: "text-[12px] font-medium leading-[18px] text-navigation-muted text-right",
|
|
99
145
|
"data-component": "character-count-indicator",
|
|
100
146
|
children: [
|
|
101
|
-
|
|
147
|
+
p,
|
|
102
148
|
"/",
|
|
103
|
-
|
|
149
|
+
c
|
|
104
150
|
]
|
|
105
151
|
}
|
|
106
152
|
)
|
|
@@ -108,7 +154,7 @@ const v = p(
|
|
|
108
154
|
] });
|
|
109
155
|
}
|
|
110
156
|
);
|
|
111
|
-
|
|
157
|
+
k.displayName = "Textarea";
|
|
112
158
|
export {
|
|
113
|
-
|
|
159
|
+
k as Textarea
|
|
114
160
|
};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import type * as React from "react";
|
|
2
|
+
export interface SavedTableViewItem {
|
|
3
|
+
id: string;
|
|
4
|
+
viewName: string;
|
|
5
|
+
/** Used with view type badges (e.g. Personal / Global). */
|
|
6
|
+
viewType?: string;
|
|
7
|
+
isActive?: boolean;
|
|
8
|
+
isEditable?: boolean;
|
|
9
|
+
isDeletable?: boolean;
|
|
10
|
+
isDefaultView?: boolean;
|
|
11
|
+
/** When true, hide the default-view star control (legacy `notReqDefaultView`). */
|
|
12
|
+
hideDefaultStar?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export interface TableViewTypeOption {
|
|
15
|
+
value: string;
|
|
16
|
+
label: string;
|
|
17
|
+
}
|
|
18
|
+
/** Passed to callbacks so hosts can correlate with the active badge view. */
|
|
19
|
+
export interface DataTableSavedViewsActionContext {
|
|
20
|
+
/** View currently marked active in `views` (shown on the summary badge). */
|
|
21
|
+
activeView: SavedTableViewItem | null;
|
|
22
|
+
}
|
|
23
|
+
/** Passed to `onCancel` — includes pending row selection inside the menu. */
|
|
24
|
+
export interface DataTableSavedViewsCancelContext extends DataTableSavedViewsActionContext {
|
|
25
|
+
/** Row highlighted for Apply before the user canceled. */
|
|
26
|
+
pendingView: SavedTableViewItem | null;
|
|
27
|
+
}
|
|
28
|
+
export interface DataTableSavedViewsProps {
|
|
29
|
+
/**
|
|
30
|
+
* When false, renders nothing (legacy `isSaveViewEnabled`).
|
|
31
|
+
* @default true
|
|
32
|
+
*/
|
|
33
|
+
isSaveViewEnabled?: boolean;
|
|
34
|
+
/** Saved views to list in the menu. */
|
|
35
|
+
views: SavedTableViewItem[];
|
|
36
|
+
/**
|
|
37
|
+
* Summary label for the trigger badge when no active view is found in `views`.
|
|
38
|
+
* If omitted, uses the active view's `viewName` or i18n `notApplicable`.
|
|
39
|
+
*/
|
|
40
|
+
activeViewSummary?: string;
|
|
41
|
+
/** Extra badge filters after "All" (legacy `saveViewCustomFilter.options`). */
|
|
42
|
+
viewTypeOptions?: TableViewTypeOption[];
|
|
43
|
+
/** Controlled menu open state. */
|
|
44
|
+
menuOpen?: boolean;
|
|
45
|
+
/** @default false */
|
|
46
|
+
defaultMenuOpen?: boolean;
|
|
47
|
+
onMenuOpenChange?: (open: boolean) => void;
|
|
48
|
+
/**
|
|
49
|
+
* Optional server-side search: receives debounced query; parent updates `views`.
|
|
50
|
+
* When provided, local client-side filtering by search text is skipped (see FilterSummary pattern).
|
|
51
|
+
*/
|
|
52
|
+
onSearch?: (query: string) => void;
|
|
53
|
+
isLoadingViews?: boolean;
|
|
54
|
+
/** Replace the scrollable list body entirely (legacy `customRenderSaveViewContent`). */
|
|
55
|
+
customListContent?: React.ReactNode;
|
|
56
|
+
/** Disable the Apply button (typically when `customListContent` is used). */
|
|
57
|
+
disableApply?: boolean;
|
|
58
|
+
className?: string;
|
|
59
|
+
/** Create/save flow; `activeView` is the baseline view (badge) when opening save. */
|
|
60
|
+
onSaveViewClick?: (context: DataTableSavedViewsActionContext) => void;
|
|
61
|
+
/** Apply pending row; `selectedView` matches the highlighted row (may be null). */
|
|
62
|
+
onApply?: (selectedView: SavedTableViewItem | null, context: DataTableSavedViewsActionContext) => void;
|
|
63
|
+
/** User closed the menu without applying; includes pending selection. */
|
|
64
|
+
onCancel?: (context: DataTableSavedViewsCancelContext) => void;
|
|
65
|
+
onEditView?: (view: SavedTableViewItem, context: DataTableSavedViewsActionContext) => void;
|
|
66
|
+
/**
|
|
67
|
+
* Called after the user confirms delete in the destructive Prompt.
|
|
68
|
+
*/
|
|
69
|
+
onDeleteView?: (view: SavedTableViewItem, context: DataTableSavedViewsActionContext) => void;
|
|
70
|
+
onSetDefaultView?: (view: SavedTableViewItem, context: DataTableSavedViewsActionContext) => void;
|
|
71
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* - `flow` — helper text is in normal document flow and reserves vertical space.
|
|
3
|
+
* - `absolute` — helper is positioned under the control without expanding the field wrapper (may overlap content below if not spaced).
|
|
4
|
+
*/
|
|
5
|
+
export type HelperTextPosition = "flow" | "absolute";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
+
import { HelperTextPosition } from './helper-text.types';
|
|
2
3
|
export interface Option {
|
|
3
4
|
label: string | ReactNode;
|
|
4
5
|
value: string;
|
|
@@ -213,6 +214,11 @@ export interface SelectProps<OptionType extends Option = Option, IsMulti extends
|
|
|
213
214
|
* The helper text content displayed below the input.
|
|
214
215
|
*/
|
|
215
216
|
helperText?: string;
|
|
217
|
+
/**
|
|
218
|
+
* Whether helper text is in layout flow or absolutely positioned under the trigger.
|
|
219
|
+
* @default "absolute"
|
|
220
|
+
*/
|
|
221
|
+
helperTextPosition?: HelperTextPosition;
|
|
216
222
|
/**
|
|
217
223
|
* Callback fired when the menu is scrolled to the bottom.
|
|
218
224
|
*/
|
|
@@ -116,6 +116,25 @@ export interface DataTableMessages {
|
|
|
116
116
|
numericK: string;
|
|
117
117
|
numericM: string;
|
|
118
118
|
numericB: string;
|
|
119
|
+
/** Saved table views (toolbar / settings sheet) */
|
|
120
|
+
savedViewsNotApplicable: string;
|
|
121
|
+
savedViewsOpenMenu: string;
|
|
122
|
+
savedViewsTitle: string;
|
|
123
|
+
savedViewsDefault: string;
|
|
124
|
+
savedViewsAll: string;
|
|
125
|
+
savedViewsSearchPlaceholder: string;
|
|
126
|
+
savedViewsEmptyList: string;
|
|
127
|
+
savedViewsCancel: string;
|
|
128
|
+
savedViewsApply: string;
|
|
129
|
+
savedViewsNoneYet: string;
|
|
130
|
+
savedViewsSave: string;
|
|
131
|
+
savedViewsEdit: string;
|
|
132
|
+
savedViewsDelete: string;
|
|
133
|
+
savedViewsDefaultAction: string;
|
|
134
|
+
savedViewsSetDefault: string;
|
|
135
|
+
savedViewsDeleteConfirmTitle: string;
|
|
136
|
+
savedViewsDeleteConfirmDescription: string;
|
|
137
|
+
savedViewsDeleteConfirmButton: string;
|
|
119
138
|
}
|
|
120
139
|
export interface AriaMessages {
|
|
121
140
|
close: string;
|
|
@@ -68,7 +68,7 @@ const e = {
|
|
|
68
68
|
unselectAll: "Unselect All",
|
|
69
69
|
clear: "Clear",
|
|
70
70
|
selectedCount: "Selected ({{count}})"
|
|
71
|
-
},
|
|
71
|
+
}, s = {
|
|
72
72
|
searchPlaceholder: "Search...",
|
|
73
73
|
apply: "Apply",
|
|
74
74
|
reset: "Reset",
|
|
@@ -99,8 +99,26 @@ const e = {
|
|
|
99
99
|
numericFull: "Full Number",
|
|
100
100
|
numericK: "In K (Thousands)",
|
|
101
101
|
numericM: "In M (Millions)",
|
|
102
|
-
numericB: "In B (Billions)"
|
|
103
|
-
|
|
102
|
+
numericB: "In B (Billions)",
|
|
103
|
+
savedViewsNotApplicable: "Not applicable",
|
|
104
|
+
savedViewsOpenMenu: "Open saved views",
|
|
105
|
+
savedViewsTitle: "Saved views",
|
|
106
|
+
savedViewsDefault: "Default",
|
|
107
|
+
savedViewsAll: "All",
|
|
108
|
+
savedViewsSearchPlaceholder: "Search here...",
|
|
109
|
+
savedViewsEmptyList: "No saved views match your filters.",
|
|
110
|
+
savedViewsCancel: "Cancel",
|
|
111
|
+
savedViewsApply: "Apply",
|
|
112
|
+
savedViewsNoneYet: "No views saved yet",
|
|
113
|
+
savedViewsSave: "Save View",
|
|
114
|
+
savedViewsEdit: "Edit view",
|
|
115
|
+
savedViewsDelete: "Delete view",
|
|
116
|
+
savedViewsDefaultAction: "Default view",
|
|
117
|
+
savedViewsSetDefault: "Set as default view",
|
|
118
|
+
savedViewsDeleteConfirmTitle: "Delete saved view?",
|
|
119
|
+
savedViewsDeleteConfirmDescription: 'This will permanently delete "{{viewName}}". You cannot undo this action.',
|
|
120
|
+
savedViewsDeleteConfirmButton: "Delete"
|
|
121
|
+
}, r = {
|
|
104
122
|
close: "Close",
|
|
105
123
|
breadcrumb: "breadcrumb",
|
|
106
124
|
remove: "Remove",
|
|
@@ -129,23 +147,23 @@ const e = {
|
|
|
129
147
|
deleteFilter: "Delete",
|
|
130
148
|
setAsDefault: "Set as default",
|
|
131
149
|
defaultFilter: "Default"
|
|
132
|
-
},
|
|
150
|
+
}, d = {
|
|
133
151
|
filtersAppliedCount: "{{count}} filters applied",
|
|
134
152
|
savedFiltersAvailableCount: "{{count}} Saved filters available",
|
|
135
153
|
tabContainsErrors: "This tab contains errors",
|
|
136
154
|
tabHasWarnings: "This tab has warnings",
|
|
137
155
|
additionalInfoAvailable: "Additional information available"
|
|
138
|
-
},
|
|
156
|
+
}, u = {
|
|
139
157
|
title: "Notifications",
|
|
140
158
|
description: "Notifications"
|
|
141
159
|
}, m = {
|
|
142
160
|
scrollLeft: "Scroll left",
|
|
143
161
|
scrollRight: "Scroll right"
|
|
144
|
-
},
|
|
162
|
+
}, f = {
|
|
145
163
|
viewMore: "View More",
|
|
146
164
|
viewLess: "View Less",
|
|
147
165
|
logout: "Logout"
|
|
148
|
-
},
|
|
166
|
+
}, h = {
|
|
149
167
|
stepOfTotal: "Step {{current}} of {{total}}"
|
|
150
168
|
}, p = {
|
|
151
169
|
title: "Advanced Filter",
|
|
@@ -191,24 +209,24 @@ const e = {
|
|
|
191
209
|
clickForDetails: "Click for details",
|
|
192
210
|
information: "Information",
|
|
193
211
|
noInformationAvailable: "No information available for this column."
|
|
194
|
-
},
|
|
212
|
+
}, v = {
|
|
195
213
|
calendar: e,
|
|
196
214
|
datePicker: t,
|
|
197
215
|
filter: a,
|
|
198
216
|
select: o,
|
|
199
|
-
nestedList:
|
|
217
|
+
nestedList: s,
|
|
200
218
|
dataTable: n,
|
|
201
|
-
aria:
|
|
219
|
+
aria: r,
|
|
202
220
|
prompt: i,
|
|
203
221
|
filterStrip: c,
|
|
204
|
-
filterPanel:
|
|
222
|
+
filterPanel: d,
|
|
205
223
|
advancedFilter: p,
|
|
206
224
|
gridHeader: S,
|
|
207
|
-
notificationPanel:
|
|
225
|
+
notificationPanel: u,
|
|
208
226
|
horizontalScroller: m,
|
|
209
|
-
sidebar:
|
|
210
|
-
stepper:
|
|
227
|
+
sidebar: f,
|
|
228
|
+
stepper: h
|
|
211
229
|
};
|
|
212
230
|
export {
|
|
213
|
-
|
|
231
|
+
v as defaultMessages
|
|
214
232
|
};
|
package/dist/i18n/locales/de.js
CHANGED
|
@@ -105,7 +105,25 @@ const e = {
|
|
|
105
105
|
numericFull: "Vollständige Zahl",
|
|
106
106
|
numericK: "In T (Tausender)",
|
|
107
107
|
numericM: "In M (Millionen)",
|
|
108
|
-
numericB: "In Mrd (Milliarden)"
|
|
108
|
+
numericB: "In Mrd (Milliarden)",
|
|
109
|
+
savedViewsNotApplicable: "Nicht zutreffend",
|
|
110
|
+
savedViewsOpenMenu: "Gespeicherte Ansichten öffnen",
|
|
111
|
+
savedViewsTitle: "Gespeicherte Ansichten",
|
|
112
|
+
savedViewsDefault: "Standard",
|
|
113
|
+
savedViewsAll: "Alle",
|
|
114
|
+
savedViewsSearchPlaceholder: "Suchen…",
|
|
115
|
+
savedViewsEmptyList: "Keine gespeicherten Ansichten entsprechen den Filtern.",
|
|
116
|
+
savedViewsCancel: "Abbrechen",
|
|
117
|
+
savedViewsApply: "Übernehmen",
|
|
118
|
+
savedViewsNoneYet: "Noch keine Ansichten gespeichert",
|
|
119
|
+
savedViewsSave: "Ansicht speichern",
|
|
120
|
+
savedViewsEdit: "Ansicht bearbeiten",
|
|
121
|
+
savedViewsDelete: "Ansicht löschen",
|
|
122
|
+
savedViewsDefaultAction: "Standardansicht",
|
|
123
|
+
savedViewsSetDefault: "Als Standard festlegen",
|
|
124
|
+
savedViewsDeleteConfirmTitle: "Gespeicherte Ansicht löschen?",
|
|
125
|
+
savedViewsDeleteConfirmDescription: "„{{viewName}}“ wird dauerhaft gelöscht. Diese Aktion kann nicht rückgängig gemacht werden.",
|
|
126
|
+
savedViewsDeleteConfirmButton: "Löschen"
|
|
109
127
|
},
|
|
110
128
|
aria: {
|
|
111
129
|
close: "Schließen",
|
package/dist/i18n/locales/es.js
CHANGED
|
@@ -105,7 +105,25 @@ const e = {
|
|
|
105
105
|
numericFull: "Número completo",
|
|
106
106
|
numericK: "En K (miles)",
|
|
107
107
|
numericM: "En M (millones)",
|
|
108
|
-
numericB: "En B (miles de millones)"
|
|
108
|
+
numericB: "En B (miles de millones)",
|
|
109
|
+
savedViewsNotApplicable: "No aplica",
|
|
110
|
+
savedViewsOpenMenu: "Abrir vistas guardadas",
|
|
111
|
+
savedViewsTitle: "Vistas guardadas",
|
|
112
|
+
savedViewsDefault: "Predeterminado",
|
|
113
|
+
savedViewsAll: "Todos",
|
|
114
|
+
savedViewsSearchPlaceholder: "Buscar aquí...",
|
|
115
|
+
savedViewsEmptyList: "Ninguna vista guardada coincide con los filtros.",
|
|
116
|
+
savedViewsCancel: "Cancelar",
|
|
117
|
+
savedViewsApply: "Aplicar",
|
|
118
|
+
savedViewsNoneYet: "Aún no hay vistas guardadas",
|
|
119
|
+
savedViewsSave: "Guardar vista",
|
|
120
|
+
savedViewsEdit: "Editar vista",
|
|
121
|
+
savedViewsDelete: "Eliminar vista",
|
|
122
|
+
savedViewsDefaultAction: "Vista predeterminada",
|
|
123
|
+
savedViewsSetDefault: "Establecer como predeterminada",
|
|
124
|
+
savedViewsDeleteConfirmTitle: "¿Eliminar vista guardada?",
|
|
125
|
+
savedViewsDeleteConfirmDescription: "Se eliminará permanentemente «{{viewName}}». Esta acción no se puede deshacer.",
|
|
126
|
+
savedViewsDeleteConfirmButton: "Eliminar"
|
|
109
127
|
},
|
|
110
128
|
aria: {
|
|
111
129
|
close: "Cerrar",
|
package/dist/i18n/locales/hi.js
CHANGED
|
@@ -105,7 +105,25 @@ const e = {
|
|
|
105
105
|
numericFull: "पूर्ण संख्या",
|
|
106
106
|
numericK: "हज़ार में (K)",
|
|
107
107
|
numericM: "मिलियन में (M)",
|
|
108
|
-
numericB: "बिलियन में (B)"
|
|
108
|
+
numericB: "बिलियन में (B)",
|
|
109
|
+
savedViewsNotApplicable: "लागू नहीं",
|
|
110
|
+
savedViewsOpenMenu: "सहेजे गए व्यू खोलें",
|
|
111
|
+
savedViewsTitle: "सहेजे गए व्यू",
|
|
112
|
+
savedViewsDefault: "डिफ़ॉल्ट",
|
|
113
|
+
savedViewsAll: "सभी",
|
|
114
|
+
savedViewsSearchPlaceholder: "यहाँ खोजें...",
|
|
115
|
+
savedViewsEmptyList: "कोई सहेजा व्यू फ़िल्टर से मेल नहीं खाता।",
|
|
116
|
+
savedViewsCancel: "रद्द करें",
|
|
117
|
+
savedViewsApply: "लागू करें",
|
|
118
|
+
savedViewsNoneYet: "अभी कोई व्यू सहेजा नहीं गया",
|
|
119
|
+
savedViewsSave: "व्यू सहेजें",
|
|
120
|
+
savedViewsEdit: "व्यू संपादित करें",
|
|
121
|
+
savedViewsDelete: "व्यू हटाएँ",
|
|
122
|
+
savedViewsDefaultAction: "डिफ़ॉल्ट व्यू",
|
|
123
|
+
savedViewsSetDefault: "डिफ़ॉल्ट के रूप में सेट करें",
|
|
124
|
+
savedViewsDeleteConfirmTitle: "सहेजा व्यू हटाएँ?",
|
|
125
|
+
savedViewsDeleteConfirmDescription: "«{{viewName}}» स्थायी रूप से हटा दिया जाएगा। इसे पूर्ववत नहीं किया जा सकता।",
|
|
126
|
+
savedViewsDeleteConfirmButton: "हटाएँ"
|
|
109
127
|
},
|
|
110
128
|
aria: {
|
|
111
129
|
close: "बंद करें",
|
package/dist/i18n/locales/kn.js
CHANGED
|
@@ -105,7 +105,25 @@ const e = {
|
|
|
105
105
|
numericFull: "ಪೂರ್ಣ ಸಂಖ್ಯೆ",
|
|
106
106
|
numericK: "ಸಾವಿರದಲ್ಲಿ (K)",
|
|
107
107
|
numericM: "ಮಿಲಿಯನ್ನಲ್ಲಿ (M)",
|
|
108
|
-
numericB: "ಬಿಲಿಯನ್ನಲ್ಲಿ (B)"
|
|
108
|
+
numericB: "ಬಿಲಿಯನ್ನಲ್ಲಿ (B)",
|
|
109
|
+
savedViewsNotApplicable: "ಅನ್ವಯಿಸುವುದಿಲ್ಲ",
|
|
110
|
+
savedViewsOpenMenu: "ಉಳಿಸಿದ ವೀಕ್ಷಣೆಗಳನ್ನು ತೆರೆಯಿರಿ",
|
|
111
|
+
savedViewsTitle: "ಉಳಿಸಿದ ವೀಕ್ಷಣೆಗಳು",
|
|
112
|
+
savedViewsDefault: "ಡೀಫಾಲ್ಟ್",
|
|
113
|
+
savedViewsAll: "ಎಲ್ಲಾ",
|
|
114
|
+
savedViewsSearchPlaceholder: "ಇಲ್ಲಿ ಹುಡುಕಿ...",
|
|
115
|
+
savedViewsEmptyList: "ಯಾವುದೇ ಉಳಿಸಿದ ವೀಕ್ಷಣೆಗಳು ಫಿಲ್ಟರ್ಗಳಿಗೆ ಹೊಂದುವುದಿಲ್ಲ.",
|
|
116
|
+
savedViewsCancel: "ರದ್ದುಮಾಡಿ",
|
|
117
|
+
savedViewsApply: "ಅನ್ವಯಿಸಿ",
|
|
118
|
+
savedViewsNoneYet: "ಇನ್ನೂ ವೀಕ್ಷಣೆಗಳನ್ನು ಉಳಿಸಲಾಗಿಲ್ಲ",
|
|
119
|
+
savedViewsSave: "ವೀಕ್ಷಣೆ ಉಳಿಸಿ",
|
|
120
|
+
savedViewsEdit: "ವೀಕ್ಷಣೆ ಸಂಪಾದಿಸಿ",
|
|
121
|
+
savedViewsDelete: "ವೀಕ್ಷಣೆ ಅಳಿಸಿ",
|
|
122
|
+
savedViewsDefaultAction: "ಡೀಫಾಲ್ಟ್ ವೀಕ್ಷಣೆ",
|
|
123
|
+
savedViewsSetDefault: "ಡೀಫಾಲ್ಟ್ ಆಗಿ ಹೊಂದಿಸಿ",
|
|
124
|
+
savedViewsDeleteConfirmTitle: "ಉಳಿಸಿದ ವೀಕ್ಷಣೆಯನ್ನು ಅಳಿಸುವುದೇ?",
|
|
125
|
+
savedViewsDeleteConfirmDescription: "«{{viewName}}» ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲಾಗುತ್ತದೆ. ಈ ಕ್ರಿಯೆಯನ್ನು ರದ್ದುಮಾಡಲಾಗುವುದಿಲ್ಲ.",
|
|
126
|
+
savedViewsDeleteConfirmButton: "ಅಳಿಸಿ"
|
|
109
127
|
},
|
|
110
128
|
aria: {
|
|
111
129
|
close: "ಮುಚ್ಚಿ",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as H from "react";
|
|
2
|
-
const e = (V) => /* @__PURE__ */ H.createElement("svg", { width:
|
|
2
|
+
const e = (V) => /* @__PURE__ */ H.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 20, height: 20, viewBox: "0 0 20 20", fill: "none", ...V }, /* @__PURE__ */ H.createElement("path", { d: "M10.553 7.99535V1.96997H18.0286V7.99535H10.553ZM1.96875 10.8486V1.96997H9.44429V10.8486H1.96875ZM10.553 18.0063V9.11583H18.0286V18.0063H10.553ZM1.96875 18.0063V11.9691H9.44429V18.0063H1.96875ZM3.63092 9.19824H7.79394V3.62035H3.63092V9.19824ZM12.2152 16.3441H16.3782V10.778H12.2152V16.3441ZM12.2152 6.34497H16.3782V3.62035H12.2152V6.34497ZM3.63092 16.3441H7.79394V13.6313H3.63092V16.3441Z", fill: "currentColor" }));
|
|
3
3
|
export {
|
|
4
4
|
e as default
|
|
5
5
|
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as C from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ C.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 13, height: 12, viewBox: "0 0 13 12", fill: "none", ...e }, /* @__PURE__ */ C.createElement("path", { d: "M1.33333 12C1.14444 12 0.986111 11.9361 0.858333 11.8083C0.730556 11.6806 0.666667 11.5222 0.666667 11.3333V9.71667C0.666667 9.53889 0.7 9.36944 0.766667 9.20833C0.833333 9.04722 0.927778 8.90556 1.05 8.78333L9.45 0.4C9.58333 0.266667 9.73333 0.166667 9.9 0.1C10.0667 0.0333333 10.2333 0 10.4 0C10.5778 0 10.7472 0.0333333 10.9083 0.1C11.0694 0.166667 11.2111 0.266667 11.3333 0.4L12.2667 1.33333C12.4 1.45556 12.5 1.59722 12.5667 1.75833C12.6333 1.91944 12.6667 2.08889 12.6667 2.26667C12.6667 2.43333 12.6333 2.6 12.5667 2.76667C12.5 2.93333 12.4 3.08333 12.2667 3.21667L3.88333 11.6167C3.76111 11.7389 3.61944 11.8333 3.45833 11.9C3.29722 11.9667 3.12778 12 2.95 12H1.33333ZM2 10.6667H2.93333L9.48333 4.13333L9.01667 3.65L8.53333 3.18333L2 9.73333V10.6667ZM9.01667 3.65L8.53333 3.18333L9.48333 4.13333L9.01667 3.65ZM7.33333 12C8.15556 12 8.91667 11.7944 9.61667 11.3833C10.3167 10.9722 10.6667 10.4 10.6667 9.66667C10.6667 9.31111 10.5778 9.00278 10.4 8.74167C10.2222 8.48056 9.98889 8.23889 9.7 8.01667C9.54444 7.90556 9.37778 7.85 9.2 7.85C9.02222 7.85 8.87222 7.91667 8.75 8.05C8.62778 8.18333 8.56667 8.34722 8.56667 8.54167C8.56667 8.73611 8.64444 8.88889 8.8 9C8.95556 9.12222 9.08333 9.23333 9.18333 9.33333C9.28333 9.43333 9.33333 9.54444 9.33333 9.66667C9.33333 9.92222 9.13056 10.1528 8.725 10.3583C8.31944 10.5639 7.85556 10.6667 7.33333 10.6667C7.14444 10.6667 6.98611 10.7306 6.85833 10.8583C6.73056 10.9861 6.66667 11.1444 6.66667 11.3333C6.66667 11.5222 6.73056 11.6806 6.85833 11.8083C6.98611 11.9361 7.14444 12 7.33333 12ZM4 2C4 2.15556 3.90278 2.29722 3.70833 2.425C3.51389 2.55278 3.06667 2.77778 2.36667 3.1C1.47778 3.48889 0.861111 3.84167 0.516667 4.15833C0.172222 4.475 0 4.86667 0 5.33333C0 5.62222 0.0666667 5.87778 0.2 6.1C0.333333 6.32222 0.505556 6.51667 0.716667 6.68333C0.861111 6.80556 1.02222 6.85833 1.2 6.84167C1.37778 6.825 1.52778 6.74444 1.65 6.6C1.77222 6.45556 1.82778 6.29444 1.81667 6.11667C1.80556 5.93889 1.72778 5.78889 1.58333 5.66667C1.50556 5.61111 1.44444 5.55556 1.4 5.5C1.35556 5.44444 1.33333 5.38889 1.33333 5.33333C1.33333 5.2 1.43333 5.06667 1.63333 4.93333C1.83333 4.8 2.25556 4.59444 2.9 4.31667C3.87778 3.89444 4.52778 3.51111 4.85 3.16667C5.17222 2.82222 5.33333 2.43333 5.33333 2C5.33333 1.38889 5.08889 0.902778 4.6 0.541667C4.11111 0.180556 3.46667 0 2.66667 0C2.16667 0 1.71944 0.0888889 1.325 0.266667C0.930556 0.444444 0.627778 0.661111 0.416667 0.916667C0.294444 1.06111 0.244444 1.22222 0.266667 1.4C0.288889 1.57778 0.372222 1.72222 0.516667 1.83333C0.661111 1.95556 0.822222 2.00556 1 1.98333C1.17778 1.96111 1.32778 1.88889 1.45 1.76667C1.60556 1.61111 1.77778 1.5 1.96667 1.43333C2.15556 1.36667 2.38889 1.33333 2.66667 1.33333C3.12222 1.33333 3.45833 1.4 3.675 1.53333C3.89167 1.66667 4 1.82222 4 2Z", fill: "currentColor" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const r = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 20, viewBox: "0 0 24 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("rect", { x: 0.5, y: 0.5, width: 23, height: 19, rx: 9.5, fill: "white" }), /* @__PURE__ */ e.createElement("rect", { x: 0.5, y: 0.5, width: 23, height: 19, rx: 9.5, stroke: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M12.0018 15.9463C11.6351 15.9463 11.3212 15.8157 11.0601 15.5546C10.799 15.2935 10.6685 14.9796 10.6685 14.613C10.6685 14.2463 10.799 13.9324 11.0601 13.6713C11.3212 13.4102 11.6351 13.2796 12.0018 13.2796C12.3685 13.2796 12.6823 13.4102 12.9435 13.6713C13.2046 13.9324 13.3351 14.2463 13.3351 14.613C13.3351 14.9796 13.2046 15.2935 12.9435 15.5546C12.6823 15.8157 12.3685 15.9463 12.0018 15.9463ZM12.0018 11.9463C11.6351 11.9463 11.3212 11.8157 11.0601 11.5546C10.799 11.2935 10.6685 10.9796 10.6685 10.613V5.27962C10.6685 4.91296 10.799 4.59907 11.0601 4.33796C11.3212 4.07684 11.6351 3.94629 12.0018 3.94629C12.3685 3.94629 12.6823 4.07684 12.9435 4.33796C13.2046 4.59907 13.3351 4.91296 13.3351 5.27962V10.613C13.3351 10.9796 13.2046 11.2935 12.9435 11.5546C12.6823 11.8157 12.3685 11.9463 12.0018 11.9463Z", fill: "currentColor" }));
|
|
3
|
+
export {
|
|
4
|
+
r as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as t from "react";
|
|
2
|
+
const e = (C) => /* @__PURE__ */ t.createElement("svg", { width: 16, height: 16, viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...C }, /* @__PURE__ */ t.createElement("path", { d: "M8.00179 13.9463C7.63512 13.9463 7.32123 13.8157 7.06012 13.5546C6.79901 13.2935 6.66846 12.9796 6.66846 12.613C6.66846 12.2463 6.79901 11.9324 7.06012 11.6713C7.32123 11.4102 7.63512 11.2796 8.00179 11.2796C8.36846 11.2796 8.68235 11.4102 8.94346 11.6713C9.20457 11.9324 9.33512 12.2463 9.33512 12.613C9.33512 12.9796 9.20457 13.2935 8.94346 13.5546C8.68235 13.8157 8.36846 13.9463 8.00179 13.9463ZM8.00179 9.94629C7.63512 9.94629 7.32123 9.81573 7.06012 9.55462C6.79901 9.29351 6.66846 8.97962 6.66846 8.61296V3.27962C6.66846 2.91296 6.79901 2.59907 7.06012 2.33796C7.32123 2.07684 7.63512 1.94629 8.00179 1.94629C8.36846 1.94629 8.68235 2.07684 8.94346 2.33796C9.20457 2.59907 9.33512 2.91296 9.33512 3.27962V8.61296C9.33512 8.97962 9.20457 9.29351 8.94346 9.55462C8.68235 9.81573 8.36846 9.94629 8.00179 9.94629Z", fill: "currentColor" }));
|
|
3
|
+
export {
|
|
4
|
+
e as default
|
|
5
|
+
};
|