@gravityforms/dependency-extraction-webpack-plugin 6.2.0 → 6.2.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/AGENTS.md +33 -0
- package/mappings/components/admin.js +209 -209
- package/package.json +1 -1
package/AGENTS.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# AGENTS.md - Dependency Extraction Webpack Plugin
|
|
2
|
+
|
|
3
|
+
Package-specific guidance for `@gravityforms/dependency-extraction-webpack-plugin`. See root `AGENTS.md` for shared conventions.
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
Extends `@wordpress/dependency-extraction-webpack-plugin` to automatically handle `@gravityforms/*` packages as WordPress externals. Ensures monorepo packages are not bundled into every script — instead they reference the shared globals enqueued by the plugin.
|
|
8
|
+
|
|
9
|
+
## Key Files
|
|
10
|
+
|
|
11
|
+
- `src/index.js` — Main plugin logic; maps `@gravityforms/*` imports to `gform.*` global variables
|
|
12
|
+
|
|
13
|
+
## How It Works
|
|
14
|
+
|
|
15
|
+
When webpack encounters an import like:
|
|
16
|
+
|
|
17
|
+
```javascript
|
|
18
|
+
import Button from '@gravityforms/components/react/admin/elements/Button';
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
This plugin maps it to the WordPress external `gform.components.admin.react.elements.Button`, preventing duplicate bundling.
|
|
22
|
+
|
|
23
|
+
## Component Mapping
|
|
24
|
+
|
|
25
|
+
Component-level mappings are driven by `package-config.js` files inside each component directory in `packages/npm/storybooks/`. These define:
|
|
26
|
+
|
|
27
|
+
- `defaultExport` — The component's default export name
|
|
28
|
+
- `importPath` — The import subpath (e.g., `react/admin/elements/`)
|
|
29
|
+
- `externalPath` — The WordPress global path (e.g., `components.admin.react.elements`)
|
|
30
|
+
|
|
31
|
+
## Dependencies
|
|
32
|
+
|
|
33
|
+
- `@wordpress/dependency-extraction-webpack-plugin`
|
|
@@ -61,17 +61,17 @@ module.exports = [
|
|
|
61
61
|
"externalPath": "components.admin.html.elements"
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
|
-
"defaultExport": "
|
|
64
|
+
"defaultExport": "Loader",
|
|
65
65
|
"namedExports": [
|
|
66
|
-
"
|
|
66
|
+
"loaderTemplate"
|
|
67
67
|
],
|
|
68
68
|
"importPath": "html/admin/elements/",
|
|
69
69
|
"externalPath": "components.admin.html.elements"
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
|
-
"defaultExport": "
|
|
72
|
+
"defaultExport": "Select",
|
|
73
73
|
"namedExports": [
|
|
74
|
-
"
|
|
74
|
+
"selectTemplate"
|
|
75
75
|
],
|
|
76
76
|
"importPath": "html/admin/elements/",
|
|
77
77
|
"externalPath": "components.admin.html.elements"
|
|
@@ -141,6 +141,165 @@ module.exports = [
|
|
|
141
141
|
"importPath": "html/admin/elements/",
|
|
142
142
|
"externalPath": "components.admin.html.elements"
|
|
143
143
|
},
|
|
144
|
+
{
|
|
145
|
+
"defaultExport": "Tooltip",
|
|
146
|
+
"importPath": "react/admin/modules/",
|
|
147
|
+
"externalPath": "components.admin.react.modules"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"defaultExport": "Tabs",
|
|
151
|
+
"importPath": "react/admin/modules/",
|
|
152
|
+
"externalPath": "components.admin.react.modules"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"defaultExport": "Swatch",
|
|
156
|
+
"importPath": "react/admin/modules/",
|
|
157
|
+
"externalPath": "components.admin.react.modules"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"defaultExport": "Steps",
|
|
161
|
+
"importPath": "react/admin/modules/",
|
|
162
|
+
"externalPath": "components.admin.react.modules"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"defaultExport": "SnackBar",
|
|
166
|
+
"namedExports": [
|
|
167
|
+
"SnackbarProvider",
|
|
168
|
+
"useSnackbar"
|
|
169
|
+
],
|
|
170
|
+
"importPath": "react/admin/modules/",
|
|
171
|
+
"externalPath": "components.admin.react.modules"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"defaultExport": "RouterNavBar",
|
|
175
|
+
"importPath": "react/admin/modules/",
|
|
176
|
+
"externalPath": "components.admin.react.modules"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"defaultExport": "Repeater",
|
|
180
|
+
"importPath": "react/admin/modules/",
|
|
181
|
+
"externalPath": "components.admin.react.modules"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"defaultExport": "Phone",
|
|
185
|
+
"importPath": "react/admin/modules/",
|
|
186
|
+
"externalPath": "components.admin.react.modules"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"defaultExport": "Pagination",
|
|
190
|
+
"importPath": "react/admin/modules/",
|
|
191
|
+
"externalPath": "components.admin.react.modules"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"defaultExport": "Overlay",
|
|
195
|
+
"importPath": "react/admin/modules/",
|
|
196
|
+
"externalPath": "components.admin.react.modules"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"defaultExport": "NavBar",
|
|
200
|
+
"importPath": "react/admin/modules/",
|
|
201
|
+
"externalPath": "components.admin.react.modules"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"defaultExport": "MetaBox",
|
|
205
|
+
"importPath": "react/admin/modules/",
|
|
206
|
+
"externalPath": "components.admin.react.modules"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"defaultExport": "List",
|
|
210
|
+
"importPath": "react/admin/modules/",
|
|
211
|
+
"externalPath": "components.admin.react.modules"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"defaultExport": "Kanban",
|
|
215
|
+
"importPath": "react/admin/modules/",
|
|
216
|
+
"externalPath": "components.admin.react.modules"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"defaultExport": "InputGroup",
|
|
220
|
+
"importPath": "react/admin/modules/",
|
|
221
|
+
"externalPath": "components.admin.react.modules"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"defaultExport": "Gravatar",
|
|
225
|
+
"importPath": "react/admin/modules/",
|
|
226
|
+
"externalPath": "components.admin.react.modules"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"defaultExport": "Flyout",
|
|
230
|
+
"importPath": "react/admin/modules/",
|
|
231
|
+
"externalPath": "components.admin.react.modules"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"defaultExport": "Fieldset",
|
|
235
|
+
"importPath": "react/admin/modules/",
|
|
236
|
+
"externalPath": "components.admin.react.modules"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"defaultExport": "Droplist",
|
|
240
|
+
"importPath": "react/admin/modules/",
|
|
241
|
+
"externalPath": "components.admin.react.modules"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"defaultExport": "Dropdown",
|
|
245
|
+
"importPath": "react/admin/modules/",
|
|
246
|
+
"externalPath": "components.admin.react.modules"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"defaultExport": "Dialog",
|
|
250
|
+
"importPath": "react/admin/modules/",
|
|
251
|
+
"externalPath": "components.admin.react.modules"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"defaultExport": "DatePicker",
|
|
255
|
+
"importPath": "react/admin/modules/",
|
|
256
|
+
"externalPath": "components.admin.react.modules"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"defaultExport": "DataGrid",
|
|
260
|
+
"importPath": "react/admin/modules/",
|
|
261
|
+
"externalPath": "components.admin.react.modules"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"defaultExport": "ColorPicker",
|
|
265
|
+
"importPath": "react/admin/modules/",
|
|
266
|
+
"externalPath": "components.admin.react.modules"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"defaultExport": "Chart",
|
|
270
|
+
"importPath": "react/admin/modules/",
|
|
271
|
+
"externalPath": "components.admin.react.modules"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"defaultExport": "Calendar",
|
|
275
|
+
"importPath": "react/admin/modules/",
|
|
276
|
+
"externalPath": "components.admin.react.modules"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"defaultExport": "Banner",
|
|
280
|
+
"importPath": "react/admin/modules/",
|
|
281
|
+
"externalPath": "components.admin.react.modules"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"defaultExport": "AvatarGroup",
|
|
285
|
+
"importPath": "react/admin/modules/",
|
|
286
|
+
"externalPath": "components.admin.react.modules"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"defaultExport": "Avatar",
|
|
290
|
+
"importPath": "react/admin/modules/",
|
|
291
|
+
"externalPath": "components.admin.react.modules"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"defaultExport": "Alert",
|
|
295
|
+
"importPath": "react/admin/modules/",
|
|
296
|
+
"externalPath": "components.admin.react.modules"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"defaultExport": "Address",
|
|
300
|
+
"importPath": "react/admin/modules/",
|
|
301
|
+
"externalPath": "components.admin.react.modules"
|
|
302
|
+
},
|
|
144
303
|
{
|
|
145
304
|
"defaultExport": "Toggle",
|
|
146
305
|
"importPath": "react/admin/elements/",
|
|
@@ -257,166 +416,80 @@ module.exports = [
|
|
|
257
416
|
"externalPath": "components.admin.react.elements"
|
|
258
417
|
},
|
|
259
418
|
{
|
|
260
|
-
"defaultExport": "
|
|
261
|
-
"importPath": "react/admin/modules/",
|
|
262
|
-
"externalPath": "components.admin.react.modules"
|
|
263
|
-
},
|
|
264
|
-
{
|
|
265
|
-
"defaultExport": "Tabs",
|
|
266
|
-
"importPath": "react/admin/modules/",
|
|
267
|
-
"externalPath": "components.admin.react.modules"
|
|
268
|
-
},
|
|
269
|
-
{
|
|
270
|
-
"defaultExport": "Swatch",
|
|
271
|
-
"importPath": "react/admin/modules/",
|
|
272
|
-
"externalPath": "components.admin.react.modules"
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
"defaultExport": "Steps",
|
|
276
|
-
"importPath": "react/admin/modules/",
|
|
277
|
-
"externalPath": "components.admin.react.modules"
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"defaultExport": "SnackBar",
|
|
281
|
-
"namedExports": [
|
|
282
|
-
"SnackbarProvider",
|
|
283
|
-
"useSnackbar"
|
|
284
|
-
],
|
|
285
|
-
"importPath": "react/admin/modules/",
|
|
286
|
-
"externalPath": "components.admin.react.modules"
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
"defaultExport": "RouterNavBar",
|
|
290
|
-
"importPath": "react/admin/modules/",
|
|
291
|
-
"externalPath": "components.admin.react.modules"
|
|
292
|
-
},
|
|
293
|
-
{
|
|
294
|
-
"defaultExport": "Repeater",
|
|
295
|
-
"importPath": "react/admin/modules/",
|
|
296
|
-
"externalPath": "components.admin.react.modules"
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"defaultExport": "Phone",
|
|
300
|
-
"importPath": "react/admin/modules/",
|
|
301
|
-
"externalPath": "components.admin.react.modules"
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"defaultExport": "Pagination",
|
|
305
|
-
"importPath": "react/admin/modules/",
|
|
306
|
-
"externalPath": "components.admin.react.modules"
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"defaultExport": "Overlay",
|
|
310
|
-
"importPath": "react/admin/modules/",
|
|
311
|
-
"externalPath": "components.admin.react.modules"
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
"defaultExport": "NavBar",
|
|
315
|
-
"importPath": "react/admin/modules/",
|
|
316
|
-
"externalPath": "components.admin.react.modules"
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
"defaultExport": "MetaBox",
|
|
320
|
-
"importPath": "react/admin/modules/",
|
|
321
|
-
"externalPath": "components.admin.react.modules"
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"defaultExport": "List",
|
|
325
|
-
"importPath": "react/admin/modules/",
|
|
326
|
-
"externalPath": "components.admin.react.modules"
|
|
327
|
-
},
|
|
328
|
-
{
|
|
329
|
-
"defaultExport": "Kanban",
|
|
330
|
-
"importPath": "react/admin/modules/",
|
|
331
|
-
"externalPath": "components.admin.react.modules"
|
|
332
|
-
},
|
|
333
|
-
{
|
|
334
|
-
"defaultExport": "InputGroup",
|
|
335
|
-
"importPath": "react/admin/modules/",
|
|
336
|
-
"externalPath": "components.admin.react.modules"
|
|
337
|
-
},
|
|
338
|
-
{
|
|
339
|
-
"defaultExport": "Gravatar",
|
|
340
|
-
"importPath": "react/admin/modules/",
|
|
341
|
-
"externalPath": "components.admin.react.modules"
|
|
342
|
-
},
|
|
343
|
-
{
|
|
344
|
-
"defaultExport": "Flyout",
|
|
345
|
-
"importPath": "react/admin/modules/",
|
|
346
|
-
"externalPath": "components.admin.react.modules"
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
"defaultExport": "Fieldset",
|
|
350
|
-
"importPath": "react/admin/modules/",
|
|
419
|
+
"defaultExport": "VidyardVideo",
|
|
420
|
+
"importPath": "react/admin/modules/Videos/",
|
|
351
421
|
"externalPath": "components.admin.react.modules"
|
|
352
422
|
},
|
|
353
423
|
{
|
|
354
|
-
"
|
|
355
|
-
"
|
|
356
|
-
|
|
424
|
+
"__esModule": true,
|
|
425
|
+
"default": {
|
|
426
|
+
"defaultExport": "Simple",
|
|
427
|
+
"importPath": "react/admin/modules/ProgressBar/",
|
|
428
|
+
"externalPath": "components.admin.react.modules"
|
|
429
|
+
}
|
|
357
430
|
},
|
|
358
431
|
{
|
|
359
|
-
"defaultExport": "
|
|
360
|
-
"importPath": "react/admin/modules/",
|
|
432
|
+
"defaultExport": "RingLoader",
|
|
433
|
+
"importPath": "react/admin/modules/Loaders/",
|
|
361
434
|
"externalPath": "components.admin.react.modules"
|
|
362
435
|
},
|
|
363
436
|
{
|
|
364
|
-
"defaultExport": "
|
|
365
|
-
"importPath": "react/admin/modules/",
|
|
437
|
+
"defaultExport": "Placeholder",
|
|
438
|
+
"importPath": "react/admin/modules/Loaders/",
|
|
366
439
|
"externalPath": "components.admin.react.modules"
|
|
367
440
|
},
|
|
368
441
|
{
|
|
369
|
-
"defaultExport": "
|
|
370
|
-
"importPath": "react/admin/modules/",
|
|
442
|
+
"defaultExport": "RightSidebar",
|
|
443
|
+
"importPath": "react/admin/modules/Layouts/",
|
|
371
444
|
"externalPath": "components.admin.react.modules"
|
|
372
445
|
},
|
|
373
446
|
{
|
|
374
|
-
"defaultExport": "
|
|
375
|
-
"importPath": "react/admin/modules/",
|
|
447
|
+
"defaultExport": "ModularSidebar",
|
|
448
|
+
"importPath": "react/admin/modules/Layouts/",
|
|
376
449
|
"externalPath": "components.admin.react.modules"
|
|
377
450
|
},
|
|
378
451
|
{
|
|
379
|
-
"defaultExport": "
|
|
380
|
-
"importPath": "react/admin/modules/",
|
|
452
|
+
"defaultExport": "IconIndicator",
|
|
453
|
+
"importPath": "react/admin/modules/Indicators/",
|
|
381
454
|
"externalPath": "components.admin.react.modules"
|
|
382
455
|
},
|
|
383
456
|
{
|
|
384
|
-
"defaultExport": "
|
|
385
|
-
"importPath": "react/admin/modules/",
|
|
457
|
+
"defaultExport": "DotIndicator",
|
|
458
|
+
"importPath": "react/admin/modules/Indicators/",
|
|
386
459
|
"externalPath": "components.admin.react.modules"
|
|
387
460
|
},
|
|
388
461
|
{
|
|
389
|
-
"defaultExport": "
|
|
390
|
-
"importPath": "react/admin/modules/",
|
|
462
|
+
"defaultExport": "CountryDropdown",
|
|
463
|
+
"importPath": "react/admin/modules/Dropdown/",
|
|
391
464
|
"externalPath": "components.admin.react.modules"
|
|
392
465
|
},
|
|
393
466
|
{
|
|
394
|
-
"defaultExport": "
|
|
395
|
-
"importPath": "react/admin/modules/",
|
|
467
|
+
"defaultExport": "MetricCard",
|
|
468
|
+
"importPath": "react/admin/modules/Cards/",
|
|
396
469
|
"externalPath": "components.admin.react.modules"
|
|
397
470
|
},
|
|
398
471
|
{
|
|
399
|
-
"defaultExport": "
|
|
400
|
-
"importPath": "react/admin/modules/",
|
|
472
|
+
"defaultExport": "IntegrationCard",
|
|
473
|
+
"importPath": "react/admin/modules/Cards/",
|
|
401
474
|
"externalPath": "components.admin.react.modules"
|
|
402
475
|
},
|
|
403
476
|
{
|
|
404
|
-
"defaultExport": "
|
|
405
|
-
"importPath": "react/admin/modules/",
|
|
477
|
+
"defaultExport": "AddCard",
|
|
478
|
+
"importPath": "react/admin/modules/Cards/",
|
|
406
479
|
"externalPath": "components.admin.react.modules"
|
|
407
480
|
},
|
|
408
481
|
{
|
|
409
|
-
"defaultExport": "
|
|
410
|
-
"importPath": "react/admin/modules/",
|
|
482
|
+
"defaultExport": "FormTemplateCard",
|
|
483
|
+
"importPath": "react/admin/modules/Cards/",
|
|
411
484
|
"externalPath": "components.admin.react.modules"
|
|
412
485
|
},
|
|
413
486
|
{
|
|
414
|
-
"defaultExport": "
|
|
487
|
+
"defaultExport": "ZohoLogo",
|
|
415
488
|
"importPath": "react/admin/elements/Svgs/",
|
|
416
489
|
"externalPath": "components.admin.react.elements"
|
|
417
490
|
},
|
|
418
491
|
{
|
|
419
|
-
"defaultExport": "
|
|
492
|
+
"defaultExport": "ZohoFullLogo",
|
|
420
493
|
"importPath": "react/admin/elements/Svgs/",
|
|
421
494
|
"externalPath": "components.admin.react.elements"
|
|
422
495
|
},
|
|
@@ -425,23 +498,18 @@ module.exports = [
|
|
|
425
498
|
"importPath": "react/admin/elements/Svgs/",
|
|
426
499
|
"externalPath": "components.admin.react.elements"
|
|
427
500
|
},
|
|
428
|
-
{
|
|
429
|
-
"defaultExport": "DatePicker",
|
|
430
|
-
"importPath": "react/admin/modules/",
|
|
431
|
-
"externalPath": "components.admin.react.modules"
|
|
432
|
-
},
|
|
433
501
|
{
|
|
434
502
|
"defaultExport": "WhatsAppLogo",
|
|
435
503
|
"importPath": "react/admin/elements/Svgs/",
|
|
436
504
|
"externalPath": "components.admin.react.elements"
|
|
437
505
|
},
|
|
438
506
|
{
|
|
439
|
-
"defaultExport": "
|
|
507
|
+
"defaultExport": "TwilioLogo",
|
|
440
508
|
"importPath": "react/admin/elements/Svgs/",
|
|
441
509
|
"externalPath": "components.admin.react.elements"
|
|
442
510
|
},
|
|
443
511
|
{
|
|
444
|
-
"defaultExport": "
|
|
512
|
+
"defaultExport": "WPMailSMTPFullLogo",
|
|
445
513
|
"importPath": "react/admin/elements/Svgs/",
|
|
446
514
|
"externalPath": "components.admin.react.elements"
|
|
447
515
|
},
|
|
@@ -456,17 +524,17 @@ module.exports = [
|
|
|
456
524
|
"externalPath": "components.admin.react.elements"
|
|
457
525
|
},
|
|
458
526
|
{
|
|
459
|
-
"defaultExport": "
|
|
527
|
+
"defaultExport": "SlackLogo",
|
|
460
528
|
"importPath": "react/admin/elements/Svgs/",
|
|
461
529
|
"externalPath": "components.admin.react.elements"
|
|
462
530
|
},
|
|
463
531
|
{
|
|
464
|
-
"defaultExport": "
|
|
532
|
+
"defaultExport": "SendGridLogo",
|
|
465
533
|
"importPath": "react/admin/elements/Svgs/",
|
|
466
534
|
"externalPath": "components.admin.react.elements"
|
|
467
535
|
},
|
|
468
536
|
{
|
|
469
|
-
"defaultExport": "
|
|
537
|
+
"defaultExport": "SparkPostLogo",
|
|
470
538
|
"importPath": "react/admin/elements/Svgs/",
|
|
471
539
|
"externalPath": "components.admin.react.elements"
|
|
472
540
|
},
|
|
@@ -486,12 +554,12 @@ module.exports = [
|
|
|
486
554
|
"externalPath": "components.admin.react.elements"
|
|
487
555
|
},
|
|
488
556
|
{
|
|
489
|
-
"defaultExport": "
|
|
557
|
+
"defaultExport": "SMTP2GOFullLogo",
|
|
490
558
|
"importPath": "react/admin/elements/Svgs/",
|
|
491
559
|
"externalPath": "components.admin.react.elements"
|
|
492
560
|
},
|
|
493
561
|
{
|
|
494
|
-
"defaultExport": "
|
|
562
|
+
"defaultExport": "ResendLogo",
|
|
495
563
|
"importPath": "react/admin/elements/Svgs/",
|
|
496
564
|
"externalPath": "components.admin.react.elements"
|
|
497
565
|
},
|
|
@@ -580,11 +648,6 @@ module.exports = [
|
|
|
580
648
|
"importPath": "react/admin/elements/Svgs/",
|
|
581
649
|
"externalPath": "components.admin.react.elements"
|
|
582
650
|
},
|
|
583
|
-
{
|
|
584
|
-
"defaultExport": "MailchimpFullLogo",
|
|
585
|
-
"importPath": "react/admin/elements/Svgs/",
|
|
586
|
-
"externalPath": "components.admin.react.elements"
|
|
587
|
-
},
|
|
588
651
|
{
|
|
589
652
|
"defaultExport": "MailSuccessBg",
|
|
590
653
|
"importPath": "react/admin/elements/Svgs/",
|
|
@@ -671,12 +734,12 @@ module.exports = [
|
|
|
671
734
|
"externalPath": "components.admin.react.elements"
|
|
672
735
|
},
|
|
673
736
|
{
|
|
674
|
-
"defaultExport": "
|
|
737
|
+
"defaultExport": "ElasticEmailFullLogo",
|
|
675
738
|
"importPath": "react/admin/elements/Svgs/",
|
|
676
739
|
"externalPath": "components.admin.react.elements"
|
|
677
740
|
},
|
|
678
741
|
{
|
|
679
|
-
"defaultExport": "
|
|
742
|
+
"defaultExport": "CustomSMTPFull",
|
|
680
743
|
"importPath": "react/admin/elements/Svgs/",
|
|
681
744
|
"externalPath": "components.admin.react.elements"
|
|
682
745
|
},
|
|
@@ -715,6 +778,11 @@ module.exports = [
|
|
|
715
778
|
"importPath": "react/admin/elements/Svgs/",
|
|
716
779
|
"externalPath": "components.admin.react.elements"
|
|
717
780
|
},
|
|
781
|
+
{
|
|
782
|
+
"defaultExport": "MailchimpFullLogo",
|
|
783
|
+
"importPath": "react/admin/elements/Svgs/",
|
|
784
|
+
"externalPath": "components.admin.react.elements"
|
|
785
|
+
},
|
|
718
786
|
{
|
|
719
787
|
"defaultExport": "BrandedLink",
|
|
720
788
|
"importPath": "react/admin/elements/Link/",
|
|
@@ -724,73 +792,5 @@ module.exports = [
|
|
|
724
792
|
"defaultExport": "BrandedButton",
|
|
725
793
|
"importPath": "react/admin/elements/Button/",
|
|
726
794
|
"externalPath": "components.admin.react.elements"
|
|
727
|
-
},
|
|
728
|
-
{
|
|
729
|
-
"defaultExport": "VidyardVideo",
|
|
730
|
-
"importPath": "react/admin/modules/Videos/",
|
|
731
|
-
"externalPath": "components.admin.react.modules"
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
"__esModule": true,
|
|
735
|
-
"default": {
|
|
736
|
-
"defaultExport": "Simple",
|
|
737
|
-
"importPath": "react/admin/modules/ProgressBar/",
|
|
738
|
-
"externalPath": "components.admin.react.modules"
|
|
739
|
-
}
|
|
740
|
-
},
|
|
741
|
-
{
|
|
742
|
-
"defaultExport": "RingLoader",
|
|
743
|
-
"importPath": "react/admin/modules/Loaders/",
|
|
744
|
-
"externalPath": "components.admin.react.modules"
|
|
745
|
-
},
|
|
746
|
-
{
|
|
747
|
-
"defaultExport": "Placeholder",
|
|
748
|
-
"importPath": "react/admin/modules/Loaders/",
|
|
749
|
-
"externalPath": "components.admin.react.modules"
|
|
750
|
-
},
|
|
751
|
-
{
|
|
752
|
-
"defaultExport": "RightSidebar",
|
|
753
|
-
"importPath": "react/admin/modules/Layouts/",
|
|
754
|
-
"externalPath": "components.admin.react.modules"
|
|
755
|
-
},
|
|
756
|
-
{
|
|
757
|
-
"defaultExport": "ModularSidebar",
|
|
758
|
-
"importPath": "react/admin/modules/Layouts/",
|
|
759
|
-
"externalPath": "components.admin.react.modules"
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
"defaultExport": "IconIndicator",
|
|
763
|
-
"importPath": "react/admin/modules/Indicators/",
|
|
764
|
-
"externalPath": "components.admin.react.modules"
|
|
765
|
-
},
|
|
766
|
-
{
|
|
767
|
-
"defaultExport": "DotIndicator",
|
|
768
|
-
"importPath": "react/admin/modules/Indicators/",
|
|
769
|
-
"externalPath": "components.admin.react.modules"
|
|
770
|
-
},
|
|
771
|
-
{
|
|
772
|
-
"defaultExport": "CountryDropdown",
|
|
773
|
-
"importPath": "react/admin/modules/Dropdown/",
|
|
774
|
-
"externalPath": "components.admin.react.modules"
|
|
775
|
-
},
|
|
776
|
-
{
|
|
777
|
-
"defaultExport": "MetricCard",
|
|
778
|
-
"importPath": "react/admin/modules/Cards/",
|
|
779
|
-
"externalPath": "components.admin.react.modules"
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
"defaultExport": "IntegrationCard",
|
|
783
|
-
"importPath": "react/admin/modules/Cards/",
|
|
784
|
-
"externalPath": "components.admin.react.modules"
|
|
785
|
-
},
|
|
786
|
-
{
|
|
787
|
-
"defaultExport": "FormTemplateCard",
|
|
788
|
-
"importPath": "react/admin/modules/Cards/",
|
|
789
|
-
"externalPath": "components.admin.react.modules"
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"defaultExport": "AddCard",
|
|
793
|
-
"importPath": "react/admin/modules/Cards/",
|
|
794
|
-
"externalPath": "components.admin.react.modules"
|
|
795
795
|
}
|
|
796
796
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravityforms/dependency-extraction-webpack-plugin",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.2",
|
|
4
4
|
"description": "Dependency extraction webpack plugin for use in Gravity Forms development. Extends the WordPress plugin.",
|
|
5
5
|
"author": "Rocketgenius",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|