@kanda-libs/ks-component-ts 0.2.265 → 0.2.267
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/app/src/App.tsx +76 -2
- package/app/yarn.lock +90 -138
- package/dist/index.d.ts +9841 -9828
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +4 -4
- package/dist/library.css +108 -8
- package/package.json +1 -1
- package/src/field/components/RangeInput/RangeInputUncontrolled.tsx +77 -0
- package/src/field/components/RangeInput/constants.ts +14 -0
- package/src/field/components/RangeInput/helpers.ts +1 -0
- package/src/field/components/RangeInput/index.tsx +28 -0
- package/src/field/components/RangeInput/useRangeInputProps.ts +97 -0
- package/src/field/index.ts +4 -0
- package/src/generated/widget/index.tsx +45816 -45815
- package/src/styles/library.css +108 -8
- package/src/styles/tailwind.css +30 -0
package/app/src/App.tsx
CHANGED
|
@@ -8,9 +8,11 @@ import {
|
|
|
8
8
|
OptionalHiddenField,
|
|
9
9
|
Label,
|
|
10
10
|
SearchInput,
|
|
11
|
+
ValidationItems,
|
|
11
12
|
} from "@kanda-libs/ks-component-ts";
|
|
12
13
|
import { StringIndexedObject } from "~/types";
|
|
13
|
-
import { useState } from "react";
|
|
14
|
+
import { useEffect, useState } from "react";
|
|
15
|
+
import { Button } from "@kanda-libs/ks-design-library";
|
|
14
16
|
|
|
15
17
|
if (!(Window.prototype as StringIndexedObject).setImmediate) {
|
|
16
18
|
(Window.prototype as StringIndexedObject).setImmediate = function () {
|
|
@@ -22,15 +24,87 @@ const capitalise = (str: string) => str.charAt(0).toUpperCase() + str.slice(1);
|
|
|
22
24
|
|
|
23
25
|
function App() {
|
|
24
26
|
const form = useForm({
|
|
27
|
+
mode: "onBlur",
|
|
25
28
|
defaultValues: {
|
|
26
|
-
|
|
29
|
+
range1: "100000",
|
|
30
|
+
range2: "100000",
|
|
27
31
|
},
|
|
28
32
|
});
|
|
33
|
+
|
|
34
|
+
const { watch, setValue } = form;
|
|
35
|
+
const { range1, range2 } = watch();
|
|
36
|
+
|
|
37
|
+
const onSubmit = (data: StringIndexedObject) => console.log({ data });
|
|
29
38
|
const [query, setQuery] = useState("");
|
|
30
39
|
|
|
40
|
+
const validateRange = (
|
|
41
|
+
value: string | number | boolean | undefined
|
|
42
|
+
): boolean => {
|
|
43
|
+
const v = `${value}`;
|
|
44
|
+
const test = parseInt(v, 10);
|
|
45
|
+
if (test < 50000) return false;
|
|
46
|
+
return true;
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
const validation: ValidationItems = {
|
|
50
|
+
validate: {
|
|
51
|
+
value: (value: string | number | boolean | undefined) =>
|
|
52
|
+
validateRange(value),
|
|
53
|
+
message: "Must be between over £500",
|
|
54
|
+
},
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
const formatter = (value: string) => {
|
|
58
|
+
const pounds = new Intl.NumberFormat("en-BG", {
|
|
59
|
+
style: "currency",
|
|
60
|
+
currency: "GBP",
|
|
61
|
+
}).format(parseInt(value) / 100);
|
|
62
|
+
return pounds;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
const [isLoading, setIsLoading] = useState<boolean>(false);
|
|
66
|
+
|
|
67
|
+
useEffect(() => {
|
|
68
|
+
const n = 200000 - parseInt(range1, 10);
|
|
69
|
+
setValue("range2", String(n));
|
|
70
|
+
}, [range1]);
|
|
71
|
+
|
|
31
72
|
return (
|
|
32
73
|
<div style={{ maxWidth: 500 }}>
|
|
33
74
|
<SearchInput query={query} onSearch={setQuery} />
|
|
75
|
+
<button
|
|
76
|
+
onClick={() => {
|
|
77
|
+
console.log("click");
|
|
78
|
+
setIsLoading(!isLoading);
|
|
79
|
+
}}
|
|
80
|
+
className="mb-10"
|
|
81
|
+
>
|
|
82
|
+
change
|
|
83
|
+
</button>
|
|
84
|
+
<div className="px-5">
|
|
85
|
+
<Form
|
|
86
|
+
id="ksts-test-form"
|
|
87
|
+
form={form}
|
|
88
|
+
onSubmit={onSubmit}
|
|
89
|
+
className="flex flex-col"
|
|
90
|
+
>
|
|
91
|
+
<Field.RangeInput
|
|
92
|
+
name="range1"
|
|
93
|
+
isLoading={isLoading}
|
|
94
|
+
min="0"
|
|
95
|
+
max="200000"
|
|
96
|
+
formatter={formatter}
|
|
97
|
+
/>
|
|
98
|
+
<Field.RangeInput
|
|
99
|
+
name="range2"
|
|
100
|
+
isLoading={isLoading}
|
|
101
|
+
min="0"
|
|
102
|
+
max="200000"
|
|
103
|
+
formatter={formatter}
|
|
104
|
+
/>
|
|
105
|
+
<Button.Text submit label="submit" id="ksts-test-form-submit" />
|
|
106
|
+
</Form>
|
|
107
|
+
</div>
|
|
34
108
|
</div>
|
|
35
109
|
);
|
|
36
110
|
}
|
package/app/yarn.lock
CHANGED
|
@@ -2,72 +2,6 @@
|
|
|
2
2
|
# yarn lockfile v1
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
"@amplitude/analytics-browser@^1.6.4":
|
|
6
|
-
version "1.9.0"
|
|
7
|
-
resolved "https://registry.yarnpkg.com/@amplitude/analytics-browser/-/analytics-browser-1.9.0.tgz#fdc7d38b246713b0578621b8d1787044d08ac5c5"
|
|
8
|
-
integrity sha512-sJwlTScvz3znNQ6veSqf9b0sg4GPoESZnidWyb+dbAJgyOrizEBFbLFPRQDG6DDrG2FjJGWd4gG2oMU1xhSC4Q==
|
|
9
|
-
dependencies:
|
|
10
|
-
"@amplitude/analytics-client-common" "^0.6.0"
|
|
11
|
-
"@amplitude/analytics-core" "^0.12.0"
|
|
12
|
-
"@amplitude/analytics-types" "^0.17.0"
|
|
13
|
-
"@amplitude/plugin-page-view-tracking-browser" "^0.6.0"
|
|
14
|
-
"@amplitude/plugin-web-attribution-browser" "^0.6.0"
|
|
15
|
-
"@amplitude/ua-parser-js" "^0.7.31"
|
|
16
|
-
tslib "^2.4.1"
|
|
17
|
-
|
|
18
|
-
"@amplitude/analytics-client-common@^0.6.0":
|
|
19
|
-
version "0.6.0"
|
|
20
|
-
resolved "https://registry.yarnpkg.com/@amplitude/analytics-client-common/-/analytics-client-common-0.6.0.tgz#de3a822972097628cbd2ff07161d7f42ed8841c2"
|
|
21
|
-
integrity sha512-pXb4d9MSCY5dFFPjNCqkV9ivLp1DsD/vFrCZYeJbhi7Ev5qfLgmxIZuG4NlLfbXG4u6mfZlv7ESeYtkD84nkdg==
|
|
22
|
-
dependencies:
|
|
23
|
-
"@amplitude/analytics-connector" "^1.4.5"
|
|
24
|
-
"@amplitude/analytics-core" "^0.12.0"
|
|
25
|
-
"@amplitude/analytics-types" "^0.17.0"
|
|
26
|
-
tslib "^2.4.1"
|
|
27
|
-
|
|
28
|
-
"@amplitude/analytics-connector@^1.4.5":
|
|
29
|
-
version "1.4.6"
|
|
30
|
-
resolved "https://registry.yarnpkg.com/@amplitude/analytics-connector/-/analytics-connector-1.4.6.tgz#60a66eaf0bcdcd17db4f414ff340c69e63116a72"
|
|
31
|
-
integrity sha512-6jD2pOosRD4y8DT8StUCz7yTd5ZDkdOU9/AWnlWKM5qk90Mz7sdZrdZ9H7sA/L3yOJEpQOYZgQplQdWWUzyWug==
|
|
32
|
-
dependencies:
|
|
33
|
-
"@amplitude/ua-parser-js" "0.7.31"
|
|
34
|
-
|
|
35
|
-
"@amplitude/analytics-core@^0.12.0":
|
|
36
|
-
version "0.12.0"
|
|
37
|
-
resolved "https://registry.yarnpkg.com/@amplitude/analytics-core/-/analytics-core-0.12.0.tgz#5ca956a55ee97ab9ac6a6ddc034c335156570ae8"
|
|
38
|
-
integrity sha512-Qg5own7VApdEOUtOnKwk7vFKbXubZ/YBQq0COYK+QFMCp0eF1xwLLLEiE4ThYiq49EwptvinH/bziU6IMi205g==
|
|
39
|
-
dependencies:
|
|
40
|
-
"@amplitude/analytics-types" "^0.17.0"
|
|
41
|
-
tslib "^2.4.1"
|
|
42
|
-
|
|
43
|
-
"@amplitude/analytics-types@^0.17.0":
|
|
44
|
-
version "0.17.0"
|
|
45
|
-
resolved "https://registry.yarnpkg.com/@amplitude/analytics-types/-/analytics-types-0.17.0.tgz#5f129ec2c99d1587b7a3495c9dc808534fb02609"
|
|
46
|
-
integrity sha512-J6JdlUkYPaOInsqYBBOjxwhYi+3ZFl+ICE6yG/1SySX/Eu7a7jAJbBbrH1HrYk+0Hzl5sdO/WA2zhHi0j00qTQ==
|
|
47
|
-
|
|
48
|
-
"@amplitude/plugin-page-view-tracking-browser@^0.6.0":
|
|
49
|
-
version "0.6.0"
|
|
50
|
-
resolved "https://registry.yarnpkg.com/@amplitude/plugin-page-view-tracking-browser/-/plugin-page-view-tracking-browser-0.6.0.tgz#6634085e8f6a85f2cc1e3b9e835fc64599561075"
|
|
51
|
-
integrity sha512-w2Jv+yxrcMKHO/5dSF7Nqi+t3hVxoS083Lx5qd07NTvy8e2pg7xFZk/SS4YCyQr6i6KBbcTqFDDO1Iy4/ifTPA==
|
|
52
|
-
dependencies:
|
|
53
|
-
"@amplitude/analytics-client-common" "^0.6.0"
|
|
54
|
-
"@amplitude/analytics-types" "^0.17.0"
|
|
55
|
-
tslib "^2.4.1"
|
|
56
|
-
|
|
57
|
-
"@amplitude/plugin-web-attribution-browser@^0.6.0":
|
|
58
|
-
version "0.6.0"
|
|
59
|
-
resolved "https://registry.yarnpkg.com/@amplitude/plugin-web-attribution-browser/-/plugin-web-attribution-browser-0.6.0.tgz#2f8ec51c9f2ae2cac82755fbb43d0576e9228dd5"
|
|
60
|
-
integrity sha512-JiMduFu/Lyvq+GlBAPRQbd33coV4Z+EGSyjIrpN2xCTBZ+Bsj+3jLIfcWov+iyNvY1PGlWQgRy8poN9OfR3NLg==
|
|
61
|
-
dependencies:
|
|
62
|
-
"@amplitude/analytics-client-common" "^0.6.0"
|
|
63
|
-
"@amplitude/analytics-types" "^0.17.0"
|
|
64
|
-
tslib "^2.4.1"
|
|
65
|
-
|
|
66
|
-
"@amplitude/ua-parser-js@0.7.31", "@amplitude/ua-parser-js@^0.7.31":
|
|
67
|
-
version "0.7.31"
|
|
68
|
-
resolved "https://registry.yarnpkg.com/@amplitude/ua-parser-js/-/ua-parser-js-0.7.31.tgz#749bf7cb633cfcc7ff3c10805bad7c5f6fbdbc61"
|
|
69
|
-
integrity sha512-+z8UGRaj13Pt5NDzOnkTBy49HE2CX64jeL0ArB86HAtilpnfkPB7oqkigN7Lf2LxscMg4QhFD7mmCfedh3rqTg==
|
|
70
|
-
|
|
71
5
|
"@ampproject/remapping@^2.2.0":
|
|
72
6
|
version "2.2.0"
|
|
73
7
|
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
|
|
@@ -274,6 +208,13 @@
|
|
|
274
208
|
"@babel/plugin-syntax-jsx" "^7.18.6"
|
|
275
209
|
"@babel/types" "^7.21.0"
|
|
276
210
|
|
|
211
|
+
"@babel/runtime@^7.1.2", "@babel/runtime@^7.12.13":
|
|
212
|
+
version "7.22.6"
|
|
213
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438"
|
|
214
|
+
integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==
|
|
215
|
+
dependencies:
|
|
216
|
+
regenerator-runtime "^0.13.11"
|
|
217
|
+
|
|
277
218
|
"@babel/runtime@^7.10.2", "@babel/runtime@^7.15.4", "@babel/runtime@^7.16.4", "@babel/runtime@^7.20.13", "@babel/runtime@^7.9.2":
|
|
278
219
|
version "7.21.0"
|
|
279
220
|
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673"
|
|
@@ -780,42 +721,18 @@
|
|
|
780
721
|
"@react-pdf/font" "2.3.1"
|
|
781
722
|
"@react-pdf/renderer" "3.0.0"
|
|
782
723
|
|
|
783
|
-
"@kanda-libs/ks-amplitude-provider@^0.0.7":
|
|
784
|
-
version "0.0.7"
|
|
785
|
-
resolved "https://registry.yarnpkg.com/@kanda-libs/ks-amplitude-provider/-/ks-amplitude-provider-0.0.7.tgz#08f166736b229c44402e3f64debd98321af88842"
|
|
786
|
-
integrity sha512-gzkZzFcBwh4MQz/VJ8M0TGcuWQzLv0V2bYHOrr8Bc6ErlV/cIE+1NtocsfI7uv+0QRAbmO6YctU4/KztTtui/A==
|
|
787
|
-
dependencies:
|
|
788
|
-
"@amplitude/analytics-browser" "^1.6.4"
|
|
789
|
-
|
|
790
724
|
"@kanda-libs/ks-component-ts@link:.yalc/@kanda-libs/ks-component-ts":
|
|
791
725
|
version "0.0.0"
|
|
792
726
|
uid ""
|
|
793
727
|
|
|
794
|
-
"@kanda-libs/ks-design-library@0.2.43":
|
|
795
|
-
version "0.2.43"
|
|
796
|
-
resolved "https://registry.yarnpkg.com/@kanda-libs/ks-design-library/-/ks-design-library-0.2.43.tgz#c5fc31c903e935f1f009125fa4ed162a7967e426"
|
|
797
|
-
integrity sha512-nokmt6gAnXob63yvpLo7yR70vlyOAhGleeaWL+TDBnw+jdkm/RcgWSSyu92F8/NjWNPwBShs6uZzZNt4ESYtTA==
|
|
798
|
-
dependencies:
|
|
799
|
-
"@kanda-libs/ks-amplitude-provider" "^0.0.7"
|
|
800
|
-
file-saver "^2.0.5"
|
|
801
|
-
fuse.js "^6.6.2"
|
|
802
|
-
lodash.get "^4.4.2"
|
|
803
|
-
lodash.set "^4.3.2"
|
|
804
|
-
react-image "^4.0.3"
|
|
805
|
-
react-loading-skeleton "^3.1.0"
|
|
806
|
-
react-number-format "^4.6.4"
|
|
807
|
-
react-teleporter "^3.0.2"
|
|
808
|
-
react-toastify "^9.0.8"
|
|
809
|
-
use-debounce "^8.0.4"
|
|
810
|
-
|
|
811
728
|
"@kanda-libs/ks-design-library@link:.yalc/@kanda-libs/ks-design-library":
|
|
812
729
|
version "0.0.0"
|
|
813
730
|
uid ""
|
|
814
731
|
|
|
815
|
-
"@kanda-libs/ks-tailwind-config@^0.2.
|
|
816
|
-
version "0.2.
|
|
817
|
-
resolved "https://registry.yarnpkg.com/@kanda-libs/ks-tailwind-config/-/ks-tailwind-config-0.2.
|
|
818
|
-
integrity sha512-
|
|
732
|
+
"@kanda-libs/ks-tailwind-config@^0.2.10":
|
|
733
|
+
version "0.2.17"
|
|
734
|
+
resolved "https://registry.yarnpkg.com/@kanda-libs/ks-tailwind-config/-/ks-tailwind-config-0.2.17.tgz#a4b0d49bdccb2e6298db3fb1c0542dacd3f7c317"
|
|
735
|
+
integrity sha512-nx17ZRyjx48+CGxm/vHc22VXXArqDop8nG0FkA+RWBJqgiR8QPc9VcJ3JPf0gclOxu0O53m8tWoYdFT6Eq5bhg==
|
|
819
736
|
dependencies:
|
|
820
737
|
esm "^3.2.25"
|
|
821
738
|
|
|
@@ -1807,11 +1724,6 @@ clone@^2.1.2:
|
|
|
1807
1724
|
resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f"
|
|
1808
1725
|
integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==
|
|
1809
1726
|
|
|
1810
|
-
clsx@^1.1.1:
|
|
1811
|
-
version "1.2.1"
|
|
1812
|
-
resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12"
|
|
1813
|
-
integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==
|
|
1814
|
-
|
|
1815
1727
|
code-point-at@^1.0.0:
|
|
1816
1728
|
version "1.1.0"
|
|
1817
1729
|
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
|
@@ -2653,11 +2565,6 @@ figures@^2.0.0:
|
|
|
2653
2565
|
dependencies:
|
|
2654
2566
|
escape-string-regexp "^1.0.5"
|
|
2655
2567
|
|
|
2656
|
-
file-saver@^2.0.5:
|
|
2657
|
-
version "2.0.5"
|
|
2658
|
-
resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-2.0.5.tgz#d61cfe2ce059f414d899e9dd6d4107ee25670c38"
|
|
2659
|
-
integrity sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==
|
|
2660
|
-
|
|
2661
2568
|
file-selector@^0.4.0:
|
|
2662
2569
|
version "0.4.0"
|
|
2663
2570
|
resolved "https://registry.yarnpkg.com/file-selector/-/file-selector-0.4.0.tgz#59ec4f27aa5baf0841e9c6385c8386bef4d18b17"
|
|
@@ -2811,11 +2718,6 @@ function-bind@^1.1.1:
|
|
|
2811
2718
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
|
2812
2719
|
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
|
|
2813
2720
|
|
|
2814
|
-
fuse.js@^6.6.2:
|
|
2815
|
-
version "6.6.2"
|
|
2816
|
-
resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.6.2.tgz#fe463fed4b98c0226ac3da2856a415576dc9a111"
|
|
2817
|
-
integrity sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==
|
|
2818
|
-
|
|
2819
2721
|
gauge@~2.7.3:
|
|
2820
2722
|
version "2.7.4"
|
|
2821
2723
|
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
|
|
@@ -3019,7 +2921,19 @@ highlight-words-core@^1.2.0:
|
|
|
3019
2921
|
resolved "https://registry.yarnpkg.com/highlight-words-core/-/highlight-words-core-1.2.2.tgz#1eff6d7d9f0a22f155042a00791237791b1eeaaa"
|
|
3020
2922
|
integrity sha512-BXUKIkUuh6cmmxzi5OIbUJxrG8OAk2MqoL1DtO3Wo9D2faJg2ph5ntyuQeLqaHJmzER6H5tllCDA9ZnNe9BVGg==
|
|
3021
2923
|
|
|
3022
|
-
|
|
2924
|
+
history@^4.9.0:
|
|
2925
|
+
version "4.10.1"
|
|
2926
|
+
resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3"
|
|
2927
|
+
integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==
|
|
2928
|
+
dependencies:
|
|
2929
|
+
"@babel/runtime" "^7.1.2"
|
|
2930
|
+
loose-envify "^1.2.0"
|
|
2931
|
+
resolve-pathname "^3.0.0"
|
|
2932
|
+
tiny-invariant "^1.0.2"
|
|
2933
|
+
tiny-warning "^1.0.0"
|
|
2934
|
+
value-equal "^1.0.1"
|
|
2935
|
+
|
|
2936
|
+
hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2:
|
|
3023
2937
|
version "3.3.2"
|
|
3024
2938
|
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
|
|
3025
2939
|
integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
|
|
@@ -3378,6 +3292,11 @@ is-yarn-global@^0.3.0:
|
|
|
3378
3292
|
resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232"
|
|
3379
3293
|
integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==
|
|
3380
3294
|
|
|
3295
|
+
isarray@0.0.1:
|
|
3296
|
+
version "0.0.1"
|
|
3297
|
+
resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
|
|
3298
|
+
integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==
|
|
3299
|
+
|
|
3381
3300
|
isarray@~1.0.0:
|
|
3382
3301
|
version "1.0.0"
|
|
3383
3302
|
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
|
@@ -3526,11 +3445,6 @@ lodash.get@^4.4.2:
|
|
|
3526
3445
|
resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
|
|
3527
3446
|
integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==
|
|
3528
3447
|
|
|
3529
|
-
lodash.set@^4.3.2:
|
|
3530
|
-
version "4.3.2"
|
|
3531
|
-
resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23"
|
|
3532
|
-
integrity sha512-4hNPN5jlm/N/HLMCO43v8BXKq9Z7QdAGc/VGrRD61w8gN9g/6jF9A4L1pbUgBLCffi0w9VsXfTOij5x8iTyFvg==
|
|
3533
|
-
|
|
3534
3448
|
lodash.trim@^4.5.1:
|
|
3535
3449
|
version "4.5.1"
|
|
3536
3450
|
resolved "https://registry.yarnpkg.com/lodash.trim/-/lodash.trim-4.5.1.tgz#36425e7ee90be4aa5e27bcebb85b7d11ea47aa57"
|
|
@@ -3551,7 +3465,7 @@ long@^5.0.0:
|
|
|
3551
3465
|
resolved "https://registry.yarnpkg.com/long/-/long-5.2.1.tgz#e27595d0083d103d2fa2c20c7699f8e0c92b897f"
|
|
3552
3466
|
integrity sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A==
|
|
3553
3467
|
|
|
3554
|
-
loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
|
|
3468
|
+
loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0:
|
|
3555
3469
|
version "1.4.0"
|
|
3556
3470
|
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
|
|
3557
3471
|
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
|
|
@@ -4212,6 +4126,13 @@ path-to-regexp@0.1.7:
|
|
|
4212
4126
|
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
|
|
4213
4127
|
integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==
|
|
4214
4128
|
|
|
4129
|
+
path-to-regexp@^1.7.0:
|
|
4130
|
+
version "1.8.0"
|
|
4131
|
+
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a"
|
|
4132
|
+
integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==
|
|
4133
|
+
dependencies:
|
|
4134
|
+
isarray "0.0.1"
|
|
4135
|
+
|
|
4215
4136
|
path-type@^4.0.0:
|
|
4216
4137
|
version "4.0.0"
|
|
4217
4138
|
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
|
|
@@ -4512,16 +4433,16 @@ react-highlight-words@^0.18.0:
|
|
|
4512
4433
|
memoize-one "^4.0.0"
|
|
4513
4434
|
prop-types "^15.5.8"
|
|
4514
4435
|
|
|
4515
|
-
react-hook-form
|
|
4436
|
+
react-hook-form@7.43.9:
|
|
4437
|
+
version "7.43.9"
|
|
4438
|
+
resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.43.9.tgz#84b56ac2f38f8e946c6032ccb760e13a1037c66d"
|
|
4439
|
+
integrity sha512-AUDN3Pz2NSeoxQ7Hs6OhQhDr6gtF9YRuutGDwPQqhSUAHJSgGl2VeY3qN19MG0SucpjgDiuMJ4iC5T5uB+eaNQ==
|
|
4440
|
+
|
|
4441
|
+
react-hook-form@^7.15.4:
|
|
4516
4442
|
version "7.43.3"
|
|
4517
4443
|
resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.43.3.tgz#780af64ea1f3c5864626a377e302bfcc7750af6f"
|
|
4518
4444
|
integrity sha512-LV6Fixh+hirrl6dXbM78aB6n//82aKbsNbcofF3wc6nx1UJLu3Jj/gsg1E5C9iISnLX+du8VTUyBUz2aCy+H7w==
|
|
4519
4445
|
|
|
4520
|
-
react-image@^4.0.3:
|
|
4521
|
-
version "4.0.3"
|
|
4522
|
-
resolved "https://registry.yarnpkg.com/react-image/-/react-image-4.0.3.tgz#6fa722877660b67295298a914bff1ed87ad2cf83"
|
|
4523
|
-
integrity sha512-19MUK9u1qaw9xys8XEsVkSpVhHctEBUeYFvrLTe1PN+4w5Co13AN2WA7xtBshPM6SthsOj77SlDrEAeOaJpf7g==
|
|
4524
|
-
|
|
4525
4446
|
react-input-autosize@^3.0.0:
|
|
4526
4447
|
version "3.0.0"
|
|
4527
4448
|
resolved "https://registry.yarnpkg.com/react-input-autosize/-/react-input-autosize-3.0.0.tgz#6b5898c790d4478d69420b55441fcc31d5c50a85"
|
|
@@ -4529,7 +4450,7 @@ react-input-autosize@^3.0.0:
|
|
|
4529
4450
|
dependencies:
|
|
4530
4451
|
prop-types "^15.5.8"
|
|
4531
4452
|
|
|
4532
|
-
react-is@^16.13.1, react-is@^16.7.0:
|
|
4453
|
+
react-is@^16.13.1, react-is@^16.6.0, react-is@^16.7.0:
|
|
4533
4454
|
version "16.13.1"
|
|
4534
4455
|
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
|
|
4535
4456
|
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
|
|
@@ -4583,6 +4504,34 @@ react-refresh@^0.13.0:
|
|
|
4583
4504
|
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.13.0.tgz#cbd01a4482a177a5da8d44c9755ebb1f26d5a1c1"
|
|
4584
4505
|
integrity sha512-XP8A9BT0CpRBD+NYLLeIhld/RqG9+gktUjW1FkE+Vm7OCinbG1SshcK5tb9ls4kzvjZr9mOQc7HYgBngEyPAXg==
|
|
4585
4506
|
|
|
4507
|
+
react-router-dom@^5.2.0:
|
|
4508
|
+
version "5.3.4"
|
|
4509
|
+
resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.3.4.tgz#2ed62ffd88cae6db134445f4a0c0ae8b91d2e5e6"
|
|
4510
|
+
integrity sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==
|
|
4511
|
+
dependencies:
|
|
4512
|
+
"@babel/runtime" "^7.12.13"
|
|
4513
|
+
history "^4.9.0"
|
|
4514
|
+
loose-envify "^1.3.1"
|
|
4515
|
+
prop-types "^15.6.2"
|
|
4516
|
+
react-router "5.3.4"
|
|
4517
|
+
tiny-invariant "^1.0.2"
|
|
4518
|
+
tiny-warning "^1.0.0"
|
|
4519
|
+
|
|
4520
|
+
react-router@5.3.4:
|
|
4521
|
+
version "5.3.4"
|
|
4522
|
+
resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.3.4.tgz#8ca252d70fcc37841e31473c7a151cf777887bb5"
|
|
4523
|
+
integrity sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==
|
|
4524
|
+
dependencies:
|
|
4525
|
+
"@babel/runtime" "^7.12.13"
|
|
4526
|
+
history "^4.9.0"
|
|
4527
|
+
hoist-non-react-statics "^3.1.0"
|
|
4528
|
+
loose-envify "^1.3.1"
|
|
4529
|
+
path-to-regexp "^1.7.0"
|
|
4530
|
+
prop-types "^15.6.2"
|
|
4531
|
+
react-is "^16.6.0"
|
|
4532
|
+
tiny-invariant "^1.0.2"
|
|
4533
|
+
tiny-warning "^1.0.0"
|
|
4534
|
+
|
|
4586
4535
|
react-slick@^0.29.0:
|
|
4587
4536
|
version "0.29.0"
|
|
4588
4537
|
resolved "https://registry.yarnpkg.com/react-slick/-/react-slick-0.29.0.tgz#0bed5ea42bf75a23d40c0259b828ed27627b51bb"
|
|
@@ -4599,11 +4548,6 @@ react-table@^7.7.0:
|
|
|
4599
4548
|
resolved "https://registry.yarnpkg.com/react-table/-/react-table-7.8.0.tgz#07858c01c1718c09f7f1aed7034fcfd7bda907d2"
|
|
4600
4549
|
integrity sha512-hNaz4ygkZO4bESeFfnfOft73iBUj8K5oKi1EcSHPAibEydfsX2MyU6Z8KCr3mv3C9Kqqh71U+DhZkFvibbnPbA==
|
|
4601
4550
|
|
|
4602
|
-
react-teleporter@^3.0.2:
|
|
4603
|
-
version "3.0.2"
|
|
4604
|
-
resolved "https://registry.yarnpkg.com/react-teleporter/-/react-teleporter-3.0.2.tgz#b62fa7303ccf80d0438df7fbf4fb6186fe59b8f0"
|
|
4605
|
-
integrity sha512-6kxP/r01akC0NO/oWgz6bFJQFsDD0CSqKB6c+F3f2locfBUrDK+I8fic17W6idVL/Hv3ab72N2c3DyrL2+y4kQ==
|
|
4606
|
-
|
|
4607
4551
|
react-textarea-autosize@^8.4.0:
|
|
4608
4552
|
version "8.4.0"
|
|
4609
4553
|
resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.4.0.tgz#4d0244d6a50caa897806b8c44abc0540a69bfc8c"
|
|
@@ -4613,13 +4557,6 @@ react-textarea-autosize@^8.4.0:
|
|
|
4613
4557
|
use-composed-ref "^1.3.0"
|
|
4614
4558
|
use-latest "^1.2.1"
|
|
4615
4559
|
|
|
4616
|
-
react-toastify@^9.0.8:
|
|
4617
|
-
version "9.1.1"
|
|
4618
|
-
resolved "https://registry.yarnpkg.com/react-toastify/-/react-toastify-9.1.1.tgz#9280caea4a13dc1739c350d90660a630807bf10b"
|
|
4619
|
-
integrity sha512-pkFCla1z3ve045qvjEmn2xOJOy4ZciwRXm1oMPULVkELi5aJdHCN/FHnuqXq8IwGDLB7PPk2/J6uP9D8ejuiRw==
|
|
4620
|
-
dependencies:
|
|
4621
|
-
clsx "^1.1.1"
|
|
4622
|
-
|
|
4623
4560
|
react@^17.0.1:
|
|
4624
4561
|
version "17.0.2"
|
|
4625
4562
|
resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
|
|
@@ -4784,6 +4721,11 @@ resolve-from@^4.0.0:
|
|
|
4784
4721
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
|
|
4785
4722
|
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
|
|
4786
4723
|
|
|
4724
|
+
resolve-pathname@^3.0.0:
|
|
4725
|
+
version "3.0.0"
|
|
4726
|
+
resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd"
|
|
4727
|
+
integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==
|
|
4728
|
+
|
|
4787
4729
|
resolve@^1.22.0, resolve@^1.22.1:
|
|
4788
4730
|
version "1.22.1"
|
|
4789
4731
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
|
|
@@ -5269,11 +5211,16 @@ tiny-inflate@^1.0.0, tiny-inflate@^1.0.3:
|
|
|
5269
5211
|
resolved "https://registry.yarnpkg.com/tiny-inflate/-/tiny-inflate-1.0.3.tgz#122715494913a1805166aaf7c93467933eea26c4"
|
|
5270
5212
|
integrity sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==
|
|
5271
5213
|
|
|
5272
|
-
tiny-invariant@^1.0.6:
|
|
5214
|
+
tiny-invariant@^1.0.2, tiny-invariant@^1.0.6:
|
|
5273
5215
|
version "1.3.1"
|
|
5274
5216
|
resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642"
|
|
5275
5217
|
integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==
|
|
5276
5218
|
|
|
5219
|
+
tiny-warning@^1.0.0:
|
|
5220
|
+
version "1.0.3"
|
|
5221
|
+
resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754"
|
|
5222
|
+
integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==
|
|
5223
|
+
|
|
5277
5224
|
tmp@^0.0.33:
|
|
5278
5225
|
version "0.0.33"
|
|
5279
5226
|
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
|
|
@@ -5362,7 +5309,7 @@ tslib@^1.9.0, tslib@^1.9.3:
|
|
|
5362
5309
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
|
|
5363
5310
|
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
|
|
5364
5311
|
|
|
5365
|
-
tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0
|
|
5312
|
+
tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0:
|
|
5366
5313
|
version "2.5.0"
|
|
5367
5314
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
|
|
5368
5315
|
integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==
|
|
@@ -5526,7 +5473,7 @@ use-composed-ref@^1.3.0:
|
|
|
5526
5473
|
resolved "https://registry.yarnpkg.com/use-composed-ref/-/use-composed-ref-1.3.0.tgz#3d8104db34b7b264030a9d916c5e94fbe280dbda"
|
|
5527
5474
|
integrity sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==
|
|
5528
5475
|
|
|
5529
|
-
use-debounce@^8.0.3
|
|
5476
|
+
use-debounce@^8.0.3:
|
|
5530
5477
|
version "8.0.4"
|
|
5531
5478
|
resolved "https://registry.yarnpkg.com/use-debounce/-/use-debounce-8.0.4.tgz#27e93b2f010bd0b8ad06e9fc7de891d9ee5d6b8e"
|
|
5532
5479
|
integrity sha512-fGqsYQzl8kLHF2QpQSgIwgOgJmnh6j5L6SIzQiHdLfwp3q1egUL3btq5Bg2SJysH6A0ILLgT2IqXZKoNJr0nFw==
|
|
@@ -5593,6 +5540,11 @@ validate-npm-package-name@^3.0.0:
|
|
|
5593
5540
|
dependencies:
|
|
5594
5541
|
builtins "^1.0.3"
|
|
5595
5542
|
|
|
5543
|
+
value-equal@^1.0.1:
|
|
5544
|
+
version "1.0.1"
|
|
5545
|
+
resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c"
|
|
5546
|
+
integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==
|
|
5547
|
+
|
|
5596
5548
|
vary@~1.1.2:
|
|
5597
5549
|
version "1.1.2"
|
|
5598
5550
|
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
|