-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathwebpack-stats.json
7248 lines (7248 loc) · 630 KB
/
webpack-stats.json
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"errors": [],
"warnings": [
"./src/components/App/index.js\n60:12-17 \"export 'move' (imported as '_move') was not found in 'actions'\n at HarmonyImportSpecifierDependency._getErrors (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\dependencies\\HarmonyImportSpecifierDependency.js:65:15)\n at HarmonyImportSpecifierDependency.getWarnings (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\dependencies\\HarmonyImportSpecifierDependency.js:39:15)\n at Compilation.reportDependencyErrorsAndWarnings (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\Compilation.js:703:24)\n at Compilation.finish (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\Compilation.js:561:9)\n at applyPluginsParallel.err (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\Compiler.js:502:17)\n at D:\\xampp\\htdocs\\react-selectrix\\node_modules\\tapable\\lib\\Tapable.js:289:11\n at _addModuleChain (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\Compilation.js:507:11)\n at processModuleDependencies.err (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\Compilation.js:477:14)\n at _combinedTickCallback (internal/process/next_tick.js:131:7)\n at process._tickCallback (internal/process/next_tick.js:180:9)\n @ ./src/components/App/index.js\n @ ./src/components/ReactSelectrix.js\n @ ./src/components/index.js\n @ ./src/App.js\n @ ./src/index.js",
"./src/components/App/index.js\n64:12-29 \"export 'getSelectedIndex' (imported as '_getSelectedIndex') was not found in 'actions'\n at HarmonyImportSpecifierDependency._getErrors (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\dependencies\\HarmonyImportSpecifierDependency.js:65:15)\n at HarmonyImportSpecifierDependency.getWarnings (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\dependencies\\HarmonyImportSpecifierDependency.js:39:15)\n at Compilation.reportDependencyErrorsAndWarnings (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\Compilation.js:703:24)\n at Compilation.finish (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\Compilation.js:561:9)\n at applyPluginsParallel.err (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\Compiler.js:502:17)\n at D:\\xampp\\htdocs\\react-selectrix\\node_modules\\tapable\\lib\\Tapable.js:289:11\n at _addModuleChain (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\Compilation.js:507:11)\n at processModuleDependencies.err (D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\lib\\Compilation.js:477:14)\n at _combinedTickCallback (internal/process/next_tick.js:131:7)\n at process._tickCallback (internal/process/next_tick.js:180:9)\n @ ./src/components/App/index.js\n @ ./src/components/ReactSelectrix.js\n @ ./src/components/index.js\n @ ./src/App.js\n @ ./src/index.js"
],
"version": "3.10.0",
"hash": "b3dc0ee09540ac33dd34",
"time": 3641,
"publicPath": "/dist/",
"assetsByChunkName": {
"bundle-production": "bundle-production.js"
},
"assets": [
{
"name": "bundle-production.js",
"size": 87885,
"chunks": [
0
],
"chunkNames": [
"bundle-production"
],
"emitted": true
}
],
"filteredAssets": 0,
"entrypoints": {
"bundle-production": {
"chunks": [
0
],
"assets": [
"bundle-production.js"
]
}
},
"chunks": [
{
"id": 0,
"rendered": true,
"initial": true,
"entry": true,
"extraAsync": false,
"size": 177635,
"names": [
"bundle-production"
],
"files": [
"bundle-production.js"
],
"hash": "c09a29c084103b817e6f",
"parents": [],
"modules": [
{
"id": 0,
"identifier": "external {\"root\":\"React\",\"commonjs2\":\"react\",\"commonjs\":\"react\",\"amd\":\"react\"}",
"name": "external {\"root\":\"React\",\"commonjs2\":\"react\",\"commonjs\":\"react\",\"amd\":\"react\"}",
"index": 1,
"index2": 0,
"size": 42,
"cacheable": false,
"built": false,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\index.js",
"issuerId": 18,
"issuerName": "./src/index.js",
"profile": {
"factory": 1,
"building": 0
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 8,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\components\\connectAdvanced.js",
"module": "./node_modules/react-redux/es/components/connectAdvanced.js",
"moduleName": "./node_modules/react-redux/es/components/connectAdvanced.js",
"type": "harmony import",
"userRequest": "react",
"loc": "13:0-49"
},
{
"moduleId": 18,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\index.js",
"module": "./src/index.js",
"moduleName": "./src/index.js",
"type": "harmony import",
"userRequest": "react",
"loc": "1:0-26"
},
{
"moduleId": 20,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\App.js",
"module": "./src/App.js",
"moduleName": "./src/App.js",
"type": "harmony import",
"userRequest": "react",
"loc": "9:0-26"
},
{
"moduleId": 22,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\components\\Provider.js",
"module": "./node_modules/react-redux/es/components/Provider.js",
"moduleName": "./node_modules/react-redux/es/components/Provider.js",
"type": "harmony import",
"userRequest": "react",
"loc": "7:0-44"
},
{
"moduleId": 48,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\ReactSelectrix.js",
"module": "./src/components/ReactSelectrix.js",
"moduleName": "./src/components/ReactSelectrix.js",
"type": "harmony import",
"userRequest": "react",
"loc": "9:0-26"
},
{
"moduleId": 55,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\App.js",
"module": "./src/components/App/App.js",
"moduleName": "./src/components/App/App.js",
"type": "harmony import",
"userRequest": "react",
"loc": "9:0-26"
},
{
"moduleId": 57,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\Header\\Header.js",
"module": "./src/components/App/partials/Header/Header.js",
"moduleName": "./src/components/App/partials/Header/Header.js",
"type": "harmony import",
"userRequest": "react",
"loc": "1:0-26"
},
{
"moduleId": 58,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\Header\\partials\\Searchable\\Searchable.js",
"module": "./src/components/App/partials/Header/partials/Searchable/Searchable.js",
"moduleName": "./src/components/App/partials/Header/partials/Searchable/Searchable.js",
"type": "harmony import",
"userRequest": "react",
"loc": "9:0-26"
},
{
"moduleId": 60,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\MultiHeader\\MultiHeader.js",
"module": "./src/components/App/partials/MultiHeader/MultiHeader.js",
"moduleName": "./src/components/App/partials/MultiHeader/MultiHeader.js",
"type": "harmony import",
"userRequest": "react",
"loc": "1:0-26"
},
{
"moduleId": 65,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-hot-loader\\lib\\AppContainer.prod.js",
"module": "./node_modules/react-hot-loader/lib/AppContainer.prod.js",
"moduleName": "./node_modules/react-hot-loader/lib/AppContainer.prod.js",
"type": "cjs require",
"userRequest": "react",
"loc": "13:12-28"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [],
"depth": 1
},
{
"id": 1,
"identifier": "external {\"root\":\"PropTypes\",\"commonjs2\":\"prop-types\",\"commonjs\":\"prop-types\",\"amd\":\"prop-types\"}",
"name": "external {\"root\":\"PropTypes\",\"commonjs2\":\"prop-types\",\"commonjs\":\"prop-types\",\"amd\":\"prop-types\"}",
"index": 7,
"index2": 2,
"size": 42,
"cacheable": false,
"built": false,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\components\\Provider.js",
"issuerId": 22,
"issuerName": "./node_modules/react-redux/es/components/Provider.js",
"profile": {
"factory": 0,
"building": 0
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 7,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\utils\\PropTypes.js",
"module": "./node_modules/react-redux/es/utils/PropTypes.js",
"moduleName": "./node_modules/react-redux/es/utils/PropTypes.js",
"type": "harmony import",
"userRequest": "prop-types",
"loc": "1:0-35"
},
{
"moduleId": 22,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\components\\Provider.js",
"module": "./node_modules/react-redux/es/components/Provider.js",
"moduleName": "./node_modules/react-redux/es/components/Provider.js",
"type": "harmony import",
"userRequest": "prop-types",
"loc": "8:0-35"
},
{
"moduleId": 48,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\ReactSelectrix.js",
"module": "./src/components/ReactSelectrix.js",
"moduleName": "./src/components/ReactSelectrix.js",
"type": "harmony import",
"userRequest": "prop-types",
"loc": "11:0-35"
},
{
"moduleId": 55,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\App.js",
"module": "./src/components/App/App.js",
"moduleName": "./src/components/App/App.js",
"type": "harmony import",
"userRequest": "prop-types",
"loc": "11:0-35"
},
{
"moduleId": 57,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\Header\\Header.js",
"module": "./src/components/App/partials/Header/Header.js",
"moduleName": "./src/components/App/partials/Header/Header.js",
"type": "harmony import",
"userRequest": "prop-types",
"loc": "3:0-35"
},
{
"moduleId": 58,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\Header\\partials\\Searchable\\Searchable.js",
"module": "./src/components/App/partials/Header/partials/Searchable/Searchable.js",
"moduleName": "./src/components/App/partials/Header/partials/Searchable/Searchable.js",
"type": "harmony import",
"userRequest": "prop-types",
"loc": "10:0-35"
},
{
"moduleId": 60,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\MultiHeader\\MultiHeader.js",
"module": "./src/components/App/partials/MultiHeader/MultiHeader.js",
"moduleName": "./src/components/App/partials/MultiHeader/MultiHeader.js",
"type": "harmony import",
"userRequest": "prop-types",
"loc": "3:0-35"
}
],
"usedExports": [
"default"
],
"providedExports": null,
"optimizationBailout": [],
"depth": 3
},
{
"id": 2,
"identifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\index.js",
"name": "./node_modules/react-redux/es/index.js",
"index": 5,
"index2": 41,
"size": 230,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\index.js",
"issuerId": 18,
"issuerName": "./src/index.js",
"profile": {
"factory": 269,
"building": 29
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 17,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\Header\\partials\\Searchable\\index.js",
"module": "./src/components/App/partials/Header/partials/Searchable/index.js",
"moduleName": "./src/components/App/partials/Header/partials/Searchable/index.js",
"type": "harmony import",
"userRequest": "react-redux",
"loc": "1:0-38"
},
{
"moduleId": 18,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\index.js",
"module": "./src/index.js",
"moduleName": "./src/index.js",
"type": "harmony import",
"userRequest": "react-redux",
"loc": "7:0-39"
},
{
"moduleId": 21,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\index.js",
"module": "./src/components/index.js",
"moduleName": "./src/components/index.js",
"type": "harmony import",
"userRequest": "react-redux",
"loc": "1:0-38"
},
{
"moduleId": 54,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\index.js",
"module": "./src/components/App/index.js",
"moduleName": "./src/components/App/index.js",
"type": "harmony import",
"userRequest": "react-redux",
"loc": "3:0-38"
},
{
"moduleId": 56,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\Header\\index.js",
"module": "./src/components/App/partials/Header/index.js",
"moduleName": "./src/components/App/partials/Header/index.js",
"type": "harmony import",
"userRequest": "react-redux",
"loc": "1:0-38"
},
{
"moduleId": 59,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\MultiHeader\\index.js",
"module": "./src/components/App/partials/MultiHeader/index.js",
"moduleName": "./src/components/App/partials/MultiHeader/index.js",
"type": "harmony import",
"userRequest": "react-redux",
"loc": "1:0-38"
}
],
"usedExports": [
"Provider",
"connect"
],
"providedExports": [
"Provider",
"createProvider",
"connectAdvanced",
"connect"
],
"optimizationBailout": [],
"depth": 1,
"source": "import Provider, { createProvider } from './components/Provider';\nimport connectAdvanced from './components/connectAdvanced';\nimport connect from './connect/connect';\n\nexport { Provider, createProvider, connectAdvanced, connect };"
},
{
"id": 3,
"identifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\actions\\index.js",
"name": "./src/actions/index.js",
"index": 45,
"index2": 43,
"size": 13297,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\reducers\\index.js",
"issuerId": 68,
"issuerName": "./src/reducers/index.js",
"profile": {
"factory": 68,
"building": 203
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 17,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\Header\\partials\\Searchable\\index.js",
"module": "./src/components/App/partials/Header/partials/Searchable/index.js",
"moduleName": "./src/components/App/partials/Header/partials/Searchable/index.js",
"type": "harmony import",
"userRequest": "actions",
"loc": "3:0-114"
},
{
"moduleId": 21,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\index.js",
"module": "./src/components/index.js",
"moduleName": "./src/components/index.js",
"type": "harmony import",
"userRequest": "actions",
"loc": "2:0-58"
},
{
"moduleId": 54,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\index.js",
"module": "./src/components/App/index.js",
"moduleName": "./src/components/App/index.js",
"type": "harmony import",
"userRequest": "actions",
"loc": "4:0-429"
},
{
"moduleId": 56,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\Header\\index.js",
"module": "./src/components/App/partials/Header/index.js",
"moduleName": "./src/components/App/partials/Header/index.js",
"type": "harmony import",
"userRequest": "actions",
"loc": "2:0-85"
},
{
"moduleId": 59,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\components\\App\\partials\\MultiHeader\\index.js",
"module": "./src/components/App/partials/MultiHeader/index.js",
"moduleName": "./src/components/App/partials/MultiHeader/index.js",
"type": "harmony import",
"userRequest": "actions",
"loc": "2:0-139"
},
{
"moduleId": 68,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\reducers\\index.js",
"module": "./src/reducers/index.js",
"moduleName": "./src/reducers/index.js",
"type": "harmony import",
"userRequest": "actions",
"loc": "3:0-242"
}
],
"usedExports": [
"BLUR_SELECT",
"CHECK_FOR_SCROLL",
"CLEAR_SEARCH",
"CLEAR_SELECT",
"CLOSE_SELECT",
"FOCUS_ITEM",
"FOCUS_SELECT",
"OPEN_SELECT",
"REMOVE_ITEM",
"SCROLL_SELECT",
"SEARCH_OPTIONS",
"SELECT_ALL",
"SELECT_ITEM",
"SETUP_INSTANCE",
"UNLOCK_MOUSE_FOCUS",
"blurSelect",
"clearSelect",
"closeSelect",
"focusItem",
"focusSelect",
"getSelectedIndex",
"handleKeyDown",
"maybeScroll",
"move",
"openSelect",
"removeItem",
"searchOptions",
"selectAll",
"selectItem",
"setupInstance",
"toggleSelect",
"unlockMouseFocus"
],
"providedExports": [
"SETUP_INSTANCE",
"CLOSE_SELECT",
"OPEN_SELECT",
"SELECT_ITEM",
"SELECT_MULTI_ITEM",
"FOCUS_ITEM",
"CLEAR_SELECT",
"FOCUS_SELECT",
"BLUR_SELECT",
"SCROLL_SELECT",
"SEARCH_OPTIONS",
"UNLOCK_MOUSE_FOCUS",
"REMOVE_ITEM",
"CLEAR_SEARCH",
"CHECK_FOR_SCROLL",
"SELECT_ALL",
"removeItem",
"checkForScroll",
"setupInstance",
"searchOptions",
"toggleSelect",
"selectAll",
"selectItem",
"clearSelect",
"openSelect",
"closeSelect",
"focusSelect",
"blurSelect",
"handleKeyDown",
"moveFocus",
"maybeScroll",
"focusItem",
"unlockMouseFocus"
],
"optimizationBailout": [],
"depth": 2,
"source": "function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\nimport { normalizeSelected, isInViewport } from 'helpers';\n\nexport var SETUP_INSTANCE = 'SETUP_INSTANCE';\nexport var CLOSE_SELECT = 'CLOSE_SELECT';\nexport var OPEN_SELECT = 'OPEN_SELECT';\nexport var SELECT_ITEM = 'SELECT_ITEM';\nexport var SELECT_MULTI_ITEM = 'SELECT_MULTI_ITEM';\nexport var FOCUS_ITEM = 'FOCUS_ITEM';\nexport var CLEAR_SELECT = 'CLEAR_SELECT';\nexport var FOCUS_SELECT = 'FOCUS_SELECT';\nexport var BLUR_SELECT = 'BLUR_SELECT';\nexport var SCROLL_SELECT = 'SCROLL_SELECT';\nexport var SEARCH_OPTIONS = 'SEARCH_OPTIONS';\nexport var UNLOCK_MOUSE_FOCUS = 'UNLOCK_MOUSE_FOCUS';\nexport var REMOVE_ITEM = 'REMOVE_ITEM';\nexport var CLEAR_SEARCH = 'CLEAR_SEARCH';\nexport var CHECK_FOR_SCROLL = 'CHECK_FOR_SCROLL';\nexport var SELECT_ALL = 'SELECT_ALL';\n\nexport var removeItem = function removeItem(index) {\n\n\treturn function (dispatch, getState) {\n\n\t\tdispatch({\n\t\t\ttype: REMOVE_ITEM,\n\t\t\tindex: index\n\t\t});\n\n\t\tvar state = getState();\n\n\t\tif (state.settings.multiple && !state.settings.commaSeperated && !state.settings.checkBoxes) {\n\t\t\tdispatch(focusItem(0));\n\t\t}\n\t\tstate.onChange([].concat(_toConsumableArray(state.selectedIndex)).map(function (i) {\n\t\t\treturn state.options[i];\n\t\t}));\n\t};\n};\n\nexport var checkForScroll = function checkForScroll() {\n\treturn {\n\t\ttype: CHECK_FOR_SCROLL\n\t};\n};\n\nexport var setupInstance = function setupInstance(props) {\n\tvar _normalizeSelected = normalizeSelected(props.selected, [].concat(_toConsumableArray(props.options))),\n\t selected = _normalizeSelected.selected,\n\t selectedIndex = _normalizeSelected.selectedIndex;\n\n\treturn {\n\t\ttype: SETUP_INSTANCE,\n\t\tprops: props,\n\t\tselected: selected,\n\t\tselectedIndex: selectedIndex\n\t};\n};\n\nexport var searchOptions = function searchOptions(queryString) {\n\n\treturn function (dispatch, getState) {\n\n\t\tif (queryString !== '') {\n\t\t\tdispatch({\n\t\t\t\ttype: SEARCH_OPTIONS,\n\t\t\t\tqueryString: queryString\n\t\t\t});\n\t\t} else {\n\t\t\tdispatch({\n\t\t\t\ttype: CLEAR_SEARCH\n\t\t\t});\n\t\t}\n\n\t\tvar state = getState();\n\t\tif (state.settings.multiple) {\n\t\t\tdispatch(focusItem(0));\n\t\t} else {\n\t\t\tstate.search.active ? dispatch(focusItem(0)) : dispatch(checkForScroll());\n\t\t}\n\t};\n};\n\nexport var toggleSelect = function toggleSelect() {\n\n\treturn function (dispatch, getState) {\n\t\tvar state = getState();\n\t\tdispatch({\n\t\t\ttype: state.isOpen ? CLOSE_SELECT : OPEN_SELECT\n\t\t});\n\n\t\tstate = getState();\n\t\tif (state.isOpen && (state.selected.length === 0 || state.settings.multiple || state.settings.checkBoxes) && state.focusedItem === null) {\n\t\t\tif (state.settings.checkBoxes && !state.settings.multiple) {\n\t\t\t\tdispatch(focusItem(state.selectedIndex[0]));\n\t\t\t} else if (state.settings.multiple && state.settings.commaSeperated && state.selected.length > 0) {\n\t\t\t\tvar index = state.settings.lifo ? state.selectedIndex[0] : state.selectedIndex[state.selectedIndex.length - 1];\n\t\t\t\tdispatch(focusItem(index));\n\t\t\t} else {\n\t\t\t\tdispatch(moveFocus('down'));\n\t\t\t}\n\t\t}\n\t};\n};\n\nexport var selectAll = function selectAll() {\n\treturn function (dispatch, getState) {\n\t\tdispatch({\n\t\t\ttype: SELECT_ALL\n\t\t});\n\t\tvar state = getState();\n\t\tstate.onChange([].concat(_toConsumableArray(state.selectedIndex)).map(function (i) {\n\t\t\treturn state.options[i];\n\t\t}));\n\t};\n};\n\nexport var selectItem = function selectItem(index) {\n\tvar isKeyboard = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\n\treturn function (dispatch, getState) {\n\n\t\tvar state = getState();\n\t\tvar options = state.search.active ? state.search.resultSet : state.options;\n\n\t\tif (state.settings.multiple && !state.settings.commaSeperated && !state.settings.checkBoxes) {\n\t\t\toptions = [].concat(_toConsumableArray(options)).filter(function (o) {\n\t\t\t\treturn !state.selected.includes(o.key);\n\t\t\t});\n\t\t}\n\n\t\tvar targetIndex = state.search.active ? state.options.findIndex(function (o) {\n\t\t\treturn o.key === options[index].key;\n\t\t}) : index;\n\n\t\tif ((state.settings.commaSeperated || state.settings.checkBoxes) && state.selectedIndex.includes(targetIndex)) {\n\t\t\treturn dispatch(removeItem(targetIndex));\n\t\t} else {\n\t\t\tif (options[index]) {\n\t\t\t\tdispatch({\n\t\t\t\t\ttype: SELECT_ITEM,\n\t\t\t\t\titem: options[index],\n\t\t\t\t\tindex: state.search.active || state.settings.multiple && state.selected.length ? targetIndex : index,\n\t\t\t\t\tisKeyboard: isKeyboard\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\tstate = getState();\n\n\t\tif (!state.settings.checkBoxes && !state.settings.commaSeperated) {\n\n\t\t\tif (isKeyboard) {\n\t\t\t\tindex === options.length - 1 ? dispatch(focusItem(index - 1)) : dispatch(focusItem(index));\n\t\t\t} else {\n\t\t\t\tindex === options.length - 1 ? dispatch(focusItem(index - 1)) : '';\n\t\t\t}\n\t\t}\n\n\t\tif (state.settings.multiple) {\n\t\t\tstate.onChange([].concat(_toConsumableArray(state.selectedIndex)).map(function (i) {\n\t\t\t\treturn state.options[i];\n\t\t\t}));\n\t\t} else {\n\t\t\tstate.onChange(options[index]);\n\t\t}\n\t};\n};\n\nexport var clearSelect = function clearSelect() {\n\tvar stayOpen = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;\n\n\n\treturn function (dispatch, getState) {\n\n\t\tvar state = getState();\n\t\tdispatch({ type: CLEAR_SELECT, stayOpen: stayOpen });\n\t\tstate.onChange('');\n\t};\n};\n\nexport var openSelect = function openSelect() {\n\treturn function (dispatch, getState) {\n\n\t\tdispatch({\n\t\t\ttype: OPEN_SELECT\n\t\t});\n\n\t\tvar state = getState();\n\t\tif (state.settings.multiple) {\n\t\t\tdispatch(moveFocus('down'));\n\t\t}\n\t};\n};\n\nexport var closeSelect = function closeSelect() {\n\n\treturn {\n\t\ttype: CLOSE_SELECT\n\t};\n};\n\nexport var focusSelect = function focusSelect() {\n\n\treturn function (dispatch, getState) {\n\t\tif (!getState().focused) {\n\t\t\tdispatch({\n\t\t\t\ttype: FOCUS_SELECT\n\t\t\t});\n\t\t}\n\t};\n};\n\nexport var blurSelect = function blurSelect() {\n\n\treturn {\n\t\ttype: BLUR_SELECT\n\t};\n};\n\nexport var handleKeyDown = function handleKeyDown(e) {\n\n\treturn function (dispatch, getState) {\n\n\t\tvar state = getState();\n\t\tvar key = e.key;\n\n\t\tswitch (key) {\n\t\t\tcase 'Enter':\n\t\t\t\t{\n\t\t\t\t\te.preventDefault();\n\t\t\t\t\tif (state.isOpen) {\n\t\t\t\t\t\tif (state.focusedItem !== null) {\n\t\t\t\t\t\t\tdispatch(selectItem(state.focusedItemIndex, true));\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tdispatch(closeSelect());\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tdispatch(openSelect());\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\tcase 'Esc':\n\t\t\tcase 'Escape':\n\t\t\t\t{\n\t\t\t\t\tdispatch(closeSelect());\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\tcase 'Up':\n\t\t\tcase 'Left':\n\t\t\tcase 'ArrowUp':\n\t\t\tcase 'ArrowLeft':\n\t\t\t\t{\n\t\t\t\t\te.preventDefault();\n\t\t\t\t\tdispatch(moveFocus('up'));\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\tcase 'Down':\n\t\t\tcase 'Right':\n\t\t\tcase 'ArrowDown':\n\t\t\tcase 'ArrowRight':\n\t\t\t\t{\n\t\t\t\t\te.preventDefault();\n\t\t\t\t\tdispatch(moveFocus('down'));\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t}\n\t};\n};\n\nexport var moveFocus = function moveFocus(direction) {\n\n\treturn function (dispatch, getState) {\n\n\t\tvar state = getState();\n\t\tvar placeHolderInside = !state.settings.multiple && state.settings.placeHolderInside;\n\t\tvar options = state.search.active ? state.search.resultSet : state.options;\n\n\t\tif (state.settings.multiple && !state.settings.commaSeperated && !state.settings.checkBoxes) {\n\t\t\toptions = [].concat(_toConsumableArray(options)).filter(function (o) {\n\t\t\t\treturn !state.selected.includes(o.key);\n\t\t\t});\n\t\t}\n\n\t\tvar index = false,\n\t\t targetIndex = false;\n\n\t\tif (state.focusedItem !== null) {\n\t\t\tindex = state.focusedItemIndex;\n\t\t} else {\n\t\t\tif (state.selected.length > 0 && !state.settings.multiple) {\n\t\t\t\tif (state.search.active) {\n\t\t\t\t\tindex = options.findIndex(function (o) {\n\t\t\t\t\t\treturn o.key === state.options[state.selectedIndex].key;\n\t\t\t\t\t});\n\t\t\t\t\tif (index === -1) {\n\t\t\t\t\t\tindex = false;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tindex = state.selectedIndex[0];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif (index !== false) {\n\t\t\tif (direction === 'up') {\n\t\t\t\ttargetIndex = index > 0 || placeHolderInside ? index - 1 : 0;\n\t\t\t} else {\n\t\t\t\ttargetIndex = index + 1 < options.length ? index + 1 : options.length - 1;\n\t\t\t}\n\t\t} else {\n\t\t\ttargetIndex = direction === 'up' ? options.length - 1 : placeHolderInside ? -1 : 0;\n\t\t}\n\n\t\tif (targetIndex !== false) {\n\t\t\tif (state.isOpen === false) {\n\t\t\t\tdispatch(openSelect());\n\t\t\t}\n\t\t\tdispatch(focusItem(targetIndex, false));\n\t\t}\n\t};\n};\n\nexport var maybeScroll = function maybeScroll(selectEl, itemEl) {\n\n\treturn function (dispatch) {\n\n\t\tvar scroll = isInViewport(selectEl, itemEl);\n\t\tvar scrollNum = 0;\n\n\t\tif (scroll) {\n\t\t\tscrollNum = scroll;\n\t\t\tselectEl.scrollTop = scroll;\n\t\t}\n\n\t\tdispatch({\n\t\t\ttype: SCROLL_SELECT,\n\t\t\tactive: scroll !== false,\n\t\t\tscroll: scrollNum\n\t\t});\n\t};\n};\n\nexport var focusItem = function focusItem(index, mouseEvent) {\n\n\treturn function (dispatch, getState) {\n\n\t\tvar state = getState();\n\t\tvar options = state.search.active ? state.search.resultSet : state.options;\n\n\t\tif (state.settings.multiple && !state.settings.commaSeperated && !state.settings.checkBoxes) {\n\t\t\toptions = [].concat(_toConsumableArray(options)).filter(function (o) {\n\t\t\t\treturn !state.selected.includes(o.key);\n\t\t\t});\n\t\t}\n\n\t\tif (options[index] || index === -1) {\n\t\t\tdispatch({\n\t\t\t\ttype: FOCUS_ITEM,\n\t\t\t\titem: index !== -1 ? options[index] : { key: 'default' },\n\t\t\t\tindex: index,\n\t\t\t\tmouseEvent: mouseEvent\n\t\t\t});\n\t\t}\n\t};\n};\n\nexport var unlockMouseFocus = function unlockMouseFocus() {\n\treturn {\n\t\ttype: UNLOCK_MOUSE_FOCUS\n\t};\n};\n;\n\nvar _temp = function () {\n\tif (typeof __REACT_HOT_LOADER__ === 'undefined') {\n\t\treturn;\n\t}\n\n\t__REACT_HOT_LOADER__.register(SETUP_INSTANCE, 'SETUP_INSTANCE', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(CLOSE_SELECT, 'CLOSE_SELECT', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(OPEN_SELECT, 'OPEN_SELECT', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(SELECT_ITEM, 'SELECT_ITEM', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(SELECT_MULTI_ITEM, 'SELECT_MULTI_ITEM', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(FOCUS_ITEM, 'FOCUS_ITEM', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(CLEAR_SELECT, 'CLEAR_SELECT', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(FOCUS_SELECT, 'FOCUS_SELECT', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(BLUR_SELECT, 'BLUR_SELECT', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(SCROLL_SELECT, 'SCROLL_SELECT', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(SEARCH_OPTIONS, 'SEARCH_OPTIONS', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(UNLOCK_MOUSE_FOCUS, 'UNLOCK_MOUSE_FOCUS', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(REMOVE_ITEM, 'REMOVE_ITEM', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(CLEAR_SEARCH, 'CLEAR_SEARCH', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(CHECK_FOR_SCROLL, 'CHECK_FOR_SCROLL', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(SELECT_ALL, 'SELECT_ALL', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(removeItem, 'removeItem', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(checkForScroll, 'checkForScroll', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(setupInstance, 'setupInstance', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(searchOptions, 'searchOptions', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(toggleSelect, 'toggleSelect', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(selectAll, 'selectAll', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(selectItem, 'selectItem', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(clearSelect, 'clearSelect', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(openSelect, 'openSelect', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(closeSelect, 'closeSelect', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(focusSelect, 'focusSelect', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(blurSelect, 'blurSelect', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(handleKeyDown, 'handleKeyDown', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(moveFocus, 'moveFocus', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(maybeScroll, 'maybeScroll', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(focusItem, 'focusItem', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n\n\t__REACT_HOT_LOADER__.register(unlockMouseFocus, 'unlockMouseFocus', 'D:/xampp/htdocs/react-selectrix/src/actions/index.js');\n}();\n\n;"
},
{
"id": 4,
"identifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\utils\\warning.js",
"name": "./node_modules/react-redux/es/utils/warning.js",
"index": 9,
"index2": 4,
"size": 637,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\components\\Provider.js",
"issuerId": 22,
"issuerName": "./node_modules/react-redux/es/components/Provider.js",
"profile": {
"factory": 243,
"building": 12
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 15,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\utils\\verifyPlainObject.js",
"module": "./node_modules/react-redux/es/utils/verifyPlainObject.js",
"moduleName": "./node_modules/react-redux/es/utils/verifyPlainObject.js",
"type": "harmony import",
"userRequest": "./warning",
"loc": "2:0-32"
},
{
"moduleId": 22,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\components\\Provider.js",
"module": "./node_modules/react-redux/es/components/Provider.js",
"moduleName": "./node_modules/react-redux/es/components/Provider.js",
"type": "harmony import",
"userRequest": "../utils/warning",
"loc": "10:0-39"
},
{
"moduleId": 47,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\connect\\verifySubselectors.js",
"module": "./node_modules/react-redux/es/connect/verifySubselectors.js",
"moduleName": "./node_modules/react-redux/es/connect/verifySubselectors.js",
"type": "harmony import",
"userRequest": "../utils/warning",
"loc": "1:0-39"
}
],
"usedExports": [
"default"
],
"providedExports": [
"default"
],
"optimizationBailout": [],
"depth": 3,
"source": "/**\n * Prints a warning in the console if it exists.\n *\n * @param {String} message The warning message.\n * @returns {void}\n */\nexport default function warning(message) {\n /* eslint-disable no-console */\n if (typeof console !== 'undefined' && typeof console.error === 'function') {\n console.error(message);\n }\n /* eslint-enable no-console */\n try {\n // This error was thrown as a convenience so that if you enable\n // \"break on all exceptions\" in your console,\n // it would pause the execution at this line.\n throw new Error(message);\n /* eslint-disable no-empty */\n } catch (e) {}\n /* eslint-enable no-empty */\n}"
},
{
"id": 5,
"identifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\lodash-es\\isPlainObject.js",
"name": "./node_modules/lodash-es/isPlainObject.js",
"index": 19,
"index2": 21,
"size": 1648,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\redux\\es\\combineReducers.js",
"issuerId": 41,
"issuerName": "./node_modules/redux/es/combineReducers.js",
"profile": {
"factory": 272,
"building": 83
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 10,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\redux\\es\\createStore.js",
"module": "./node_modules/redux/es/createStore.js",
"moduleName": "./node_modules/redux/es/createStore.js",
"type": "harmony import",
"userRequest": "lodash-es/isPlainObject",
"loc": "1:0-52"
},
{
"moduleId": 15,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\utils\\verifyPlainObject.js",
"module": "./node_modules/react-redux/es/utils/verifyPlainObject.js",
"moduleName": "./node_modules/react-redux/es/utils/verifyPlainObject.js",
"type": "harmony import",
"userRequest": "lodash-es/isPlainObject",
"loc": "1:0-52"
},
{
"moduleId": 41,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\redux\\es\\combineReducers.js",
"module": "./node_modules/redux/es/combineReducers.js",
"moduleName": "./node_modules/redux/es/combineReducers.js",
"type": "harmony import",
"userRequest": "lodash-es/isPlainObject",
"loc": "2:0-52"
}
],
"usedExports": [
"default"
],
"providedExports": [
"default"
],
"optimizationBailout": [],
"depth": 3,
"source": "import baseGetTag from './_baseGetTag.js';\nimport getPrototype from './_getPrototype.js';\nimport isObjectLike from './isObjectLike.js';\n\n/** `Object#toString` result references. */\nvar objectTag = '[object Object]';\n\n/** Used for built-in method references. */\nvar funcProto = Function.prototype,\n objectProto = Object.prototype;\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Used to infer the `Object` constructor. */\nvar objectCtorString = funcToString.call(Object);\n\n/**\n * Checks if `value` is a plain object, that is, an object created by the\n * `Object` constructor or one with a `[[Prototype]]` of `null`.\n *\n * @static\n * @memberOf _\n * @since 0.8.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * }\n *\n * _.isPlainObject(new Foo);\n * // => false\n *\n * _.isPlainObject([1, 2, 3]);\n * // => false\n *\n * _.isPlainObject({ 'x': 0, 'y': 0 });\n * // => true\n *\n * _.isPlainObject(Object.create(null));\n * // => true\n */\nfunction isPlainObject(value) {\n if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\n return false;\n }\n var proto = getPrototype(value);\n if (proto === null) {\n return true;\n }\n var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\n return typeof Ctor == 'function' && Ctor instanceof Ctor &&\n funcToString.call(Ctor) == objectCtorString;\n}\n\nexport default isPlainObject;\n"
},
{
"id": 6,
"identifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\webpack\\buildin\\global.js",
"name": "(webpack)/buildin/global.js",
"index": 24,
"index2": 11,
"size": 509,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\redux-logger\\dist\\redux-logger.js",
"issuerId": 66,
"issuerName": "./node_modules/redux-logger/dist/redux-logger.js",
"profile": {
"factory": 40,
"building": 15
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 31,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\lodash-es\\_freeGlobal.js",
"module": "./node_modules/lodash-es/_freeGlobal.js",
"moduleName": "./node_modules/lodash-es/_freeGlobal.js",
"type": "cjs require",
"userRequest": "global",
"loc": "1:0-41"
},
{
"moduleId": 38,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\symbol-observable\\lib\\index.js",
"module": "./node_modules/symbol-observable/lib/index.js",
"moduleName": "./node_modules/symbol-observable/lib/index.js",
"type": "cjs require",
"userRequest": "global",
"loc": "1:0-44"
},
{
"moduleId": 66,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\redux-logger\\dist\\redux-logger.js",
"module": "./node_modules/redux-logger/dist/redux-logger.js",
"moduleName": "./node_modules/redux-logger/dist/redux-logger.js",
"type": "cjs require",
"userRequest": "global",
"loc": "1:0-44"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [],
"depth": 2,
"source": "var g;\r\n\r\n// This works in non-strict mode\r\ng = (function() {\r\n\treturn this;\r\n})();\r\n\r\ntry {\r\n\t// This works if eval is allowed (see CSP)\r\n\tg = g || Function(\"return this\")() || (1,eval)(\"this\");\r\n} catch(e) {\r\n\t// This works if the window reference is available\r\n\tif(typeof window === \"object\")\r\n\t\tg = window;\r\n}\r\n\r\n// g can still be undefined, but nothing to do about it...\r\n// We return undefined, instead of nothing here, so it's\r\n// easier to handle this case. if(!global) { ...}\r\n\r\nmodule.exports = g;\r\n"
},
{
"id": 7,
"identifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\utils\\PropTypes.js",
"name": "./node_modules/react-redux/es/utils/PropTypes.js",
"index": 8,
"index2": 3,
"size": 430,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\components\\Provider.js",
"issuerId": 22,
"issuerName": "./node_modules/react-redux/es/components/Provider.js",
"profile": {
"factory": 243,
"building": 9,
"dependencies": 0
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 8,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\components\\connectAdvanced.js",
"module": "./node_modules/react-redux/es/components/connectAdvanced.js",
"moduleName": "./node_modules/react-redux/es/components/connectAdvanced.js",
"type": "harmony import",
"userRequest": "../utils/PropTypes",
"loc": "16:0-67"
},
{
"moduleId": 22,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\components\\Provider.js",
"module": "./node_modules/react-redux/es/components/Provider.js",
"moduleName": "./node_modules/react-redux/es/components/Provider.js",
"type": "harmony import",
"userRequest": "../utils/PropTypes",
"loc": "9:0-67"
}
],
"usedExports": [
"storeShape",
"subscriptionShape"
],
"providedExports": [
"subscriptionShape",
"storeShape"
],
"optimizationBailout": [],
"depth": 3,
"source": "import PropTypes from 'prop-types';\n\nexport var subscriptionShape = PropTypes.shape({\n trySubscribe: PropTypes.func.isRequired,\n tryUnsubscribe: PropTypes.func.isRequired,\n notifyNestedSubs: PropTypes.func.isRequired,\n isSubscribed: PropTypes.func.isRequired\n});\n\nexport var storeShape = PropTypes.shape({\n subscribe: PropTypes.func.isRequired,\n dispatch: PropTypes.func.isRequired,\n getState: PropTypes.func.isRequired\n});"
},
{
"id": 8,
"identifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\components\\connectAdvanced.js",
"name": "./node_modules/react-redux/es/components/connectAdvanced.js",
"index": 10,
"index2": 9,
"size": 14250,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\index.js",
"issuerId": 2,
"issuerName": "./node_modules/react-redux/es/index.js",
"profile": {
"factory": 37,
"building": 25,
"dependencies": 235
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 2,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\index.js",
"module": "./node_modules/react-redux/es/index.js",
"moduleName": "./node_modules/react-redux/es/index.js",
"type": "harmony import",
"userRequest": "./components/connectAdvanced",
"loc": "2:0-59"
},
{
"moduleId": 26,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\connect\\connect.js",
"module": "./node_modules/react-redux/es/connect/connect.js",
"moduleName": "./node_modules/react-redux/es/connect/connect.js",
"type": "harmony import",
"userRequest": "../components/connectAdvanced",
"loc": "5:0-60"
}
],
"usedExports": [
"default"
],
"providedExports": [
"default"
],
"optimizationBailout": [],
"depth": 2,
"source": "var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nfunction _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }\n\nimport hoistStatics from 'hoist-non-react-statics';\nimport invariant from 'invariant';\nimport { Component, createElement } from 'react';\n\nimport Subscription from '../utils/Subscription';\nimport { storeShape, subscriptionShape } from '../utils/PropTypes';\n\nvar hotReloadingVersion = 0;\nvar dummyState = {};\nfunction noop() {}\nfunction makeSelectorStateful(sourceSelector, store) {\n // wrap the selector in an object that tracks its results between runs.\n var selector = {\n run: function runComponentSelector(props) {\n try {\n var nextProps = sourceSelector(store.getState(), props);\n if (nextProps !== selector.props || selector.error) {\n selector.shouldComponentUpdate = true;\n selector.props = nextProps;\n selector.error = null;\n }\n } catch (error) {\n selector.shouldComponentUpdate = true;\n selector.error = error;\n }\n }\n };\n\n return selector;\n}\n\nexport default function connectAdvanced(\n/*\n selectorFactory is a func that is responsible for returning the selector function used to\n compute new props from state, props, and dispatch. For example:\n export default connectAdvanced((dispatch, options) => (state, props) => ({\n thing: state.things[props.thingId],\n saveThing: fields => dispatch(actionCreators.saveThing(props.thingId, fields)),\n }))(YourComponent)\n Access to dispatch is provided to the factory so selectorFactories can bind actionCreators\n outside of their selector as an optimization. Options passed to connectAdvanced are passed to\n the selectorFactory, along with displayName and WrappedComponent, as the second argument.\n Note that selectorFactory is responsible for all caching/memoization of inbound and outbound\n props. Do not use connectAdvanced directly without memoizing results between calls to your\n selector, otherwise the Connect component will re-render on every state or props change.\n*/\nselectorFactory) {\n var _contextTypes, _childContextTypes;\n\n var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},\n _ref$getDisplayName = _ref.getDisplayName,\n getDisplayName = _ref$getDisplayName === undefined ? function (name) {\n return 'ConnectAdvanced(' + name + ')';\n } : _ref$getDisplayName,\n _ref$methodName = _ref.methodName,\n methodName = _ref$methodName === undefined ? 'connectAdvanced' : _ref$methodName,\n _ref$renderCountProp = _ref.renderCountProp,\n renderCountProp = _ref$renderCountProp === undefined ? undefined : _ref$renderCountProp,\n _ref$shouldHandleStat = _ref.shouldHandleStateChanges,\n shouldHandleStateChanges = _ref$shouldHandleStat === undefined ? true : _ref$shouldHandleStat,\n _ref$storeKey = _ref.storeKey,\n storeKey = _ref$storeKey === undefined ? 'store' : _ref$storeKey,\n _ref$withRef = _ref.withRef,\n withRef = _ref$withRef === undefined ? false : _ref$withRef,\n connectOptions = _objectWithoutProperties(_ref, ['getDisplayName', 'methodName', 'renderCountProp', 'shouldHandleStateChanges', 'storeKey', 'withRef']);\n\n var subscriptionKey = storeKey + 'Subscription';\n var version = hotReloadingVersion++;\n\n var contextTypes = (_contextTypes = {}, _contextTypes[storeKey] = storeShape, _contextTypes[subscriptionKey] = subscriptionShape, _contextTypes);\n var childContextTypes = (_childContextTypes = {}, _childContextTypes[subscriptionKey] = subscriptionShape, _childContextTypes);\n\n return function wrapWithConnect(WrappedComponent) {\n invariant(typeof WrappedComponent == 'function', 'You must pass a component to the function returned by ' + ('connect. Instead received ' + JSON.stringify(WrappedComponent)));\n\n var wrappedComponentName = WrappedComponent.displayName || WrappedComponent.name || 'Component';\n\n var displayName = getDisplayName(wrappedComponentName);\n\n var selectorFactoryOptions = _extends({}, connectOptions, {\n getDisplayName: getDisplayName,\n methodName: methodName,\n renderCountProp: renderCountProp,\n shouldHandleStateChanges: shouldHandleStateChanges,\n storeKey: storeKey,\n withRef: withRef,\n displayName: displayName,\n wrappedComponentName: wrappedComponentName,\n WrappedComponent: WrappedComponent\n });\n\n var Connect = function (_Component) {\n _inherits(Connect, _Component);\n\n function Connect(props, context) {\n _classCallCheck(this, Connect);\n\n var _this = _possibleConstructorReturn(this, _Component.call(this, props, context));\n\n _this.version = version;\n _this.state = {};\n _this.renderCount = 0;\n _this.store = props[storeKey] || context[storeKey];\n _this.propsMode = Boolean(props[storeKey]);\n _this.setWrappedInstance = _this.setWrappedInstance.bind(_this);\n\n invariant(_this.store, 'Could not find \"' + storeKey + '\" in either the context or props of ' + ('\"' + displayName + '\". Either wrap the root component in a <Provider>, ') + ('or explicitly pass \"' + storeKey + '\" as a prop to \"' + displayName + '\".'));\n\n _this.initSelector();\n _this.initSubscription();\n return _this;\n }\n\n Connect.prototype.getChildContext = function getChildContext() {\n var _ref2;\n\n // If this component received store from props, its subscription should be transparent\n // to any descendants receiving store+subscription from context; it passes along\n // subscription passed to it. Otherwise, it shadows the parent subscription, which allows\n // Connect to control ordering of notifications to flow top-down.\n var subscription = this.propsMode ? null : this.subscription;\n return _ref2 = {}, _ref2[subscriptionKey] = subscription || this.context[subscriptionKey], _ref2;\n };\n\n Connect.prototype.componentDidMount = function componentDidMount() {\n if (!shouldHandleStateChanges) return;\n\n // componentWillMount fires during server side rendering, but componentDidMount and\n // componentWillUnmount do not. Because of this, trySubscribe happens during ...didMount.\n // Otherwise, unsubscription would never take place during SSR, causing a memory leak.\n // To handle the case where a child component may have triggered a state change by\n // dispatching an action in its componentWillMount, we have to re-run the select and maybe\n // re-render.\n this.subscription.trySubscribe();\n this.selector.run(this.props);\n if (this.selector.shouldComponentUpdate) this.forceUpdate();\n };\n\n Connect.prototype.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {\n this.selector.run(nextProps);\n };\n\n Connect.prototype.shouldComponentUpdate = function shouldComponentUpdate() {\n return this.selector.shouldComponentUpdate;\n };\n\n Connect.prototype.componentWillUnmount = function componentWillUnmount() {\n if (this.subscription) this.subscription.tryUnsubscribe();\n this.subscription = null;\n this.notifyNestedSubs = noop;\n this.store = null;\n this.selector.run = noop;\n this.selector.shouldComponentUpdate = false;\n };\n\n Connect.prototype.getWrappedInstance = function getWrappedInstance() {\n invariant(withRef, 'To access the wrapped instance, you need to specify ' + ('{ withRef: true } in the options argument of the ' + methodName + '() call.'));\n return this.wrappedInstance;\n };\n\n Connect.prototype.setWrappedInstance = function setWrappedInstance(ref) {\n this.wrappedInstance = ref;\n };\n\n Connect.prototype.initSelector = function initSelector() {\n var sourceSelector = selectorFactory(this.store.dispatch, selectorFactoryOptions);\n this.selector = makeSelectorStateful(sourceSelector, this.store);\n this.selector.run(this.props);\n };\n\n Connect.prototype.initSubscription = function initSubscription() {\n if (!shouldHandleStateChanges) return;\n\n // parentSub's source should match where store came from: props vs. context. A component\n // connected to the store via props shouldn't use subscription from context, or vice versa.\n var parentSub = (this.propsMode ? this.props : this.context)[subscriptionKey];\n this.subscription = new Subscription(this.store, parentSub, this.onStateChange.bind(this));\n\n // `notifyNestedSubs` is duplicated to handle the case where the component is unmounted in\n // the middle of the notification loop, where `this.subscription` will then be null. An\n // extra null check every change can be avoided by copying the method onto `this` and then\n // replacing it with a no-op on unmount. This can probably be avoided if Subscription's\n // listeners logic is changed to not call listeners that have been unsubscribed in the\n // middle of the notification loop.\n this.notifyNestedSubs = this.subscription.notifyNestedSubs.bind(this.subscription);\n };\n\n Connect.prototype.onStateChange = function onStateChange() {\n this.selector.run(this.props);\n\n if (!this.selector.shouldComponentUpdate) {\n this.notifyNestedSubs();\n } else {\n this.componentDidUpdate = this.notifyNestedSubsOnComponentDidUpdate;\n this.setState(dummyState);\n }\n };\n\n Connect.prototype.notifyNestedSubsOnComponentDidUpdate = function notifyNestedSubsOnComponentDidUpdate() {\n // `componentDidUpdate` is conditionally implemented when `onStateChange` determines it\n // needs to notify nested subs. Once called, it unimplements itself until further state\n // changes occur. Doing it this way vs having a permanent `componentDidUpdate` that does\n // a boolean check every time avoids an extra method call most of the time, resulting\n // in some perf boost.\n this.componentDidUpdate = undefined;\n this.notifyNestedSubs();\n };\n\n Connect.prototype.isSubscribed = function isSubscribed() {\n return Boolean(this.subscription) && this.subscription.isSubscribed();\n };\n\n Connect.prototype.addExtraProps = function addExtraProps(props) {\n if (!withRef && !renderCountProp && !(this.propsMode && this.subscription)) return props;\n // make a shallow copy so that fields added don't leak to the original selector.\n // this is especially important for 'ref' since that's a reference back to the component\n // instance. a singleton memoized selector would then be holding a reference to the\n // instance, preventing the instance from being garbage collected, and that would be bad\n var withExtras = _extends({}, props);\n if (withRef) withExtras.ref = this.setWrappedInstance;\n if (renderCountProp) withExtras[renderCountProp] = this.renderCount++;\n if (this.propsMode && this.subscription) withExtras[subscriptionKey] = this.subscription;\n return withExtras;\n };\n\n Connect.prototype.render = function render() {\n var selector = this.selector;\n selector.shouldComponentUpdate = false;\n\n if (selector.error) {\n throw selector.error;\n } else {\n return createElement(WrappedComponent, this.addExtraProps(selector.props));\n }\n };\n\n return Connect;\n }(Component);\n\n Connect.WrappedComponent = WrappedComponent;\n Connect.displayName = displayName;\n Connect.childContextTypes = childContextTypes;\n Connect.contextTypes = contextTypes;\n Connect.propTypes = contextTypes;\n\n if (process.env.NODE_ENV !== 'production') {\n Connect.prototype.componentWillUpdate = function componentWillUpdate() {\n var _this2 = this;\n\n // We are hot reloading!\n if (this.version !== version) {\n this.version = version;\n this.initSelector();\n\n // If any connected descendants don't hot reload (and resubscribe in the process), their\n // listeners will be lost when we unsubscribe. Unfortunately, by copying over all\n // listeners, this does mean that the old versions of connected descendants will still be\n // notified of state changes; however, their onStateChange function is a no-op so this\n // isn't a huge deal.\n var oldListeners = [];\n\n if (this.subscription) {\n oldListeners = this.subscription.listeners.get();\n this.subscription.tryUnsubscribe();\n }\n this.initSubscription();\n if (shouldHandleStateChanges) {\n this.subscription.trySubscribe();\n oldListeners.forEach(function (listener) {\n return _this2.subscription.listeners.subscribe(listener);\n });\n }\n }\n };\n }\n\n return hoistStatics(Connect, WrappedComponent);\n };\n}"
},
{
"id": 9,
"identifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\redux\\es\\index.js",
"name": "./node_modules/redux/es/index.js",
"index": 17,
"index2": 32,
"size": 1077,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\index.js",
"issuerId": 18,
"issuerName": "./src/index.js",
"profile": {
"factory": 269,
"building": 27
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 18,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\babel-loader\\lib\\index.js!D:\\xampp\\htdocs\\react-selectrix\\node_modules\\eslint-loader\\index.js??ref--0!D:\\xampp\\htdocs\\react-selectrix\\src\\index.js",
"module": "./src/index.js",
"moduleName": "./src/index.js",
"type": "harmony import",
"userRequest": "redux",
"loc": "4:0-53"
},
{
"moduleId": 28,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\react-redux\\es\\connect\\mapDispatchToProps.js",
"module": "./node_modules/react-redux/es/connect/mapDispatchToProps.js",
"moduleName": "./node_modules/react-redux/es/connect/mapDispatchToProps.js",
"type": "harmony import",
"userRequest": "redux",
"loc": "1:0-43"
}
],
"usedExports": [
"applyMiddleware",
"bindActionCreators",
"createStore"
],
"providedExports": [
"createStore",
"combineReducers",
"bindActionCreators",
"applyMiddleware",
"compose"
],
"optimizationBailout": [],
"depth": 1,
"source": "import createStore from './createStore';\nimport combineReducers from './combineReducers';\nimport bindActionCreators from './bindActionCreators';\nimport applyMiddleware from './applyMiddleware';\nimport compose from './compose';\nimport warning from './utils/warning';\n\n/*\n* This is a dummy function to check if the function name has been altered by minification.\n* If the function has been minified and NODE_ENV !== 'production', warn the user.\n*/\nfunction isCrushed() {}\n\nif (process.env.NODE_ENV !== 'production' && typeof isCrushed.name === 'string' && isCrushed.name !== 'isCrushed') {\n warning('You are currently using minified code outside of NODE_ENV === \\'production\\'. ' + 'This means that you are running a slower development build of Redux. ' + 'You can use loose-envify (https://github.com/zertosh/loose-envify) for browserify ' + 'or DefinePlugin for webpack (http://stackoverflow.com/questions/30030031) ' + 'to ensure you have the correct code for your production build.');\n}\n\nexport { createStore, combineReducers, bindActionCreators, applyMiddleware, compose };"
},
{
"id": 10,
"identifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\redux\\es\\createStore.js",
"name": "./node_modules/redux/es/createStore.js",
"index": 18,
"index2": 26,
"size": 8877,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\redux\\es\\index.js",
"issuerId": 9,
"issuerName": "./node_modules/redux/es/index.js",
"profile": {
"factory": 37,
"building": 11,
"dependencies": 269
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 9,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\redux\\es\\index.js",
"module": "./node_modules/redux/es/index.js",
"moduleName": "./node_modules/redux/es/index.js",
"type": "harmony import",
"userRequest": "./createStore",
"loc": "1:0-40"
},
{
"moduleId": 41,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\redux\\es\\combineReducers.js",
"module": "./node_modules/redux/es/combineReducers.js",
"moduleName": "./node_modules/redux/es/combineReducers.js",
"type": "harmony import",
"userRequest": "./createStore",
"loc": "1:0-44"
}
],
"usedExports": [
"ActionTypes",
"default"
],
"providedExports": [
"ActionTypes",
"default"
],
"optimizationBailout": [],
"depth": 2,
"source": "import isPlainObject from 'lodash-es/isPlainObject';\nimport $$observable from 'symbol-observable';\n\n/**\n * These are private action types reserved by Redux.\n * For any unknown actions, you must return the current state.\n * If the current state is undefined, you must return the initial state.\n * Do not reference these action types directly in your code.\n */\nexport var ActionTypes = {\n INIT: '@@redux/INIT'\n\n /**\n * Creates a Redux store that holds the state tree.\n * The only way to change the data in the store is to call `dispatch()` on it.\n *\n * There should only be a single store in your app. To specify how different\n * parts of the state tree respond to actions, you may combine several reducers\n * into a single reducer function by using `combineReducers`.\n *\n * @param {Function} reducer A function that returns the next state tree, given\n * the current state tree and the action to handle.\n *\n * @param {any} [preloadedState] The initial state. You may optionally specify it\n * to hydrate the state from the server in universal apps, or to restore a\n * previously serialized user session.\n * If you use `combineReducers` to produce the root reducer function, this must be\n * an object with the same shape as `combineReducers` keys.\n *\n * @param {Function} [enhancer] The store enhancer. You may optionally specify it\n * to enhance the store with third-party capabilities such as middleware,\n * time travel, persistence, etc. The only store enhancer that ships with Redux\n * is `applyMiddleware()`.\n *\n * @returns {Store} A Redux store that lets you read the state, dispatch actions\n * and subscribe to changes.\n */\n};export default function createStore(reducer, preloadedState, enhancer) {\n var _ref2;\n\n if (typeof preloadedState === 'function' && typeof enhancer === 'undefined') {\n enhancer = preloadedState;\n preloadedState = undefined;\n }\n\n if (typeof enhancer !== 'undefined') {\n if (typeof enhancer !== 'function') {\n throw new Error('Expected the enhancer to be a function.');\n }\n\n return enhancer(createStore)(reducer, preloadedState);\n }\n\n if (typeof reducer !== 'function') {\n throw new Error('Expected the reducer to be a function.');\n }\n\n var currentReducer = reducer;\n var currentState = preloadedState;\n var currentListeners = [];\n var nextListeners = currentListeners;\n var isDispatching = false;\n\n function ensureCanMutateNextListeners() {\n if (nextListeners === currentListeners) {\n nextListeners = currentListeners.slice();\n }\n }\n\n /**\n * Reads the state tree managed by the store.\n *\n * @returns {any} The current state tree of your application.\n */\n function getState() {\n return currentState;\n }\n\n /**\n * Adds a change listener. It will be called any time an action is dispatched,\n * and some part of the state tree may potentially have changed. You may then\n * call `getState()` to read the current state tree inside the callback.\n *\n * You may call `dispatch()` from a change listener, with the following\n * caveats:\n *\n * 1. The subscriptions are snapshotted just before every `dispatch()` call.\n * If you subscribe or unsubscribe while the listeners are being invoked, this\n * will not have any effect on the `dispatch()` that is currently in progress.\n * However, the next `dispatch()` call, whether nested or not, will use a more\n * recent snapshot of the subscription list.\n *\n * 2. The listener should not expect to see all state changes, as the state\n * might have been updated multiple times during a nested `dispatch()` before\n * the listener is called. It is, however, guaranteed that all subscribers\n * registered before the `dispatch()` started will be called with the latest\n * state by the time it exits.\n *\n * @param {Function} listener A callback to be invoked on every dispatch.\n * @returns {Function} A function to remove this change listener.\n */\n function subscribe(listener) {\n if (typeof listener !== 'function') {\n throw new Error('Expected listener to be a function.');\n }\n\n var isSubscribed = true;\n\n ensureCanMutateNextListeners();\n nextListeners.push(listener);\n\n return function unsubscribe() {\n if (!isSubscribed) {\n return;\n }\n\n isSubscribed = false;\n\n ensureCanMutateNextListeners();\n var index = nextListeners.indexOf(listener);\n nextListeners.splice(index, 1);\n };\n }\n\n /**\n * Dispatches an action. It is the only way to trigger a state change.\n *\n * The `reducer` function, used to create the store, will be called with the\n * current state tree and the given `action`. Its return value will\n * be considered the **next** state of the tree, and the change listeners\n * will be notified.\n *\n * The base implementation only supports plain object actions. If you want to\n * dispatch a Promise, an Observable, a thunk, or something else, you need to\n * wrap your store creating function into the corresponding middleware. For\n * example, see the documentation for the `redux-thunk` package. Even the\n * middleware will eventually dispatch plain object actions using this method.\n *\n * @param {Object} action A plain object representing “what changed”. It is\n * a good idea to keep actions serializable so you can record and replay user\n * sessions, or use the time travelling `redux-devtools`. An action must have\n * a `type` property which may not be `undefined`. It is a good idea to use\n * string constants for action types.\n *\n * @returns {Object} For convenience, the same action object you dispatched.\n *\n * Note that, if you use a custom middleware, it may wrap `dispatch()` to\n * return something else (for example, a Promise you can await).\n */\n function dispatch(action) {\n if (!isPlainObject(action)) {\n throw new Error('Actions must be plain objects. ' + 'Use custom middleware for async actions.');\n }\n\n if (typeof action.type === 'undefined') {\n throw new Error('Actions may not have an undefined \"type\" property. ' + 'Have you misspelled a constant?');\n }\n\n if (isDispatching) {\n throw new Error('Reducers may not dispatch actions.');\n }\n\n try {\n isDispatching = true;\n currentState = currentReducer(currentState, action);\n } finally {\n isDispatching = false;\n }\n\n var listeners = currentListeners = nextListeners;\n for (var i = 0; i < listeners.length; i++) {\n var listener = listeners[i];\n listener();\n }\n\n return action;\n }\n\n /**\n * Replaces the reducer currently used by the store to calculate the state.\n *\n * You might need this if your app implements code splitting and you want to\n * load some of the reducers dynamically. You might also need this if you\n * implement a hot reloading mechanism for Redux.\n *\n * @param {Function} nextReducer The reducer for the store to use instead.\n * @returns {void}\n */\n function replaceReducer(nextReducer) {\n if (typeof nextReducer !== 'function') {\n throw new Error('Expected the nextReducer to be a function.');\n }\n\n currentReducer = nextReducer;\n dispatch({ type: ActionTypes.INIT });\n }\n\n /**\n * Interoperability point for observable/reactive libraries.\n * @returns {observable} A minimal observable of state changes.\n * For more information, see the observable proposal:\n * https://github.com/tc39/proposal-observable\n */\n function observable() {\n var _ref;\n\n var outerSubscribe = subscribe;\n return _ref = {\n /**\n * The minimal observable subscription method.\n * @param {Object} observer Any object that can be used as an observer.\n * The observer object should have a `next` method.\n * @returns {subscription} An object with an `unsubscribe` method that can\n * be used to unsubscribe the observable from the store, and prevent further\n * emission of values from the observable.\n */\n subscribe: function subscribe(observer) {\n if (typeof observer !== 'object') {\n throw new TypeError('Expected the observer to be an object.');\n }\n\n function observeState() {\n if (observer.next) {\n observer.next(getState());\n }\n }\n\n observeState();\n var unsubscribe = outerSubscribe(observeState);\n return { unsubscribe: unsubscribe };\n }\n }, _ref[$$observable] = function () {\n return this;\n }, _ref;\n }\n\n // When a store is created, an \"INIT\" action is dispatched so that every\n // reducer returns their initial state. This effectively populates\n // the initial state tree.\n dispatch({ type: ActionTypes.INIT });\n\n return _ref2 = {\n dispatch: dispatch,\n subscribe: subscribe,\n getState: getState,\n replaceReducer: replaceReducer\n }, _ref2[$$observable] = observable, _ref2;\n}"
},
{
"id": 11,
"identifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\lodash-es\\_Symbol.js",
"name": "./node_modules/lodash-es/_Symbol.js",
"index": 21,
"index2": 14,
"size": 116,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"assets": [],
"issuer": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\lodash-es\\_baseGetTag.js",
"issuerId": 29,
"issuerName": "./node_modules/lodash-es/_baseGetTag.js",
"profile": {
"factory": 3,
"building": 190
},
"failed": false,
"errors": 0,
"warnings": 0,
"reasons": [
{
"moduleId": 29,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\lodash-es\\_baseGetTag.js",
"module": "./node_modules/lodash-es/_baseGetTag.js",
"moduleName": "./node_modules/lodash-es/_baseGetTag.js",
"type": "harmony import",
"userRequest": "./_Symbol.js",
"loc": "1:0-34"
},
{
"moduleId": 32,
"moduleIdentifier": "D:\\xampp\\htdocs\\react-selectrix\\node_modules\\lodash-es\\_getRawTag.js",
"module": "./node_modules/lodash-es/_getRawTag.js",
"moduleName": "./node_modules/lodash-es/_getRawTag.js",
"type": "harmony import",
"userRequest": "./_Symbol.js",
"loc": "1:0-34"
}
],
"usedExports": [
"default"
],
"providedExports": [
"default"
],
"optimizationBailout": [],
"depth": 5,
"source": "import root from './_root.js';\n\n/** Built-in value references. */\nvar Symbol = root.Symbol;\n\nexport default Symbol;\n"
},
{
"id": 12,