@wordpress/icons 6.0.0 → 6.1.2-next.33ec3857e2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/build/icon/index.js +6 -5
- package/build/icon/index.js.map +1 -1
- package/build/index.js +164 -124
- package/build/index.js.map +1 -1
- package/build/library/archive-title.js +1 -6
- package/build/library/archive-title.js.map +1 -1
- package/build/library/comment-author-avatar.js +25 -0
- package/build/library/comment-author-avatar.js.map +1 -0
- package/build/library/comment-author-name.js +35 -0
- package/build/library/comment-author-name.js.map +1 -0
- package/build/library/comment-content.js +25 -0
- package/build/library/comment-content.js.map +1 -0
- package/build/library/comment-edit-link.js +25 -0
- package/build/library/comment-edit-link.js.map +1 -0
- package/build/library/comment-reply-link.js +25 -0
- package/build/library/comment-reply-link.js.map +1 -0
- package/build/library/gallery.js +1 -1
- package/build/library/query-pagination-next.js +2 -5
- package/build/library/query-pagination-next.js.map +1 -1
- package/build/library/query-pagination-numbers.js +3 -6
- package/build/library/query-pagination-numbers.js.map +1 -1
- package/build/library/query-pagination-previous.js +2 -5
- package/build/library/query-pagination-previous.js.map +1 -1
- package/build/library/query-pagination.js +3 -6
- package/build/library/query-pagination.js.map +1 -1
- package/build/library/styles.js +1 -1
- package/build/library/term-description.js +1 -6
- package/build/library/term-description.js.map +1 -1
- package/build-module/icon/index.js +6 -5
- package/build-module/icon/index.js.map +1 -1
- package/build-module/index.js +5 -0
- package/build-module/index.js.map +1 -1
- package/build-module/library/archive-title.js +1 -6
- package/build-module/library/archive-title.js.map +1 -1
- package/build-module/library/comment-author-avatar.js +16 -0
- package/build-module/library/comment-author-avatar.js.map +1 -0
- package/build-module/library/comment-author-name.js +26 -0
- package/build-module/library/comment-author-name.js.map +1 -0
- package/build-module/library/comment-content.js +16 -0
- package/build-module/library/comment-content.js.map +1 -0
- package/build-module/library/comment-edit-link.js +16 -0
- package/build-module/library/comment-edit-link.js.map +1 -0
- package/build-module/library/comment-reply-link.js +16 -0
- package/build-module/library/comment-reply-link.js.map +1 -0
- package/build-module/library/query-pagination-next.js +2 -5
- package/build-module/library/query-pagination-next.js.map +1 -1
- package/build-module/library/query-pagination-numbers.js +3 -6
- package/build-module/library/query-pagination-numbers.js.map +1 -1
- package/build-module/library/query-pagination-previous.js +2 -5
- package/build-module/library/query-pagination-previous.js.map +1 -1
- package/build-module/library/query-pagination.js +3 -6
- package/build-module/library/query-pagination.js.map +1 -1
- package/build-module/library/term-description.js +1 -6
- package/build-module/library/term-description.js.map +1 -1
- package/build-types/index.d.ts +5 -0
- package/build-types/library/archive-title.d.ts.map +1 -1
- package/build-types/library/comment-author-avatar.d.ts +3 -0
- package/build-types/library/comment-author-avatar.d.ts.map +1 -0
- package/build-types/library/comment-author-name.d.ts +3 -0
- package/build-types/library/comment-author-name.d.ts.map +1 -0
- package/build-types/library/comment-content.d.ts +3 -0
- package/build-types/library/comment-content.d.ts.map +1 -0
- package/build-types/library/comment-edit-link.d.ts +3 -0
- package/build-types/library/comment-edit-link.d.ts.map +1 -0
- package/build-types/library/comment-reply-link.d.ts +3 -0
- package/build-types/library/comment-reply-link.d.ts.map +1 -0
- package/build-types/library/query-pagination-numbers.d.ts.map +1 -1
- package/build-types/library/query-pagination-previous.d.ts.map +1 -1
- package/build-types/library/term-description.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/index.js +5 -0
- package/src/library/archive-title.js +1 -5
- package/src/library/comment-author-avatar.js +16 -0
- package/src/library/comment-author-name.js +22 -0
- package/src/library/comment-content.js +16 -0
- package/src/library/comment-edit-link.js +17 -0
- package/src/library/comment-reply-link.js +17 -0
- package/src/library/query-pagination-next.js +3 -3
- package/src/library/query-pagination-numbers.js +3 -6
- package/src/library/query-pagination-previous.js +1 -3
- package/src/library/query-pagination.js +3 -3
- package/src/library/term-description.js +1 -9
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
+
## 6.1.0 (2021-11-07)
|
6
|
+
|
7
|
+
### New Features
|
8
|
+
|
9
|
+
- Added new block icons: `commentAuthorAvatar`, `commentAuthorName`, `commentContent` and `commentReplyLink` ([#36171](https://github.com/WordPress/gutenberg/pull/36171)).
|
10
|
+
|
5
11
|
## 6.0.0 (2021-10-12)
|
6
12
|
|
7
13
|
### Breaking Change
|
package/build/icon/index.js
CHANGED
@@ -22,11 +22,12 @@ var _element = require("@wordpress/element");
|
|
22
22
|
*
|
23
23
|
* @return {JSX.Element} Icon component
|
24
24
|
*/
|
25
|
-
function Icon({
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
25
|
+
function Icon(_ref) {
|
26
|
+
let {
|
27
|
+
icon,
|
28
|
+
size = 24,
|
29
|
+
...props
|
30
|
+
} = _ref;
|
30
31
|
return (0, _element.cloneElement)(icon, {
|
31
32
|
width: size,
|
32
33
|
height: size,
|
package/build/icon/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["@wordpress/icons/src/icon/index.js"],"names":["Icon","icon","size","props","width","height"],"mappings":";;;;;;;AAGA;;AAHA;AACA;AACA;;AAGA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,IAAT,
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/icon/index.js"],"names":["Icon","icon","size","props","width","height"],"mappings":";;;;;;;AAGA;;AAHA;AACA;AACA;;AAGA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,IAAT,OAA+C;AAAA,MAAhC;AAAEC,IAAAA,IAAF;AAAQC,IAAAA,IAAI,GAAG,EAAf;AAAmB,OAAGC;AAAtB,GAAgC;AAC9C,SAAO,2BAAcF,IAAd,EAAoB;AAC1BG,IAAAA,KAAK,EAAEF,IADmB;AAE1BG,IAAAA,MAAM,EAAEH,IAFkB;AAG1B,OAAGC;AAHuB,GAApB,CAAP;AAKA;;eAEcH,I","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { cloneElement } from '@wordpress/element';\n\n/** @typedef {{icon: JSX.Element, size?: number} & import('@wordpress/primitives').SVGProps} IconProps */\n\n/**\n * Return an SVG icon.\n *\n * @param {IconProps} props icon is the SVG component to render\n * size is a number specifiying the icon size in pixels\n * Other props will be passed to wrapped SVG component\n *\n * @return {JSX.Element} Icon component\n */\nfunction Icon( { icon, size = 24, ...props } ) {\n\treturn cloneElement( icon, {\n\t\twidth: size,\n\t\theight: size,\n\t\t...props,\n\t} );\n}\n\nexport default Icon;\n"]}
|
package/build/index.js
CHANGED
@@ -95,16 +95,16 @@ Object.defineProperty(exports, "arrowUp", {
|
|
95
95
|
return _arrowUp.default;
|
96
96
|
}
|
97
97
|
});
|
98
|
-
Object.defineProperty(exports, "
|
98
|
+
Object.defineProperty(exports, "aspectRatio", {
|
99
99
|
enumerable: true,
|
100
100
|
get: function () {
|
101
|
-
return
|
101
|
+
return _aspectRatio.default;
|
102
102
|
}
|
103
103
|
});
|
104
|
-
Object.defineProperty(exports, "
|
104
|
+
Object.defineProperty(exports, "atSymbol", {
|
105
105
|
enumerable: true,
|
106
106
|
get: function () {
|
107
|
-
return
|
107
|
+
return _atSymbol.default;
|
108
108
|
}
|
109
109
|
});
|
110
110
|
Object.defineProperty(exports, "audio", {
|
@@ -251,16 +251,16 @@ Object.defineProperty(exports, "closeSmall", {
|
|
251
251
|
return _closeSmall.default;
|
252
252
|
}
|
253
253
|
});
|
254
|
-
Object.defineProperty(exports, "
|
254
|
+
Object.defineProperty(exports, "cloud", {
|
255
255
|
enumerable: true,
|
256
256
|
get: function () {
|
257
|
-
return
|
257
|
+
return _cloud.default;
|
258
258
|
}
|
259
259
|
});
|
260
|
-
Object.defineProperty(exports, "
|
260
|
+
Object.defineProperty(exports, "cloudUpload", {
|
261
261
|
enumerable: true,
|
262
262
|
get: function () {
|
263
|
-
return
|
263
|
+
return _cloudUpload.default;
|
264
264
|
}
|
265
265
|
});
|
266
266
|
Object.defineProperty(exports, "code", {
|
@@ -305,6 +305,36 @@ Object.defineProperty(exports, "comment", {
|
|
305
305
|
return _comment.default;
|
306
306
|
}
|
307
307
|
});
|
308
|
+
Object.defineProperty(exports, "commentAuthorAvatar", {
|
309
|
+
enumerable: true,
|
310
|
+
get: function () {
|
311
|
+
return _commentAuthorAvatar.default;
|
312
|
+
}
|
313
|
+
});
|
314
|
+
Object.defineProperty(exports, "commentAuthorName", {
|
315
|
+
enumerable: true,
|
316
|
+
get: function () {
|
317
|
+
return _commentAuthorName.default;
|
318
|
+
}
|
319
|
+
});
|
320
|
+
Object.defineProperty(exports, "commentContent", {
|
321
|
+
enumerable: true,
|
322
|
+
get: function () {
|
323
|
+
return _commentContent.default;
|
324
|
+
}
|
325
|
+
});
|
326
|
+
Object.defineProperty(exports, "commentEditLink", {
|
327
|
+
enumerable: true,
|
328
|
+
get: function () {
|
329
|
+
return _commentEditLink.default;
|
330
|
+
}
|
331
|
+
});
|
332
|
+
Object.defineProperty(exports, "commentReplyLink", {
|
333
|
+
enumerable: true,
|
334
|
+
get: function () {
|
335
|
+
return _commentReplyLink.default;
|
336
|
+
}
|
337
|
+
});
|
308
338
|
Object.defineProperty(exports, "cover", {
|
309
339
|
enumerable: true,
|
310
340
|
get: function () {
|
@@ -341,6 +371,12 @@ Object.defineProperty(exports, "currencyPound", {
|
|
341
371
|
return _currencyPound.default;
|
342
372
|
}
|
343
373
|
});
|
374
|
+
Object.defineProperty(exports, "customLink", {
|
375
|
+
enumerable: true,
|
376
|
+
get: function () {
|
377
|
+
return _customLink.default;
|
378
|
+
}
|
379
|
+
});
|
344
380
|
Object.defineProperty(exports, "customPostType", {
|
345
381
|
enumerable: true,
|
346
382
|
get: function () {
|
@@ -353,16 +389,16 @@ Object.defineProperty(exports, "desktop", {
|
|
353
389
|
return _desktop.default;
|
354
390
|
}
|
355
391
|
});
|
356
|
-
Object.defineProperty(exports, "
|
392
|
+
Object.defineProperty(exports, "download", {
|
357
393
|
enumerable: true,
|
358
394
|
get: function () {
|
359
|
-
return
|
395
|
+
return _download.default;
|
360
396
|
}
|
361
397
|
});
|
362
|
-
Object.defineProperty(exports, "
|
398
|
+
Object.defineProperty(exports, "dragHandle", {
|
363
399
|
enumerable: true,
|
364
400
|
get: function () {
|
365
|
-
return
|
401
|
+
return _dragHandle.default;
|
366
402
|
}
|
367
403
|
});
|
368
404
|
Object.defineProperty(exports, "edit", {
|
@@ -395,6 +431,12 @@ Object.defineProperty(exports, "flipVertical", {
|
|
395
431
|
return _flipVertical.default;
|
396
432
|
}
|
397
433
|
});
|
434
|
+
Object.defineProperty(exports, "footer", {
|
435
|
+
enumerable: true,
|
436
|
+
get: function () {
|
437
|
+
return _footer.default;
|
438
|
+
}
|
439
|
+
});
|
398
440
|
Object.defineProperty(exports, "formatBold", {
|
399
441
|
enumerable: true,
|
400
442
|
get: function () {
|
@@ -449,16 +491,16 @@ Object.defineProperty(exports, "formatListNumberedRTL", {
|
|
449
491
|
return _formatListNumberedRtl.default;
|
450
492
|
}
|
451
493
|
});
|
452
|
-
Object.defineProperty(exports, "
|
494
|
+
Object.defineProperty(exports, "formatLowercase", {
|
453
495
|
enumerable: true,
|
454
496
|
get: function () {
|
455
|
-
return
|
497
|
+
return _formatLowercase.default;
|
456
498
|
}
|
457
499
|
});
|
458
|
-
Object.defineProperty(exports, "
|
500
|
+
Object.defineProperty(exports, "formatLtr", {
|
459
501
|
enumerable: true,
|
460
502
|
get: function () {
|
461
|
-
return
|
503
|
+
return _formatLtr.default;
|
462
504
|
}
|
463
505
|
});
|
464
506
|
Object.defineProperty(exports, "formatOutdent", {
|
@@ -533,6 +575,12 @@ Object.defineProperty(exports, "handle", {
|
|
533
575
|
return _handle.default;
|
534
576
|
}
|
535
577
|
});
|
578
|
+
Object.defineProperty(exports, "header", {
|
579
|
+
enumerable: true,
|
580
|
+
get: function () {
|
581
|
+
return _header.default;
|
582
|
+
}
|
583
|
+
});
|
536
584
|
Object.defineProperty(exports, "heading", {
|
537
585
|
enumerable: true,
|
538
586
|
get: function () {
|
@@ -551,18 +599,6 @@ Object.defineProperty(exports, "helpFilled", {
|
|
551
599
|
return _helpFilled.default;
|
552
600
|
}
|
553
601
|
});
|
554
|
-
Object.defineProperty(exports, "inbox", {
|
555
|
-
enumerable: true,
|
556
|
-
get: function () {
|
557
|
-
return _inbox.default;
|
558
|
-
}
|
559
|
-
});
|
560
|
-
Object.defineProperty(exports, "institution", {
|
561
|
-
enumerable: true,
|
562
|
-
get: function () {
|
563
|
-
return _institution.default;
|
564
|
-
}
|
565
|
-
});
|
566
602
|
Object.defineProperty(exports, "home", {
|
567
603
|
enumerable: true,
|
568
604
|
get: function () {
|
@@ -581,6 +617,12 @@ Object.defineProperty(exports, "image", {
|
|
581
617
|
return _image.default;
|
582
618
|
}
|
583
619
|
});
|
620
|
+
Object.defineProperty(exports, "inbox", {
|
621
|
+
enumerable: true,
|
622
|
+
get: function () {
|
623
|
+
return _inbox.default;
|
624
|
+
}
|
625
|
+
});
|
584
626
|
Object.defineProperty(exports, "info", {
|
585
627
|
enumerable: true,
|
586
628
|
get: function () {
|
@@ -599,10 +641,10 @@ Object.defineProperty(exports, "insertBefore", {
|
|
599
641
|
return _insertBefore.default;
|
600
642
|
}
|
601
643
|
});
|
602
|
-
Object.defineProperty(exports, "
|
644
|
+
Object.defineProperty(exports, "institution", {
|
603
645
|
enumerable: true,
|
604
646
|
get: function () {
|
605
|
-
return
|
647
|
+
return _institution.default;
|
606
648
|
}
|
607
649
|
});
|
608
650
|
Object.defineProperty(exports, "justifyCenter", {
|
@@ -611,6 +653,12 @@ Object.defineProperty(exports, "justifyCenter", {
|
|
611
653
|
return _justifyCenter.default;
|
612
654
|
}
|
613
655
|
});
|
656
|
+
Object.defineProperty(exports, "justifyLeft", {
|
657
|
+
enumerable: true,
|
658
|
+
get: function () {
|
659
|
+
return _justifyLeft.default;
|
660
|
+
}
|
661
|
+
});
|
614
662
|
Object.defineProperty(exports, "justifyRight", {
|
615
663
|
enumerable: true,
|
616
664
|
get: function () {
|
@@ -785,28 +833,28 @@ Object.defineProperty(exports, "navigation", {
|
|
785
833
|
return _navigation.default;
|
786
834
|
}
|
787
835
|
});
|
788
|
-
Object.defineProperty(exports, "
|
836
|
+
Object.defineProperty(exports, "next", {
|
789
837
|
enumerable: true,
|
790
838
|
get: function () {
|
791
|
-
return
|
839
|
+
return _next.default;
|
792
840
|
}
|
793
841
|
});
|
794
|
-
Object.defineProperty(exports, "
|
842
|
+
Object.defineProperty(exports, "overlayText", {
|
795
843
|
enumerable: true,
|
796
844
|
get: function () {
|
797
|
-
return
|
845
|
+
return _overlayText.default;
|
798
846
|
}
|
799
847
|
});
|
800
|
-
Object.defineProperty(exports, "
|
848
|
+
Object.defineProperty(exports, "page", {
|
801
849
|
enumerable: true,
|
802
850
|
get: function () {
|
803
|
-
return
|
851
|
+
return _page.default;
|
804
852
|
}
|
805
853
|
});
|
806
|
-
Object.defineProperty(exports, "
|
854
|
+
Object.defineProperty(exports, "pageBreak", {
|
807
855
|
enumerable: true,
|
808
856
|
get: function () {
|
809
|
-
return
|
857
|
+
return _pageBreak.default;
|
810
858
|
}
|
811
859
|
});
|
812
860
|
Object.defineProperty(exports, "pages", {
|
@@ -827,70 +875,70 @@ Object.defineProperty(exports, "payment", {
|
|
827
875
|
return _payment.default;
|
828
876
|
}
|
829
877
|
});
|
830
|
-
Object.defineProperty(exports, "
|
878
|
+
Object.defineProperty(exports, "pencil", {
|
831
879
|
enumerable: true,
|
832
880
|
get: function () {
|
833
|
-
return
|
881
|
+
return _pencil.default;
|
834
882
|
}
|
835
883
|
});
|
836
|
-
Object.defineProperty(exports, "
|
884
|
+
Object.defineProperty(exports, "people", {
|
837
885
|
enumerable: true,
|
838
886
|
get: function () {
|
839
|
-
return
|
887
|
+
return _people.default;
|
840
888
|
}
|
841
889
|
});
|
842
|
-
Object.defineProperty(exports, "
|
890
|
+
Object.defineProperty(exports, "percent", {
|
843
891
|
enumerable: true,
|
844
892
|
get: function () {
|
845
|
-
return
|
893
|
+
return _percent.default;
|
846
894
|
}
|
847
895
|
});
|
848
|
-
Object.defineProperty(exports, "
|
896
|
+
Object.defineProperty(exports, "pin", {
|
849
897
|
enumerable: true,
|
850
898
|
get: function () {
|
851
|
-
return
|
899
|
+
return _pin.default;
|
852
900
|
}
|
853
901
|
});
|
854
|
-
Object.defineProperty(exports, "
|
902
|
+
Object.defineProperty(exports, "plugins", {
|
855
903
|
enumerable: true,
|
856
904
|
get: function () {
|
857
|
-
return
|
905
|
+
return _plugins.default;
|
858
906
|
}
|
859
907
|
});
|
860
|
-
Object.defineProperty(exports, "
|
908
|
+
Object.defineProperty(exports, "plus", {
|
861
909
|
enumerable: true,
|
862
910
|
get: function () {
|
863
|
-
return
|
911
|
+
return _plus.default;
|
864
912
|
}
|
865
913
|
});
|
866
|
-
Object.defineProperty(exports, "
|
914
|
+
Object.defineProperty(exports, "plusCircle", {
|
867
915
|
enumerable: true,
|
868
916
|
get: function () {
|
869
|
-
return
|
917
|
+
return _plusCircle.default;
|
870
918
|
}
|
871
919
|
});
|
872
|
-
Object.defineProperty(exports, "
|
920
|
+
Object.defineProperty(exports, "plusCircleFilled", {
|
873
921
|
enumerable: true,
|
874
922
|
get: function () {
|
875
|
-
return
|
923
|
+
return _plusCircleFilled.default;
|
876
924
|
}
|
877
925
|
});
|
878
|
-
Object.defineProperty(exports, "
|
926
|
+
Object.defineProperty(exports, "positionCenter", {
|
879
927
|
enumerable: true,
|
880
928
|
get: function () {
|
881
|
-
return
|
929
|
+
return _positionCenter.default;
|
882
930
|
}
|
883
931
|
});
|
884
|
-
Object.defineProperty(exports, "
|
932
|
+
Object.defineProperty(exports, "positionLeft", {
|
885
933
|
enumerable: true,
|
886
934
|
get: function () {
|
887
|
-
return
|
935
|
+
return _positionLeft.default;
|
888
936
|
}
|
889
937
|
});
|
890
|
-
Object.defineProperty(exports, "
|
938
|
+
Object.defineProperty(exports, "positionRight", {
|
891
939
|
enumerable: true,
|
892
940
|
get: function () {
|
893
|
-
return
|
941
|
+
return _positionRight.default;
|
894
942
|
}
|
895
943
|
});
|
896
944
|
Object.defineProperty(exports, "postAuthor", {
|
@@ -905,12 +953,6 @@ Object.defineProperty(exports, "postCategories", {
|
|
905
953
|
return _postCategories.default;
|
906
954
|
}
|
907
955
|
});
|
908
|
-
Object.defineProperty(exports, "postContent", {
|
909
|
-
enumerable: true,
|
910
|
-
get: function () {
|
911
|
-
return _postContent.default;
|
912
|
-
}
|
913
|
-
});
|
914
956
|
Object.defineProperty(exports, "postComments", {
|
915
957
|
enumerable: true,
|
916
958
|
get: function () {
|
@@ -929,6 +971,12 @@ Object.defineProperty(exports, "postCommentsForm", {
|
|
929
971
|
return _postCommentsForm.default;
|
930
972
|
}
|
931
973
|
});
|
974
|
+
Object.defineProperty(exports, "postContent", {
|
975
|
+
enumerable: true,
|
976
|
+
get: function () {
|
977
|
+
return _postContent.default;
|
978
|
+
}
|
979
|
+
});
|
932
980
|
Object.defineProperty(exports, "postDate", {
|
933
981
|
enumerable: true,
|
934
982
|
get: function () {
|
@@ -959,22 +1007,16 @@ Object.defineProperty(exports, "postTitle", {
|
|
959
1007
|
return _postTitle.default;
|
960
1008
|
}
|
961
1009
|
});
|
962
|
-
Object.defineProperty(exports, "
|
963
|
-
enumerable: true,
|
964
|
-
get: function () {
|
965
|
-
return _previous.default;
|
966
|
-
}
|
967
|
-
});
|
968
|
-
Object.defineProperty(exports, "next", {
|
1010
|
+
Object.defineProperty(exports, "preformatted", {
|
969
1011
|
enumerable: true,
|
970
1012
|
get: function () {
|
971
|
-
return
|
1013
|
+
return _preformatted.default;
|
972
1014
|
}
|
973
1015
|
});
|
974
|
-
Object.defineProperty(exports, "
|
1016
|
+
Object.defineProperty(exports, "previous", {
|
975
1017
|
enumerable: true,
|
976
1018
|
get: function () {
|
977
|
-
return
|
1019
|
+
return _previous.default;
|
978
1020
|
}
|
979
1021
|
});
|
980
1022
|
Object.defineProperty(exports, "pullLeft", {
|
@@ -1067,12 +1109,6 @@ Object.defineProperty(exports, "reusableBlock", {
|
|
1067
1109
|
return _reusableBlock.default;
|
1068
1110
|
}
|
1069
1111
|
});
|
1070
|
-
Object.defineProperty(exports, "symbol", {
|
1071
|
-
enumerable: true,
|
1072
|
-
get: function () {
|
1073
|
-
return _symbol.default;
|
1074
|
-
}
|
1075
|
-
});
|
1076
1112
|
Object.defineProperty(exports, "rotateLeft", {
|
1077
1113
|
enumerable: true,
|
1078
1114
|
get: function () {
|
@@ -1121,12 +1157,24 @@ Object.defineProperty(exports, "shield", {
|
|
1121
1157
|
return _shield.default;
|
1122
1158
|
}
|
1123
1159
|
});
|
1160
|
+
Object.defineProperty(exports, "shipping", {
|
1161
|
+
enumerable: true,
|
1162
|
+
get: function () {
|
1163
|
+
return _shipping.default;
|
1164
|
+
}
|
1165
|
+
});
|
1124
1166
|
Object.defineProperty(exports, "shortcode", {
|
1125
1167
|
enumerable: true,
|
1126
1168
|
get: function () {
|
1127
1169
|
return _shortcode.default;
|
1128
1170
|
}
|
1129
1171
|
});
|
1172
|
+
Object.defineProperty(exports, "sidebar", {
|
1173
|
+
enumerable: true,
|
1174
|
+
get: function () {
|
1175
|
+
return _sidebar.default;
|
1176
|
+
}
|
1177
|
+
});
|
1130
1178
|
Object.defineProperty(exports, "siteLogo", {
|
1131
1179
|
enumerable: true,
|
1132
1180
|
get: function () {
|
@@ -1175,22 +1223,16 @@ Object.defineProperty(exports, "stretchFullWidth", {
|
|
1175
1223
|
return _stretchFullWidth.default;
|
1176
1224
|
}
|
1177
1225
|
});
|
1178
|
-
Object.defineProperty(exports, "
|
1179
|
-
enumerable: true,
|
1180
|
-
get: function () {
|
1181
|
-
return _styles.default;
|
1182
|
-
}
|
1183
|
-
});
|
1184
|
-
Object.defineProperty(exports, "shipping", {
|
1226
|
+
Object.defineProperty(exports, "stretchWide", {
|
1185
1227
|
enumerable: true,
|
1186
1228
|
get: function () {
|
1187
|
-
return
|
1229
|
+
return _stretchWide.default;
|
1188
1230
|
}
|
1189
1231
|
});
|
1190
|
-
Object.defineProperty(exports, "
|
1232
|
+
Object.defineProperty(exports, "styles", {
|
1191
1233
|
enumerable: true,
|
1192
1234
|
get: function () {
|
1193
|
-
return
|
1235
|
+
return _styles.default;
|
1194
1236
|
}
|
1195
1237
|
});
|
1196
1238
|
Object.defineProperty(exports, "subscript", {
|
@@ -1211,6 +1253,24 @@ Object.defineProperty(exports, "swatch", {
|
|
1211
1253
|
return _swatch.default;
|
1212
1254
|
}
|
1213
1255
|
});
|
1256
|
+
Object.defineProperty(exports, "symbol", {
|
1257
|
+
enumerable: true,
|
1258
|
+
get: function () {
|
1259
|
+
return _symbol.default;
|
1260
|
+
}
|
1261
|
+
});
|
1262
|
+
Object.defineProperty(exports, "symbolFilled", {
|
1263
|
+
enumerable: true,
|
1264
|
+
get: function () {
|
1265
|
+
return _symbolFilled.default;
|
1266
|
+
}
|
1267
|
+
});
|
1268
|
+
Object.defineProperty(exports, "table", {
|
1269
|
+
enumerable: true,
|
1270
|
+
get: function () {
|
1271
|
+
return _table.default;
|
1272
|
+
}
|
1273
|
+
});
|
1214
1274
|
Object.defineProperty(exports, "tableColumnAfter", {
|
1215
1275
|
enumerable: true,
|
1216
1276
|
get: function () {
|
@@ -1247,10 +1307,10 @@ Object.defineProperty(exports, "tableRowDelete", {
|
|
1247
1307
|
return _tableRowDelete.default;
|
1248
1308
|
}
|
1249
1309
|
});
|
1250
|
-
Object.defineProperty(exports, "
|
1310
|
+
Object.defineProperty(exports, "tablet", {
|
1251
1311
|
enumerable: true,
|
1252
1312
|
get: function () {
|
1253
|
-
return
|
1313
|
+
return _tablet.default;
|
1254
1314
|
}
|
1255
1315
|
});
|
1256
1316
|
Object.defineProperty(exports, "tag", {
|
@@ -1259,48 +1319,18 @@ Object.defineProperty(exports, "tag", {
|
|
1259
1319
|
return _tag.default;
|
1260
1320
|
}
|
1261
1321
|
});
|
1262
|
-
Object.defineProperty(exports, "symbolFilled", {
|
1263
|
-
enumerable: true,
|
1264
|
-
get: function () {
|
1265
|
-
return _symbolFilled.default;
|
1266
|
-
}
|
1267
|
-
});
|
1268
1322
|
Object.defineProperty(exports, "termDescription", {
|
1269
1323
|
enumerable: true,
|
1270
1324
|
get: function () {
|
1271
1325
|
return _termDescription.default;
|
1272
1326
|
}
|
1273
1327
|
});
|
1274
|
-
Object.defineProperty(exports, "footer", {
|
1275
|
-
enumerable: true,
|
1276
|
-
get: function () {
|
1277
|
-
return _footer.default;
|
1278
|
-
}
|
1279
|
-
});
|
1280
|
-
Object.defineProperty(exports, "header", {
|
1281
|
-
enumerable: true,
|
1282
|
-
get: function () {
|
1283
|
-
return _header.default;
|
1284
|
-
}
|
1285
|
-
});
|
1286
|
-
Object.defineProperty(exports, "sidebar", {
|
1287
|
-
enumerable: true,
|
1288
|
-
get: function () {
|
1289
|
-
return _sidebar.default;
|
1290
|
-
}
|
1291
|
-
});
|
1292
1328
|
Object.defineProperty(exports, "textColor", {
|
1293
1329
|
enumerable: true,
|
1294
1330
|
get: function () {
|
1295
1331
|
return _textColor.default;
|
1296
1332
|
}
|
1297
1333
|
});
|
1298
|
-
Object.defineProperty(exports, "tablet", {
|
1299
|
-
enumerable: true,
|
1300
|
-
get: function () {
|
1301
|
-
return _tablet.default;
|
1302
|
-
}
|
1303
|
-
});
|
1304
1334
|
Object.defineProperty(exports, "title", {
|
1305
1335
|
enumerable: true,
|
1306
1336
|
get: function () {
|
@@ -1498,6 +1528,16 @@ var _columns = _interopRequireDefault(require("./library/columns"));
|
|
1498
1528
|
|
1499
1529
|
var _comment = _interopRequireDefault(require("./library/comment"));
|
1500
1530
|
|
1531
|
+
var _commentAuthorAvatar = _interopRequireDefault(require("./library/comment-author-avatar"));
|
1532
|
+
|
1533
|
+
var _commentAuthorName = _interopRequireDefault(require("./library/comment-author-name"));
|
1534
|
+
|
1535
|
+
var _commentContent = _interopRequireDefault(require("./library/comment-content"));
|
1536
|
+
|
1537
|
+
var _commentReplyLink = _interopRequireDefault(require("./library/comment-reply-link"));
|
1538
|
+
|
1539
|
+
var _commentEditLink = _interopRequireDefault(require("./library/comment-edit-link"));
|
1540
|
+
|
1501
1541
|
var _cover = _interopRequireDefault(require("./library/cover"));
|
1502
1542
|
|
1503
1543
|
var _create = _interopRequireDefault(require("./library/create"));
|