@griddo/ax 11.14.2-rc.0 → 11.14.2
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/config/jest/reactEasyCropMock.js +15 -0
- package/config/jest/reactTimezoneMock.js +13 -0
- package/package.json +221 -219
- package/public/img/welcome.svg +127 -0
- package/src/__tests__/components/Browser/Browser.test.tsx +27 -51
- package/src/__tests__/components/CategoryCell/CategoryCell.test.tsx +10 -5
- package/src/__tests__/components/ElementsTooltip/ElementsTooltip.test.tsx +27 -14
- package/src/__tests__/components/HeadingsPreviewModal/ErrorsBanner/ErrorItem/ErrorItem.test.tsx +2 -0
- package/src/__tests__/components/HeadingsPreviewModal/HeadingsPreviewModal.utils.test.tsx +138 -1
- package/src/__tests__/components/ImageDragAndDrop/CropStep/CropStep.test.tsx +84 -0
- package/src/__tests__/components/ImageDragAndDrop/ImageDragAndDrop.test.tsx +173 -0
- package/src/__tests__/components/KeywordsPreviewModal/KeywordsPreviewModal.test.tsx +3 -4
- package/src/__tests__/components/ProfileImage/ProfileImage.test.tsx +120 -0
- package/src/__tests__/components/ResizePanel/ResizePanel.test.tsx +8 -0
- package/src/__tests__/components/UserRolesAndSites/RoleItem/RoleItem.test.tsx +190 -0
- package/src/__tests__/components/UserRolesAndSites/UserRolesAndSites.test.tsx +471 -0
- package/src/__tests__/modules/FramePreview/HeadingsOverlay/HeadingsOverlay.test.tsx +15 -2
- package/src/__tests__/modules/Sites/Sites.test.tsx +68 -224
- package/src/__tests__/modules/Sites/SitesList/ListView/BulkHeader/BulkHeader.test.tsx +21 -17
- package/src/__tests__/modules/Sites/SitesList/SitesList.test.tsx +65 -565
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/DataStep/DataStep.test.tsx +109 -0
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/FinalStep/FinalStep.test.tsx +157 -0
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/ImageStep/CropView/CropView.test.tsx +51 -0
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/ImageStep/ImageStep.test.tsx +70 -0
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/ImageStep/UploadView/UploadView.test.tsx +92 -0
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/TimezoneStep/TimezoneStep.test.tsx +94 -0
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/WelcomeModal.test.tsx +78 -0
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/WelcomeStep/WelcomeStep.test.tsx +39 -0
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/utils.test.ts +55 -0
- package/src/api/sites.tsx +4 -4
- package/src/components/Avatar/index.tsx +26 -5
- package/src/components/Avatar/style.tsx +20 -10
- package/src/components/Browser/index.tsx +7 -1
- package/src/components/ConfigPanel/index.tsx +11 -7
- package/src/components/ElementsTooltip/index.tsx +96 -34
- package/src/components/ElementsTooltip/style.tsx +12 -1
- package/src/components/Fields/FileField/index.tsx +16 -18
- package/src/components/Fields/HeadingField/index.tsx +1 -1
- package/src/components/Fields/ImageField/index.tsx +9 -38
- package/src/components/Fields/ImageField/style.tsx +12 -1
- package/src/components/Fields/ToggleField/index.tsx +1 -1
- package/src/components/Fields/Wysiwyg/index.tsx +25 -20
- package/src/components/FileGallery/GalleryPanel/index.tsx +15 -7
- package/src/components/FileGallery/index.tsx +33 -28
- package/src/components/Gallery/GalleryPanel/index.tsx +5 -16
- package/src/components/Gallery/index.tsx +0 -2
- package/src/components/HeadingsPreviewModal/ErrorsBanner/ErrorItem/index.tsx +11 -2
- package/src/components/HeadingsPreviewModal/ErrorsBanner/index.tsx +21 -3
- package/src/components/HeadingsPreviewModal/ErrorsBanner/style.tsx +2 -2
- package/src/components/HeadingsPreviewModal/index.tsx +13 -3
- package/src/components/HeadingsPreviewModal/style.tsx +18 -0
- package/src/components/HeadingsPreviewModal/utils.tsx +31 -3
- package/src/components/Image/index.tsx +2 -2
- package/src/components/ImageDragAndDrop/CropStep/index.tsx +95 -0
- package/src/components/ImageDragAndDrop/CropStep/style.tsx +101 -0
- package/src/{modules/MediaGallery → components}/ImageDragAndDrop/index.tsx +103 -40
- package/src/{modules/MediaGallery → components}/ImageDragAndDrop/style.tsx +14 -2
- package/src/components/KeywordsPreviewModal/atoms.tsx +2 -2
- package/src/components/KeywordsPreviewModal/index.tsx +6 -6
- package/src/components/KeywordsPreviewModal/utils.tsx +2 -2
- package/src/components/ProfileImage/index.tsx +55 -0
- package/src/components/ProfileImage/style.tsx +58 -0
- package/src/components/ResizePanel/ResizeHandle/index.tsx +44 -6
- package/src/components/ResizePanel/ResizeHandle/style.tsx +7 -0
- package/src/components/ResizePanel/index.tsx +25 -4
- package/src/components/Tabs/style.tsx +1 -1
- package/src/components/Tag/index.tsx +0 -1
- package/src/components/UserRolesAndSites/RoleItem/index.tsx +42 -0
- package/src/components/UserRolesAndSites/RoleItem/style.tsx +29 -0
- package/src/components/UserRolesAndSites/index.tsx +102 -0
- package/src/components/UserRolesAndSites/style.tsx +67 -0
- package/src/components/index.tsx +6 -0
- package/src/constants/index.ts +13 -1
- package/src/containers/App/actions.tsx +8 -1
- package/src/containers/Sites/actions.tsx +26 -0
- package/src/containers/Sites/constants.tsx +1 -0
- package/src/containers/Sites/interfaces.tsx +6 -0
- package/src/containers/Sites/reducer.tsx +5 -1
- package/src/containers/Users/reducer.tsx +6 -5
- package/src/guards/routeLeaving/index.tsx +9 -11
- package/src/helpers/images.tsx +50 -3
- package/src/helpers/index.tsx +2 -1
- package/src/hooks/forms.tsx +45 -48
- package/src/hooks/index.tsx +2 -1
- package/src/hooks/modals.tsx +4 -3
- package/src/hooks/window.ts +50 -2
- package/src/modules/ActivityLog/ItemLogUser/UserItem/index.tsx +1 -1
- package/src/modules/App/Routing/Logout/index.tsx +3 -5
- package/src/modules/App/Routing/NavMenu/NavItem/index.tsx +73 -52
- package/src/modules/App/Routing/NavMenu/NavItem/style.tsx +21 -7
- package/src/modules/App/Routing/NavMenu/index.tsx +59 -54
- package/src/modules/App/Routing/NavMenu/style.tsx +13 -11
- package/src/modules/CreatePass/index.tsx +1 -1
- package/src/modules/FileDrive/FileDragAndDrop/index.tsx +11 -8
- package/src/modules/FileDrive/FileModal/index.tsx +8 -9
- package/src/modules/FileDrive/index.tsx +1 -18
- package/src/modules/Forms/FormEditor/index.tsx +1 -1
- package/src/modules/FramePreview/HeadingsOverlay/index.tsx +22 -11
- package/src/modules/FramePreview/HeadingsOverlay/style.tsx +1 -1
- package/src/modules/MediaGallery/ImageModal/index.tsx +1 -5
- package/src/modules/MediaGallery/index.tsx +1 -3
- package/src/modules/Settings/Globals/constants.tsx +942 -106
- package/src/modules/Sites/SitesList/AllSitesHeader/index.tsx +33 -0
- package/src/modules/Sites/SitesList/AllSitesHeader/style.tsx +35 -0
- package/src/modules/Sites/SitesList/GridView/GridHeaderFilter/index.tsx +5 -5
- package/src/modules/Sites/SitesList/GridView/GridSiteItem/index.tsx +23 -119
- package/src/modules/Sites/SitesList/ListView/BulkHeader/TableHeader/index.tsx +4 -4
- package/src/modules/Sites/SitesList/ListView/BulkHeader/index.tsx +4 -3
- package/src/modules/Sites/SitesList/ListView/ListSiteItem/index.tsx +23 -120
- package/src/modules/Sites/SitesList/{RecentSiteItem → RecentSites/RecentSiteItem}/index.tsx +4 -5
- package/src/modules/Sites/SitesList/RecentSites/index.tsx +49 -0
- package/src/modules/Sites/SitesList/RecentSites/style.tsx +92 -0
- package/src/modules/Sites/SitesList/SiteModal/index.tsx +8 -7
- package/src/modules/Sites/SitesList/WelcomeModal/DataStep/index.tsx +72 -0
- package/src/modules/Sites/SitesList/WelcomeModal/DataStep/style.tsx +59 -0
- package/src/modules/Sites/SitesList/WelcomeModal/FinalStep/constants.tsx +78 -0
- package/src/modules/Sites/SitesList/WelcomeModal/FinalStep/index.tsx +78 -0
- package/src/modules/Sites/SitesList/WelcomeModal/FinalStep/style.tsx +141 -0
- package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/CropView/index.tsx +93 -0
- package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/CropView/style.tsx +77 -0
- package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/UploadView/index.tsx +100 -0
- package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/UploadView/style.tsx +94 -0
- package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/index.tsx +44 -0
- package/src/modules/Sites/SitesList/WelcomeModal/ImageStep/style.tsx +31 -0
- package/src/modules/Sites/SitesList/WelcomeModal/TimezoneStep/index.tsx +51 -0
- package/src/modules/Sites/SitesList/WelcomeModal/TimezoneStep/style.tsx +52 -0
- package/src/modules/Sites/SitesList/WelcomeModal/WelcomeStep/index.tsx +40 -0
- package/src/modules/Sites/SitesList/WelcomeModal/WelcomeStep/style.tsx +53 -0
- package/src/modules/Sites/SitesList/WelcomeModal/index.tsx +215 -0
- package/src/modules/Sites/SitesList/WelcomeModal/style.tsx +12 -0
- package/src/modules/Sites/SitesList/WelcomeModal/utils.ts +26 -0
- package/src/modules/Sites/SitesList/atoms.tsx +4 -4
- package/src/modules/Sites/SitesList/hooks.tsx +149 -16
- package/src/modules/Sites/SitesList/index.tsx +127 -125
- package/src/modules/Sites/SitesList/style.tsx +1 -117
- package/src/modules/Sites/SitesList/utils.tsx +9 -2
- package/src/modules/Sites/index.tsx +19 -8
- package/src/modules/Users/Profile/index.tsx +169 -31
- package/src/modules/Users/Profile/style.tsx +81 -1
- package/src/modules/Users/Roles/RoleItem/index.tsx +2 -2
- package/src/modules/Users/UserCreate/SiteItem/index.tsx +11 -14
- package/src/modules/Users/UserForm/atoms.tsx +3 -3
- package/src/modules/Users/UserForm/index.tsx +25 -29
- package/src/modules/Users/UserForm/style.tsx +15 -2
- package/src/modules/Users/UserList/UserItem/index.tsx +4 -4
- package/src/routes/index.tsx +1 -0
- package/src/types/index.tsx +2 -0
- /package/src/modules/Sites/SitesList/{RecentSiteItem → RecentSites/RecentSiteItem}/style.tsx +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
const Cropper = ({ onCropComplete }) => {
|
|
4
|
+
React.useEffect(() => {
|
|
5
|
+
if (onCropComplete) {
|
|
6
|
+
onCropComplete({}, { x: 0, y: 0, width: 100, height: 100 });
|
|
7
|
+
}
|
|
8
|
+
}, []);
|
|
9
|
+
return React.createElement("div", { "data-testid": "cropper-mock" });
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
module.exports = {
|
|
13
|
+
__esModule: true,
|
|
14
|
+
default: Cropper,
|
|
15
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
const WorldMap = () => React.createElement("div", { "data-testid": "world-map-mock" });
|
|
4
|
+
const TimeZoneSelectDialog = () => React.createElement("div", { "data-testid": "timezone-dialog-mock" });
|
|
5
|
+
|
|
6
|
+
module.exports = {
|
|
7
|
+
__esModule: true,
|
|
8
|
+
default: WorldMap,
|
|
9
|
+
WorldMap,
|
|
10
|
+
TimeZoneSelectDialog,
|
|
11
|
+
findTimeZone: jest.fn((tz) => tz),
|
|
12
|
+
convertOffsetInMinutesToString: jest.fn((offset) => String(offset)),
|
|
13
|
+
};
|
package/package.json
CHANGED
|
@@ -1,221 +1,223 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
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
|
-
|
|
2
|
+
"name": "@griddo/ax",
|
|
3
|
+
"description": "Griddo Author Experience",
|
|
4
|
+
"version": "11.14.2",
|
|
5
|
+
"authors": [
|
|
6
|
+
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
7
|
+
"Diego M. Béjar <diego.bejar@secuoyas.com>",
|
|
8
|
+
"Francis Vega <francis.vega@secuoyas.com>",
|
|
9
|
+
"Gonzalo Hernández <gonzalo.hernandez@secuoyas.com>",
|
|
10
|
+
"Sergio Ródenas <sergio.rodenas@secuoyas.com>",
|
|
11
|
+
"Txema León <txema.leon@secuoyas.com>"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://griddo.io",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/griddo/griddo"
|
|
17
|
+
},
|
|
18
|
+
"bin": {
|
|
19
|
+
"griddo": "./scripts/griddo.js",
|
|
20
|
+
"griddo-sync-schemas": "./scripts/griddo-sync-schemas.js"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"// START": "",
|
|
24
|
+
"start": "npm run start:dev",
|
|
25
|
+
"start:local": "node --env-file=./env/.env.local ./scripts/start.js",
|
|
26
|
+
"start:dev": "node --env-file=./env/.env.development ./scripts/start.js",
|
|
27
|
+
"start:staging": "node --env-file=./env/.env.staging ./scripts/start.js",
|
|
28
|
+
"// BUILD": "",
|
|
29
|
+
"build": "NODE_OPTIONS=--openssl-legacy-provider node ./scripts/build.js",
|
|
30
|
+
"build:dev": "NODE_OPTIONS=--openssl-legacy-provider node --env-file=./env/.env.development ./scripts/build.js",
|
|
31
|
+
"// TEST": "",
|
|
32
|
+
"test": "jest",
|
|
33
|
+
"test:watch": "jest --watch",
|
|
34
|
+
"test:ci": "jest --runInBand",
|
|
35
|
+
"test:coverage": "jest --coverage ",
|
|
36
|
+
"test:dev": "npm run test -- --watch",
|
|
37
|
+
"test:dev:coverage": "npm run test:coverage -- --watch",
|
|
38
|
+
"// LINT": "",
|
|
39
|
+
"lint": "biome check",
|
|
40
|
+
"format:write": "biome format --write"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@dnd-kit/core": "6.3.1",
|
|
44
|
+
"@dnd-kit/sortable": "10.0.0",
|
|
45
|
+
"@griddo/api-types": "^1.0.12",
|
|
46
|
+
"@pmmmwh/react-refresh-webpack-plugin": "0.5.16",
|
|
47
|
+
"@styled-system/prop-types": "5.1.5",
|
|
48
|
+
"@styled-system/theme-get": "5.1.2",
|
|
49
|
+
"@svgr/webpack": "5.5.0",
|
|
50
|
+
"@testing-library/jest-dom": "5.16.5",
|
|
51
|
+
"@testing-library/react": "13.4.0",
|
|
52
|
+
"@testing-library/user-event": "14.6.1",
|
|
53
|
+
"@types/compress.js": "1.1.3",
|
|
54
|
+
"@types/draft-js": "0.11.18",
|
|
55
|
+
"@types/lodash.isequal": "4.5.8",
|
|
56
|
+
"@types/markdown-draft-js": "2.2.7",
|
|
57
|
+
"@types/node": "20.17.10",
|
|
58
|
+
"@types/react": "18.2.79",
|
|
59
|
+
"@types/react-beautiful-dnd": "13.1.3",
|
|
60
|
+
"@types/react-datepicker": "4.19.6",
|
|
61
|
+
"@types/react-dom": "18.2.25",
|
|
62
|
+
"@types/react-draft-wysiwyg": "1.13.8",
|
|
63
|
+
"@types/react-redux": "7.1.25",
|
|
64
|
+
"@types/react-router-dom": "5.3.3",
|
|
65
|
+
"@types/react-slick": "0.23.13",
|
|
66
|
+
"@types/react-test-renderer": "17.0.1",
|
|
67
|
+
"@types/styled-components": "5.1.26",
|
|
68
|
+
"@types/uuid": "8.3.4",
|
|
69
|
+
"@types/webpack-env": "1.18.0",
|
|
70
|
+
"axios": "0.19.0",
|
|
71
|
+
"babel-loader": "8.2.2",
|
|
72
|
+
"babel-plugin-named-asset-import": "0.3.8",
|
|
73
|
+
"babel-plugin-require-context-hook": "1.0.0",
|
|
74
|
+
"babel-plugin-root-import": "6.6.0",
|
|
75
|
+
"babel-plugin-styled-components": "2.1.4",
|
|
76
|
+
"babel-preset-react-app": "10.1.0",
|
|
77
|
+
"case-sensitive-paths-webpack-plugin": "2.4.0",
|
|
78
|
+
"compress.js": "1.2.2",
|
|
79
|
+
"connected-react-router": "6.9.3",
|
|
80
|
+
"css-loader": "4.3.0",
|
|
81
|
+
"css-minimizer-webpack-plugin": "3.0.2",
|
|
82
|
+
"date-fns": "2.30.0",
|
|
83
|
+
"dotenv": "6.2.0",
|
|
84
|
+
"dotenv-expand": "5.1.0",
|
|
85
|
+
"draft-js": "0.11.7",
|
|
86
|
+
"draft-js-import-html": "1.4.1",
|
|
87
|
+
"draftjs-to-html": "0.9.1",
|
|
88
|
+
"enhanced-resolve": "5.18.1",
|
|
89
|
+
"env-cmd": "10.1.0",
|
|
90
|
+
"file-loader": "6.2.0",
|
|
91
|
+
"find-up": "5.0.0",
|
|
92
|
+
"fs-extra": "7.0.1",
|
|
93
|
+
"html-to-draftjs": "1.5.0",
|
|
94
|
+
"html-to-image": "1.11.7",
|
|
95
|
+
"html-webpack-plugin": "4.5.0",
|
|
96
|
+
"identity-obj-proxy": "3.0.0",
|
|
97
|
+
"ignore-loader": "0.1.2",
|
|
98
|
+
"is-wsl": "3.1.0",
|
|
99
|
+
"jsdom": "20.0.3",
|
|
100
|
+
"jsdom-global": "3.0.2",
|
|
101
|
+
"lodash.isequal": "4.5.0",
|
|
102
|
+
"markdown-draft-js": "2.4.0",
|
|
103
|
+
"mini-css-extract-plugin": "0.11.3",
|
|
104
|
+
"optimize-css-assets-webpack-plugin": "6.0.1",
|
|
105
|
+
"pkg-dir": "5.0.0",
|
|
106
|
+
"pnp-webpack-plugin": "1.7.0",
|
|
107
|
+
"polished": "3.4.1",
|
|
108
|
+
"postcss": "8.5.3",
|
|
109
|
+
"postcss-flexbugs-fixes": "4.1.0",
|
|
110
|
+
"postcss-loader": "3.0.0",
|
|
111
|
+
"postcss-normalize": "7.0.1",
|
|
112
|
+
"postcss-preset-env": "6.7.0",
|
|
113
|
+
"postcss-safe-parser": "6.0.0",
|
|
114
|
+
"react": "18.2.0",
|
|
115
|
+
"react-app-polyfill": "1.0.6",
|
|
116
|
+
"react-datepicker": "4.25.0",
|
|
117
|
+
"react-dev-utils": "11.0.4",
|
|
118
|
+
"react-dom": "18.2.0",
|
|
119
|
+
"react-draft-wysiwyg": "1.15.0",
|
|
120
|
+
"react-easy-crop": "5.5.7",
|
|
121
|
+
"react-error-boundary": "4.0.13",
|
|
122
|
+
"react-froala-wysiwyg": "4.0.4",
|
|
123
|
+
"react-qr-code": "2.0.18",
|
|
124
|
+
"react-redux": "7.2.9",
|
|
125
|
+
"react-refresh": "0.14.2",
|
|
126
|
+
"react-router-dom": "5.1.2",
|
|
127
|
+
"react-select": "5.10.1",
|
|
128
|
+
"react-slick": "0.30.3",
|
|
129
|
+
"react-textarea-autosize": "8.5.9",
|
|
130
|
+
"react-timezone-map-select": "1.2.25",
|
|
131
|
+
"redux": "4.2.1",
|
|
132
|
+
"redux-devtools-extension": "2.13.9",
|
|
133
|
+
"redux-persist": "6.0.0",
|
|
134
|
+
"reflect-metadata": "0.1.13",
|
|
135
|
+
"resolve": "1.22.10",
|
|
136
|
+
"resolve-url-loader": "4.0.0",
|
|
137
|
+
"sass-alias": "1.0.5",
|
|
138
|
+
"sass-loader": "10.4.1",
|
|
139
|
+
"semver": "7.6.3",
|
|
140
|
+
"slick-carousel": "1.8.1",
|
|
141
|
+
"source-map-loader": "1.1.3",
|
|
142
|
+
"string-replace-loader": "3.1.0",
|
|
143
|
+
"style-loader": "1.3.0",
|
|
144
|
+
"styled-components": "5.3.11",
|
|
145
|
+
"styled-reset": "4.0.1",
|
|
146
|
+
"styled-system": "5.1.5",
|
|
147
|
+
"terser-webpack-plugin": "1.4.1",
|
|
148
|
+
"ts-pnp": "1.1.4",
|
|
149
|
+
"typescript": "4.9.5",
|
|
150
|
+
"url-loader": "4.1.1",
|
|
151
|
+
"uuid": "8.3.2",
|
|
152
|
+
"webpack": "4.47.0",
|
|
153
|
+
"webpack-dev-server": "3.11.1",
|
|
154
|
+
"webpack-manifest-plugin": "2.2.0",
|
|
155
|
+
"workbox-webpack-plugin": "5.1.4"
|
|
156
|
+
},
|
|
157
|
+
"devDependencies": {
|
|
158
|
+
"@babel/core": "7.26.10",
|
|
159
|
+
"@babel/helper-environment-visitor": "7.24.7",
|
|
160
|
+
"@babel/helper-function-name": "7.24.7",
|
|
161
|
+
"@babel/helper-hoist-variables": "7.24.7",
|
|
162
|
+
"@babel/helper-split-export-declaration": "7.24.7",
|
|
163
|
+
"@babel/plugin-transform-optional-chaining": "7.25.9",
|
|
164
|
+
"@babel/preset-env": "7.26.9",
|
|
165
|
+
"@babel/preset-react": "7.26.3",
|
|
166
|
+
"@babel/preset-typescript": "7.26.0",
|
|
167
|
+
"@biomejs/biome": "2.3.8",
|
|
168
|
+
"@types/jest": "27.5.2",
|
|
169
|
+
"@types/redux-mock-store": "1.0.3",
|
|
170
|
+
"axios-mock-adapter": "1.22.0",
|
|
171
|
+
"babel-jest": "27.5.1",
|
|
172
|
+
"jest": "27.5.1",
|
|
173
|
+
"jest-environment-jsdom": "27.5.1",
|
|
174
|
+
"jest-environment-jsdom-fourteen": "0.1.0",
|
|
175
|
+
"jest-mock-extended": "2.0.9",
|
|
176
|
+
"jest-resolve": "24.9.0",
|
|
177
|
+
"jest-styled-components": "7.1.1",
|
|
178
|
+
"jest-watch-typeahead": "0.4.0",
|
|
179
|
+
"prettier": "3.4.2",
|
|
180
|
+
"react-test-renderer": "18.2.0",
|
|
181
|
+
"redux-mock-store": "1.5.5",
|
|
182
|
+
"redux-thunk": "2.4.2",
|
|
183
|
+
"ts-jest": "27.1.5",
|
|
184
|
+
"ts-node": "10.9.2"
|
|
185
|
+
},
|
|
186
|
+
"babel": {
|
|
187
|
+
"presets": [
|
|
188
|
+
"react-app"
|
|
189
|
+
],
|
|
190
|
+
"env": {
|
|
191
|
+
"test": {
|
|
192
|
+
"plugins": [
|
|
193
|
+
"require-context-hook"
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"browserslist": {
|
|
199
|
+
"production": [
|
|
200
|
+
">0.2%",
|
|
201
|
+
"not dead",
|
|
202
|
+
"not op_mini all"
|
|
203
|
+
],
|
|
204
|
+
"development": [
|
|
205
|
+
"last 1 chrome version",
|
|
206
|
+
"last 1 firefox version",
|
|
207
|
+
"last 1 safari version"
|
|
208
|
+
]
|
|
209
|
+
},
|
|
210
|
+
"files": [
|
|
211
|
+
"config",
|
|
212
|
+
"patches",
|
|
213
|
+
"public",
|
|
214
|
+
"scripts",
|
|
215
|
+
"src",
|
|
216
|
+
"tsconfig.json",
|
|
217
|
+
"tsconfig.paths.json"
|
|
218
|
+
],
|
|
219
|
+
"publishConfig": {
|
|
220
|
+
"access": "public"
|
|
221
|
+
},
|
|
222
|
+
"gitHead": "92256859b4b631e6fbd04d6ab48804b42b293614"
|
|
221
223
|
}
|