-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.json
3116 lines (3116 loc) · 465 KB
/
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": [],
"version": "4.29.6",
"hash": "f173601fdc7d46768fde",
"time": 3441,
"builtAt": 1554374903768,
"publicPath": "",
"outputPath": "P:\\Wavenet\\RD\\Cookies/dist",
"assetsByChunkName": {
"main": [
"CookieLaw.css",
"CookieLaw.js"
]
},
"assets": [
{
"name": "CookieLaw.css",
"size": 2659,
"chunks": [
0
],
"chunkNames": [
"main"
],
"emitted": true
},
{
"name": "CookieLaw.js",
"size": 18748,
"chunks": [
0
],
"chunkNames": [
"main"
],
"emitted": true
}
],
"filteredAssets": 0,
"entrypoints": {
"main": {
"chunks": [
0
],
"assets": [
"CookieLaw.css",
"CookieLaw.js"
],
"children": {},
"childAssets": {}
}
},
"namedChunkGroups": {
"main": {
"chunks": [
0
],
"assets": [
"CookieLaw.css",
"CookieLaw.js"
],
"children": {},
"childAssets": {}
}
},
"chunks": [
{
"id": 0,
"rendered": true,
"initial": true,
"entry": true,
"size": 37486,
"names": [
"main"
],
"files": [
"CookieLaw.css",
"CookieLaw.js"
],
"hash": "edcba25a6a6024b23af2",
"siblings": [],
"parents": [],
"children": [],
"childrenByOrder": {},
"modules": [
{
"id": 0,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\preact\\dist\\preact.mjs",
"name": "./node_modules/preact/dist/preact.mjs",
"index": 3,
"index2": 0,
"size": 19053,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"issuerId": 1,
"issuerName": "./src/Components/Banner/index.tsx",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
},
{
"id": 1,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"name": "./src/Components/Banner/index.tsx"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 1,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"module": "./src/Components/Banner/index.tsx",
"moduleName": "./src/Components/Banner/index.tsx",
"type": "cjs require",
"userRequest": "preact",
"loc": "16:15-32"
},
{
"moduleId": 3,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"module": "./src/Components/PreferencesDialog/index.tsx",
"moduleName": "./src/Components/PreferencesDialog/index.tsx",
"type": "cjs require",
"userRequest": "preact",
"loc": "16:15-32"
},
{
"moduleId": 4,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Checkbox\\index.tsx",
"module": "./src/Components/Checkbox/index.tsx",
"moduleName": "./src/Components/Checkbox/index.tsx",
"type": "cjs require",
"userRequest": "preact",
"loc": "16:15-32"
},
{
"moduleId": 10,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\TabControl\\index.tsx",
"module": "./src/Components/TabControl/index.tsx",
"moduleName": "./src/Components/TabControl/index.tsx",
"type": "cjs require",
"userRequest": "preact",
"loc": "16:15-32"
}
],
"usedExports": true,
"providedExports": [
"default",
"h",
"createElement",
"cloneElement",
"createRef",
"Component",
"render",
"rerender",
"options"
],
"optimizationBailout": [
"ModuleConcatenation bailout: Module is referenced from these modules with unsupported syntax: ./src/Components/Banner/index.tsx (referenced with cjs require), ./src/Components/Checkbox/index.tsx (referenced with cjs require), ./src/Components/PreferencesDialog/index.tsx (referenced with cjs require), ./src/Components/TabControl/index.tsx (referenced with cjs require)"
],
"depth": 3,
"source": "var VNode = function VNode() {};\n\nvar options = {};\n\nvar stack = [];\n\nvar EMPTY_CHILDREN = [];\n\nfunction h(nodeName, attributes) {\n\tvar children = EMPTY_CHILDREN,\n\t lastSimple,\n\t child,\n\t simple,\n\t i;\n\tfor (i = arguments.length; i-- > 2;) {\n\t\tstack.push(arguments[i]);\n\t}\n\tif (attributes && attributes.children != null) {\n\t\tif (!stack.length) stack.push(attributes.children);\n\t\tdelete attributes.children;\n\t}\n\twhile (stack.length) {\n\t\tif ((child = stack.pop()) && child.pop !== undefined) {\n\t\t\tfor (i = child.length; i--;) {\n\t\t\t\tstack.push(child[i]);\n\t\t\t}\n\t\t} else {\n\t\t\tif (typeof child === 'boolean') child = null;\n\n\t\t\tif (simple = typeof nodeName !== 'function') {\n\t\t\t\tif (child == null) child = '';else if (typeof child === 'number') child = String(child);else if (typeof child !== 'string') simple = false;\n\t\t\t}\n\n\t\t\tif (simple && lastSimple) {\n\t\t\t\tchildren[children.length - 1] += child;\n\t\t\t} else if (children === EMPTY_CHILDREN) {\n\t\t\t\tchildren = [child];\n\t\t\t} else {\n\t\t\t\tchildren.push(child);\n\t\t\t}\n\n\t\t\tlastSimple = simple;\n\t\t}\n\t}\n\n\tvar p = new VNode();\n\tp.nodeName = nodeName;\n\tp.children = children;\n\tp.attributes = attributes == null ? undefined : attributes;\n\tp.key = attributes == null ? undefined : attributes.key;\n\n\tif (options.vnode !== undefined) options.vnode(p);\n\n\treturn p;\n}\n\nfunction extend(obj, props) {\n for (var i in props) {\n obj[i] = props[i];\n }return obj;\n}\n\nfunction applyRef(ref, value) {\n if (ref != null) {\n if (typeof ref == 'function') ref(value);else ref.current = value;\n }\n}\n\nvar defer = typeof Promise == 'function' ? Promise.resolve().then.bind(Promise.resolve()) : setTimeout;\n\nfunction cloneElement(vnode, props) {\n return h(vnode.nodeName, extend(extend({}, vnode.attributes), props), arguments.length > 2 ? [].slice.call(arguments, 2) : vnode.children);\n}\n\nvar IS_NON_DIMENSIONAL = /acit|ex(?:s|g|n|p|$)|rph|ows|mnc|ntw|ine[ch]|zoo|^ord/i;\n\nvar items = [];\n\nfunction enqueueRender(component) {\n\tif (!component._dirty && (component._dirty = true) && items.push(component) == 1) {\n\t\t(options.debounceRendering || defer)(rerender);\n\t}\n}\n\nfunction rerender() {\n\tvar p;\n\twhile (p = items.pop()) {\n\t\tif (p._dirty) renderComponent(p);\n\t}\n}\n\nfunction isSameNodeType(node, vnode, hydrating) {\n\tif (typeof vnode === 'string' || typeof vnode === 'number') {\n\t\treturn node.splitText !== undefined;\n\t}\n\tif (typeof vnode.nodeName === 'string') {\n\t\treturn !node._componentConstructor && isNamedNode(node, vnode.nodeName);\n\t}\n\treturn hydrating || node._componentConstructor === vnode.nodeName;\n}\n\nfunction isNamedNode(node, nodeName) {\n\treturn node.normalizedNodeName === nodeName || node.nodeName.toLowerCase() === nodeName.toLowerCase();\n}\n\nfunction getNodeProps(vnode) {\n\tvar props = extend({}, vnode.attributes);\n\tprops.children = vnode.children;\n\n\tvar defaultProps = vnode.nodeName.defaultProps;\n\tif (defaultProps !== undefined) {\n\t\tfor (var i in defaultProps) {\n\t\t\tif (props[i] === undefined) {\n\t\t\t\tprops[i] = defaultProps[i];\n\t\t\t}\n\t\t}\n\t}\n\n\treturn props;\n}\n\nfunction createNode(nodeName, isSvg) {\n\tvar node = isSvg ? document.createElementNS('http://www.w3.org/2000/svg', nodeName) : document.createElement(nodeName);\n\tnode.normalizedNodeName = nodeName;\n\treturn node;\n}\n\nfunction removeNode(node) {\n\tvar parentNode = node.parentNode;\n\tif (parentNode) parentNode.removeChild(node);\n}\n\nfunction setAccessor(node, name, old, value, isSvg) {\n\tif (name === 'className') name = 'class';\n\n\tif (name === 'key') {} else if (name === 'ref') {\n\t\tapplyRef(old, null);\n\t\tapplyRef(value, node);\n\t} else if (name === 'class' && !isSvg) {\n\t\tnode.className = value || '';\n\t} else if (name === 'style') {\n\t\tif (!value || typeof value === 'string' || typeof old === 'string') {\n\t\t\tnode.style.cssText = value || '';\n\t\t}\n\t\tif (value && typeof value === 'object') {\n\t\t\tif (typeof old !== 'string') {\n\t\t\t\tfor (var i in old) {\n\t\t\t\t\tif (!(i in value)) node.style[i] = '';\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor (var i in value) {\n\t\t\t\tnode.style[i] = typeof value[i] === 'number' && IS_NON_DIMENSIONAL.test(i) === false ? value[i] + 'px' : value[i];\n\t\t\t}\n\t\t}\n\t} else if (name === 'dangerouslySetInnerHTML') {\n\t\tif (value) node.innerHTML = value.__html || '';\n\t} else if (name[0] == 'o' && name[1] == 'n') {\n\t\tvar useCapture = name !== (name = name.replace(/Capture$/, ''));\n\t\tname = name.toLowerCase().substring(2);\n\t\tif (value) {\n\t\t\tif (!old) node.addEventListener(name, eventProxy, useCapture);\n\t\t} else {\n\t\t\tnode.removeEventListener(name, eventProxy, useCapture);\n\t\t}\n\t\t(node._listeners || (node._listeners = {}))[name] = value;\n\t} else if (name !== 'list' && name !== 'type' && !isSvg && name in node) {\n\t\ttry {\n\t\t\tnode[name] = value == null ? '' : value;\n\t\t} catch (e) {}\n\t\tif ((value == null || value === false) && name != 'spellcheck') node.removeAttribute(name);\n\t} else {\n\t\tvar ns = isSvg && name !== (name = name.replace(/^xlink:?/, ''));\n\n\t\tif (value == null || value === false) {\n\t\t\tif (ns) node.removeAttributeNS('http://www.w3.org/1999/xlink', name.toLowerCase());else node.removeAttribute(name);\n\t\t} else if (typeof value !== 'function') {\n\t\t\tif (ns) node.setAttributeNS('http://www.w3.org/1999/xlink', name.toLowerCase(), value);else node.setAttribute(name, value);\n\t\t}\n\t}\n}\n\nfunction eventProxy(e) {\n\treturn this._listeners[e.type](options.event && options.event(e) || e);\n}\n\nvar mounts = [];\n\nvar diffLevel = 0;\n\nvar isSvgMode = false;\n\nvar hydrating = false;\n\nfunction flushMounts() {\n\tvar c;\n\twhile (c = mounts.shift()) {\n\t\tif (options.afterMount) options.afterMount(c);\n\t\tif (c.componentDidMount) c.componentDidMount();\n\t}\n}\n\nfunction diff(dom, vnode, context, mountAll, parent, componentRoot) {\n\tif (!diffLevel++) {\n\t\tisSvgMode = parent != null && parent.ownerSVGElement !== undefined;\n\n\t\thydrating = dom != null && !('__preactattr_' in dom);\n\t}\n\n\tvar ret = idiff(dom, vnode, context, mountAll, componentRoot);\n\n\tif (parent && ret.parentNode !== parent) parent.appendChild(ret);\n\n\tif (! --diffLevel) {\n\t\thydrating = false;\n\n\t\tif (!componentRoot) flushMounts();\n\t}\n\n\treturn ret;\n}\n\nfunction idiff(dom, vnode, context, mountAll, componentRoot) {\n\tvar out = dom,\n\t prevSvgMode = isSvgMode;\n\n\tif (vnode == null || typeof vnode === 'boolean') vnode = '';\n\n\tif (typeof vnode === 'string' || typeof vnode === 'number') {\n\t\tif (dom && dom.splitText !== undefined && dom.parentNode && (!dom._component || componentRoot)) {\n\t\t\tif (dom.nodeValue != vnode) {\n\t\t\t\tdom.nodeValue = vnode;\n\t\t\t}\n\t\t} else {\n\t\t\tout = document.createTextNode(vnode);\n\t\t\tif (dom) {\n\t\t\t\tif (dom.parentNode) dom.parentNode.replaceChild(out, dom);\n\t\t\t\trecollectNodeTree(dom, true);\n\t\t\t}\n\t\t}\n\n\t\tout['__preactattr_'] = true;\n\n\t\treturn out;\n\t}\n\n\tvar vnodeName = vnode.nodeName;\n\tif (typeof vnodeName === 'function') {\n\t\treturn buildComponentFromVNode(dom, vnode, context, mountAll);\n\t}\n\n\tisSvgMode = vnodeName === 'svg' ? true : vnodeName === 'foreignObject' ? false : isSvgMode;\n\n\tvnodeName = String(vnodeName);\n\tif (!dom || !isNamedNode(dom, vnodeName)) {\n\t\tout = createNode(vnodeName, isSvgMode);\n\n\t\tif (dom) {\n\t\t\twhile (dom.firstChild) {\n\t\t\t\tout.appendChild(dom.firstChild);\n\t\t\t}\n\t\t\tif (dom.parentNode) dom.parentNode.replaceChild(out, dom);\n\n\t\t\trecollectNodeTree(dom, true);\n\t\t}\n\t}\n\n\tvar fc = out.firstChild,\n\t props = out['__preactattr_'],\n\t vchildren = vnode.children;\n\n\tif (props == null) {\n\t\tprops = out['__preactattr_'] = {};\n\t\tfor (var a = out.attributes, i = a.length; i--;) {\n\t\t\tprops[a[i].name] = a[i].value;\n\t\t}\n\t}\n\n\tif (!hydrating && vchildren && vchildren.length === 1 && typeof vchildren[0] === 'string' && fc != null && fc.splitText !== undefined && fc.nextSibling == null) {\n\t\tif (fc.nodeValue != vchildren[0]) {\n\t\t\tfc.nodeValue = vchildren[0];\n\t\t}\n\t} else if (vchildren && vchildren.length || fc != null) {\n\t\t\tinnerDiffNode(out, vchildren, context, mountAll, hydrating || props.dangerouslySetInnerHTML != null);\n\t\t}\n\n\tdiffAttributes(out, vnode.attributes, props);\n\n\tisSvgMode = prevSvgMode;\n\n\treturn out;\n}\n\nfunction innerDiffNode(dom, vchildren, context, mountAll, isHydrating) {\n\tvar originalChildren = dom.childNodes,\n\t children = [],\n\t keyed = {},\n\t keyedLen = 0,\n\t min = 0,\n\t len = originalChildren.length,\n\t childrenLen = 0,\n\t vlen = vchildren ? vchildren.length : 0,\n\t j,\n\t c,\n\t f,\n\t vchild,\n\t child;\n\n\tif (len !== 0) {\n\t\tfor (var i = 0; i < len; i++) {\n\t\t\tvar _child = originalChildren[i],\n\t\t\t props = _child['__preactattr_'],\n\t\t\t key = vlen && props ? _child._component ? _child._component.__key : props.key : null;\n\t\t\tif (key != null) {\n\t\t\t\tkeyedLen++;\n\t\t\t\tkeyed[key] = _child;\n\t\t\t} else if (props || (_child.splitText !== undefined ? isHydrating ? _child.nodeValue.trim() : true : isHydrating)) {\n\t\t\t\tchildren[childrenLen++] = _child;\n\t\t\t}\n\t\t}\n\t}\n\n\tif (vlen !== 0) {\n\t\tfor (var i = 0; i < vlen; i++) {\n\t\t\tvchild = vchildren[i];\n\t\t\tchild = null;\n\n\t\t\tvar key = vchild.key;\n\t\t\tif (key != null) {\n\t\t\t\tif (keyedLen && keyed[key] !== undefined) {\n\t\t\t\t\tchild = keyed[key];\n\t\t\t\t\tkeyed[key] = undefined;\n\t\t\t\t\tkeyedLen--;\n\t\t\t\t}\n\t\t\t} else if (min < childrenLen) {\n\t\t\t\t\tfor (j = min; j < childrenLen; j++) {\n\t\t\t\t\t\tif (children[j] !== undefined && isSameNodeType(c = children[j], vchild, isHydrating)) {\n\t\t\t\t\t\t\tchild = c;\n\t\t\t\t\t\t\tchildren[j] = undefined;\n\t\t\t\t\t\t\tif (j === childrenLen - 1) childrenLen--;\n\t\t\t\t\t\t\tif (j === min) min++;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\tchild = idiff(child, vchild, context, mountAll);\n\n\t\t\tf = originalChildren[i];\n\t\t\tif (child && child !== dom && child !== f) {\n\t\t\t\tif (f == null) {\n\t\t\t\t\tdom.appendChild(child);\n\t\t\t\t} else if (child === f.nextSibling) {\n\t\t\t\t\tremoveNode(f);\n\t\t\t\t} else {\n\t\t\t\t\tdom.insertBefore(child, f);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif (keyedLen) {\n\t\tfor (var i in keyed) {\n\t\t\tif (keyed[i] !== undefined) recollectNodeTree(keyed[i], false);\n\t\t}\n\t}\n\n\twhile (min <= childrenLen) {\n\t\tif ((child = children[childrenLen--]) !== undefined) recollectNodeTree(child, false);\n\t}\n}\n\nfunction recollectNodeTree(node, unmountOnly) {\n\tvar component = node._component;\n\tif (component) {\n\t\tunmountComponent(component);\n\t} else {\n\t\tif (node['__preactattr_'] != null) applyRef(node['__preactattr_'].ref, null);\n\n\t\tif (unmountOnly === false || node['__preactattr_'] == null) {\n\t\t\tremoveNode(node);\n\t\t}\n\n\t\tremoveChildren(node);\n\t}\n}\n\nfunction removeChildren(node) {\n\tnode = node.lastChild;\n\twhile (node) {\n\t\tvar next = node.previousSibling;\n\t\trecollectNodeTree(node, true);\n\t\tnode = next;\n\t}\n}\n\nfunction diffAttributes(dom, attrs, old) {\n\tvar name;\n\n\tfor (name in old) {\n\t\tif (!(attrs && attrs[name] != null) && old[name] != null) {\n\t\t\tsetAccessor(dom, name, old[name], old[name] = undefined, isSvgMode);\n\t\t}\n\t}\n\n\tfor (name in attrs) {\n\t\tif (name !== 'children' && name !== 'innerHTML' && (!(name in old) || attrs[name] !== (name === 'value' || name === 'checked' ? dom[name] : old[name]))) {\n\t\t\tsetAccessor(dom, name, old[name], old[name] = attrs[name], isSvgMode);\n\t\t}\n\t}\n}\n\nvar recyclerComponents = [];\n\nfunction createComponent(Ctor, props, context) {\n\tvar inst,\n\t i = recyclerComponents.length;\n\n\tif (Ctor.prototype && Ctor.prototype.render) {\n\t\tinst = new Ctor(props, context);\n\t\tComponent.call(inst, props, context);\n\t} else {\n\t\tinst = new Component(props, context);\n\t\tinst.constructor = Ctor;\n\t\tinst.render = doRender;\n\t}\n\n\twhile (i--) {\n\t\tif (recyclerComponents[i].constructor === Ctor) {\n\t\t\tinst.nextBase = recyclerComponents[i].nextBase;\n\t\t\trecyclerComponents.splice(i, 1);\n\t\t\treturn inst;\n\t\t}\n\t}\n\n\treturn inst;\n}\n\nfunction doRender(props, state, context) {\n\treturn this.constructor(props, context);\n}\n\nfunction setComponentProps(component, props, renderMode, context, mountAll) {\n\tif (component._disable) return;\n\tcomponent._disable = true;\n\n\tcomponent.__ref = props.ref;\n\tcomponent.__key = props.key;\n\tdelete props.ref;\n\tdelete props.key;\n\n\tif (typeof component.constructor.getDerivedStateFromProps === 'undefined') {\n\t\tif (!component.base || mountAll) {\n\t\t\tif (component.componentWillMount) component.componentWillMount();\n\t\t} else if (component.componentWillReceiveProps) {\n\t\t\tcomponent.componentWillReceiveProps(props, context);\n\t\t}\n\t}\n\n\tif (context && context !== component.context) {\n\t\tif (!component.prevContext) component.prevContext = component.context;\n\t\tcomponent.context = context;\n\t}\n\n\tif (!component.prevProps) component.prevProps = component.props;\n\tcomponent.props = props;\n\n\tcomponent._disable = false;\n\n\tif (renderMode !== 0) {\n\t\tif (renderMode === 1 || options.syncComponentUpdates !== false || !component.base) {\n\t\t\trenderComponent(component, 1, mountAll);\n\t\t} else {\n\t\t\tenqueueRender(component);\n\t\t}\n\t}\n\n\tapplyRef(component.__ref, component);\n}\n\nfunction renderComponent(component, renderMode, mountAll, isChild) {\n\tif (component._disable) return;\n\n\tvar props = component.props,\n\t state = component.state,\n\t context = component.context,\n\t previousProps = component.prevProps || props,\n\t previousState = component.prevState || state,\n\t previousContext = component.prevContext || context,\n\t isUpdate = component.base,\n\t nextBase = component.nextBase,\n\t initialBase = isUpdate || nextBase,\n\t initialChildComponent = component._component,\n\t skip = false,\n\t snapshot = previousContext,\n\t rendered,\n\t inst,\n\t cbase;\n\n\tif (component.constructor.getDerivedStateFromProps) {\n\t\tstate = extend(extend({}, state), component.constructor.getDerivedStateFromProps(props, state));\n\t\tcomponent.state = state;\n\t}\n\n\tif (isUpdate) {\n\t\tcomponent.props = previousProps;\n\t\tcomponent.state = previousState;\n\t\tcomponent.context = previousContext;\n\t\tif (renderMode !== 2 && component.shouldComponentUpdate && component.shouldComponentUpdate(props, state, context) === false) {\n\t\t\tskip = true;\n\t\t} else if (component.componentWillUpdate) {\n\t\t\tcomponent.componentWillUpdate(props, state, context);\n\t\t}\n\t\tcomponent.props = props;\n\t\tcomponent.state = state;\n\t\tcomponent.context = context;\n\t}\n\n\tcomponent.prevProps = component.prevState = component.prevContext = component.nextBase = null;\n\tcomponent._dirty = false;\n\n\tif (!skip) {\n\t\trendered = component.render(props, state, context);\n\n\t\tif (component.getChildContext) {\n\t\t\tcontext = extend(extend({}, context), component.getChildContext());\n\t\t}\n\n\t\tif (isUpdate && component.getSnapshotBeforeUpdate) {\n\t\t\tsnapshot = component.getSnapshotBeforeUpdate(previousProps, previousState);\n\t\t}\n\n\t\tvar childComponent = rendered && rendered.nodeName,\n\t\t toUnmount,\n\t\t base;\n\n\t\tif (typeof childComponent === 'function') {\n\n\t\t\tvar childProps = getNodeProps(rendered);\n\t\t\tinst = initialChildComponent;\n\n\t\t\tif (inst && inst.constructor === childComponent && childProps.key == inst.__key) {\n\t\t\t\tsetComponentProps(inst, childProps, 1, context, false);\n\t\t\t} else {\n\t\t\t\ttoUnmount = inst;\n\n\t\t\t\tcomponent._component = inst = createComponent(childComponent, childProps, context);\n\t\t\t\tinst.nextBase = inst.nextBase || nextBase;\n\t\t\t\tinst._parentComponent = component;\n\t\t\t\tsetComponentProps(inst, childProps, 0, context, false);\n\t\t\t\trenderComponent(inst, 1, mountAll, true);\n\t\t\t}\n\n\t\t\tbase = inst.base;\n\t\t} else {\n\t\t\tcbase = initialBase;\n\n\t\t\ttoUnmount = initialChildComponent;\n\t\t\tif (toUnmount) {\n\t\t\t\tcbase = component._component = null;\n\t\t\t}\n\n\t\t\tif (initialBase || renderMode === 1) {\n\t\t\t\tif (cbase) cbase._component = null;\n\t\t\t\tbase = diff(cbase, rendered, context, mountAll || !isUpdate, initialBase && initialBase.parentNode, true);\n\t\t\t}\n\t\t}\n\n\t\tif (initialBase && base !== initialBase && inst !== initialChildComponent) {\n\t\t\tvar baseParent = initialBase.parentNode;\n\t\t\tif (baseParent && base !== baseParent) {\n\t\t\t\tbaseParent.replaceChild(base, initialBase);\n\n\t\t\t\tif (!toUnmount) {\n\t\t\t\t\tinitialBase._component = null;\n\t\t\t\t\trecollectNodeTree(initialBase, false);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif (toUnmount) {\n\t\t\tunmountComponent(toUnmount);\n\t\t}\n\n\t\tcomponent.base = base;\n\t\tif (base && !isChild) {\n\t\t\tvar componentRef = component,\n\t\t\t t = component;\n\t\t\twhile (t = t._parentComponent) {\n\t\t\t\t(componentRef = t).base = base;\n\t\t\t}\n\t\t\tbase._component = componentRef;\n\t\t\tbase._componentConstructor = componentRef.constructor;\n\t\t}\n\t}\n\n\tif (!isUpdate || mountAll) {\n\t\tmounts.push(component);\n\t} else if (!skip) {\n\n\t\tif (component.componentDidUpdate) {\n\t\t\tcomponent.componentDidUpdate(previousProps, previousState, snapshot);\n\t\t}\n\t\tif (options.afterUpdate) options.afterUpdate(component);\n\t}\n\n\twhile (component._renderCallbacks.length) {\n\t\tcomponent._renderCallbacks.pop().call(component);\n\t}if (!diffLevel && !isChild) flushMounts();\n}\n\nfunction buildComponentFromVNode(dom, vnode, context, mountAll) {\n\tvar c = dom && dom._component,\n\t originalComponent = c,\n\t oldDom = dom,\n\t isDirectOwner = c && dom._componentConstructor === vnode.nodeName,\n\t isOwner = isDirectOwner,\n\t props = getNodeProps(vnode);\n\twhile (c && !isOwner && (c = c._parentComponent)) {\n\t\tisOwner = c.constructor === vnode.nodeName;\n\t}\n\n\tif (c && isOwner && (!mountAll || c._component)) {\n\t\tsetComponentProps(c, props, 3, context, mountAll);\n\t\tdom = c.base;\n\t} else {\n\t\tif (originalComponent && !isDirectOwner) {\n\t\t\tunmountComponent(originalComponent);\n\t\t\tdom = oldDom = null;\n\t\t}\n\n\t\tc = createComponent(vnode.nodeName, props, context);\n\t\tif (dom && !c.nextBase) {\n\t\t\tc.nextBase = dom;\n\n\t\t\toldDom = null;\n\t\t}\n\t\tsetComponentProps(c, props, 1, context, mountAll);\n\t\tdom = c.base;\n\n\t\tif (oldDom && dom !== oldDom) {\n\t\t\toldDom._component = null;\n\t\t\trecollectNodeTree(oldDom, false);\n\t\t}\n\t}\n\n\treturn dom;\n}\n\nfunction unmountComponent(component) {\n\tif (options.beforeUnmount) options.beforeUnmount(component);\n\n\tvar base = component.base;\n\n\tcomponent._disable = true;\n\n\tif (component.componentWillUnmount) component.componentWillUnmount();\n\n\tcomponent.base = null;\n\n\tvar inner = component._component;\n\tif (inner) {\n\t\tunmountComponent(inner);\n\t} else if (base) {\n\t\tif (base['__preactattr_'] != null) applyRef(base['__preactattr_'].ref, null);\n\n\t\tcomponent.nextBase = base;\n\n\t\tremoveNode(base);\n\t\trecyclerComponents.push(component);\n\n\t\tremoveChildren(base);\n\t}\n\n\tapplyRef(component.__ref, null);\n}\n\nfunction Component(props, context) {\n\tthis._dirty = true;\n\n\tthis.context = context;\n\n\tthis.props = props;\n\n\tthis.state = this.state || {};\n\n\tthis._renderCallbacks = [];\n}\n\nextend(Component.prototype, {\n\tsetState: function setState(state, callback) {\n\t\tif (!this.prevState) this.prevState = this.state;\n\t\tthis.state = extend(extend({}, this.state), typeof state === 'function' ? state(this.state, this.props) : state);\n\t\tif (callback) this._renderCallbacks.push(callback);\n\t\tenqueueRender(this);\n\t},\n\tforceUpdate: function forceUpdate(callback) {\n\t\tif (callback) this._renderCallbacks.push(callback);\n\t\trenderComponent(this, 2);\n\t},\n\trender: function render() {}\n});\n\nfunction render(vnode, parent, merge) {\n return diff(merge, vnode, {}, false, parent, false);\n}\n\nfunction createRef() {\n\treturn {};\n}\n\nvar preact = {\n\th: h,\n\tcreateElement: h,\n\tcloneElement: cloneElement,\n\tcreateRef: createRef,\n\tComponent: Component,\n\trender: render,\n\trerender: rerender,\n\toptions: options\n};\n\nexport default preact;\nexport { h, h as createElement, cloneElement, createRef, Component, render, rerender, options };\n//# sourceMappingURL=preact.mjs.map\n"
},
{
"id": 1,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"name": "./src/Components/Banner/index.tsx",
"index": 2,
"index2": 14,
"size": 2236,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"issuerId": 6,
"issuerName": "./src/Components/index.ts",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 3,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"module": "./src/Components/PreferencesDialog/index.tsx",
"moduleName": "./src/Components/PreferencesDialog/index.tsx",
"type": "cjs require",
"userRequest": "../Banner",
"loc": "20:15-35"
},
{
"moduleId": 6,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"module": "./src/Components/index.ts",
"moduleName": "./src/Components/index.ts",
"type": "cjs require",
"userRequest": "./Banner",
"loc": "6:9-28"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 2,
"source": "\"use strict\";\r\nvar __extends = (this && this.__extends) || (function () {\r\n var extendStatics = function (d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n };\r\n return function (d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n };\r\n})();\r\nObject.defineProperty(exports, \"__esModule\", { value: true });\r\nvar preact_1 = require(\"preact\");\r\nrequire(\"./style.scss\");\r\nvar labels_1 = require(\"../../labels\");\r\nvar helper_1 = require(\"../../helper\");\r\nvar PreferencesDialog_1 = require(\"../PreferencesDialog\");\r\nvar Banner = /** @class */ (function (_super) {\r\n __extends(Banner, _super);\r\n function Banner() {\r\n var _this = _super.call(this) || this;\r\n _this.save = _this.save.bind(_this);\r\n return _this;\r\n }\r\n Banner.prototype.save = function () {\r\n Banner.hide();\r\n };\r\n Banner.show = function () {\r\n var host = helper_1.getHost(Banner.HOST);\r\n helper_1.setHost(Banner.HOST, preact_1.render(preact_1.h(Banner, null), host.parentElement, host));\r\n };\r\n Banner.hide = function () {\r\n var host = helper_1.getHost(Banner.HOST);\r\n helper_1.setHost(Banner.HOST, preact_1.render(null, host.parentElement, host));\r\n };\r\n Banner.prototype.render = function () {\r\n return preact_1.h(\"div\", { className: \"cl-banner\" },\r\n labels_1.labels.banner.title && preact_1.h(\"b\", null, labels_1.labels.banner.title),\r\n preact_1.h(\"p\", null, labels_1.labels.banner.message),\r\n preact_1.h(\"section\", null,\r\n preact_1.h(\"button\", { onClick: this.save }, labels_1.labels.banner.ok),\r\n preact_1.h(\"button\", { className: \"cl-pref\", onClick: PreferencesDialog_1.PreferencesDialog.show }, labels_1.labels.banner.preferences)));\r\n };\r\n Banner.HOST = \"banner\";\r\n return Banner;\r\n}(preact_1.Component));\r\nexports.Banner = Banner;\r\n"
},
{
"id": 2,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\helper.ts",
"name": "./src/helper.ts",
"index": 7,
"index2": 4,
"size": 401,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"issuerId": 1,
"issuerName": "./src/Components/Banner/index.tsx",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
},
{
"id": 1,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"name": "./src/Components/Banner/index.tsx"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 1,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"module": "./src/Components/Banner/index.tsx",
"moduleName": "./src/Components/Banner/index.tsx",
"type": "cjs require",
"userRequest": "../../helper",
"loc": "19:15-38"
},
{
"moduleId": 3,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"module": "./src/Components/PreferencesDialog/index.tsx",
"moduleName": "./src/Components/PreferencesDialog/index.tsx",
"type": "cjs require",
"userRequest": "../../helper",
"loc": "19:15-38"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 3,
"source": "\"use strict\";\r\nObject.defineProperty(exports, \"__esModule\", { value: true });\r\nvar hosts = {};\r\nfunction getHost(name) {\r\n if (!hosts[name]) {\r\n hosts[name] = document.createElement('div');\r\n document.body.appendChild(hosts[name]);\r\n }\r\n return hosts[name];\r\n}\r\nexports.getHost = getHost;\r\nfunction setHost(name, host) {\r\n hosts[name] = host;\r\n}\r\nexports.setHost = setHost;\r\n"
},
{
"id": 3,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"name": "./src/Components/PreferencesDialog/index.tsx",
"index": 8,
"index2": 13,
"size": 2570,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"issuerId": 6,
"issuerName": "./src/Components/index.ts",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 1,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"module": "./src/Components/Banner/index.tsx",
"moduleName": "./src/Components/Banner/index.tsx",
"type": "cjs require",
"userRequest": "../PreferencesDialog",
"loc": "20:26-57"
},
{
"moduleId": 6,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"module": "./src/Components/index.ts",
"moduleName": "./src/Components/index.ts",
"type": "cjs require",
"userRequest": "./PreferencesDialog",
"loc": "8:9-39"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 2,
"source": "\"use strict\";\r\nvar __extends = (this && this.__extends) || (function () {\r\n var extendStatics = function (d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n };\r\n return function (d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n };\r\n})();\r\nObject.defineProperty(exports, \"__esModule\", { value: true });\r\nvar preact_1 = require(\"preact\");\r\nrequire(\"./style.scss\");\r\nvar TabControl_1 = require(\"../TabControl\");\r\nvar helper_1 = require(\"../../helper\");\r\nvar Banner_1 = require(\"../Banner\");\r\nvar PreferencesDialog = /** @class */ (function (_super) {\r\n __extends(PreferencesDialog, _super);\r\n function PreferencesDialog() {\r\n var _this = _super.call(this) || this;\r\n _this.save = _this.save.bind(_this);\r\n return _this;\r\n }\r\n PreferencesDialog.prototype.save = function () {\r\n PreferencesDialog.hide();\r\n Banner_1.Banner.hide();\r\n };\r\n PreferencesDialog.show = function () {\r\n var host = helper_1.getHost(PreferencesDialog.HOST);\r\n helper_1.setHost(PreferencesDialog.HOST, preact_1.render(preact_1.h(PreferencesDialog, null), host.parentElement, host));\r\n };\r\n PreferencesDialog.hide = function () {\r\n var host = helper_1.getHost(PreferencesDialog.HOST);\r\n helper_1.setHost(PreferencesDialog.HOST, preact_1.render(null, host.parentElement, host));\r\n };\r\n PreferencesDialog.prototype.render = function () {\r\n return preact_1.h(\"div\", { className: \"cl-preferences-overlay\" },\r\n preact_1.h(\"div\", { className: \"cl-dialog\" },\r\n preact_1.h(\"header\", null, \"Cookies Preferences\"),\r\n preact_1.h(TabControl_1.TabControl, null),\r\n preact_1.h(\"footer\", null,\r\n preact_1.h(\"span\", null,\r\n \"GDPR Cookie Consent by \",\r\n preact_1.h(\"a\", { href: \"https://www.wavenet.be/\", target: \"_blank\", rel: \"noopener noreferrer\" }, \"Wavenet \\u00A9\")),\r\n preact_1.h(\"button\", { onClick: this.save }, \"Save my preferences\"))));\r\n };\r\n PreferencesDialog.HOST = \"preferences\";\r\n return PreferencesDialog;\r\n}(preact_1.Component));\r\nexports.PreferencesDialog = PreferencesDialog;\r\n"
},
{
"id": 4,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Checkbox\\index.tsx",
"name": "./src/Components/Checkbox/index.tsx",
"index": 14,
"index2": 11,
"size": 1584,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"issuerId": 6,
"issuerName": "./src/Components/index.ts",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 6,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"module": "./src/Components/index.ts",
"moduleName": "./src/Components/index.ts",
"type": "cjs require",
"userRequest": "./Checkbox",
"loc": "7:9-30"
},
{
"moduleId": 10,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\TabControl\\index.tsx",
"module": "./src/Components/TabControl/index.tsx",
"moduleName": "./src/Components/TabControl/index.tsx",
"type": "cjs require",
"userRequest": "../Checkbox",
"loc": "18:17-39"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 2,
"source": "\"use strict\";\r\nvar __extends = (this && this.__extends) || (function () {\r\n var extendStatics = function (d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n };\r\n return function (d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n };\r\n})();\r\nObject.defineProperty(exports, \"__esModule\", { value: true });\r\nvar preact_1 = require(\"preact\");\r\nrequire(\"./style.scss\");\r\nvar Checkbox = /** @class */ (function (_super) {\r\n __extends(Checkbox, _super);\r\n function Checkbox(props) {\r\n var _this = _super.call(this, props) || this;\r\n _this.onClick = _this.onClick.bind(_this);\r\n return _this;\r\n }\r\n Checkbox.prototype.onClick = function (e) {\r\n e.preventDefault();\r\n var _a = this.props, onClick = _a.onClick, checked = _a.checked;\r\n onClick && onClick(!checked);\r\n };\r\n Checkbox.prototype.render = function (_a) {\r\n var checked = _a.checked, label = _a.label;\r\n return preact_1.h(\"label\", { class: \"cl-toggle\" },\r\n preact_1.h(\"input\", { type: \"checkbox\", checked: checked, onChange: this.onClick }),\r\n preact_1.h(\"span\", null, label));\r\n };\r\n return Checkbox;\r\n}(preact_1.Component));\r\nexports.Checkbox = Checkbox;\r\n"
},
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx",
"index": 0,
"index2": 16,
"size": 759,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": null,
"issuerId": null,
"issuerName": null,
"issuerPath": null,
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": null,
"moduleIdentifier": null,
"module": null,
"moduleName": null,
"type": "single entry",
"userRequest": "./src/CookieLaw.tsx",
"loc": "main"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 0,
"source": "\"use strict\";\r\nObject.defineProperty(exports, \"__esModule\", { value: true });\r\nvar Components_1 = require(\"./Components\");\r\nwindow.cookieLaw = Components_1.Banner.show;\r\nwindow.cookieLawPreferences = Components_1.PreferencesDialog.show;\r\nif (!Element.prototype.matches) {\r\n var prototype = Element.prototype;\r\n prototype.matches = prototype.msMatchesSelector || prototype.webkitMatchesSelector;\r\n}\r\nfunction isMatch(node, css) {\r\n if (!node || node == document.body) {\r\n return false;\r\n }\r\n return node.matches(css) || isMatch(node.parentElement, css);\r\n}\r\ndocument.body.addEventListener('click', function (e) {\r\n if (isMatch(e.target, '#OpenPref')) {\r\n e.preventDefault();\r\n window.cookieLawPreferences();\r\n }\r\n});\r\n"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts",
"index": 1,
"index2": 15,
"size": 288,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"issuerId": 5,
"issuerName": "./src/CookieLaw.tsx",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 5,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"module": "./src/CookieLaw.tsx",
"moduleName": "./src/CookieLaw.tsx",
"type": "cjs require",
"userRequest": "./Components",
"loc": "3:19-42"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 1,
"source": "\"use strict\";\r\nfunction __export(m) {\r\n for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];\r\n}\r\nObject.defineProperty(exports, \"__esModule\", { value: true });\r\n__export(require(\"./Banner\"));\r\n__export(require(\"./Checkbox\"));\r\n__export(require(\"./PreferencesDialog\"));\r\n"
},
{
"id": 7,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\style.scss",
"name": "./src/Components/Banner/style.scss",
"index": 4,
"index2": 2,
"size": 39,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"issuerId": 1,
"issuerName": "./src/Components/Banner/index.tsx",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
},
{
"id": 1,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"name": "./src/Components/Banner/index.tsx"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 1,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"module": "./src/Components/Banner/index.tsx",
"moduleName": "./src/Components/Banner/index.tsx",
"type": "cjs require",
"userRequest": "./style.scss",
"loc": "17:0-23"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 3,
"source": "// extracted by mini-css-extract-plugin"
},
{
"id": 8,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\labels.ts",
"name": "./src/labels.ts",
"index": 6,
"index2": 3,
"size": 612,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"issuerId": 1,
"issuerName": "./src/Components/Banner/index.tsx",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
},
{
"id": 1,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"name": "./src/Components/Banner/index.tsx"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 1,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"module": "./src/Components/Banner/index.tsx",
"moduleName": "./src/Components/Banner/index.tsx",
"type": "cjs require",
"userRequest": "../../labels",
"loc": "18:15-38"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 3,
"source": "\"use strict\";\r\nObject.defineProperty(exports, \"__esModule\", { value: true });\r\nexports.labels = {\r\n \"banner\": {\r\n \"title\": \"We use cookies\",\r\n \"message\": \"We use cookies and other tracking technologies to improve your browsing experience on our website, to show you personalized content and targeted ads, to analyze our website traffic, and to understand where our visitors are coming from. By browsing our website, you consent to our use of cookies and other tracking technologies.\",\r\n \"ok\": \"OK\",\r\n \"agree\": \"I Agree\",\r\n \"preferences\": \"Change my preferences\"\r\n }\r\n};\r\n"
},
{
"id": 9,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\style.scss",
"name": "./src/Components/PreferencesDialog/style.scss",
"index": 9,
"index2": 6,
"size": 39,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"issuerId": 3,
"issuerName": "./src/Components/PreferencesDialog/index.tsx",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
},
{
"id": 3,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"name": "./src/Components/PreferencesDialog/index.tsx"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 3,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"module": "./src/Components/PreferencesDialog/index.tsx",
"moduleName": "./src/Components/PreferencesDialog/index.tsx",
"type": "cjs require",
"userRequest": "./style.scss",
"loc": "17:0-23"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 3,
"source": "// extracted by mini-css-extract-plugin"
},
{
"id": 10,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\TabControl\\index.tsx",
"name": "./src/Components/TabControl/index.tsx",
"index": 11,
"index2": 12,
"size": 6318,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"issuerId": 3,
"issuerName": "./src/Components/PreferencesDialog/index.tsx",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
},
{
"id": 3,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"name": "./src/Components/PreferencesDialog/index.tsx"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 3,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"module": "./src/Components/PreferencesDialog/index.tsx",
"moduleName": "./src/Components/PreferencesDialog/index.tsx",
"type": "cjs require",
"userRequest": "../TabControl",
"loc": "18:19-43"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 3,
"source": "\"use strict\";\r\nvar __extends = (this && this.__extends) || (function () {\r\n var extendStatics = function (d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n };\r\n return function (d, b) {\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n };\r\n})();\r\nObject.defineProperty(exports, \"__esModule\", { value: true });\r\nvar preact_1 = require(\"preact\");\r\nrequire(\"./style.scss\");\r\nvar Checkbox_1 = require(\"../Checkbox\");\r\nvar props = {\r\n tabs: [\r\n {\r\n code: 'introduction',\r\n tabTitle: 'Your privacy',\r\n title: 'Your privacy is important to us',\r\n description: [\r\n 'Cookies are very small text files that are stored on your computer when you visit a website. We use cookies for a variety of purposes and to enhance your online experience on our website (for example, to remember your account login details).',\r\n 'You can change your preferences and decline certain types of cookies to be stored on your computer while browsing our website. You can also remove any cookies already stored on your computer, but keep in mind that deleting cookies may prevent you from using parts of our website.'\r\n ]\r\n },\r\n {\r\n code: 'content_strictly-necessary',\r\n title: 'Strictly necessary cookies',\r\n consent: true,\r\n required: true,\r\n description: [\r\n 'These cookies are essential to provide you with services available through our website and to enable you to use certain features of our website.',\r\n 'Without these cookies, we cannot provide you certain services on our website.'\r\n ]\r\n },\r\n {\r\n code: 'content_functionality',\r\n title: 'Functionality cookies',\r\n consent: true,\r\n description: [\r\n 'These cookies are used to provide you with a more personalized experience on our website and to remember choices you make when you use our website.',\r\n 'For example, we may use functionality cookies to remember your language preferences or remember your login details.'\r\n ]\r\n },\r\n {\r\n code: 'content_tracking',\r\n title: 'Tracking and performance cookies',\r\n consent: true,\r\n description: [\r\n 'These cookies are used to collect information to analyze the traffic traffic to our website and how visitors are using our website.',\r\n 'For example, these cookies may track things such as how long you spend on the website or the pages you visit which helps us to understand how we can improve our website site for you.',\r\n 'The information collected through these tracking and performance cookies do not identify any individual visitor.'\r\n ]\r\n },\r\n {\r\n code: 'content_targeting',\r\n title: 'Targeting and advertising cookies',\r\n consent: true,\r\n description: [\r\n 'These cookies are used to show advertising that is likely to be of interest to you based on your browsing habits.',\r\n 'These cookies, as served by our content and/or advertising providers, may combine information they collected from our website with other information they have independently collected relating to your web browser\\'s activities across their network of websites.',\r\n 'If you choose to remove or disable these targeting or advertising cookies, you will still see adverts but they may not be relevant to you.'\r\n ]\r\n },\r\n {\r\n code: 'more_information',\r\n title: 'More information',\r\n description: ['For any queries in relation to our policy on cookies and your choices, please contact us.']\r\n }\r\n ]\r\n};\r\nvar TabControl = /** @class */ (function (_super) {\r\n __extends(TabControl, _super);\r\n function TabControl() {\r\n var _this = _super.call(this) || this;\r\n var consents = {};\r\n for (var i = props.tabs.length - 1; i >= 0; i--) {\r\n var tab = props.tabs[i];\r\n if (tab.consent != null) {\r\n consents[tab.code] = tab.consent;\r\n }\r\n }\r\n _this.state = { currentTab: props.tabs[0], consents: consents };\r\n return _this;\r\n }\r\n TabControl.prototype.getCheckbox = function (tab) {\r\n var _this = this;\r\n if (tab.consent == null) {\r\n return null;\r\n }\r\n var consent = this.state.consents[tab.code];\r\n var label = consent ? \"Active\" : \"Inactive\";\r\n var onClick;\r\n if (tab.required) {\r\n label = \"Always \" + label;\r\n onClick = function () { _this.setState({ consents: Object.assign({}, _this.state.consents) }); };\r\n }\r\n else {\r\n onClick = function (consent) {\r\n var _a;\r\n _this.setState({ consents: Object.assign({}, _this.state.consents, (_a = {}, _a[tab.code] = consent, _a)) });\r\n };\r\n }\r\n return preact_1.h(Checkbox_1.Checkbox, { checked: consent, label: label, onClick: onClick });\r\n };\r\n TabControl.prototype.render = function (props2, _a) {\r\n var _this = this;\r\n var currentTab = _a.currentTab;\r\n return preact_1.h(\"div\", { class: \"cl-tabs\" },\r\n preact_1.h(\"ul\", null, props.tabs.map(function (t) { return preact_1.h(\"li\", { key: t.code, className: t === currentTab ? \"active\" : undefined, onClick: function () { return _this.setState({ currentTab: t }); } }, t.tabTitle || t.title); })),\r\n preact_1.h(\"div\", null,\r\n preact_1.h(\"h2\", null, currentTab.title),\r\n currentTab.description.map(function (p) { return preact_1.h(\"p\", null, p); }),\r\n this.getCheckbox(currentTab)));\r\n };\r\n return TabControl;\r\n}(preact_1.Component));\r\nexports.TabControl = TabControl;\r\n"
},
{
"id": 11,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\TabControl\\style.scss",
"name": "./src/Components/TabControl/style.scss",
"index": 12,
"index2": 8,
"size": 39,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\TabControl\\index.tsx",
"issuerId": 10,
"issuerName": "./src/Components/TabControl/index.tsx",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
},
{
"id": 3,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"name": "./src/Components/PreferencesDialog/index.tsx"
},
{
"id": 10,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\TabControl\\index.tsx",
"name": "./src/Components/TabControl/index.tsx"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 10,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\TabControl\\index.tsx",
"module": "./src/Components/TabControl/index.tsx",
"moduleName": "./src/Components/TabControl/index.tsx",
"type": "cjs require",
"userRequest": "./style.scss",
"loc": "17:0-23"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 4,
"source": "// extracted by mini-css-extract-plugin"
},
{
"id": 12,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Checkbox\\style.scss",
"name": "./src/Components/Checkbox/style.scss",
"index": 15,
"index2": 10,
"size": 39,
"cacheable": true,
"built": true,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Checkbox\\index.tsx",
"issuerId": 4,
"issuerName": "./src/Components/Checkbox/index.tsx",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
},
{
"id": 4,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Checkbox\\index.tsx",
"name": "./src/Components/Checkbox/index.tsx"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 4,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Checkbox\\index.tsx",
"module": "./src/Components/Checkbox/index.tsx",
"moduleName": "./src/Components/Checkbox/index.tsx",
"type": "cjs require",
"userRequest": "./style.scss",
"loc": "17:0-23"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 3,
"source": "// extracted by mini-css-extract-plugin"
},
{
"id": "",
"identifier": "css P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\style.scss 0",
"name": "css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/lib/loader.js!./src/Components/Banner/style.scss",
"index": 5,
"index2": 1,
"size": 520,
"built": false,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\style.scss",
"issuerId": 7,
"issuerName": "./src/Components/Banner/style.scss",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
},
{
"id": 1,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\index.tsx",
"name": "./src/Components/Banner/index.tsx"
},
{
"id": 7,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\style.scss",
"name": "./src/Components/Banner/style.scss"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 7,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Banner\\style.scss",
"module": "./src/Components/Banner/style.scss",
"moduleName": "./src/Components/Banner/style.scss"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 4
},
{
"id": "",
"identifier": "css P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\style.scss 0",
"name": "css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/lib/loader.js!./src/Components/PreferencesDialog/style.scss",
"index": 10,
"index2": 5,
"size": 1221,
"built": false,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\style.scss",
"issuerId": 9,
"issuerName": "./src/Components/PreferencesDialog/style.scss",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},
{
"id": 6,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\index.ts",
"name": "./src/Components/index.ts"
},
{
"id": 3,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\index.tsx",
"name": "./src/Components/PreferencesDialog/index.tsx"
},
{
"id": 9,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\style.scss",
"name": "./src/Components/PreferencesDialog/style.scss"
}
],
"failed": false,
"errors": 0,
"warnings": 0,
"assets": [],
"reasons": [
{
"moduleId": 9,
"moduleIdentifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\PreferencesDialog\\style.scss",
"module": "./src/Components/PreferencesDialog/style.scss",
"moduleName": "./src/Components/PreferencesDialog/style.scss"
}
],
"usedExports": true,
"providedExports": null,
"optimizationBailout": [
"ModuleConcatenation bailout: Module is not an ECMAScript module"
],
"depth": 4
},
{
"id": "",
"identifier": "css P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Checkbox\\style.scss 0",
"name": "css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/lib/loader.js!./src/Components/Checkbox/style.scss",
"index": 16,
"index2": 9,
"size": 913,
"built": false,
"optional": false,
"prefetched": false,
"chunks": [
0
],
"issuer": "P:\\Wavenet\\RD\\Cookies\\node_modules\\mini-css-extract-plugin\\dist\\loader.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\css-loader\\dist\\cjs.js!P:\\Wavenet\\RD\\Cookies\\node_modules\\sass-loader\\lib\\loader.js!P:\\Wavenet\\RD\\Cookies\\src\\Components\\Checkbox\\style.scss",
"issuerId": 12,
"issuerName": "./src/Components/Checkbox/style.scss",
"issuerPath": [
{
"id": 5,
"identifier": "P:\\Wavenet\\RD\\Cookies\\node_modules\\awesome-typescript-loader\\dist\\entry.js!P:\\Wavenet\\RD\\Cookies\\src\\CookieLaw.tsx",
"name": "./src/CookieLaw.tsx"
},