impact-nova 1.5.13 → 1.5.15
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/badge.d.ts +1 -1
- package/dist/components/ui/badge.js +12 -11
- package/dist/components/ui/breadcrumb.js +25 -20
- package/dist/components/ui/command-palette/command-palette-layout.d.ts +28 -0
- package/dist/components/ui/command-palette/command-palette-layout.js +59 -0
- package/dist/components/ui/command-palette/command-palette.d.ts +5 -2
- package/dist/components/ui/command-palette/command-palette.js +271 -264
- package/dist/components/ui/command-palette/index.d.ts +1 -1
- package/dist/components/ui/command-palette/index.js +42 -41
- package/dist/components/ui/command-palette/shortcut-settings.d.ts +3 -3
- package/dist/components/ui/command-palette/shortcut-settings.js +112 -107
- package/dist/components/ui/command-palette/utils.d.ts +6 -1
- package/dist/components/ui/command-palette/utils.js +81 -74
- package/dist/components/ui/data-table/data-table.js +51 -40
- package/dist/components/ui/dialog.js +2 -5
- package/dist/components/ui/empty-container.js +72 -65
- package/dist/components/ui/filter-panel/filter-panel.d.ts +2 -2
- package/dist/components/ui/filter-panel/filter-panel.js +154 -76
- package/dist/components/ui/filter-strip/filter-summary.js +30 -32
- package/dist/components/ui/header.d.ts +7 -3
- package/dist/components/ui/header.js +46 -44
- package/dist/components/ui/horizontal-scroller/horizontal-scroller.js +1 -1
- package/dist/components/ui/select/select.js +84 -88
- package/dist/components/ui/sidebar.js +341 -305
- package/dist/components/ui/types/filter-panel.types.d.ts +3 -0
- package/dist/components/ui/types/horizontal-scroller.types.d.ts +1 -1
- package/dist/i18n/defaultMessages.d.ts +1 -0
- package/dist/i18n/defaultMessages.js +1 -0
- package/dist/i18n/locales/de.js +1 -0
- package/dist/i18n/locales/es.js +1 -0
- package/dist/i18n/locales/hi.js +1 -0
- package/dist/i18n/locales/kn.js +1 -0
- package/dist/icons/assets/clock.svg.js +5 -0
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons/index.js +159 -157
- package/dist/impact-nova.css +1 -1
- package/dist/index.js +106 -105
- package/package.json +1 -1
- package/tailwind.config.js +14 -1
|
@@ -14,11 +14,14 @@ export interface FilterPanelProps {
|
|
|
14
14
|
className?: string;
|
|
15
15
|
preventClose?: boolean;
|
|
16
16
|
}
|
|
17
|
+
export type FilterSidebarCountBadgeContext = "appliedFields" | "savedFiltersTotal";
|
|
17
18
|
export interface FilterSidebarItem {
|
|
18
19
|
id: string;
|
|
19
20
|
label: string;
|
|
20
21
|
icon: React.ReactNode;
|
|
21
22
|
count?: number;
|
|
23
|
+
/** Count badge tooltip: applied field selections (default) vs saved-filter total from API. */
|
|
24
|
+
countBadgeContext?: FilterSidebarCountBadgeContext;
|
|
22
25
|
isRequired?: boolean;
|
|
23
26
|
hasError?: boolean;
|
|
24
27
|
hasWarning?: boolean;
|
|
@@ -143,6 +143,7 @@ export interface FilterStripMessages {
|
|
|
143
143
|
}
|
|
144
144
|
export interface FilterPanelMessages {
|
|
145
145
|
filtersAppliedCount: string;
|
|
146
|
+
savedFiltersAvailableCount: string;
|
|
146
147
|
tabContainsErrors: string;
|
|
147
148
|
tabHasWarnings: string;
|
|
148
149
|
additionalInfoAvailable: string;
|
|
@@ -124,6 +124,7 @@ const e = {
|
|
|
124
124
|
searchFiltersPlaceholder: "Search filters..."
|
|
125
125
|
}, u = {
|
|
126
126
|
filtersAppliedCount: "{{count}} filters applied",
|
|
127
|
+
savedFiltersAvailableCount: "{{count}} Saved filters available",
|
|
127
128
|
tabContainsErrors: "This tab contains errors",
|
|
128
129
|
tabHasWarnings: "This tab has warnings",
|
|
129
130
|
additionalInfoAvailable: "Additional information available"
|
package/dist/i18n/locales/de.js
CHANGED
|
@@ -134,6 +134,7 @@ const e = {
|
|
|
134
134
|
},
|
|
135
135
|
filterPanel: {
|
|
136
136
|
filtersAppliedCount: "{{count}} Filter angewendet",
|
|
137
|
+
savedFiltersAvailableCount: "{{count}} gespeicherte Filter verfügbar",
|
|
137
138
|
tabContainsErrors: "Diese Registerkarte enthält Fehler",
|
|
138
139
|
tabHasWarnings: "Diese Registerkarte hat Warnungen",
|
|
139
140
|
additionalInfoAvailable: "Zusätzliche Informationen verfügbar"
|
package/dist/i18n/locales/es.js
CHANGED
|
@@ -134,6 +134,7 @@ const e = {
|
|
|
134
134
|
},
|
|
135
135
|
filterPanel: {
|
|
136
136
|
filtersAppliedCount: "{{count}} filtros aplicados",
|
|
137
|
+
savedFiltersAvailableCount: "{{count}} filtros guardados disponibles",
|
|
137
138
|
tabContainsErrors: "Esta pestaña contiene errores",
|
|
138
139
|
tabHasWarnings: "Esta pestaña tiene advertencias",
|
|
139
140
|
additionalInfoAvailable: "Información adicional disponible"
|
package/dist/i18n/locales/hi.js
CHANGED
|
@@ -134,6 +134,7 @@ const e = {
|
|
|
134
134
|
},
|
|
135
135
|
filterPanel: {
|
|
136
136
|
filtersAppliedCount: "{{count}} फ़िल्टर लागू",
|
|
137
|
+
savedFiltersAvailableCount: "{{count}} सहेजे गए फ़िल्टर उपलब्ध",
|
|
137
138
|
tabContainsErrors: "इस टैब में त्रुटियाँ हैं",
|
|
138
139
|
tabHasWarnings: "इस टैब में चेतावनियाँ हैं",
|
|
139
140
|
additionalInfoAvailable: "अतिरिक्त जानकारी उपलब्ध"
|
package/dist/i18n/locales/kn.js
CHANGED
|
@@ -134,6 +134,7 @@ const e = {
|
|
|
134
134
|
},
|
|
135
135
|
filterPanel: {
|
|
136
136
|
filtersAppliedCount: "{{count}} ಫಿಲ್ಟರ್ಗಳನ್ನು ಅನ್ವಯಿಸಲಾಗಿದೆ",
|
|
137
|
+
savedFiltersAvailableCount: "{{count}} ಉಳಿಸಿದ ಫಿಲ್ಟರ್ಗಳು ಲಭ್ಯವಿದೆ",
|
|
137
138
|
tabContainsErrors: "ಈ ಟ್ಯಾಬ್ನಲ್ಲಿ ದೋಷಗಳಿವೆ",
|
|
138
139
|
tabHasWarnings: "ಈ ಟ್ಯಾಬ್ನಲ್ಲಿ ಎಚ್ಚರಿಕೆಗಳಿವೆ",
|
|
139
140
|
additionalInfoAvailable: "ಹೆಚ್ಚುವರಿ ಮಾಹಿತಿ ಲಭ್ಯವಿದೆ"
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const C = (t) => /* @__PURE__ */ e.createElement("svg", { width: 14, height: 14, viewBox: "0 0 14 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M6.66 0C2.98 0 0 2.98667 0 6.66667C0 10.3467 2.98 13.3333 6.66 13.3333C10.3467 13.3333 13.3333 10.3467 13.3333 6.66667C13.3333 2.98667 10.3467 0 6.66 0ZM6.66667 12C3.72 12 1.33333 9.61333 1.33333 6.66667C1.33333 3.72 3.72 1.33333 6.66667 1.33333C9.61333 1.33333 12 3.72 12 6.66667C12 9.61333 9.61333 12 6.66667 12ZM6.52 3.33333H6.48C6.21333 3.33333 6 3.54667 6 3.81333V6.96C6 7.19333 6.12 7.41333 6.32667 7.53333L9.09333 9.19333C9.32 9.32667 9.61333 9.26 9.74667 9.03333C9.88667 8.80667 9.81333 8.50667 9.58 8.37333L7 6.84V3.81333C7 3.54667 6.78667 3.33333 6.52 3.33333Z", fill: "currentColor" }));
|
|
3
|
+
export {
|
|
4
|
+
C as default
|
|
5
|
+
};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -112,6 +112,7 @@ export declare const Rewind: IconComponent;
|
|
|
112
112
|
export declare const Locked: IconComponent;
|
|
113
113
|
export declare const Unlocked: IconComponent;
|
|
114
114
|
export declare const Flag: IconComponent;
|
|
115
|
+
export declare const Clock: IconComponent;
|
|
115
116
|
export declare const TrendingUp: IconComponent;
|
|
116
117
|
export declare const TrendingDown: IconComponent;
|
|
117
118
|
export declare const TrendingFlat: IconComponent;
|
package/dist/icons/index.js
CHANGED
|
@@ -42,8 +42,8 @@ import no from "./assets/email.svg.js";
|
|
|
42
42
|
import C from "./assets/locked.svg.js";
|
|
43
43
|
import u from "./assets/unlocked.svg.js";
|
|
44
44
|
import mo from "./assets/loadingSpinner.svg.js";
|
|
45
|
-
import
|
|
46
|
-
import
|
|
45
|
+
import co from "./assets/loginArrow.svg.js";
|
|
46
|
+
import io from "./assets/copy.svg.js";
|
|
47
47
|
import ao from "./assets/floppy.svg.js";
|
|
48
48
|
import so from "./assets/rocket.svg.js";
|
|
49
49
|
import po from "./assets/shapes.svg.js";
|
|
@@ -82,36 +82,37 @@ import Go from "./assets/boxAdd.svg.js";
|
|
|
82
82
|
import Ko from "./assets/command-pallet.svg.js";
|
|
83
83
|
import Zo from "./assets/rewind.svg.js";
|
|
84
84
|
import qo from "./assets/flag.svg.js";
|
|
85
|
-
import Jo from "./assets/
|
|
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/
|
|
96
|
-
import nt from "./assets/webp/
|
|
97
|
-
import mt from "./assets/webp/
|
|
85
|
+
import Jo from "./assets/clock.svg.js";
|
|
86
|
+
import Qo from "./assets/webp/bill-or-receipt.webp.js";
|
|
87
|
+
import Vo from "./assets/webp/checklist-with-pen.webp.js";
|
|
88
|
+
import Xo from "./assets/webp/dollar.webp.js";
|
|
89
|
+
import Yo from "./assets/webp/inventory-adjustment.webp.js";
|
|
90
|
+
import $o from "./assets/webp/price-tag.webp.js";
|
|
91
|
+
import zo from "./assets/webp/receipts-stack.webp.js";
|
|
92
|
+
import ot from "./assets/webp/recommended-receipt.webp.js";
|
|
93
|
+
import tt from "./assets/webp/return-carton.webp.js";
|
|
94
|
+
import rt from "./assets/webp/shipping-container.webp.js";
|
|
95
|
+
import et from "./assets/webp/stack-of-packaged-boxes.webp.js";
|
|
96
|
+
import nt from "./assets/webp/two-stacked-packaged-boxes.webp.js";
|
|
97
|
+
import mt from "./assets/webp/warranty.webp.js";
|
|
98
|
+
import ct from "./assets/webp/empty-state-1.webp.js";
|
|
98
99
|
import it from "./assets/webp/empty-state-2.webp.js";
|
|
99
|
-
import
|
|
100
|
-
import
|
|
101
|
-
import
|
|
102
|
-
import
|
|
103
|
-
import
|
|
104
|
-
import
|
|
105
|
-
import
|
|
106
|
-
import
|
|
107
|
-
import
|
|
108
|
-
import
|
|
109
|
-
import
|
|
110
|
-
import
|
|
111
|
-
import
|
|
112
|
-
import
|
|
113
|
-
import
|
|
114
|
-
import
|
|
100
|
+
import at from "./assets/webp/empty-state-3.webp.js";
|
|
101
|
+
import st from "./assets/webp/empty-state-4.webp.js";
|
|
102
|
+
import pt from "./assets/webp/empty-state-5.webp.js";
|
|
103
|
+
import lt from "./assets/webp/empty-state-6.webp.js";
|
|
104
|
+
import gt from "./assets/webp/file-upload.webp.js";
|
|
105
|
+
import St from "./assets/webp/csv-logo.webp.js";
|
|
106
|
+
import ft from "./assets/webp/excel-logo.webp.js";
|
|
107
|
+
import dt from "./assets/webp/text-logo.webp.js";
|
|
108
|
+
import vt from "./assets/webp/multicolor-bell.webp.js";
|
|
109
|
+
import kt from "./assets/webp/click-me-arrow.webp.js";
|
|
110
|
+
import Ct from "./assets/webp/warning-3d.webp.js";
|
|
111
|
+
import ut from "./assets/webp/delete-3d.webp.js";
|
|
112
|
+
import It from "./assets/webp/info-3d.webp.js";
|
|
113
|
+
import ht from "./assets/webp/success-3d.webp.js";
|
|
114
|
+
import yt from "./assets/illustration_1.svg.js";
|
|
115
|
+
import Bt from "./assets/backdrop.svg2.js";
|
|
115
116
|
const s = {
|
|
116
117
|
xs: 12,
|
|
117
118
|
sm: 14,
|
|
@@ -122,17 +123,17 @@ const s = {
|
|
|
122
123
|
"3xl": 40,
|
|
123
124
|
default: 24
|
|
124
125
|
}, S = {};
|
|
125
|
-
function o(m,
|
|
126
|
+
function o(m, c, r) {
|
|
126
127
|
const e = v(
|
|
127
|
-
({ size: n = 24, className:
|
|
128
|
+
({ size: n = 24, className: i, ...p }, l) => {
|
|
128
129
|
const a = typeof n == "string" && n in s ? s[n] : n;
|
|
129
130
|
return /* @__PURE__ */ d(
|
|
130
|
-
|
|
131
|
+
c,
|
|
131
132
|
{
|
|
132
133
|
ref: l,
|
|
133
134
|
width: a,
|
|
134
135
|
height: a,
|
|
135
|
-
className: k("shrink-0 select-none",
|
|
136
|
+
className: k("shrink-0 select-none", i),
|
|
136
137
|
...p
|
|
137
138
|
}
|
|
138
139
|
);
|
|
@@ -140,154 +141,155 @@ function o(m, i, r) {
|
|
|
140
141
|
);
|
|
141
142
|
return e.displayName = m, r && (e.src = r, e.toString = () => r), S[m] = e, e;
|
|
142
143
|
}
|
|
143
|
-
function t(m,
|
|
144
|
+
function t(m, c) {
|
|
144
145
|
const r = v(
|
|
145
|
-
({ size: e = 24, className: n, style:
|
|
146
|
+
({ size: e = 24, className: n, style: i, alt: p = "", ...l }, a) => {
|
|
146
147
|
const f = typeof e == "string" && e in s ? s[e] : e;
|
|
147
148
|
return /* @__PURE__ */ d(
|
|
148
149
|
"img",
|
|
149
150
|
{
|
|
150
151
|
ref: a,
|
|
151
|
-
src:
|
|
152
|
+
src: c,
|
|
152
153
|
alt: p,
|
|
153
154
|
className: k("shrink-0 select-none object-contain", n),
|
|
154
155
|
style: {
|
|
155
156
|
width: f,
|
|
156
157
|
height: f,
|
|
157
|
-
...
|
|
158
|
+
...i
|
|
158
159
|
},
|
|
159
160
|
...l
|
|
160
161
|
}
|
|
161
162
|
);
|
|
162
163
|
}
|
|
163
164
|
);
|
|
164
|
-
return r.displayName = m, r.src =
|
|
165
|
+
return r.displayName = m, r.src = c, r.toString = () => c, S[m] = r, r;
|
|
165
166
|
}
|
|
166
|
-
const
|
|
167
|
+
const Me = o("Pin", h), Ae = o("Unpin", y), Ue = o("Table", B), be = o("Chart", P), Le = o("Expand", w), He = o("Collapse", D), We = o("PivotMode", F), Ne = o("Back", T), Oe = o("Reset", E), je = o("Bin", R), _e = o("FiveSideStar", x), Ge = o("Globe", M), Ke = o("Pencil", A), Ze = o("Person", U), qe = o("Plus", b), Je = o("Bookmark", L), Qe = o("BookmarkFilled", H), Ve = o("Download", W), Xe = o("CircleTick", Q), Ye = o("CircleCross", V), $e = o("Info", N), ze = o("Blocks", j), on = o("Document", _), tn = o("Settings", G), rn = o("CommandPallet", Ko), en = o("AnalyticalSearch", K), nn = o("Draw", Z), mn = o("Alerts", q), cn = o("CreateNewDocument", J), an = o("ChevronRight", oo), sn = o("Search", to), Pt = o("Checkmark", ro), pn = Pt, ln = o("ErrorCircle", eo), gn = o("Email", no), Sn = o("Lock", C), fn = o("Unlock", u), dn = o("LoadingSpinner", mo), vn = o("LoginArrow", co), kn = o("Copy", io), Cn = o("Floppy", ao), un = o("Rocket", so), In = o("Shapes", po), hn = o("Store", lo), yn = o("Upload", go), Bn = o("Box", So), Pn = o("Calendar", fo), wn = o("CalendarMonth", vo), Dn = o("Filter", ko), Fn = o("More", Co), Tn = o("Drag", uo), En = o("Backdrop", Io, Bt), Rn = o("Cross", ho), xn = o("PaperRocket", yo), Mn = o("MatchWith", Bo), An = o("Delete", Po), Un = o("Bell", wo), bn = o("Message", Do), Ln = o("Help", Fo), Hn = o("IA", To), Wn = o("Alan", Eo), Nn = o("HamburgerOpen", Ro), On = o("HamburgerClosed", xo), jn = o("MultiColorFilter", O), _n = o("ThreeDots", Lo), Gn = o("Stack", Mo), Kn = o("StackCompact", Ao), Zn = o("StackComfort", Uo), qn = o("Density", bo), Jn = o("Column", Ho), Qn = o("Font", Wo), Vn = o("FunnelHide", No), Xn = o("FunnelShow", Oo), Yn = o("Trolley", jo), $n = o("Boxed", _o), zn = o("BoxAdd", Go), om = o("Rewind", Zo), tm = o("Locked", C), rm = o("Unlocked", u), em = o("Flag", qo), nm = o("Clock", Jo), mm = o("TrendingUp", X), cm = o("TrendingDown", Y), im = o("TrendingFlat", $), am = o("TrendingNeutral", z), sm = o("IllustrationIcon1", yt), pm = t("BillOrReceipt", Qo), lm = t("ChecklistWithPen", Vo), gm = t("Dollar", Xo), Sm = t("InventoryAdjustment", Yo), fm = t("PriceTag", $o), dm = t("ReceiptsStack", zo), vm = t("RecommendedReceipt", ot), km = t("ReturnCarton", tt), Cm = t("ShippingContainer", rt), um = t("StackOfPackagedBoxes", et), Im = t("TwoStackedPackagedBoxes", nt), hm = t("Warranty", mt), ym = t("EmptyState1", ct), Bm = t("EmptyState2", it), Pm = t("EmptyState3", at), wm = t("EmptyState4", st), Dm = t("EmptyState5", pt), Fm = t("EmptyState6", lt), Tm = t("FileUpload", gt), Em = t("Csv", St), Rm = t("Excel", ft), xm = t("Text", dt), Mm = t("MulticolorBell", vt), Am = t("ClickMeArrow", kt), Um = t("Warning3d", Ct), bm = t("Delete3d", ut), Lm = t("Info3d", It), Hm = t("Success3d", ht), g = S, Wm = (m, c) => {
|
|
167
168
|
let r = g[m];
|
|
168
169
|
if (!r) {
|
|
169
170
|
const e = m.toLowerCase(), n = Object.keys(g).find(
|
|
170
|
-
(
|
|
171
|
+
(i) => i.toLowerCase() === e
|
|
171
172
|
);
|
|
172
173
|
n && (r = g[n]);
|
|
173
174
|
}
|
|
174
|
-
return r ? I.createElement(r,
|
|
175
|
+
return r ? I.createElement(r, c) : null;
|
|
175
176
|
};
|
|
176
177
|
export {
|
|
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
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
178
|
+
Wn as Alan,
|
|
179
|
+
mn as Alerts,
|
|
180
|
+
en as AnalyticalSearch,
|
|
181
|
+
Ne as Back,
|
|
182
|
+
En as Backdrop,
|
|
183
|
+
Un as Bell,
|
|
184
|
+
pm as BillOrReceipt,
|
|
185
|
+
je as Bin,
|
|
186
|
+
ze as Blocks,
|
|
187
|
+
Je as Bookmark,
|
|
188
|
+
Qe as BookmarkFilled,
|
|
189
|
+
Bn as Box,
|
|
190
|
+
zn as BoxAdd,
|
|
191
|
+
$n as Boxed,
|
|
192
|
+
Pn as Calendar,
|
|
193
|
+
wn as CalendarMonth,
|
|
194
|
+
be as Chart,
|
|
195
|
+
pn as Check,
|
|
196
|
+
lm as ChecklistWithPen,
|
|
197
|
+
Pt as Checkmark,
|
|
198
|
+
an as ChevronRight,
|
|
199
|
+
Ye as CircleCross,
|
|
200
|
+
Xe as CircleTick,
|
|
201
|
+
Am as ClickMeArrow,
|
|
202
|
+
nm as Clock,
|
|
203
|
+
He as Collapse,
|
|
204
|
+
Jn as Column,
|
|
205
|
+
rn as CommandPallet,
|
|
206
|
+
kn as Copy,
|
|
207
|
+
cn as CreateNewDocument,
|
|
208
|
+
Rn as Cross,
|
|
209
|
+
Em as Csv,
|
|
210
|
+
An as Delete,
|
|
211
|
+
bm as Delete3d,
|
|
212
|
+
qn as Density,
|
|
213
|
+
on as Document,
|
|
214
|
+
gm as Dollar,
|
|
215
|
+
Ve as Download,
|
|
216
|
+
Tn as Drag,
|
|
217
|
+
nn as Draw,
|
|
218
|
+
gn as Email,
|
|
219
|
+
ym as EmptyState1,
|
|
220
|
+
Bm as EmptyState2,
|
|
221
|
+
Pm as EmptyState3,
|
|
222
|
+
wm as EmptyState4,
|
|
223
|
+
Dm as EmptyState5,
|
|
224
|
+
Fm as EmptyState6,
|
|
225
|
+
ln as ErrorCircle,
|
|
226
|
+
Rm as Excel,
|
|
227
|
+
Le as Expand,
|
|
228
|
+
Tm as FileUpload,
|
|
229
|
+
Dn as Filter,
|
|
230
|
+
_e as FiveSideStar,
|
|
231
|
+
em as Flag,
|
|
232
|
+
Cn as Floppy,
|
|
233
|
+
Qn as Font,
|
|
234
|
+
Vn as FunnelHide,
|
|
235
|
+
Xn as FunnelShow,
|
|
236
|
+
Ge as Globe,
|
|
237
|
+
On as HamburgerClosed,
|
|
238
|
+
Nn as HamburgerOpen,
|
|
239
|
+
Ln as Help,
|
|
240
|
+
Hn as IA,
|
|
239
241
|
s as ICON_SIZE_MAP,
|
|
240
242
|
g as IconRegistry,
|
|
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
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
243
|
+
sm as IllustrationIcon1,
|
|
244
|
+
$e as Info,
|
|
245
|
+
Lm as Info3d,
|
|
246
|
+
Sm as InventoryAdjustment,
|
|
247
|
+
dn as LoadingSpinner,
|
|
248
|
+
Sn as Lock,
|
|
249
|
+
tm as Locked,
|
|
250
|
+
vn as LoginArrow,
|
|
251
|
+
Mn as MatchWith,
|
|
252
|
+
bn as Message,
|
|
253
|
+
Fn as More,
|
|
254
|
+
jn as MultiColorFilter,
|
|
255
|
+
Mm as MulticolorBell,
|
|
256
|
+
xn as PaperRocket,
|
|
257
|
+
Ke as Pencil,
|
|
258
|
+
Ze as Person,
|
|
259
|
+
Me as Pin,
|
|
260
|
+
We as PivotMode,
|
|
261
|
+
qe as Plus,
|
|
262
|
+
fm as PriceTag,
|
|
263
|
+
dm as ReceiptsStack,
|
|
264
|
+
vm as RecommendedReceipt,
|
|
265
|
+
Oe as Reset,
|
|
266
|
+
km as ReturnCarton,
|
|
267
|
+
om as Rewind,
|
|
268
|
+
un as Rocket,
|
|
269
|
+
sn as Search,
|
|
270
|
+
tn as Settings,
|
|
271
|
+
In as Shapes,
|
|
272
|
+
Cm as ShippingContainer,
|
|
273
|
+
Gn as Stack,
|
|
274
|
+
Zn as StackComfort,
|
|
275
|
+
Kn as StackCompact,
|
|
276
|
+
um as StackOfPackagedBoxes,
|
|
277
|
+
hn as Store,
|
|
278
|
+
Hm as Success3d,
|
|
279
|
+
Ue as Table,
|
|
280
|
+
xm as Text,
|
|
281
|
+
_n as ThreeDots,
|
|
282
|
+
cm as TrendingDown,
|
|
283
|
+
im as TrendingFlat,
|
|
284
|
+
am as TrendingNeutral,
|
|
285
|
+
mm as TrendingUp,
|
|
286
|
+
Yn as Trolley,
|
|
287
|
+
Im as TwoStackedPackagedBoxes,
|
|
288
|
+
fn as Unlock,
|
|
289
|
+
rm as Unlocked,
|
|
290
|
+
Ae as Unpin,
|
|
291
|
+
yn as Upload,
|
|
292
|
+
Um as Warning3d,
|
|
293
|
+
hm as Warranty,
|
|
294
|
+
Wm as getIconComponent
|
|
293
295
|
};
|