@companix/uikit 0.0.31 → 0.0.32
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/DatePicker/index.d.ts +1 -1
- package/dist/Popover/index.d.ts +1 -0
- package/dist/__hooks/useCalendar.d.ts +1 -1
- package/dist/__libs/calendar.d.ts +1 -1
- package/dist/bundle.es17.js +7 -6
- package/dist/bundle.es25.js +23 -22
- package/dist/bundle.es44.js +1 -1
- package/dist/bundle.es45.js +1 -1
- package/dist/bundle.es49.js +1 -1
- package/dist/bundle.es50.js +1 -1
- package/dist/bundle.es51.js +2 -2
- package/dist/bundle.es60.js +14 -20
- package/dist/bundle.es61.js +20 -2
- package/dist/bundle.es62.js +2 -76
- package/dist/bundle.es63.js +20 -49
- package/dist/bundle.es64.js +2 -14
- package/dist/bundle.es65.js +18 -17
- package/dist/bundle.es66.js +2 -2
- package/dist/bundle.es67.js +17 -18
- package/dist/bundle.es68.js +76 -2
- package/dist/bundle.es69.js +49 -20
- package/dist/bundle.es7.js +19 -17
- package/dist/bundle.es71.js +14 -3
- package/dist/bundle.es72.js +1 -1
- package/dist/bundle.es73.js +3 -14
- package/dist/index.d.ts +1 -1
- package/dist/index.scss +1 -2
- package/package.json +1 -1
- package/dist/DatePicker/DatePicker.scss +0 -0
- /package/dist/{DatePicker → Calendar}/Calendar.d.ts +0 -0
- /package/dist/{DatePicker → Calendar}/Calendar.scss +0 -0
- /package/dist/{DatePicker → Calendar}/CalendarHeader.d.ts +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InputProps } from '../Input/Input';
|
|
2
|
-
import { CalendarProps } from '
|
|
2
|
+
import { CalendarProps } from '../Calendar/Calendar';
|
|
3
3
|
export interface DatePickerProps extends Omit<CalendarProps, 'onChange'>, Omit<InputProps, 'value' | 'onChange' | 'rightElement'> {
|
|
4
4
|
onChange?: (value: Date | null) => void;
|
|
5
5
|
clearButton?: boolean;
|
package/dist/Popover/index.d.ts
CHANGED
|
@@ -22,5 +22,6 @@ export interface PopoverProps {
|
|
|
22
22
|
className?: string;
|
|
23
23
|
fitMaxHeight?: boolean;
|
|
24
24
|
disabled?: boolean;
|
|
25
|
+
zIndex?: number;
|
|
25
26
|
}
|
|
26
27
|
export declare const Popover: import('react').ForwardRefExoticComponent<PopoverProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CalendarProps } from '../
|
|
1
|
+
import { CalendarProps } from '../Calendar/Calendar';
|
|
2
2
|
export interface UseCalendarDependencies extends Pick<CalendarProps, 'minDateTime' | 'maxDateTime' | 'shouldDisableDate' | 'disableFuture' | 'disablePast'> {
|
|
3
3
|
disablePast?: boolean;
|
|
4
4
|
disableFuture?: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CalendarProps } from '../
|
|
1
|
+
import { CalendarProps } from '../Calendar/Calendar';
|
|
2
2
|
export declare function isSameDate(d1: Date, d2: Date): boolean;
|
|
3
3
|
export declare const MONDAY = 1;
|
|
4
4
|
export declare function startOfWeek(date: Date, { weekStartsOn }: {
|
package/dist/bundle.es17.js
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
import { jsx as e, jsxs as o } from "react/jsx-runtime";
|
|
2
2
|
import d from "classnames";
|
|
3
3
|
import * as r from "@radix-ui/react-dialog";
|
|
4
|
-
import { VisuallyHidden as
|
|
4
|
+
import { VisuallyHidden as i } from "@radix-ui/react-visually-hidden";
|
|
5
5
|
import { varToStyle as c } from "@companix/utils-browser";
|
|
6
|
-
const p = ({ open:
|
|
6
|
+
const p = ({ open: t, onOpenChange: l, children: a, size: s, direction: m, className: n }) => /* @__PURE__ */ e(r.Root, { open: t, onOpenChange: l, children: /* @__PURE__ */ o(r.Portal, { children: [
|
|
7
7
|
/* @__PURE__ */ e(r.Overlay, { className: "drawer-overlay" }),
|
|
8
8
|
/* @__PURE__ */ o(
|
|
9
9
|
r.Content,
|
|
10
10
|
{
|
|
11
|
-
style: c({ "--drawer-size":
|
|
12
|
-
className: d("drawer",
|
|
13
|
-
"data-direction":
|
|
11
|
+
style: c({ "--drawer-size": s ?? "50%" }),
|
|
12
|
+
className: d("drawer", n),
|
|
13
|
+
"data-direction": m,
|
|
14
14
|
children: [
|
|
15
|
-
/* @__PURE__ */ e(
|
|
15
|
+
/* @__PURE__ */ e(i, { children: /* @__PURE__ */ e(r.Title, {}) }),
|
|
16
|
+
/* @__PURE__ */ e(i, { children: /* @__PURE__ */ e(r.Description, {}) }),
|
|
16
17
|
a
|
|
17
18
|
]
|
|
18
19
|
}
|
package/dist/bundle.es25.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { jsx as u } from "react/jsx-runtime";
|
|
2
|
-
import { Popover as
|
|
3
|
-
import { Input as
|
|
4
|
-
import { useState as
|
|
2
|
+
import { Popover as T } from "./bundle.es7.js";
|
|
3
|
+
import { Input as w } from "./bundle.es10.js";
|
|
4
|
+
import { useState as A, useRef as j } from "react";
|
|
5
5
|
import { Calendar as E } from "./bundle.es51.js";
|
|
6
6
|
import { useDayDisableCheker as N } from "./bundle.es52.js";
|
|
7
|
-
import { getNum as
|
|
7
|
+
import { getNum as h, formatTime as v } from "@companix/utils-js";
|
|
8
8
|
import { removeDigits as O } from "./bundle.es53.js";
|
|
9
9
|
import { SelectRightElements as Y } from "./bundle.es54.js";
|
|
10
10
|
const i = {
|
|
@@ -19,7 +19,7 @@ const i = {
|
|
|
19
19
|
toValue: (e) => {
|
|
20
20
|
const n = e.split(i.char);
|
|
21
21
|
if (n.length === 3) {
|
|
22
|
-
const [r, l, a] = [
|
|
22
|
+
const [r, l, a] = [h(n[0]), h(n[1]), h(n[2])];
|
|
23
23
|
if (r && l && a) {
|
|
24
24
|
const o = new Date(a, l - 1, r);
|
|
25
25
|
if (o.getFullYear() === a && o.getDate() === r && o.getMonth() === l - 1)
|
|
@@ -40,36 +40,36 @@ const i = {
|
|
|
40
40
|
disablePickers: I,
|
|
41
41
|
showNeighboringMonth: P,
|
|
42
42
|
onChange: c,
|
|
43
|
-
shouldDisableDate:
|
|
43
|
+
shouldDisableDate: g,
|
|
44
44
|
viewDate: S,
|
|
45
|
-
disablePast:
|
|
45
|
+
disablePast: d,
|
|
46
46
|
disableFuture: D,
|
|
47
47
|
minDateTime: C,
|
|
48
48
|
maxDateTime: b,
|
|
49
49
|
// input props
|
|
50
50
|
...V
|
|
51
|
-
} = e, [m, s] =
|
|
51
|
+
} = e, [m, s] = A(() => i.toString(o ?? null)), p = j(null), k = N({
|
|
52
52
|
disableFuture: D,
|
|
53
|
-
disablePast:
|
|
54
|
-
shouldDisableDate:
|
|
53
|
+
disablePast: d,
|
|
54
|
+
shouldDisableDate: g,
|
|
55
55
|
minDateTime: C,
|
|
56
56
|
maxDateTime: b
|
|
57
57
|
}), B = (t) => {
|
|
58
58
|
a || p.current && p.current.getAttribute("data-state") === "open" && t.preventDefault();
|
|
59
59
|
}, F = (t) => {
|
|
60
60
|
t.stopPropagation(), s(""), c?.(null);
|
|
61
|
-
},
|
|
61
|
+
}, x = (t) => {
|
|
62
62
|
s(t);
|
|
63
|
-
const
|
|
64
|
-
|
|
65
|
-
},
|
|
63
|
+
const f = i.toValue(t);
|
|
64
|
+
f && !k(f) && c?.(f);
|
|
65
|
+
}, M = () => {
|
|
66
66
|
const t = i.toValue(m);
|
|
67
67
|
(!t || k(t)) && s(i.toString(o ?? null));
|
|
68
|
-
},
|
|
68
|
+
}, R = (t) => {
|
|
69
69
|
c?.(t), s(i.toString(t));
|
|
70
70
|
};
|
|
71
71
|
return /* @__PURE__ */ u(
|
|
72
|
-
|
|
72
|
+
T,
|
|
73
73
|
{
|
|
74
74
|
minimal: !0,
|
|
75
75
|
ref: p,
|
|
@@ -77,31 +77,32 @@ const i = {
|
|
|
77
77
|
onOpenAutoFocus: (t) => t.preventDefault(),
|
|
78
78
|
onCloseAutoFocus: (t) => t.preventDefault(),
|
|
79
79
|
disabled: a,
|
|
80
|
+
fitMaxHeight: !1,
|
|
80
81
|
content: () => /* @__PURE__ */ u(
|
|
81
82
|
E,
|
|
82
83
|
{
|
|
83
84
|
value: o,
|
|
84
|
-
disablePast:
|
|
85
|
+
disablePast: d,
|
|
85
86
|
disableFuture: D,
|
|
86
87
|
enableTime: y,
|
|
87
88
|
disablePickers: I,
|
|
88
89
|
showNeighboringMonth: P,
|
|
89
|
-
onChange:
|
|
90
|
-
shouldDisableDate:
|
|
90
|
+
onChange: R,
|
|
91
|
+
shouldDisableDate: g,
|
|
91
92
|
viewDate: S,
|
|
92
93
|
minDateTime: C,
|
|
93
94
|
maxDateTime: b
|
|
94
95
|
}
|
|
95
96
|
),
|
|
96
97
|
children: /* @__PURE__ */ u(
|
|
97
|
-
|
|
98
|
+
w,
|
|
98
99
|
{
|
|
99
100
|
...V,
|
|
100
101
|
value: m,
|
|
101
102
|
disabled: a,
|
|
102
103
|
onClick: B,
|
|
103
|
-
onValueChange:
|
|
104
|
-
onBlur:
|
|
104
|
+
onValueChange: x,
|
|
105
|
+
onBlur: M,
|
|
105
106
|
mask: "99-99-9999",
|
|
106
107
|
rightElement: /* @__PURE__ */ u(
|
|
107
108
|
Y,
|
package/dist/bundle.es44.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsxs as b, jsx as o } from "react/jsx-runtime";
|
|
|
2
2
|
import h from "classnames";
|
|
3
3
|
import { attr as e } from "@companix/utils-browser";
|
|
4
4
|
import { forwardRef as x } from "react";
|
|
5
|
-
import { useInputPadding as N } from "./bundle.
|
|
5
|
+
import { useInputPadding as N } from "./bundle.es60.js";
|
|
6
6
|
const v = x(
|
|
7
7
|
({
|
|
8
8
|
required: s,
|
package/dist/bundle.es45.js
CHANGED
package/dist/bundle.es49.js
CHANGED
package/dist/bundle.es50.js
CHANGED
package/dist/bundle.es51.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs as D, jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import { dateToFormat as $, weeks as g, createVoids as p, getDayIndex as b, getFirstDay as u, getMonthMaxDay as k } from "./bundle.es53.js";
|
|
3
|
-
import { CalendarHeader as F } from "./bundle.
|
|
4
|
-
import { useCalendar as j } from "./bundle.
|
|
3
|
+
import { CalendarHeader as F } from "./bundle.es68.js";
|
|
4
|
+
import { useCalendar as j } from "./bundle.es69.js";
|
|
5
5
|
import { attr as m } from "@companix/utils-browser";
|
|
6
6
|
import { isSameDate as f } from "./bundle.es52.js";
|
|
7
7
|
import { useLayoutEffect as I } from "react";
|
package/dist/bundle.es60.js
CHANGED
|
@@ -1,22 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
h,
|
|
15
|
-
u
|
|
16
|
-
]
|
|
17
|
-
}, a.faCheck = a.definition, a.prefix = c, a.iconName = n, a.width = r, a.height = f, a.ligatures = i, a.unicode = h, a.svgPathData = u, a.aliases = i;
|
|
18
|
-
})(e), e);
|
|
19
|
-
}
|
|
1
|
+
import { useRef as l, useCallback as p } from "react";
|
|
2
|
+
import { useEffectWithLayout as d } from "./bundle.es71.js";
|
|
3
|
+
const g = (r, f) => {
|
|
4
|
+
const c = l(null), i = l(null), o = { Right: c, Left: i }, u = p((t) => {
|
|
5
|
+
if (r.current) {
|
|
6
|
+
const n = r.current.style, e = o[t];
|
|
7
|
+
e.current && e.current.clientWidth ? n[`padding${t}`] !== `${e.current.clientWidth}px` && (n[`padding${t}`] = `${e.current.clientWidth}px`) : n[`padding${t}`] && (n[`padding${t}`] = "");
|
|
8
|
+
}
|
|
9
|
+
}, []);
|
|
10
|
+
return d(() => {
|
|
11
|
+
u("Left"), u("Right");
|
|
12
|
+
}, f), { rightRef: c, leftRef: i };
|
|
13
|
+
};
|
|
20
14
|
export {
|
|
21
|
-
|
|
15
|
+
g as useInputPadding
|
|
22
16
|
};
|
package/dist/bundle.es61.js
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
import { __exports as e } from "./bundle.es62.js";
|
|
2
|
+
var v;
|
|
3
|
+
function d() {
|
|
4
|
+
return v ? e : (v = 1, (function(a) {
|
|
5
|
+
Object.defineProperty(a, "__esModule", { value: !0 });
|
|
6
|
+
var c = "fas", n = "check", r = 448, f = 512, i = [10003, 10004], h = "f00c", u = "M434.8 70.1c14.3 10.4 17.5 30.4 7.1 44.7l-256 352c-5.5 7.6-14 12.3-23.4 13.1s-18.5-2.7-25.1-9.3l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l101.5 101.5 234-321.7c10.4-14.3 30.4-17.5 44.7-7.1z";
|
|
7
|
+
a.definition = {
|
|
8
|
+
prefix: c,
|
|
9
|
+
iconName: n,
|
|
10
|
+
icon: [
|
|
11
|
+
r,
|
|
12
|
+
f,
|
|
13
|
+
i,
|
|
14
|
+
h,
|
|
15
|
+
u
|
|
16
|
+
]
|
|
17
|
+
}, a.faCheck = a.definition, a.prefix = c, a.iconName = n, a.width = r, a.height = f, a.ligatures = i, a.unicode = h, a.svgPathData = u, a.aliases = i;
|
|
18
|
+
})(e), e);
|
|
19
|
+
}
|
|
2
20
|
export {
|
|
3
|
-
|
|
21
|
+
d as __require
|
|
4
22
|
};
|
package/dist/bundle.es62.js
CHANGED
|
@@ -1,78 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
import { useCallback as h, useMemo as d } from "react";
|
|
3
|
-
import { Select as p } from "./bundle.es9.js";
|
|
4
|
-
import { getMonths as Y, getYears as k, DEFAULT_MAX_YEAR as u, DEFAULT_MIN_YEAR as g } from "./bundle.es53.js";
|
|
5
|
-
import { Icon as C } from "./bundle.es30.js";
|
|
6
|
-
import { f as z } from "./bundle.es71.js";
|
|
7
|
-
import { f as L } from "./bundle.es72.js";
|
|
8
|
-
import { setMonth as R, setYear as T } from "./bundle.es52.js";
|
|
9
|
-
const S = ({
|
|
10
|
-
viewDate: n,
|
|
11
|
-
onChange: m,
|
|
12
|
-
isMonthDisabled: a,
|
|
13
|
-
isYearDisabled: c,
|
|
14
|
-
onNextMonth: v,
|
|
15
|
-
onPrevMonth: x
|
|
16
|
-
}) => {
|
|
17
|
-
const r = n.getFullYear(), e = n.getMonth(), i = "ru", N = h(
|
|
18
|
-
(t) => {
|
|
19
|
-
m(R(n, t));
|
|
20
|
-
},
|
|
21
|
-
[m, n]
|
|
22
|
-
), E = h(
|
|
23
|
-
(t) => {
|
|
24
|
-
m(T(n, t));
|
|
25
|
-
},
|
|
26
|
-
[m, n]
|
|
27
|
-
), M = d(() => Y(i).map((t) => ({
|
|
28
|
-
...t,
|
|
29
|
-
className: "capitalize",
|
|
30
|
-
disabled: a && a(t.value)
|
|
31
|
-
})), [i, a]), A = d(() => k(r, 100).map((t) => ({
|
|
32
|
-
...t,
|
|
33
|
-
disabled: c && c(t.value)
|
|
34
|
-
})), [r, c]);
|
|
35
|
-
let l = e === 11 && r === u;
|
|
36
|
-
a && !l && (l = a(
|
|
37
|
-
e === 11 ? 0 : e + 1,
|
|
38
|
-
e === 11 ? Math.min(r + 1, u) : r
|
|
39
|
-
));
|
|
40
|
-
let s = e === 0 && r === g;
|
|
41
|
-
return a && !s && (s = a(
|
|
42
|
-
e === 0 ? 11 : e - 1,
|
|
43
|
-
e === 0 ? Math.max(r - 1, g) : r
|
|
44
|
-
)), /* @__PURE__ */ f("div", { className: "calendar-header", children: [
|
|
45
|
-
!s && /* @__PURE__ */ o("button", { className: "calendar-navigation", "data-side": "left", onClick: x, children: /* @__PURE__ */ o(C, { icon: L.faChevronLeft }) }),
|
|
46
|
-
/* @__PURE__ */ f("div", { className: "calendar-pickers", children: [
|
|
47
|
-
/* @__PURE__ */ o(
|
|
48
|
-
p,
|
|
49
|
-
{
|
|
50
|
-
fill: !0,
|
|
51
|
-
options: A,
|
|
52
|
-
size: "sm",
|
|
53
|
-
value: r,
|
|
54
|
-
minimalOptions: !0,
|
|
55
|
-
matchTarget: "min-width",
|
|
56
|
-
onChange: (t) => E(t)
|
|
57
|
-
}
|
|
58
|
-
),
|
|
59
|
-
/* @__PURE__ */ o(
|
|
60
|
-
p,
|
|
61
|
-
{
|
|
62
|
-
fill: !0,
|
|
63
|
-
options: M,
|
|
64
|
-
size: "sm",
|
|
65
|
-
className: "capitalize",
|
|
66
|
-
value: e,
|
|
67
|
-
minimalOptions: !0,
|
|
68
|
-
matchTarget: "min-width",
|
|
69
|
-
onChange: (t) => N(t)
|
|
70
|
-
}
|
|
71
|
-
)
|
|
72
|
-
] }),
|
|
73
|
-
!l && /* @__PURE__ */ o("button", { className: "calendar-navigation", "data-side": "right", onClick: v, children: /* @__PURE__ */ o(C, { icon: z.faChevronRight }) })
|
|
74
|
-
] });
|
|
75
|
-
};
|
|
1
|
+
var a = {};
|
|
76
2
|
export {
|
|
77
|
-
|
|
3
|
+
a as __exports
|
|
78
4
|
};
|
package/dist/bundle.es63.js
CHANGED
|
@@ -1,51 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
minDateTime: l,
|
|
21
|
-
maxDateTime: s
|
|
22
|
-
}), k = M(
|
|
23
|
-
(o, t) => {
|
|
24
|
-
const n = /* @__PURE__ */ new Date();
|
|
25
|
-
t = t || e.getFullYear();
|
|
26
|
-
const h = l ? l.getMonth() : 0, Y = s ? s.getMonth() : 11, F = l?.getFullYear() || w, f = s?.getFullYear() || A;
|
|
27
|
-
let g = t >= F && t <= f ? t === F && h > o || t === f && o > Y : !0;
|
|
28
|
-
return c && (g = g || (t === n.getFullYear() ? o > n.getMonth() : t > n.getFullYear())), r && (g = g || (t === n.getFullYear() ? o < n.getMonth() : t < n.getFullYear())), g;
|
|
29
|
-
},
|
|
30
|
-
[c, r, e, l, s]
|
|
31
|
-
), v = M(
|
|
32
|
-
(o) => {
|
|
33
|
-
const t = /* @__PURE__ */ new Date(), n = l?.getFullYear() || w, h = s?.getFullYear() || A;
|
|
34
|
-
let Y = n > o || o > h;
|
|
35
|
-
return c && (Y = Y || o > t.getFullYear()), r && (Y = Y || o < t.getFullYear()), Y;
|
|
36
|
-
},
|
|
37
|
-
[c, r, l, s]
|
|
38
|
-
);
|
|
39
|
-
return {
|
|
40
|
-
viewDate: e,
|
|
41
|
-
setViewDate: u,
|
|
42
|
-
setPrevMonth: _,
|
|
43
|
-
setNextMonth: C,
|
|
44
|
-
isDayDisabled: D,
|
|
45
|
-
isMonthDisabled: k,
|
|
46
|
-
isYearDisabled: v
|
|
47
|
-
};
|
|
48
|
-
};
|
|
1
|
+
import { __exports as e } from "./bundle.es64.js";
|
|
2
|
+
var c;
|
|
3
|
+
function d() {
|
|
4
|
+
return c ? e : (c = 1, (function(a) {
|
|
5
|
+
Object.defineProperty(a, "__esModule", { value: !0 });
|
|
6
|
+
var n = "fas", r = "chevron-down", v = 448, o = 512, i = [], f = "f078", h = "M201.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 338.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z";
|
|
7
|
+
a.definition = {
|
|
8
|
+
prefix: n,
|
|
9
|
+
iconName: r,
|
|
10
|
+
icon: [
|
|
11
|
+
v,
|
|
12
|
+
o,
|
|
13
|
+
i,
|
|
14
|
+
f,
|
|
15
|
+
h
|
|
16
|
+
]
|
|
17
|
+
}, a.faChevronDown = a.definition, a.prefix = n, a.iconName = r, a.width = v, a.height = o, a.ligatures = i, a.unicode = f, a.svgPathData = h, a.aliases = i;
|
|
18
|
+
})(e), e);
|
|
19
|
+
}
|
|
49
20
|
export {
|
|
50
|
-
|
|
21
|
+
d as __require
|
|
51
22
|
};
|
package/dist/bundle.es64.js
CHANGED
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
import { useEffectWithLayout as d } from "./bundle.es73.js";
|
|
3
|
-
const g = (r, f) => {
|
|
4
|
-
const c = l(null), i = l(null), o = { Right: c, Left: i }, u = p((t) => {
|
|
5
|
-
if (r.current) {
|
|
6
|
-
const n = r.current.style, e = o[t];
|
|
7
|
-
e.current && e.current.clientWidth ? n[`padding${t}`] !== `${e.current.clientWidth}px` && (n[`padding${t}`] = `${e.current.clientWidth}px`) : n[`padding${t}`] && (n[`padding${t}`] = "");
|
|
8
|
-
}
|
|
9
|
-
}, []);
|
|
10
|
-
return d(() => {
|
|
11
|
-
u("Left"), u("Right");
|
|
12
|
-
}, f), { rightRef: c, leftRef: i };
|
|
13
|
-
};
|
|
1
|
+
var o = {};
|
|
14
2
|
export {
|
|
15
|
-
|
|
3
|
+
o as __exports
|
|
16
4
|
};
|
package/dist/bundle.es65.js
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
import { __exports as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import { __exports as a } from "./bundle.es66.js";
|
|
2
|
+
import { __require as n } from "./bundle.es67.js";
|
|
3
|
+
var r;
|
|
4
|
+
function f() {
|
|
5
|
+
return r ? a : (r = 1, (function(e) {
|
|
6
|
+
Object.defineProperty(e, "__esModule", { value: !0 });
|
|
7
|
+
var i = /* @__PURE__ */ n();
|
|
8
|
+
e.definition = {
|
|
9
|
+
prefix: i.prefix,
|
|
10
|
+
iconName: i.iconName,
|
|
10
11
|
icon: [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
i,
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
i.width,
|
|
13
|
+
i.height,
|
|
14
|
+
i.aliases,
|
|
15
|
+
i.unicode,
|
|
16
|
+
i.svgPathData
|
|
16
17
|
]
|
|
17
|
-
},
|
|
18
|
-
})(
|
|
18
|
+
}, e.faClose = e.definition, e.prefix = i.prefix, e.iconName = i.iconName, e.width = i.width, e.height = i.height, e.ligatures = i.aliases, e.unicode = i.unicode, e.svgPathData = i.svgPathData, e.aliases = i.aliases;
|
|
19
|
+
})(a), a);
|
|
19
20
|
}
|
|
20
21
|
export {
|
|
21
|
-
|
|
22
|
+
f as __require
|
|
22
23
|
};
|
package/dist/bundle.es66.js
CHANGED
package/dist/bundle.es67.js
CHANGED
|
@@ -1,23 +1,22 @@
|
|
|
1
|
-
import { __exports as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
iconName: i.iconName,
|
|
1
|
+
import { __exports as e } from "./bundle.es70.js";
|
|
2
|
+
var t;
|
|
3
|
+
function d() {
|
|
4
|
+
return t ? e : (t = 1, (function(a) {
|
|
5
|
+
Object.defineProperty(a, "__esModule", { value: !0 });
|
|
6
|
+
var r = "fas", n = "xmark", c = 384, f = 512, i = [128473, 10005, 10006, 10060, 215, "close", "multiply", "remove", "times"], u = "f00d", m = "M55.1 73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L147.2 256 9.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192.5 301.3 329.9 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.8 256 375.1 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192.5 210.7 55.1 73.4z";
|
|
7
|
+
a.definition = {
|
|
8
|
+
prefix: r,
|
|
9
|
+
iconName: n,
|
|
11
10
|
icon: [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
i
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
c,
|
|
12
|
+
f,
|
|
13
|
+
i,
|
|
14
|
+
u,
|
|
15
|
+
m
|
|
17
16
|
]
|
|
18
|
-
},
|
|
19
|
-
})(
|
|
17
|
+
}, a.faXmark = a.definition, a.prefix = r, a.iconName = n, a.width = c, a.height = f, a.ligatures = i, a.unicode = u, a.svgPathData = m, a.aliases = i;
|
|
18
|
+
})(e), e);
|
|
20
19
|
}
|
|
21
20
|
export {
|
|
22
|
-
|
|
21
|
+
d as __require
|
|
23
22
|
};
|
package/dist/bundle.es68.js
CHANGED
|
@@ -1,4 +1,78 @@
|
|
|
1
|
-
|
|
1
|
+
import { jsxs as f, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { useCallback as h, useMemo as d } from "react";
|
|
3
|
+
import { Select as p } from "./bundle.es9.js";
|
|
4
|
+
import { getMonths as Y, getYears as k, DEFAULT_MAX_YEAR as u, DEFAULT_MIN_YEAR as g } from "./bundle.es53.js";
|
|
5
|
+
import { Icon as C } from "./bundle.es30.js";
|
|
6
|
+
import { f as z } from "./bundle.es72.js";
|
|
7
|
+
import { f as L } from "./bundle.es73.js";
|
|
8
|
+
import { setMonth as R, setYear as T } from "./bundle.es52.js";
|
|
9
|
+
const S = ({
|
|
10
|
+
viewDate: n,
|
|
11
|
+
onChange: m,
|
|
12
|
+
isMonthDisabled: a,
|
|
13
|
+
isYearDisabled: c,
|
|
14
|
+
onNextMonth: v,
|
|
15
|
+
onPrevMonth: x
|
|
16
|
+
}) => {
|
|
17
|
+
const r = n.getFullYear(), e = n.getMonth(), i = "ru", N = h(
|
|
18
|
+
(t) => {
|
|
19
|
+
m(R(n, t));
|
|
20
|
+
},
|
|
21
|
+
[m, n]
|
|
22
|
+
), E = h(
|
|
23
|
+
(t) => {
|
|
24
|
+
m(T(n, t));
|
|
25
|
+
},
|
|
26
|
+
[m, n]
|
|
27
|
+
), M = d(() => Y(i).map((t) => ({
|
|
28
|
+
...t,
|
|
29
|
+
className: "capitalize",
|
|
30
|
+
disabled: a && a(t.value)
|
|
31
|
+
})), [i, a]), A = d(() => k(r, 100).map((t) => ({
|
|
32
|
+
...t,
|
|
33
|
+
disabled: c && c(t.value)
|
|
34
|
+
})), [r, c]);
|
|
35
|
+
let l = e === 11 && r === u;
|
|
36
|
+
a && !l && (l = a(
|
|
37
|
+
e === 11 ? 0 : e + 1,
|
|
38
|
+
e === 11 ? Math.min(r + 1, u) : r
|
|
39
|
+
));
|
|
40
|
+
let s = e === 0 && r === g;
|
|
41
|
+
return a && !s && (s = a(
|
|
42
|
+
e === 0 ? 11 : e - 1,
|
|
43
|
+
e === 0 ? Math.max(r - 1, g) : r
|
|
44
|
+
)), /* @__PURE__ */ f("div", { className: "calendar-header", children: [
|
|
45
|
+
!s && /* @__PURE__ */ o("button", { className: "calendar-navigation", "data-side": "left", onClick: x, children: /* @__PURE__ */ o(C, { icon: L.faChevronLeft }) }),
|
|
46
|
+
/* @__PURE__ */ f("div", { className: "calendar-pickers", children: [
|
|
47
|
+
/* @__PURE__ */ o(
|
|
48
|
+
p,
|
|
49
|
+
{
|
|
50
|
+
fill: !0,
|
|
51
|
+
options: A,
|
|
52
|
+
size: "sm",
|
|
53
|
+
value: r,
|
|
54
|
+
minimalOptions: !0,
|
|
55
|
+
matchTarget: "min-width",
|
|
56
|
+
onChange: (t) => E(t)
|
|
57
|
+
}
|
|
58
|
+
),
|
|
59
|
+
/* @__PURE__ */ o(
|
|
60
|
+
p,
|
|
61
|
+
{
|
|
62
|
+
fill: !0,
|
|
63
|
+
options: M,
|
|
64
|
+
size: "sm",
|
|
65
|
+
className: "capitalize",
|
|
66
|
+
value: e,
|
|
67
|
+
minimalOptions: !0,
|
|
68
|
+
matchTarget: "min-width",
|
|
69
|
+
onChange: (t) => N(t)
|
|
70
|
+
}
|
|
71
|
+
)
|
|
72
|
+
] }),
|
|
73
|
+
!l && /* @__PURE__ */ o("button", { className: "calendar-navigation", "data-side": "right", onClick: v, children: /* @__PURE__ */ o(C, { icon: z.faChevronRight }) })
|
|
74
|
+
] });
|
|
75
|
+
};
|
|
2
76
|
export {
|
|
3
|
-
|
|
77
|
+
S as CalendarHeader
|
|
4
78
|
};
|
package/dist/bundle.es69.js
CHANGED
|
@@ -1,22 +1,51 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
import { subMonths as L, addMonths as N, useDayDisableCheker as R } from "./bundle.es52.js";
|
|
2
|
+
import { DEFAULT_MIN_YEAR as w, DEFAULT_MAX_YEAR as A } from "./bundle.es53.js";
|
|
3
|
+
import { useState as U, useCallback as M } from "react";
|
|
4
|
+
const X = ({
|
|
5
|
+
value: p,
|
|
6
|
+
disablePast: r,
|
|
7
|
+
disableFuture: c,
|
|
8
|
+
shouldDisableDate: E,
|
|
9
|
+
minDateTime: l,
|
|
10
|
+
maxDateTime: s
|
|
11
|
+
}) => {
|
|
12
|
+
const [e, u] = U(p || /* @__PURE__ */ new Date()), _ = M(() => {
|
|
13
|
+
u(L(e));
|
|
14
|
+
}, [e]), C = M(() => {
|
|
15
|
+
u(N(e, 1));
|
|
16
|
+
}, [e]), D = R({
|
|
17
|
+
disableFuture: c,
|
|
18
|
+
disablePast: r,
|
|
19
|
+
shouldDisableDate: E,
|
|
20
|
+
minDateTime: l,
|
|
21
|
+
maxDateTime: s
|
|
22
|
+
}), k = M(
|
|
23
|
+
(o, t) => {
|
|
24
|
+
const n = /* @__PURE__ */ new Date();
|
|
25
|
+
t = t || e.getFullYear();
|
|
26
|
+
const h = l ? l.getMonth() : 0, Y = s ? s.getMonth() : 11, F = l?.getFullYear() || w, f = s?.getFullYear() || A;
|
|
27
|
+
let g = t >= F && t <= f ? t === F && h > o || t === f && o > Y : !0;
|
|
28
|
+
return c && (g = g || (t === n.getFullYear() ? o > n.getMonth() : t > n.getFullYear())), r && (g = g || (t === n.getFullYear() ? o < n.getMonth() : t < n.getFullYear())), g;
|
|
29
|
+
},
|
|
30
|
+
[c, r, e, l, s]
|
|
31
|
+
), v = M(
|
|
32
|
+
(o) => {
|
|
33
|
+
const t = /* @__PURE__ */ new Date(), n = l?.getFullYear() || w, h = s?.getFullYear() || A;
|
|
34
|
+
let Y = n > o || o > h;
|
|
35
|
+
return c && (Y = Y || o > t.getFullYear()), r && (Y = Y || o < t.getFullYear()), Y;
|
|
36
|
+
},
|
|
37
|
+
[c, r, l, s]
|
|
38
|
+
);
|
|
39
|
+
return {
|
|
40
|
+
viewDate: e,
|
|
41
|
+
setViewDate: u,
|
|
42
|
+
setPrevMonth: _,
|
|
43
|
+
setNextMonth: C,
|
|
44
|
+
isDayDisabled: D,
|
|
45
|
+
isMonthDisabled: k,
|
|
46
|
+
isYearDisabled: v
|
|
47
|
+
};
|
|
48
|
+
};
|
|
20
49
|
export {
|
|
21
|
-
|
|
50
|
+
X as useCalendar
|
|
22
51
|
};
|
package/dist/bundle.es7.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsxs as t, jsx as r } from "react/jsx-runtime";
|
|
2
2
|
import * as o from "@radix-ui/react-popover";
|
|
3
|
-
import { attr as
|
|
4
|
-
import
|
|
5
|
-
import { forwardRef as
|
|
6
|
-
const D =
|
|
3
|
+
import { attr as B } from "@companix/utils-browser";
|
|
4
|
+
import M from "classnames";
|
|
5
|
+
import { forwardRef as j, useRef as k } from "react";
|
|
6
|
+
const D = j((a, i) => {
|
|
7
7
|
const {
|
|
8
8
|
children: n,
|
|
9
9
|
sideOffset: s,
|
|
@@ -18,38 +18,40 @@ const D = M((a, i) => {
|
|
|
18
18
|
content: u,
|
|
19
19
|
onOpenChange: v,
|
|
20
20
|
align: C,
|
|
21
|
-
disabled:
|
|
22
|
-
minimal:
|
|
21
|
+
disabled: x,
|
|
22
|
+
minimal: w,
|
|
23
23
|
className: L,
|
|
24
24
|
fitMaxHeight: N = !0,
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
zIndex: O = 100,
|
|
26
|
+
side: A,
|
|
27
|
+
showArrows: P
|
|
28
|
+
} = a, e = k(null), b = () => {
|
|
28
29
|
e.current && e.current.click();
|
|
29
|
-
},
|
|
30
|
-
|
|
30
|
+
}, y = (R) => {
|
|
31
|
+
x && R.preventDefault();
|
|
31
32
|
};
|
|
32
33
|
return /* @__PURE__ */ t(o.Root, { open: g, onOpenChange: v, children: [
|
|
33
|
-
/* @__PURE__ */ r(o.Trigger, { ref: p, ...h, onClick:
|
|
34
|
+
/* @__PURE__ */ r(o.Trigger, { ref: p, ...h, onClick: y, asChild: !0, children: n }),
|
|
34
35
|
/* @__PURE__ */ r(o.Portal, { children: /* @__PURE__ */ t(
|
|
35
36
|
o.Content,
|
|
36
37
|
{
|
|
37
38
|
ref: i,
|
|
38
|
-
className:
|
|
39
|
-
side:
|
|
39
|
+
className: M("popover", L),
|
|
40
|
+
side: A,
|
|
40
41
|
align: C,
|
|
41
|
-
"data-appearance":
|
|
42
|
+
"data-appearance": w ? "minimal" : "default",
|
|
42
43
|
"data-match-target": l,
|
|
43
44
|
sideOffset: s ?? 6,
|
|
44
45
|
avoidCollisions: !0,
|
|
45
46
|
arrowPadding: 10,
|
|
47
|
+
style: { zIndex: O },
|
|
46
48
|
onAnimationStart: m,
|
|
47
49
|
onAnimationEnd: c,
|
|
48
50
|
onOpenAutoFocus: d,
|
|
49
51
|
onCloseAutoFocus: f,
|
|
50
52
|
children: [
|
|
51
53
|
/* @__PURE__ */ r(o.Close, { ref: e, style: { display: "none" } }),
|
|
52
|
-
|
|
54
|
+
P && /* @__PURE__ */ r(o.Arrow, { width: 30, height: 11, asChild: !0, children: /* @__PURE__ */ r("div", { className: "popover-arrow", children: /* @__PURE__ */ t("svg", { className: "popover-arrow-icon", viewBox: "0 0 30 11", width: 30, height: 11, children: [
|
|
53
55
|
/* @__PURE__ */ r(
|
|
54
56
|
"path",
|
|
55
57
|
{
|
|
@@ -69,7 +71,7 @@ const D = M((a, i) => {
|
|
|
69
71
|
}
|
|
70
72
|
)
|
|
71
73
|
] }) }) }),
|
|
72
|
-
/* @__PURE__ */ r("div", { className: "popover-content", "data-fit-max-height":
|
|
74
|
+
/* @__PURE__ */ r("div", { className: "popover-content", "data-fit-max-height": B(N), children: u({ close: b }) })
|
|
73
75
|
]
|
|
74
76
|
}
|
|
75
77
|
) })
|
package/dist/bundle.es71.js
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { useRef as f, useLayoutEffect as u, useEffect as s } from "react";
|
|
2
|
+
const o = (t, r) => {
|
|
3
|
+
const e = f(!1);
|
|
4
|
+
u(() => {
|
|
5
|
+
e.current = !0, t();
|
|
6
|
+
}, []), s(() => {
|
|
7
|
+
if (e.current) {
|
|
8
|
+
e.current = !1;
|
|
9
|
+
return;
|
|
10
|
+
}
|
|
11
|
+
t();
|
|
12
|
+
}, r);
|
|
13
|
+
};
|
|
3
14
|
export {
|
|
4
|
-
o as
|
|
15
|
+
o as useEffectWithLayout
|
|
5
16
|
};
|
package/dist/bundle.es72.js
CHANGED
package/dist/bundle.es73.js
CHANGED
|
@@ -1,16 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
const e = f(!1);
|
|
4
|
-
u(() => {
|
|
5
|
-
e.current = !0, t();
|
|
6
|
-
}, []), s(() => {
|
|
7
|
-
if (e.current) {
|
|
8
|
-
e.current = !1;
|
|
9
|
-
return;
|
|
10
|
-
}
|
|
11
|
-
t();
|
|
12
|
-
}, r);
|
|
13
|
-
};
|
|
1
|
+
import { __require as r } from "./bundle.es76.js";
|
|
2
|
+
var o = /* @__PURE__ */ r();
|
|
14
3
|
export {
|
|
15
|
-
o as
|
|
4
|
+
o as f
|
|
16
5
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ export { createAlertAgent } from './DialogAlert';
|
|
|
63
63
|
export { createToaster } from './Toaster';
|
|
64
64
|
export { Toast } from './Toaster/Toast';
|
|
65
65
|
export * from './types';
|
|
66
|
-
export type { CalendarProps } from './
|
|
66
|
+
export type { CalendarProps } from './Calendar/Calendar';
|
|
67
67
|
export { createDialogsRegistry, DialogShell } from './__helpers/createDialogRegistry';
|
|
68
68
|
export { createPopoversRegistry } from './__helpers/createPopoversRegistry';
|
|
69
69
|
export type { PopupProps } from './__helpers/createDialogRegistry';
|
package/dist/index.scss
CHANGED
|
@@ -17,8 +17,7 @@
|
|
|
17
17
|
@use './Input/Input.scss';
|
|
18
18
|
@use './Input/Form.scss';
|
|
19
19
|
@use './DateInput/DateInput.scss';
|
|
20
|
-
@use './
|
|
21
|
-
@use './DatePicker/Calendar.scss';
|
|
20
|
+
@use './Calendar/Calendar.scss';
|
|
22
21
|
@use './Switch/Switch.scss';
|
|
23
22
|
@use './Spinner/Spinner.scss';
|
|
24
23
|
@use './ButtonGroup/ButtonGroup.scss';
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|