impact-nova 1.7.5 → 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/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/textarea.d.ts +3 -0
- package/dist/components/ui/textarea.js +104 -58
- 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/icons/assets/createNewDocument.svg.js +2 -2
- 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/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/package.json +1 -1
|
@@ -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,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
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as C from "react";
|
|
2
|
-
const
|
|
2
|
+
const e = (V) => /* @__PURE__ */ C.createElement("svg", { width: 18, height: 18, viewBox: "0 0 18 18", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...V }, /* @__PURE__ */ C.createElement("path", { d: "M1.79437 15.6398C1.40404 15.6398 1.0699 15.5004 0.791938 15.2214C0.513979 14.9425 0.375 14.6072 0.375 14.2155V1.80512C0.375 1.4148 0.513979 1.08065 0.791938 0.80268C1.0699 0.524721 1.40404 0.385742 1.79437 0.385742H14.2047C14.5964 0.385742 14.9317 0.524721 15.2107 0.80268C15.4896 1.08065 15.6291 1.4148 15.6291 1.80512V8.78883C15.4081 8.65115 15.1758 8.53845 14.9323 8.45074C14.6888 8.36302 14.4463 8.29505 14.2047 8.24683V1.80512H1.79437V14.2155H8.13679C8.18599 14.4709 8.24879 14.7189 8.32519 14.9595C8.40159 15.2002 8.49473 15.4269 8.6046 15.6398H1.79437ZM1.79437 13.3558V14.2155V1.80512V8.2467V8.16835V13.3558ZM3.87771 12.1321H8.20877C8.26766 11.9099 8.33515 11.6955 8.41123 11.4888C8.48731 11.2821 8.5859 11.0799 8.70698 10.8821H3.87771V12.1321ZM3.87771 8.63528H11.0394C11.2206 8.55799 11.3949 8.4944 11.5625 8.44451C11.7301 8.39463 11.9164 8.34258 12.1214 8.28837V7.38528H3.87771V8.63528ZM3.87771 5.13845H12.1214V3.88845H3.87771V5.13845ZM13.2151 17.2259C12.1387 17.2259 11.2186 16.8413 10.4547 16.0721C9.69082 15.3029 9.30888 14.3889 9.30888 13.33C9.30888 12.244 9.69075 11.3162 10.4545 10.5467C11.2183 9.77727 12.1419 9.39253 13.2255 9.39253C14.295 9.39253 15.2151 9.77727 15.986 10.5467C16.7568 11.3162 17.1422 12.244 17.1422 13.33C17.1422 14.3889 16.7568 15.3029 15.986 16.0721C15.2151 16.8413 14.2915 17.2259 13.2151 17.2259ZM12.8582 16.0357H13.6553V13.744H15.947V12.9419H13.6553V10.6502H12.8582V12.9419H10.5666V13.744H12.8582V16.0357Z", 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
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const A = "data:image/webp;base64,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";
|
|
2
|
+
export {
|
|
3
|
+
A as default
|
|
4
|
+
};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -53,12 +53,15 @@ export declare const Download: IconComponent;
|
|
|
53
53
|
export declare const CircleTick: IconComponent;
|
|
54
54
|
export declare const CircleCross: IconComponent;
|
|
55
55
|
export declare const Info: IconComponent;
|
|
56
|
+
export declare const PriorityAlert: IconComponent;
|
|
57
|
+
export declare const InfoBadge: IconComponent;
|
|
56
58
|
export declare const Blocks: IconComponent;
|
|
57
59
|
export declare const Document: IconComponent;
|
|
58
60
|
export declare const Settings: IconComponent;
|
|
59
61
|
export declare const CommandPallet: IconComponent;
|
|
60
62
|
export declare const AnalyticalSearch: IconComponent;
|
|
61
63
|
export declare const Draw: IconComponent;
|
|
64
|
+
export declare const DrawBrush: IconComponent;
|
|
62
65
|
export declare const Alerts: IconComponent;
|
|
63
66
|
export declare const CreateNewDocument: IconComponent;
|
|
64
67
|
export declare const ChevronRight: IconComponent;
|
|
@@ -149,6 +152,7 @@ export declare const Warning3d: ImageComponent;
|
|
|
149
152
|
export declare const Delete3d: ImageComponent;
|
|
150
153
|
export declare const Info3d: ImageComponent;
|
|
151
154
|
export declare const Success3d: ImageComponent;
|
|
155
|
+
export declare const Sales: ImageComponent;
|
|
152
156
|
export declare const BulkEdit: IconComponent;
|
|
153
157
|
export declare const Layer: IconComponent;
|
|
154
158
|
export declare const IconRegistry: Record<string, IconComponent | ImageComponent>;
|