impact-nova 1.5.8 → 1.5.10
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { VariantProps } from 'class-variance-authority';
|
|
2
2
|
import { buttonVariants } from './button-variants';
|
|
3
|
+
import { KeyBinding } from './command-palette/utils';
|
|
3
4
|
import * as React from "react";
|
|
4
5
|
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
5
6
|
/**
|
|
@@ -15,6 +16,12 @@ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Var
|
|
|
15
16
|
* @default "top"
|
|
16
17
|
*/
|
|
17
18
|
tooltipSide?: "top" | "bottom" | "left" | "right";
|
|
19
|
+
/**
|
|
20
|
+
* Optional keyboard shortcut keybinding to display in the tooltip
|
|
21
|
+
* alongside the aria-label text as a styled Kbd badge.
|
|
22
|
+
* Only applies when the tooltip is shown (size="icon" + aria-label).
|
|
23
|
+
*/
|
|
24
|
+
tooltipKeybinding?: KeyBinding;
|
|
18
25
|
}
|
|
19
26
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
20
27
|
export { Button };
|
|
@@ -1,29 +1,34 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import * as
|
|
3
|
-
import { Slot as
|
|
1
|
+
import { jsx as a, jsxs as n } from "react/jsx-runtime";
|
|
2
|
+
import * as u from "react";
|
|
3
|
+
import { Slot as b } from "@radix-ui/react-slot";
|
|
4
4
|
import "class-variance-authority";
|
|
5
|
-
import { cn as
|
|
6
|
-
import { Tooltip as
|
|
7
|
-
import { buttonVariants as
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
import { cn as h } from "../../lib/utils.js";
|
|
6
|
+
import { Tooltip as p, TooltipTrigger as x, TooltipContent as T } from "./tooltip.js";
|
|
7
|
+
import { buttonVariants as N } from "./button-variants.js";
|
|
8
|
+
import { Kbd as C } from "./command-palette/kbd.js";
|
|
9
|
+
const I = u.forwardRef(
|
|
10
|
+
({ className: l, variant: i, size: o, asChild: s = !1, tooltipSide: m = "top", tooltipKeybinding: e, ...t }, c) => {
|
|
11
|
+
const d = s ? b : "button", f = o === "icon" && t["aria-label"] || e && t["aria-label"], r = /* @__PURE__ */ a(
|
|
12
|
+
d,
|
|
12
13
|
{
|
|
13
|
-
className:
|
|
14
|
-
"data-variant":
|
|
15
|
-
"data-size":
|
|
16
|
-
ref:
|
|
14
|
+
className: h(N({ variant: i, size: o, className: l })),
|
|
15
|
+
"data-variant": i ?? "default",
|
|
16
|
+
"data-size": o ?? "default",
|
|
17
|
+
ref: c,
|
|
17
18
|
...t
|
|
18
19
|
}
|
|
19
20
|
);
|
|
20
|
-
return
|
|
21
|
-
/* @__PURE__ */
|
|
22
|
-
/* @__PURE__ */
|
|
23
|
-
|
|
21
|
+
return f ? /* @__PURE__ */ n(p, { children: [
|
|
22
|
+
/* @__PURE__ */ a(x, { asChild: !0, children: t.disabled ? /* @__PURE__ */ a("span", { tabIndex: -1, className: "inline-block outline-none", children: r }) : r }),
|
|
23
|
+
/* @__PURE__ */ a(T, { variant: "tertiary", side: m, children: e ? /* @__PURE__ */ n("span", { className: "flex items-center gap-2", children: [
|
|
24
|
+
t["aria-label"],
|
|
25
|
+
" ",
|
|
26
|
+
/* @__PURE__ */ a(C, { keybinding: e, size: "sm" })
|
|
27
|
+
] }) : t["aria-label"] })
|
|
28
|
+
] }) : r;
|
|
24
29
|
}
|
|
25
30
|
);
|
|
26
|
-
|
|
31
|
+
I.displayName = "Button";
|
|
27
32
|
export {
|
|
28
|
-
|
|
33
|
+
I as Button
|
|
29
34
|
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const l = (t) => /* @__PURE__ */ e.createElement("svg", { width: 10, height: 12, viewBox: "0 0 10 12", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M6 1.33333L5.52 0.366667C5.40667 0.14 5.17333 0 4.92 0H0.666667C0.3 0 0 0.3 0 0.666667V10.6667C0 11.0333 0.3 11.3333 0.666667 11.3333C1.03333 11.3333 1.33333 11.0333 1.33333 10.6667V6.66667H4.66667L5.14667 7.63333C5.26 7.86 5.49333 8 5.74 8H9.33333C9.7 8 10 7.7 10 7.33333V2C10 1.63333 9.7 1.33333 9.33333 1.33333H6ZM8.66667 6.66667H6L5.33333 5.33333H1.33333V1.33333H4.66667L5.33333 2.66667H8.66667V6.66667Z", fill: "currentColor" }));
|
|
3
|
+
export {
|
|
4
|
+
l as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as C from "react";
|
|
2
|
+
const t = (e) => /* @__PURE__ */ C.createElement("svg", { width: 14, height: 12, viewBox: "0 0 14 12", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ C.createElement("path", { d: "M7.70102 0.00232676C4.30769 -0.0910066 1.52769 2.63566 1.52769 6.00233H0.334356C0.0343563 6.00233 -0.11231 6.36233 0.101023 6.56899L1.96102 8.43566C2.09436 8.56899 2.30102 8.56899 2.43436 8.43566L4.29436 6.56899C4.50102 6.36233 4.35436 6.00233 4.05436 6.00233H2.86102C2.86102 3.40233 4.98102 1.30233 7.59436 1.33566C10.0744 1.36899 12.161 3.45566 12.1944 5.93566C12.2277 8.54233 10.1277 10.669 7.52769 10.669C6.45436 10.669 5.46102 10.3023 4.67436 9.68233C4.40769 9.47566 4.03436 9.49566 3.79436 9.73566C3.51436 10.0157 3.53436 10.489 3.84769 10.729C4.86102 11.529 6.13436 12.0023 7.52769 12.0023C10.8944 12.0023 13.621 9.22233 13.5277 5.82899C13.441 2.70233 10.8277 0.0889934 7.70102 0.00232676ZM7.36102 3.33566C7.08769 3.33566 6.86102 3.56233 6.86102 3.83566V6.28899C6.86102 6.52233 6.98769 6.74233 7.18769 6.86233L9.26769 8.09566C9.50769 8.23566 9.81436 8.15566 9.95436 7.92233C10.0944 7.68233 10.0144 7.37566 9.78102 7.23566L7.86102 6.09566V3.82899C7.86102 3.56233 7.63436 3.33566 7.36102 3.33566Z", fill: "currentColor" }));
|
|
3
|
+
export {
|
|
4
|
+
t as default
|
|
5
|
+
};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -106,6 +106,10 @@ export declare const FunnelShow: IconComponent;
|
|
|
106
106
|
export declare const Trolley: IconComponent;
|
|
107
107
|
export declare const Boxed: IconComponent;
|
|
108
108
|
export declare const BoxAdd: IconComponent;
|
|
109
|
+
export declare const Rewind: IconComponent;
|
|
110
|
+
export declare const Locked: IconComponent;
|
|
111
|
+
export declare const Unlocked: IconComponent;
|
|
112
|
+
export declare const Flag: IconComponent;
|
|
109
113
|
export declare const TrendingUp: IconComponent;
|
|
110
114
|
export declare const TrendingDown: IconComponent;
|
|
111
115
|
export declare const TrendingFlat: IconComponent;
|
package/dist/icons/index.js
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
1
|
import { jsx as d } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
2
|
+
import I, { forwardRef as v } from "react";
|
|
3
3
|
import { cn as k } from "../lib/utils.js";
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
4
|
+
import h from "./assets/pin.svg.js";
|
|
5
|
+
import y from "./assets/unpin.svg.js";
|
|
6
|
+
import B from "./assets/table.svg.js";
|
|
7
|
+
import P from "./assets/chart.svg.js";
|
|
8
|
+
import w from "./assets/expand.svg.js";
|
|
9
|
+
import D from "./assets/collapse.svg.js";
|
|
10
|
+
import F from "./assets/PivotMode.svg.js";
|
|
11
11
|
import E from "./assets/back.svg.js";
|
|
12
|
-
import
|
|
12
|
+
import R from "./assets/reset.svg.js";
|
|
13
13
|
import x from "./assets/bin.svg.js";
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import
|
|
31
|
-
import
|
|
32
|
-
import
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
import
|
|
37
|
-
import
|
|
38
|
-
import
|
|
39
|
-
import
|
|
40
|
-
import
|
|
41
|
-
import
|
|
14
|
+
import T from "./assets/fiveSideStar.svg.js";
|
|
15
|
+
import M from "./assets/globe.svg.js";
|
|
16
|
+
import A from "./assets/pencil.svg.js";
|
|
17
|
+
import U from "./assets/person.svg.js";
|
|
18
|
+
import b from "./assets/plus.svg.js";
|
|
19
|
+
import L from "./assets/bookmark.svg.js";
|
|
20
|
+
import H from "./assets/bookmarkFilled.svg.js";
|
|
21
|
+
import W from "./assets/download.svg.js";
|
|
22
|
+
import N from "./assets/info-icon.svg.js";
|
|
23
|
+
import O from "./assets/multi-color-filter.svg.js";
|
|
24
|
+
import j from "./assets/blocks.svg.js";
|
|
25
|
+
import _ from "./assets/document.svg.js";
|
|
26
|
+
import G from "./assets/settings.svg.js";
|
|
27
|
+
import K from "./assets/analyticalSearch.svg.js";
|
|
28
|
+
import Z from "./assets/draw.svg.js";
|
|
29
|
+
import q from "./assets/alerts.svg.js";
|
|
30
|
+
import J from "./assets/createNewDocument.svg.js";
|
|
31
|
+
import Q from "./assets/trendingUp.svg.js";
|
|
32
|
+
import V from "./assets/trendingDown.svg.js";
|
|
33
|
+
import X from "./assets/trendingFlat.svg.js";
|
|
34
|
+
import Y from "./assets/trendingNeutral.svg.js";
|
|
35
|
+
import $ from "./assets/chevronRight.svg.js";
|
|
36
|
+
import z from "./assets/search.svg.js";
|
|
37
|
+
import oo from "./assets/checkmark.svg.js";
|
|
38
|
+
import to from "./assets/errorCircle.svg.js";
|
|
39
|
+
import ro from "./assets/email.svg.js";
|
|
40
|
+
import C from "./assets/locked.svg.js";
|
|
41
|
+
import u from "./assets/unlocked.svg.js";
|
|
42
42
|
import eo from "./assets/loadingSpinner.svg.js";
|
|
43
43
|
import no from "./assets/loginArrow.svg.js";
|
|
44
44
|
import mo from "./assets/copy.svg.js";
|
|
@@ -60,54 +60,56 @@ import ho from "./assets/matchWith.svg.js";
|
|
|
60
60
|
import yo from "./assets/delete.svg.js";
|
|
61
61
|
import Bo from "./assets/bell.svg.js";
|
|
62
62
|
import Po from "./assets/message-icon.svg.js";
|
|
63
|
-
import
|
|
64
|
-
import
|
|
65
|
-
import
|
|
66
|
-
import
|
|
67
|
-
import
|
|
68
|
-
import
|
|
69
|
-
import
|
|
63
|
+
import wo from "./assets/help-icon.svg.js";
|
|
64
|
+
import Do from "./assets/ia-logo.svg.js";
|
|
65
|
+
import Fo from "./assets/alan.svg.js";
|
|
66
|
+
import Eo from "./assets/hamburger-open.svg.js";
|
|
67
|
+
import Ro from "./assets/hamburger-closed.svg.js";
|
|
68
|
+
import xo from "./assets/stack.svg.js";
|
|
69
|
+
import To from "./assets/stack-compact.svg.js";
|
|
70
70
|
import Mo from "./assets/stack-comfort.svg.js";
|
|
71
71
|
import Ao from "./assets/density.svg.js";
|
|
72
72
|
import Uo from "./assets/three-dots.svg.js";
|
|
73
73
|
import bo from "./assets/column.svg.js";
|
|
74
|
-
import
|
|
75
|
-
import
|
|
74
|
+
import Lo from "./assets/font.svg.js";
|
|
75
|
+
import Ho from "./assets/funnel-hide.svg.js";
|
|
76
76
|
import Wo from "./assets/funnel-show.svg.js";
|
|
77
77
|
import No from "./assets/trolley.svg.js";
|
|
78
78
|
import Oo from "./assets/boxed.svg.js";
|
|
79
79
|
import jo from "./assets/boxAdd.svg.js";
|
|
80
80
|
import _o from "./assets/command-pallet.svg.js";
|
|
81
|
-
import Go from "./assets/
|
|
82
|
-
import Ko from "./assets/
|
|
83
|
-
import Zo from "./assets/webp/
|
|
84
|
-
import qo from "./assets/webp/
|
|
85
|
-
import Jo from "./assets/webp/
|
|
86
|
-
import Qo from "./assets/webp/
|
|
87
|
-
import Vo from "./assets/webp/
|
|
88
|
-
import Xo from "./assets/webp/
|
|
89
|
-
import Yo from "./assets/webp/
|
|
90
|
-
import $o from "./assets/webp/
|
|
91
|
-
import zo from "./assets/webp/
|
|
92
|
-
import ot from "./assets/webp/
|
|
93
|
-
import tt from "./assets/webp/
|
|
94
|
-
import rt from "./assets/webp/
|
|
95
|
-
import et from "./assets/webp/empty-state-
|
|
96
|
-
import nt from "./assets/webp/empty-state-
|
|
97
|
-
import mt from "./assets/webp/empty-state-
|
|
98
|
-
import it from "./assets/webp/empty-state-
|
|
99
|
-
import ct from "./assets/webp/
|
|
100
|
-
import at from "./assets/webp/
|
|
101
|
-
import st from "./assets/webp/
|
|
102
|
-
import pt from "./assets/webp/
|
|
103
|
-
import lt from "./assets/webp/
|
|
104
|
-
import gt from "./assets/webp/
|
|
105
|
-
import St from "./assets/webp/
|
|
106
|
-
import ft from "./assets/webp/
|
|
107
|
-
import dt from "./assets/webp/
|
|
108
|
-
import vt from "./assets/webp/
|
|
109
|
-
import kt from "./assets/
|
|
110
|
-
import Ct from "./assets/
|
|
81
|
+
import Go from "./assets/rewind.svg.js";
|
|
82
|
+
import Ko from "./assets/flag.svg.js";
|
|
83
|
+
import Zo from "./assets/webp/bill-or-receipt.webp.js";
|
|
84
|
+
import qo from "./assets/webp/checklist-with-pen.webp.js";
|
|
85
|
+
import Jo from "./assets/webp/dollar.webp.js";
|
|
86
|
+
import Qo from "./assets/webp/inventory-adjustment.webp.js";
|
|
87
|
+
import Vo from "./assets/webp/price-tag.webp.js";
|
|
88
|
+
import Xo from "./assets/webp/receipts-stack.webp.js";
|
|
89
|
+
import Yo from "./assets/webp/recommended-receipt.webp.js";
|
|
90
|
+
import $o from "./assets/webp/return-carton.webp.js";
|
|
91
|
+
import zo from "./assets/webp/shipping-container.webp.js";
|
|
92
|
+
import ot from "./assets/webp/stack-of-packaged-boxes.webp.js";
|
|
93
|
+
import tt from "./assets/webp/two-stacked-packaged-boxes.webp.js";
|
|
94
|
+
import rt from "./assets/webp/warranty.webp.js";
|
|
95
|
+
import et from "./assets/webp/empty-state-1.webp.js";
|
|
96
|
+
import nt from "./assets/webp/empty-state-2.webp.js";
|
|
97
|
+
import mt from "./assets/webp/empty-state-3.webp.js";
|
|
98
|
+
import it from "./assets/webp/empty-state-4.webp.js";
|
|
99
|
+
import ct from "./assets/webp/empty-state-5.webp.js";
|
|
100
|
+
import at from "./assets/webp/empty-state-6.webp.js";
|
|
101
|
+
import st from "./assets/webp/file-upload.webp.js";
|
|
102
|
+
import pt from "./assets/webp/csv-logo.webp.js";
|
|
103
|
+
import lt from "./assets/webp/excel-logo.webp.js";
|
|
104
|
+
import gt from "./assets/webp/text-logo.webp.js";
|
|
105
|
+
import St from "./assets/webp/multicolor-bell.webp.js";
|
|
106
|
+
import ft from "./assets/webp/click-me-arrow.webp.js";
|
|
107
|
+
import dt from "./assets/webp/warning-3d.webp.js";
|
|
108
|
+
import vt from "./assets/webp/delete-3d.webp.js";
|
|
109
|
+
import kt from "./assets/webp/info-3d.webp.js";
|
|
110
|
+
import Ct from "./assets/webp/success-3d.webp.js";
|
|
111
|
+
import ut from "./assets/illustration_1.svg.js";
|
|
112
|
+
import It from "./assets/backdrop.svg2.js";
|
|
111
113
|
const s = {
|
|
112
114
|
xs: 12,
|
|
113
115
|
sm: 14,
|
|
@@ -159,7 +161,7 @@ function t(m, i) {
|
|
|
159
161
|
);
|
|
160
162
|
return r.displayName = m, r.src = i, r.toString = () => i, S[m] = r, r;
|
|
161
163
|
}
|
|
162
|
-
const
|
|
164
|
+
const De = o("Pin", h), Fe = o("Unpin", y), Ee = o("Table", B), Re = o("Chart", P), xe = o("Expand", w), Te = o("Collapse", D), Me = o("PivotMode", F), Ae = o("Back", E), Ue = o("Reset", R), be = o("Bin", x), Le = o("FiveSideStar", T), He = o("Globe", M), We = o("Pencil", A), Ne = o("Person", U), Oe = o("Plus", b), je = o("Bookmark", L), _e = o("BookmarkFilled", H), Ge = o("Download", W), Ke = o("Info", N), Ze = o("Blocks", j), qe = o("Document", _), Je = o("Settings", G), Qe = o("CommandPallet", _o), Ve = o("AnalyticalSearch", K), Xe = o("Draw", Z), Ye = o("Alerts", q), $e = o("CreateNewDocument", J), ze = o("ChevronRight", $), on = o("Search", z), ht = o("Checkmark", oo), tn = ht, rn = o("ErrorCircle", to), en = o("Email", ro), nn = o("Lock", C), mn = o("Unlock", u), cn = o("LoadingSpinner", eo), an = o("LoginArrow", no), sn = o("Copy", mo), pn = o("Floppy", io), ln = o("Rocket", co), gn = o("Shapes", ao), Sn = o("Store", so), fn = o("Upload", po), dn = o("Box", lo), vn = o("Calendar", go), kn = o("CalendarMonth", So), Cn = o("Filter", fo), un = o("More", vo), In = o("Drag", ko), hn = o("Backdrop", Co, It), yn = o("Cross", uo), Bn = o("PaperRocket", Io), Pn = o("MatchWith", ho), wn = o("Delete", yo), Dn = o("Bell", Bo), Fn = o("Message", Po), En = o("Help", wo), Rn = o("IA", Do), xn = o("Alan", Fo), Tn = o("HamburgerOpen", Eo), Mn = o("HamburgerClosed", Ro), An = o("MultiColorFilter", O), Un = o("ThreeDots", Uo), bn = o("Stack", xo), Ln = o("StackCompact", To), Hn = o("StackComfort", Mo), Wn = o("Density", Ao), Nn = o("Column", bo), On = o("Font", Lo), jn = o("FunnelHide", Ho), _n = o("FunnelShow", Wo), Gn = o("Trolley", No), Kn = o("Boxed", Oo), Zn = o("BoxAdd", jo), qn = o("Rewind", Go), Jn = o("Locked", C), Qn = o("Unlocked", u), Vn = o("Flag", Ko), Xn = o("TrendingUp", Q), Yn = o("TrendingDown", V), $n = o("TrendingFlat", X), zn = o("TrendingNeutral", Y), om = o("IllustrationIcon1", ut), tm = t("BillOrReceipt", Zo), rm = t("ChecklistWithPen", qo), em = t("Dollar", Jo), nm = t("InventoryAdjustment", Qo), mm = t("PriceTag", Vo), im = t("ReceiptsStack", Xo), cm = t("RecommendedReceipt", Yo), am = t("ReturnCarton", $o), sm = t("ShippingContainer", zo), pm = t("StackOfPackagedBoxes", ot), lm = t("TwoStackedPackagedBoxes", tt), gm = t("Warranty", rt), Sm = t("EmptyState1", et), fm = t("EmptyState2", nt), dm = t("EmptyState3", mt), vm = t("EmptyState4", it), km = t("EmptyState5", ct), Cm = t("EmptyState6", at), um = t("FileUpload", st), Im = t("Csv", pt), hm = t("Excel", lt), ym = t("Text", gt), Bm = t("MulticolorBell", St), Pm = t("ClickMeArrow", ft), wm = t("Warning3d", dt), Dm = t("Delete3d", vt), Fm = t("Info3d", kt), Em = t("Success3d", Ct), g = S, Rm = (m, i) => {
|
|
163
165
|
let r = g[m];
|
|
164
166
|
if (!r) {
|
|
165
167
|
const e = m.toLowerCase(), n = Object.keys(g).find(
|
|
@@ -167,117 +169,121 @@ const ye = o("Pin", u), Be = o("Unpin", I), Pe = o("Table", h), De = o("Chart",
|
|
|
167
169
|
);
|
|
168
170
|
n && (r = g[n]);
|
|
169
171
|
}
|
|
170
|
-
return r ?
|
|
172
|
+
return r ? I.createElement(r, i) : null;
|
|
171
173
|
};
|
|
172
174
|
export {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
175
|
+
xn as Alan,
|
|
176
|
+
Ye as Alerts,
|
|
177
|
+
Ve as AnalyticalSearch,
|
|
178
|
+
Ae as Back,
|
|
179
|
+
hn as Backdrop,
|
|
180
|
+
Dn as Bell,
|
|
181
|
+
tm as BillOrReceipt,
|
|
182
|
+
be as Bin,
|
|
183
|
+
Ze as Blocks,
|
|
184
|
+
je as Bookmark,
|
|
185
|
+
_e as BookmarkFilled,
|
|
186
|
+
dn as Box,
|
|
187
|
+
Zn as BoxAdd,
|
|
188
|
+
Kn as Boxed,
|
|
189
|
+
vn as Calendar,
|
|
190
|
+
kn as CalendarMonth,
|
|
191
|
+
Re as Chart,
|
|
192
|
+
tn as Check,
|
|
193
|
+
rm as ChecklistWithPen,
|
|
194
|
+
ht as Checkmark,
|
|
195
|
+
ze as ChevronRight,
|
|
196
|
+
Pm as ClickMeArrow,
|
|
197
|
+
Te as Collapse,
|
|
198
|
+
Nn as Column,
|
|
199
|
+
Qe as CommandPallet,
|
|
200
|
+
sn as Copy,
|
|
201
|
+
$e as CreateNewDocument,
|
|
202
|
+
yn as Cross,
|
|
203
|
+
Im as Csv,
|
|
204
|
+
wn as Delete,
|
|
205
|
+
Dm as Delete3d,
|
|
206
|
+
Wn as Density,
|
|
207
|
+
qe as Document,
|
|
208
|
+
em as Dollar,
|
|
209
|
+
Ge as Download,
|
|
210
|
+
In as Drag,
|
|
211
|
+
Xe as Draw,
|
|
212
|
+
en as Email,
|
|
213
|
+
Sm as EmptyState1,
|
|
214
|
+
fm as EmptyState2,
|
|
215
|
+
dm as EmptyState3,
|
|
216
|
+
vm as EmptyState4,
|
|
217
|
+
km as EmptyState5,
|
|
218
|
+
Cm as EmptyState6,
|
|
219
|
+
rn as ErrorCircle,
|
|
220
|
+
hm as Excel,
|
|
221
|
+
xe as Expand,
|
|
222
|
+
um as FileUpload,
|
|
223
|
+
Cn as Filter,
|
|
224
|
+
Le as FiveSideStar,
|
|
225
|
+
Vn as Flag,
|
|
226
|
+
pn as Floppy,
|
|
227
|
+
On as Font,
|
|
228
|
+
jn as FunnelHide,
|
|
229
|
+
_n as FunnelShow,
|
|
230
|
+
He as Globe,
|
|
231
|
+
Mn as HamburgerClosed,
|
|
232
|
+
Tn as HamburgerOpen,
|
|
233
|
+
En as Help,
|
|
234
|
+
Rn as IA,
|
|
232
235
|
s as ICON_SIZE_MAP,
|
|
233
236
|
g as IconRegistry,
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
237
|
+
om as IllustrationIcon1,
|
|
238
|
+
Ke as Info,
|
|
239
|
+
Fm as Info3d,
|
|
240
|
+
nm as InventoryAdjustment,
|
|
241
|
+
cn as LoadingSpinner,
|
|
242
|
+
nn as Lock,
|
|
243
|
+
Jn as Locked,
|
|
244
|
+
an as LoginArrow,
|
|
245
|
+
Pn as MatchWith,
|
|
246
|
+
Fn as Message,
|
|
247
|
+
un as More,
|
|
248
|
+
An as MultiColorFilter,
|
|
249
|
+
Bm as MulticolorBell,
|
|
250
|
+
Bn as PaperRocket,
|
|
251
|
+
We as Pencil,
|
|
252
|
+
Ne as Person,
|
|
253
|
+
De as Pin,
|
|
254
|
+
Me as PivotMode,
|
|
255
|
+
Oe as Plus,
|
|
256
|
+
mm as PriceTag,
|
|
257
|
+
im as ReceiptsStack,
|
|
258
|
+
cm as RecommendedReceipt,
|
|
259
|
+
Ue as Reset,
|
|
260
|
+
am as ReturnCarton,
|
|
261
|
+
qn as Rewind,
|
|
262
|
+
ln as Rocket,
|
|
263
|
+
on as Search,
|
|
264
|
+
Je as Settings,
|
|
265
|
+
gn as Shapes,
|
|
266
|
+
sm as ShippingContainer,
|
|
267
|
+
bn as Stack,
|
|
268
|
+
Hn as StackComfort,
|
|
269
|
+
Ln as StackCompact,
|
|
270
|
+
pm as StackOfPackagedBoxes,
|
|
271
|
+
Sn as Store,
|
|
272
|
+
Em as Success3d,
|
|
273
|
+
Ee as Table,
|
|
274
|
+
ym as Text,
|
|
275
|
+
Un as ThreeDots,
|
|
276
|
+
Yn as TrendingDown,
|
|
277
|
+
$n as TrendingFlat,
|
|
278
|
+
zn as TrendingNeutral,
|
|
279
|
+
Xn as TrendingUp,
|
|
280
|
+
Gn as Trolley,
|
|
281
|
+
lm as TwoStackedPackagedBoxes,
|
|
282
|
+
mn as Unlock,
|
|
283
|
+
Qn as Unlocked,
|
|
284
|
+
Fe as Unpin,
|
|
285
|
+
fn as Upload,
|
|
286
|
+
wm as Warning3d,
|
|
287
|
+
gm as Warranty,
|
|
288
|
+
Rm as getIconComponent
|
|
283
289
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "impact-nova",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.10",
|
|
4
4
|
"description": "Enterprise-grade React design system built with React 19, Vite, Tailwind CSS, and Radix UI. Built-in internationalization (i18n) and comprehensive UI component library for scalable, accessible, and performant applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|