@fctc/widget-logic 5.2.9 → 5.3.1
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/config.d.mts +0 -1
- package/dist/config.d.ts +0 -1
- package/dist/hooks.d.mts +3 -13
- package/dist/hooks.d.ts +3 -13
- package/dist/hooks.js +345 -158
- package/dist/hooks.mjs +325 -148
- package/dist/index.d.mts +3 -5
- package/dist/index.d.ts +3 -5
- package/dist/index.js +531 -4690
- package/dist/index.mjs +425 -4603
- package/dist/utils.d.mts +5 -8
- package/dist/utils.d.ts +5 -8
- package/dist/utils.js +326 -104
- package/dist/utils.mjs +313 -101
- package/dist/widget.d.mts +0 -5
- package/dist/widget.d.ts +0 -5
- package/dist/widget.js +504 -4378
- package/dist/widget.mjs +407 -4299
- package/package.json +14 -33
- package/dist/icons.d.mts +0 -27
- package/dist/icons.d.ts +0 -27
- package/dist/icons.js +0 -273
- package/dist/icons.mjs +0 -239
- package/dist/store.d.mts +0 -1
- package/dist/store.d.ts +0 -1
- package/dist/store.js +0 -24
- package/dist/store.mjs +0 -2
package/package.json
CHANGED
|
@@ -1,69 +1,49 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fctc/widget-logic",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.1",
|
|
4
4
|
"types": "dist/index.d.ts",
|
|
5
|
-
"main": "dist/index.
|
|
5
|
+
"main": "dist/index.mjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
|
-
"import": "./dist/index.mjs"
|
|
11
|
-
"require": "./dist/index.cjs"
|
|
10
|
+
"import": "./dist/index.mjs"
|
|
12
11
|
},
|
|
13
12
|
"./hooks": {
|
|
14
13
|
"types": "./dist/hooks.d.ts",
|
|
15
|
-
"import": "./dist/hooks.mjs"
|
|
16
|
-
"require": "./dist/hooks.cjs"
|
|
14
|
+
"import": "./dist/hooks.mjs"
|
|
17
15
|
},
|
|
18
16
|
"./widget": {
|
|
19
17
|
"types": "./dist/widget.d.ts",
|
|
20
|
-
"import": "./dist/widget.mjs"
|
|
21
|
-
"require": "./dist/widget.cjs"
|
|
22
|
-
},
|
|
23
|
-
"./icons": {
|
|
24
|
-
"types": "./dist/icons.d.ts",
|
|
25
|
-
"import": "./dist/icons.mjs",
|
|
26
|
-
"require": "./dist/icons.cjs"
|
|
18
|
+
"import": "./dist/widget.mjs"
|
|
27
19
|
},
|
|
28
20
|
"./utils": {
|
|
29
21
|
"types": "./dist/utils.d.ts",
|
|
30
|
-
"import": "./dist/utils.mjs"
|
|
31
|
-
"require": "./dist/utils.cjs"
|
|
32
|
-
},
|
|
33
|
-
"./store": {
|
|
34
|
-
"types": "./dist/store.d.ts",
|
|
35
|
-
"import": "./dist/store.mjs",
|
|
36
|
-
"require": "./dist/store.cjs"
|
|
22
|
+
"import": "./dist/utils.mjs"
|
|
37
23
|
},
|
|
38
24
|
"./config": {
|
|
39
25
|
"types": "./dist/config.d.ts",
|
|
40
|
-
"import": "./dist/config.mjs"
|
|
41
|
-
"require": "./dist/config.cjs"
|
|
26
|
+
"import": "./dist/config.mjs"
|
|
42
27
|
},
|
|
43
28
|
"./constants": {
|
|
44
29
|
"types": "./dist/constants.d.ts",
|
|
45
|
-
"import": "./dist/constants.mjs"
|
|
46
|
-
"require": "./dist/constants.cjs"
|
|
30
|
+
"import": "./dist/constants.mjs"
|
|
47
31
|
},
|
|
48
32
|
"./environment": {
|
|
49
33
|
"types": "./dist/environment.d.ts",
|
|
50
|
-
"import": "./dist/environment.mjs"
|
|
51
|
-
"require": "./dist/environment.cjs"
|
|
34
|
+
"import": "./dist/environment.mjs"
|
|
52
35
|
},
|
|
53
36
|
"./provider": {
|
|
54
37
|
"types": "./dist/provider.d.ts",
|
|
55
|
-
"import": "./dist/provider.mjs"
|
|
56
|
-
"require": "./dist/provider.cjs"
|
|
38
|
+
"import": "./dist/provider.mjs"
|
|
57
39
|
},
|
|
58
40
|
"./services": {
|
|
59
41
|
"types": "./dist/services.d.ts",
|
|
60
|
-
"import": "./dist/services.mjs"
|
|
61
|
-
"require": "./dist/services.cjs"
|
|
42
|
+
"import": "./dist/services.mjs"
|
|
62
43
|
},
|
|
63
44
|
"./types": {
|
|
64
45
|
"types": "./dist/types.d.ts",
|
|
65
|
-
"import": "./dist/types.mjs"
|
|
66
|
-
"require": "./dist/types.cjs"
|
|
46
|
+
"import": "./dist/types.mjs"
|
|
67
47
|
}
|
|
68
48
|
},
|
|
69
49
|
"files": [
|
|
@@ -74,10 +54,11 @@
|
|
|
74
54
|
"test": "jest"
|
|
75
55
|
},
|
|
76
56
|
"dependencies": {
|
|
77
|
-
"@fctc/interface-logic": "^4.5.
|
|
57
|
+
"@fctc/interface-logic": "^4.5.10",
|
|
78
58
|
"@tanstack/react-query": "^5.84.0",
|
|
79
59
|
"i18next": "^25.3.2",
|
|
80
60
|
"i18next-browser-languagedetector": "^8.2.0",
|
|
61
|
+
"moment": "^2.30.1",
|
|
81
62
|
"react-i18next": "^15.6.1"
|
|
82
63
|
},
|
|
83
64
|
"devDependencies": {
|
package/dist/icons.d.mts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
|
|
3
|
-
declare const EyeIcon: React.FC<React.SVGProps<SVGSVGElement>>;
|
|
4
|
-
|
|
5
|
-
declare const LoadingIcon: ({ width, height, ...props }: React.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
6
|
-
|
|
7
|
-
declare const CloseIcon: ({ className }: {
|
|
8
|
-
className?: string;
|
|
9
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
10
|
-
|
|
11
|
-
declare const FilterIcon: ({ className }: {
|
|
12
|
-
className?: string;
|
|
13
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
14
|
-
|
|
15
|
-
declare const CheckIcon: () => react_jsx_runtime.JSX.Element;
|
|
16
|
-
|
|
17
|
-
declare const GroupByIcon: ({ className }: {
|
|
18
|
-
className?: string;
|
|
19
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
20
|
-
|
|
21
|
-
declare const SearchIcon: () => react_jsx_runtime.JSX.Element;
|
|
22
|
-
|
|
23
|
-
declare const ChevronBottomIcon: ({ className, }: {
|
|
24
|
-
className?: string;
|
|
25
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
26
|
-
|
|
27
|
-
export { CheckIcon, ChevronBottomIcon, CloseIcon, EyeIcon, FilterIcon, GroupByIcon, LoadingIcon, SearchIcon };
|
package/dist/icons.d.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
|
|
3
|
-
declare const EyeIcon: React.FC<React.SVGProps<SVGSVGElement>>;
|
|
4
|
-
|
|
5
|
-
declare const LoadingIcon: ({ width, height, ...props }: React.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
6
|
-
|
|
7
|
-
declare const CloseIcon: ({ className }: {
|
|
8
|
-
className?: string;
|
|
9
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
10
|
-
|
|
11
|
-
declare const FilterIcon: ({ className }: {
|
|
12
|
-
className?: string;
|
|
13
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
14
|
-
|
|
15
|
-
declare const CheckIcon: () => react_jsx_runtime.JSX.Element;
|
|
16
|
-
|
|
17
|
-
declare const GroupByIcon: ({ className }: {
|
|
18
|
-
className?: string;
|
|
19
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
20
|
-
|
|
21
|
-
declare const SearchIcon: () => react_jsx_runtime.JSX.Element;
|
|
22
|
-
|
|
23
|
-
declare const ChevronBottomIcon: ({ className, }: {
|
|
24
|
-
className?: string;
|
|
25
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
26
|
-
|
|
27
|
-
export { CheckIcon, ChevronBottomIcon, CloseIcon, EyeIcon, FilterIcon, GroupByIcon, LoadingIcon, SearchIcon };
|
package/dist/icons.js
DELETED
|
@@ -1,273 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/icons.ts
|
|
21
|
-
var icons_exports = {};
|
|
22
|
-
__export(icons_exports, {
|
|
23
|
-
CheckIcon: () => CheckIcon,
|
|
24
|
-
ChevronBottomIcon: () => ChevronBottomIcon,
|
|
25
|
-
CloseIcon: () => CloseIcon,
|
|
26
|
-
EyeIcon: () => EyeIcon,
|
|
27
|
-
FilterIcon: () => FilterIcon,
|
|
28
|
-
GroupByIcon: () => GroupByIcon,
|
|
29
|
-
LoadingIcon: () => LoadingIcon,
|
|
30
|
-
SearchIcon: () => SearchIcon
|
|
31
|
-
});
|
|
32
|
-
module.exports = __toCommonJS(icons_exports);
|
|
33
|
-
|
|
34
|
-
// src/icons/eye-icon.tsx
|
|
35
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
36
|
-
var EyeIcon = () => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
37
|
-
"svg",
|
|
38
|
-
{
|
|
39
|
-
width: "20",
|
|
40
|
-
height: "21",
|
|
41
|
-
viewBox: "0 0 20 21",
|
|
42
|
-
fill: "none",
|
|
43
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
44
|
-
children: [
|
|
45
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
46
|
-
"path",
|
|
47
|
-
{
|
|
48
|
-
d: "M2.72904 13.5776C2.02076 12.6574 1.66663 12.1974 1.66663 10.8312C1.66663 9.46507 2.02076 9.00499 2.72904 8.08483C4.14326 6.24752 6.51505 4.16455 9.99996 4.16455C13.4849 4.16455 15.8567 6.24752 17.2709 8.08483C17.9792 9.00499 18.3333 9.46507 18.3333 10.8312C18.3333 12.1974 17.9792 12.6574 17.2709 13.5776C15.8567 15.4149 13.4849 17.4979 9.99996 17.4979C6.51505 17.4979 4.14326 15.4149 2.72904 13.5776Z",
|
|
49
|
-
stroke: "#ABACAE",
|
|
50
|
-
strokeWidth: "1.5"
|
|
51
|
-
}
|
|
52
|
-
),
|
|
53
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
54
|
-
"path",
|
|
55
|
-
{
|
|
56
|
-
d: "M12.5 10.8311C12.5 12.2118 11.3807 13.3311 10 13.3311C8.61929 13.3311 7.5 12.2118 7.5 10.8311C7.5 9.45034 8.61929 8.33105 10 8.33105C11.3807 8.33105 12.5 9.45034 12.5 10.8311Z",
|
|
57
|
-
stroke: "#ABACAE",
|
|
58
|
-
strokeWidth: "1.5"
|
|
59
|
-
}
|
|
60
|
-
)
|
|
61
|
-
]
|
|
62
|
-
}
|
|
63
|
-
);
|
|
64
|
-
|
|
65
|
-
// src/icons/loading-icon.tsx
|
|
66
|
-
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
67
|
-
var LoadingIcon = ({
|
|
68
|
-
width = 15,
|
|
69
|
-
height = 15,
|
|
70
|
-
...props
|
|
71
|
-
}) => {
|
|
72
|
-
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
73
|
-
"svg",
|
|
74
|
-
{
|
|
75
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
76
|
-
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
77
|
-
viewBox: "0 0 100 100",
|
|
78
|
-
preserveAspectRatio: "xMidYMid",
|
|
79
|
-
width,
|
|
80
|
-
height,
|
|
81
|
-
style: {
|
|
82
|
-
shapeRendering: "auto",
|
|
83
|
-
display: "block",
|
|
84
|
-
background: "transparent"
|
|
85
|
-
},
|
|
86
|
-
...props,
|
|
87
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)("g", { children: [
|
|
88
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
89
|
-
"circle",
|
|
90
|
-
{
|
|
91
|
-
strokeDasharray: "141.37166941154067 49.12388980384689",
|
|
92
|
-
r: "30",
|
|
93
|
-
strokeWidth: "10",
|
|
94
|
-
stroke: "currentColor",
|
|
95
|
-
fill: "none",
|
|
96
|
-
cy: "50",
|
|
97
|
-
cx: "50",
|
|
98
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
99
|
-
"animateTransform",
|
|
100
|
-
{
|
|
101
|
-
keyTimes: "0;1",
|
|
102
|
-
values: "0 50 50;360 50 50",
|
|
103
|
-
dur: "0.5050505050505051s",
|
|
104
|
-
repeatCount: "indefinite",
|
|
105
|
-
type: "rotate",
|
|
106
|
-
attributeName: "transform"
|
|
107
|
-
}
|
|
108
|
-
)
|
|
109
|
-
}
|
|
110
|
-
),
|
|
111
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("g", {})
|
|
112
|
-
] })
|
|
113
|
-
}
|
|
114
|
-
);
|
|
115
|
-
};
|
|
116
|
-
|
|
117
|
-
// src/icons/close-icon.tsx
|
|
118
|
-
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
119
|
-
var CloseIcon = ({ className = "" }) => {
|
|
120
|
-
return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
121
|
-
"svg",
|
|
122
|
-
{
|
|
123
|
-
width: "24",
|
|
124
|
-
height: "24",
|
|
125
|
-
viewBox: "0 0 24 24",
|
|
126
|
-
fill: "none",
|
|
127
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
128
|
-
className,
|
|
129
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
130
|
-
"path",
|
|
131
|
-
{
|
|
132
|
-
d: "M12.0001 10.7275L16.4551 6.27246L17.7277 7.54506L13.2727 12.0001L17.7277 16.4551L16.4551 17.7277L12.0001 13.2727L7.54506 17.7277L6.27246 16.4551L10.7275 12.0001L6.27246 7.54506L7.54506 6.27246L12.0001 10.7275Z",
|
|
133
|
-
fill: "#A4A4A4"
|
|
134
|
-
}
|
|
135
|
-
)
|
|
136
|
-
}
|
|
137
|
-
);
|
|
138
|
-
};
|
|
139
|
-
|
|
140
|
-
// src/icons/filter-icon.tsx
|
|
141
|
-
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
142
|
-
var FilterIcon = ({ className }) => {
|
|
143
|
-
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
144
|
-
"svg",
|
|
145
|
-
{
|
|
146
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
147
|
-
width: "16",
|
|
148
|
-
height: "16",
|
|
149
|
-
viewBox: "0 0 24 24",
|
|
150
|
-
fill: "none",
|
|
151
|
-
stroke: "currentColor",
|
|
152
|
-
strokeWidth: "2",
|
|
153
|
-
strokeLinecap: "round",
|
|
154
|
-
strokeLinejoin: "round",
|
|
155
|
-
className: `${className} h-4 w-4`,
|
|
156
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
157
|
-
}
|
|
158
|
-
);
|
|
159
|
-
};
|
|
160
|
-
|
|
161
|
-
// src/icons/check-icon.tsx
|
|
162
|
-
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
163
|
-
var CheckIcon = () => {
|
|
164
|
-
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
165
|
-
"svg",
|
|
166
|
-
{
|
|
167
|
-
stroke: "currentColor",
|
|
168
|
-
fill: "currentColor",
|
|
169
|
-
strokeWidth: "0",
|
|
170
|
-
viewBox: "0 0 512 512",
|
|
171
|
-
height: "1em",
|
|
172
|
-
width: "1em",
|
|
173
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
174
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("path", { d: "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" })
|
|
175
|
-
}
|
|
176
|
-
);
|
|
177
|
-
};
|
|
178
|
-
|
|
179
|
-
// src/icons/groupby-icon.tsx
|
|
180
|
-
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
181
|
-
var GroupByIcon = ({ className }) => {
|
|
182
|
-
return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
183
|
-
"svg",
|
|
184
|
-
{
|
|
185
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
186
|
-
width: "16",
|
|
187
|
-
height: "16",
|
|
188
|
-
viewBox: "0 0 24 24",
|
|
189
|
-
fill: "none",
|
|
190
|
-
stroke: "currentColor",
|
|
191
|
-
strokeWidth: "2",
|
|
192
|
-
strokeLinecap: "round",
|
|
193
|
-
strokeLinejoin: "round",
|
|
194
|
-
className: `${className} h-4 w-4`,
|
|
195
|
-
children: [
|
|
196
|
-
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("polygon", { points: "12 2 2 7 12 12 22 7 12 2" }),
|
|
197
|
-
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("polyline", { points: "2 17 12 22 22 17" }),
|
|
198
|
-
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)("polyline", { points: "2 12 12 17 22 12" })
|
|
199
|
-
]
|
|
200
|
-
}
|
|
201
|
-
);
|
|
202
|
-
};
|
|
203
|
-
|
|
204
|
-
// src/icons/search-icon.tsx
|
|
205
|
-
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
206
|
-
var SearchIcon = () => {
|
|
207
|
-
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
208
|
-
"svg",
|
|
209
|
-
{
|
|
210
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
211
|
-
width: "20",
|
|
212
|
-
height: "20",
|
|
213
|
-
viewBox: "0 0 20 20",
|
|
214
|
-
fill: "none",
|
|
215
|
-
children: [
|
|
216
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
217
|
-
"path",
|
|
218
|
-
{
|
|
219
|
-
d: "M9.58334 18.1248C4.875 18.1248 1.04167 14.2915 1.04167 9.58317C1.04167 4.87484 4.875 1.0415 9.58334 1.0415C14.2917 1.0415 18.125 4.87484 18.125 9.58317C18.125 14.2915 14.2917 18.1248 9.58334 18.1248ZM9.58334 2.2915C5.55834 2.2915 2.29167 5.5665 2.29167 9.58317C2.29167 13.5998 5.55834 16.8748 9.58334 16.8748C13.6083 16.8748 16.875 13.5998 16.875 9.58317C16.875 5.5665 13.6083 2.2915 9.58334 2.2915Z",
|
|
220
|
-
fill: "#525252"
|
|
221
|
-
}
|
|
222
|
-
),
|
|
223
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
224
|
-
"path",
|
|
225
|
-
{
|
|
226
|
-
d: "M18.3333 18.9585C18.175 18.9585 18.0167 18.9002 17.8917 18.7752L16.225 17.1085C15.9833 16.8669 15.9833 16.4669 16.225 16.2252C16.4667 15.9835 16.8667 15.9835 17.1083 16.2252L18.775 17.8919C19.0167 18.1335 19.0167 18.5335 18.775 18.7752C18.65 18.9002 18.4917 18.9585 18.3333 18.9585Z",
|
|
227
|
-
fill: "#525252"
|
|
228
|
-
}
|
|
229
|
-
)
|
|
230
|
-
]
|
|
231
|
-
}
|
|
232
|
-
);
|
|
233
|
-
};
|
|
234
|
-
|
|
235
|
-
// src/icons/chevron-bottom-icon.tsx
|
|
236
|
-
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
237
|
-
var ChevronBottomIcon = ({
|
|
238
|
-
className = ""
|
|
239
|
-
}) => {
|
|
240
|
-
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
241
|
-
"svg",
|
|
242
|
-
{
|
|
243
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
244
|
-
width: "20",
|
|
245
|
-
height: "20",
|
|
246
|
-
viewBox: "0 0 20 20",
|
|
247
|
-
fill: "none",
|
|
248
|
-
className,
|
|
249
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
250
|
-
"path",
|
|
251
|
-
{
|
|
252
|
-
d: "M14 8L10.7071 11.6745C10.3182 12.1085 9.68182 12.1085 9.29293 11.6745L6 8",
|
|
253
|
-
stroke: "#525252",
|
|
254
|
-
strokeWidth: "1.5",
|
|
255
|
-
strokeMiterlimit: "10",
|
|
256
|
-
strokeLinecap: "round",
|
|
257
|
-
strokeLinejoin: "round"
|
|
258
|
-
}
|
|
259
|
-
)
|
|
260
|
-
}
|
|
261
|
-
);
|
|
262
|
-
};
|
|
263
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
264
|
-
0 && (module.exports = {
|
|
265
|
-
CheckIcon,
|
|
266
|
-
ChevronBottomIcon,
|
|
267
|
-
CloseIcon,
|
|
268
|
-
EyeIcon,
|
|
269
|
-
FilterIcon,
|
|
270
|
-
GroupByIcon,
|
|
271
|
-
LoadingIcon,
|
|
272
|
-
SearchIcon
|
|
273
|
-
});
|
package/dist/icons.mjs
DELETED
|
@@ -1,239 +0,0 @@
|
|
|
1
|
-
// src/icons/eye-icon.tsx
|
|
2
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
var EyeIcon = () => /* @__PURE__ */ jsxs(
|
|
4
|
-
"svg",
|
|
5
|
-
{
|
|
6
|
-
width: "20",
|
|
7
|
-
height: "21",
|
|
8
|
-
viewBox: "0 0 20 21",
|
|
9
|
-
fill: "none",
|
|
10
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
-
children: [
|
|
12
|
-
/* @__PURE__ */ jsx(
|
|
13
|
-
"path",
|
|
14
|
-
{
|
|
15
|
-
d: "M2.72904 13.5776C2.02076 12.6574 1.66663 12.1974 1.66663 10.8312C1.66663 9.46507 2.02076 9.00499 2.72904 8.08483C4.14326 6.24752 6.51505 4.16455 9.99996 4.16455C13.4849 4.16455 15.8567 6.24752 17.2709 8.08483C17.9792 9.00499 18.3333 9.46507 18.3333 10.8312C18.3333 12.1974 17.9792 12.6574 17.2709 13.5776C15.8567 15.4149 13.4849 17.4979 9.99996 17.4979C6.51505 17.4979 4.14326 15.4149 2.72904 13.5776Z",
|
|
16
|
-
stroke: "#ABACAE",
|
|
17
|
-
strokeWidth: "1.5"
|
|
18
|
-
}
|
|
19
|
-
),
|
|
20
|
-
/* @__PURE__ */ jsx(
|
|
21
|
-
"path",
|
|
22
|
-
{
|
|
23
|
-
d: "M12.5 10.8311C12.5 12.2118 11.3807 13.3311 10 13.3311C8.61929 13.3311 7.5 12.2118 7.5 10.8311C7.5 9.45034 8.61929 8.33105 10 8.33105C11.3807 8.33105 12.5 9.45034 12.5 10.8311Z",
|
|
24
|
-
stroke: "#ABACAE",
|
|
25
|
-
strokeWidth: "1.5"
|
|
26
|
-
}
|
|
27
|
-
)
|
|
28
|
-
]
|
|
29
|
-
}
|
|
30
|
-
);
|
|
31
|
-
|
|
32
|
-
// src/icons/loading-icon.tsx
|
|
33
|
-
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
34
|
-
var LoadingIcon = ({
|
|
35
|
-
width = 15,
|
|
36
|
-
height = 15,
|
|
37
|
-
...props
|
|
38
|
-
}) => {
|
|
39
|
-
return /* @__PURE__ */ jsx2(
|
|
40
|
-
"svg",
|
|
41
|
-
{
|
|
42
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
-
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
44
|
-
viewBox: "0 0 100 100",
|
|
45
|
-
preserveAspectRatio: "xMidYMid",
|
|
46
|
-
width,
|
|
47
|
-
height,
|
|
48
|
-
style: {
|
|
49
|
-
shapeRendering: "auto",
|
|
50
|
-
display: "block",
|
|
51
|
-
background: "transparent"
|
|
52
|
-
},
|
|
53
|
-
...props,
|
|
54
|
-
children: /* @__PURE__ */ jsxs2("g", { children: [
|
|
55
|
-
/* @__PURE__ */ jsx2(
|
|
56
|
-
"circle",
|
|
57
|
-
{
|
|
58
|
-
strokeDasharray: "141.37166941154067 49.12388980384689",
|
|
59
|
-
r: "30",
|
|
60
|
-
strokeWidth: "10",
|
|
61
|
-
stroke: "currentColor",
|
|
62
|
-
fill: "none",
|
|
63
|
-
cy: "50",
|
|
64
|
-
cx: "50",
|
|
65
|
-
children: /* @__PURE__ */ jsx2(
|
|
66
|
-
"animateTransform",
|
|
67
|
-
{
|
|
68
|
-
keyTimes: "0;1",
|
|
69
|
-
values: "0 50 50;360 50 50",
|
|
70
|
-
dur: "0.5050505050505051s",
|
|
71
|
-
repeatCount: "indefinite",
|
|
72
|
-
type: "rotate",
|
|
73
|
-
attributeName: "transform"
|
|
74
|
-
}
|
|
75
|
-
)
|
|
76
|
-
}
|
|
77
|
-
),
|
|
78
|
-
/* @__PURE__ */ jsx2("g", {})
|
|
79
|
-
] })
|
|
80
|
-
}
|
|
81
|
-
);
|
|
82
|
-
};
|
|
83
|
-
|
|
84
|
-
// src/icons/close-icon.tsx
|
|
85
|
-
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
86
|
-
var CloseIcon = ({ className = "" }) => {
|
|
87
|
-
return /* @__PURE__ */ jsx3(
|
|
88
|
-
"svg",
|
|
89
|
-
{
|
|
90
|
-
width: "24",
|
|
91
|
-
height: "24",
|
|
92
|
-
viewBox: "0 0 24 24",
|
|
93
|
-
fill: "none",
|
|
94
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
95
|
-
className,
|
|
96
|
-
children: /* @__PURE__ */ jsx3(
|
|
97
|
-
"path",
|
|
98
|
-
{
|
|
99
|
-
d: "M12.0001 10.7275L16.4551 6.27246L17.7277 7.54506L13.2727 12.0001L17.7277 16.4551L16.4551 17.7277L12.0001 13.2727L7.54506 17.7277L6.27246 16.4551L10.7275 12.0001L6.27246 7.54506L7.54506 6.27246L12.0001 10.7275Z",
|
|
100
|
-
fill: "#A4A4A4"
|
|
101
|
-
}
|
|
102
|
-
)
|
|
103
|
-
}
|
|
104
|
-
);
|
|
105
|
-
};
|
|
106
|
-
|
|
107
|
-
// src/icons/filter-icon.tsx
|
|
108
|
-
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
109
|
-
var FilterIcon = ({ className }) => {
|
|
110
|
-
return /* @__PURE__ */ jsx4(
|
|
111
|
-
"svg",
|
|
112
|
-
{
|
|
113
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
114
|
-
width: "16",
|
|
115
|
-
height: "16",
|
|
116
|
-
viewBox: "0 0 24 24",
|
|
117
|
-
fill: "none",
|
|
118
|
-
stroke: "currentColor",
|
|
119
|
-
strokeWidth: "2",
|
|
120
|
-
strokeLinecap: "round",
|
|
121
|
-
strokeLinejoin: "round",
|
|
122
|
-
className: `${className} h-4 w-4`,
|
|
123
|
-
children: /* @__PURE__ */ jsx4("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
124
|
-
}
|
|
125
|
-
);
|
|
126
|
-
};
|
|
127
|
-
|
|
128
|
-
// src/icons/check-icon.tsx
|
|
129
|
-
import { jsx as jsx5 } from "react/jsx-runtime";
|
|
130
|
-
var CheckIcon = () => {
|
|
131
|
-
return /* @__PURE__ */ jsx5(
|
|
132
|
-
"svg",
|
|
133
|
-
{
|
|
134
|
-
stroke: "currentColor",
|
|
135
|
-
fill: "currentColor",
|
|
136
|
-
strokeWidth: "0",
|
|
137
|
-
viewBox: "0 0 512 512",
|
|
138
|
-
height: "1em",
|
|
139
|
-
width: "1em",
|
|
140
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
141
|
-
children: /* @__PURE__ */ jsx5("path", { d: "M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z" })
|
|
142
|
-
}
|
|
143
|
-
);
|
|
144
|
-
};
|
|
145
|
-
|
|
146
|
-
// src/icons/groupby-icon.tsx
|
|
147
|
-
import { jsx as jsx6, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
148
|
-
var GroupByIcon = ({ className }) => {
|
|
149
|
-
return /* @__PURE__ */ jsxs3(
|
|
150
|
-
"svg",
|
|
151
|
-
{
|
|
152
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
153
|
-
width: "16",
|
|
154
|
-
height: "16",
|
|
155
|
-
viewBox: "0 0 24 24",
|
|
156
|
-
fill: "none",
|
|
157
|
-
stroke: "currentColor",
|
|
158
|
-
strokeWidth: "2",
|
|
159
|
-
strokeLinecap: "round",
|
|
160
|
-
strokeLinejoin: "round",
|
|
161
|
-
className: `${className} h-4 w-4`,
|
|
162
|
-
children: [
|
|
163
|
-
/* @__PURE__ */ jsx6("polygon", { points: "12 2 2 7 12 12 22 7 12 2" }),
|
|
164
|
-
/* @__PURE__ */ jsx6("polyline", { points: "2 17 12 22 22 17" }),
|
|
165
|
-
/* @__PURE__ */ jsx6("polyline", { points: "2 12 12 17 22 12" })
|
|
166
|
-
]
|
|
167
|
-
}
|
|
168
|
-
);
|
|
169
|
-
};
|
|
170
|
-
|
|
171
|
-
// src/icons/search-icon.tsx
|
|
172
|
-
import { jsx as jsx7, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
173
|
-
var SearchIcon = () => {
|
|
174
|
-
return /* @__PURE__ */ jsxs4(
|
|
175
|
-
"svg",
|
|
176
|
-
{
|
|
177
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
178
|
-
width: "20",
|
|
179
|
-
height: "20",
|
|
180
|
-
viewBox: "0 0 20 20",
|
|
181
|
-
fill: "none",
|
|
182
|
-
children: [
|
|
183
|
-
/* @__PURE__ */ jsx7(
|
|
184
|
-
"path",
|
|
185
|
-
{
|
|
186
|
-
d: "M9.58334 18.1248C4.875 18.1248 1.04167 14.2915 1.04167 9.58317C1.04167 4.87484 4.875 1.0415 9.58334 1.0415C14.2917 1.0415 18.125 4.87484 18.125 9.58317C18.125 14.2915 14.2917 18.1248 9.58334 18.1248ZM9.58334 2.2915C5.55834 2.2915 2.29167 5.5665 2.29167 9.58317C2.29167 13.5998 5.55834 16.8748 9.58334 16.8748C13.6083 16.8748 16.875 13.5998 16.875 9.58317C16.875 5.5665 13.6083 2.2915 9.58334 2.2915Z",
|
|
187
|
-
fill: "#525252"
|
|
188
|
-
}
|
|
189
|
-
),
|
|
190
|
-
/* @__PURE__ */ jsx7(
|
|
191
|
-
"path",
|
|
192
|
-
{
|
|
193
|
-
d: "M18.3333 18.9585C18.175 18.9585 18.0167 18.9002 17.8917 18.7752L16.225 17.1085C15.9833 16.8669 15.9833 16.4669 16.225 16.2252C16.4667 15.9835 16.8667 15.9835 17.1083 16.2252L18.775 17.8919C19.0167 18.1335 19.0167 18.5335 18.775 18.7752C18.65 18.9002 18.4917 18.9585 18.3333 18.9585Z",
|
|
194
|
-
fill: "#525252"
|
|
195
|
-
}
|
|
196
|
-
)
|
|
197
|
-
]
|
|
198
|
-
}
|
|
199
|
-
);
|
|
200
|
-
};
|
|
201
|
-
|
|
202
|
-
// src/icons/chevron-bottom-icon.tsx
|
|
203
|
-
import { jsx as jsx8 } from "react/jsx-runtime";
|
|
204
|
-
var ChevronBottomIcon = ({
|
|
205
|
-
className = ""
|
|
206
|
-
}) => {
|
|
207
|
-
return /* @__PURE__ */ jsx8(
|
|
208
|
-
"svg",
|
|
209
|
-
{
|
|
210
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
211
|
-
width: "20",
|
|
212
|
-
height: "20",
|
|
213
|
-
viewBox: "0 0 20 20",
|
|
214
|
-
fill: "none",
|
|
215
|
-
className,
|
|
216
|
-
children: /* @__PURE__ */ jsx8(
|
|
217
|
-
"path",
|
|
218
|
-
{
|
|
219
|
-
d: "M14 8L10.7071 11.6745C10.3182 12.1085 9.68182 12.1085 9.29293 11.6745L6 8",
|
|
220
|
-
stroke: "#525252",
|
|
221
|
-
strokeWidth: "1.5",
|
|
222
|
-
strokeMiterlimit: "10",
|
|
223
|
-
strokeLinecap: "round",
|
|
224
|
-
strokeLinejoin: "round"
|
|
225
|
-
}
|
|
226
|
-
)
|
|
227
|
-
}
|
|
228
|
-
);
|
|
229
|
-
};
|
|
230
|
-
export {
|
|
231
|
-
CheckIcon,
|
|
232
|
-
ChevronBottomIcon,
|
|
233
|
-
CloseIcon,
|
|
234
|
-
EyeIcon,
|
|
235
|
-
FilterIcon,
|
|
236
|
-
GroupByIcon,
|
|
237
|
-
LoadingIcon,
|
|
238
|
-
SearchIcon
|
|
239
|
-
};
|
package/dist/store.d.mts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@fctc/interface-logic/store';
|
package/dist/store.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@fctc/interface-logic/store';
|