impact-nova 1.7.37 → 1.7.39
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/calendar.js +3 -2
- package/dist/components/ui/create-item-flow/create-item-flow.js +10 -10
- package/dist/icons/assets/webp/loadingSimulation.mp4.js +4 -0
- package/dist/icons/assets/webp/scenario.webp.js +4 -0
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.js +189 -185
- package/dist/impact-nova.css +1 -1
- package/package.json +1 -1
|
@@ -4,12 +4,13 @@ import { ChevronLeftIcon as Ne, ChevronRightIcon as Se } from "lucide-react";
|
|
|
4
4
|
import { getDefaultClassNames as Te, DayPicker as We } from "react-day-picker";
|
|
5
5
|
import { cn as d } from "../../lib/utils.js";
|
|
6
6
|
import { Button as R } from "./button.js";
|
|
7
|
+
import "./button-variants.js";
|
|
7
8
|
import de from "./select/select.js";
|
|
8
9
|
import { FISCAL_PATTERNS as qe, resolveWeekSelection as Ge } from "../../lib/fiscal-calendar.js";
|
|
9
10
|
import { getIntlLocale as Je, getDateFnsLocale as Qe } from "../../i18n/getDateFnsLocale.js";
|
|
10
11
|
import { useImpactNovaI18n as Xe } from "../../i18n/ImpactNovaI18nContext.js";
|
|
11
12
|
const me = u.createContext(0);
|
|
12
|
-
function
|
|
13
|
+
function ct({
|
|
13
14
|
className: oe,
|
|
14
15
|
classNames: Q,
|
|
15
16
|
showOutsideDays: y = !1,
|
|
@@ -840,6 +841,6 @@ function Ze({
|
|
|
840
841
|
);
|
|
841
842
|
}
|
|
842
843
|
export {
|
|
843
|
-
|
|
844
|
+
ct as Calendar,
|
|
844
845
|
Ze as CalendarDayButton
|
|
845
846
|
};
|
|
@@ -24,7 +24,7 @@ const I = r.forwardRef(
|
|
|
24
24
|
{
|
|
25
25
|
ref: a,
|
|
26
26
|
className: n(
|
|
27
|
-
"flex flex-row bg-canvas-elevated rounded-lg shadow-elevation-card overflow-hidden w-
|
|
27
|
+
"flex flex-row bg-canvas-elevated rounded-lg shadow-elevation-card overflow-hidden w-[83%] mx-auto min-w-0 flex-1",
|
|
28
28
|
t
|
|
29
29
|
),
|
|
30
30
|
...o,
|
|
@@ -49,7 +49,7 @@ const F = r.forwardRef(
|
|
|
49
49
|
)
|
|
50
50
|
);
|
|
51
51
|
F.displayName = "CreateItemFlowLeftPanel";
|
|
52
|
-
const
|
|
52
|
+
const N = r.forwardRef(
|
|
53
53
|
({ className: t, children: e, ...o }, a) => /* @__PURE__ */ l(
|
|
54
54
|
"h1",
|
|
55
55
|
{
|
|
@@ -60,8 +60,8 @@ const h = r.forwardRef(
|
|
|
60
60
|
}
|
|
61
61
|
)
|
|
62
62
|
);
|
|
63
|
-
|
|
64
|
-
const
|
|
63
|
+
N.displayName = "CreateItemFlowTitle";
|
|
64
|
+
const g = r.forwardRef(
|
|
65
65
|
({ className: t, children: e, ...o }, a) => /* @__PURE__ */ l(
|
|
66
66
|
"p",
|
|
67
67
|
{
|
|
@@ -72,8 +72,8 @@ const N = r.forwardRef(
|
|
|
72
72
|
}
|
|
73
73
|
)
|
|
74
74
|
);
|
|
75
|
-
|
|
76
|
-
const
|
|
75
|
+
g.displayName = "CreateItemFlowDescription";
|
|
76
|
+
const h = r.forwardRef(
|
|
77
77
|
({ className: t, src: e, alt: o = "Create Item Flow", children: a, ...m }, s) => /* @__PURE__ */ l(
|
|
78
78
|
"div",
|
|
79
79
|
{
|
|
@@ -102,7 +102,7 @@ const g = r.forwardRef(
|
|
|
102
102
|
}
|
|
103
103
|
)
|
|
104
104
|
);
|
|
105
|
-
|
|
105
|
+
h.displayName = "CreateItemFlowImage";
|
|
106
106
|
const v = r.forwardRef(
|
|
107
107
|
({ className: t, children: e, ...o }, a) => /* @__PURE__ */ l(
|
|
108
108
|
"div",
|
|
@@ -219,13 +219,13 @@ export {
|
|
|
219
219
|
S as CreateItemFlowContent,
|
|
220
220
|
b as CreateItemFlowContentDescription,
|
|
221
221
|
R as CreateItemFlowContentTitle,
|
|
222
|
-
|
|
222
|
+
g as CreateItemFlowDescription,
|
|
223
223
|
k as CreateItemFlowFooter,
|
|
224
|
-
|
|
224
|
+
h as CreateItemFlowImage,
|
|
225
225
|
F as CreateItemFlowLeftPanel,
|
|
226
226
|
v as CreateItemFlowRightPanel,
|
|
227
227
|
u as CreateItemFlowRoot,
|
|
228
228
|
D as CreateItemFlowStepContent,
|
|
229
229
|
y as CreateItemFlowStepper,
|
|
230
|
-
|
|
230
|
+
N as CreateItemFlowTitle
|
|
231
231
|
};
|