@wordpress/icons 6.3.1-next.f435e9e01b.0 → 7.0.2-next.a55ed9455a.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 +11 -1
- package/build/index.js +16 -32
- package/build/index.js.map +1 -1
- package/build/library/pin.js +2 -2
- package/build/library/pin.js.map +1 -1
- package/build/library/{align-justify-alt.js → post.js} +4 -6
- package/build/library/post.js.map +1 -0
- package/build/library/remove-submenu.js +25 -0
- package/build/library/remove-submenu.js.map +1 -0
- package/build-module/index.js +2 -4
- package/build-module/index.js.map +1 -1
- package/build-module/library/pin.js +2 -2
- package/build-module/library/pin.js.map +1 -1
- package/build-module/library/post.js +14 -0
- package/build-module/library/post.js.map +1 -0
- package/build-module/library/remove-submenu.js +16 -0
- package/build-module/library/remove-submenu.js.map +1 -0
- package/build-types/index.d.ts +2 -4
- package/build-types/library/post.d.ts +3 -0
- package/build-types/library/post.d.ts.map +1 -0
- package/build-types/library/remove-submenu.d.ts +3 -0
- package/build-types/library/remove-submenu.d.ts.map +1 -0
- package/package.json +4 -4
- package/src/index.js +2 -4
- package/src/library/pin.js +2 -2
- package/src/library/post.js +12 -0
- package/src/library/remove-submenu.js +16 -0
- package/tsconfig.tsbuildinfo +1 -1
- package/build/library/align-justify-alt.js.map +0 -1
- package/build/library/cog-alt.js +0 -25
- package/build/library/cog-alt.js.map +0 -1
- package/build/library/sparkles.js +0 -25
- package/build/library/sparkles.js.map +0 -1
- package/build/library/trash-filled.js +0 -25
- package/build/library/trash-filled.js.map +0 -1
- package/build-module/library/align-justify-alt.js +0 -16
- package/build-module/library/align-justify-alt.js.map +0 -1
- package/build-module/library/cog-alt.js +0 -16
- package/build-module/library/cog-alt.js.map +0 -1
- package/build-module/library/sparkles.js +0 -16
- package/build-module/library/sparkles.js.map +0 -1
- package/build-module/library/trash-filled.js +0 -16
- package/build-module/library/trash-filled.js.map +0 -1
- package/build-types/library/align-justify-alt.d.ts +0 -3
- package/build-types/library/align-justify-alt.d.ts.map +0 -1
- package/build-types/library/cog-alt.d.ts +0 -3
- package/build-types/library/cog-alt.d.ts.map +0 -1
- package/build-types/library/sparkles.d.ts +0 -3
- package/build-types/library/sparkles.d.ts.map +0 -1
- package/build-types/library/trash-filled.d.ts +0 -3
- package/build-types/library/trash-filled.d.ts.map +0 -1
- package/src/library/align-justify-alt.js +0 -16
- package/src/library/cog-alt.js +0 -16
- package/src/library/sparkles.js +0 -15
- package/src/library/trash-filled.js +0 -16
package/CHANGELOG.md
CHANGED
@@ -2,7 +2,17 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
-
##
|
5
|
+
## 7.0.0 (2022-02-23)
|
6
|
+
|
7
|
+
### New Features
|
8
|
+
|
9
|
+
- Added new icon: `post`, and refreshed the existing `pin` icon. ([#39139](https://github.com/WordPress/gutenberg/pull/39139))
|
10
|
+
|
11
|
+
### Breaking Changes
|
12
|
+
|
13
|
+
- Removed icons that were added by mistake: `alignJustifyAlt`, `cogAlt`, `sparkles`, `trashFilled`. ([#38849](https://github.com/WordPress/gutenberg/pull/38849))
|
14
|
+
|
15
|
+
## 6.3.0 (2022-02-10)
|
6
16
|
|
7
17
|
### New Features
|
8
18
|
|
package/build/index.js
CHANGED
@@ -35,12 +35,6 @@ Object.defineProperty(exports, "alignJustify", {
|
|
35
35
|
return _alignJustify.default;
|
36
36
|
}
|
37
37
|
});
|
38
|
-
Object.defineProperty(exports, "alignJustifyAlt", {
|
39
|
-
enumerable: true,
|
40
|
-
get: function () {
|
41
|
-
return _alignJustifyAlt.default;
|
42
|
-
}
|
43
|
-
});
|
44
38
|
Object.defineProperty(exports, "alignLeft", {
|
45
39
|
enumerable: true,
|
46
40
|
get: function () {
|
@@ -275,12 +269,6 @@ Object.defineProperty(exports, "cog", {
|
|
275
269
|
return _cog.default;
|
276
270
|
}
|
277
271
|
});
|
278
|
-
Object.defineProperty(exports, "cogAlt", {
|
279
|
-
enumerable: true,
|
280
|
-
get: function () {
|
281
|
-
return _cogAlt.default;
|
282
|
-
}
|
283
|
-
});
|
284
272
|
Object.defineProperty(exports, "color", {
|
285
273
|
enumerable: true,
|
286
274
|
get: function () {
|
@@ -941,6 +929,12 @@ Object.defineProperty(exports, "positionRight", {
|
|
941
929
|
return _positionRight.default;
|
942
930
|
}
|
943
931
|
});
|
932
|
+
Object.defineProperty(exports, "post", {
|
933
|
+
enumerable: true,
|
934
|
+
get: function () {
|
935
|
+
return _post.default;
|
936
|
+
}
|
937
|
+
});
|
944
938
|
Object.defineProperty(exports, "postAuthor", {
|
945
939
|
enumerable: true,
|
946
940
|
get: function () {
|
@@ -1097,6 +1091,12 @@ Object.defineProperty(exports, "removeBug", {
|
|
1097
1091
|
return _removeBug.default;
|
1098
1092
|
}
|
1099
1093
|
});
|
1094
|
+
Object.defineProperty(exports, "removeSubmenu", {
|
1095
|
+
enumerable: true,
|
1096
|
+
get: function () {
|
1097
|
+
return _removeSubmenu.default;
|
1098
|
+
}
|
1099
|
+
});
|
1100
1100
|
Object.defineProperty(exports, "replace", {
|
1101
1101
|
enumerable: true,
|
1102
1102
|
get: function () {
|
@@ -1193,12 +1193,6 @@ Object.defineProperty(exports, "siteLogo", {
|
|
1193
1193
|
return _siteLogo.default;
|
1194
1194
|
}
|
1195
1195
|
});
|
1196
|
-
Object.defineProperty(exports, "sparkles", {
|
1197
|
-
enumerable: true,
|
1198
|
-
get: function () {
|
1199
|
-
return _sparkles.default;
|
1200
|
-
}
|
1201
|
-
});
|
1202
1196
|
Object.defineProperty(exports, "stack", {
|
1203
1197
|
enumerable: true,
|
1204
1198
|
get: function () {
|
@@ -1367,12 +1361,6 @@ Object.defineProperty(exports, "trash", {
|
|
1367
1361
|
return _trash.default;
|
1368
1362
|
}
|
1369
1363
|
});
|
1370
|
-
Object.defineProperty(exports, "trashFilled", {
|
1371
|
-
enumerable: true,
|
1372
|
-
get: function () {
|
1373
|
-
return _trashFilled.default;
|
1374
|
-
}
|
1375
|
-
});
|
1376
1364
|
Object.defineProperty(exports, "trendingDown", {
|
1377
1365
|
enumerable: true,
|
1378
1366
|
get: function () {
|
@@ -1462,8 +1450,6 @@ var _alignCenter = _interopRequireDefault(require("./library/align-center"));
|
|
1462
1450
|
|
1463
1451
|
var _alignJustify = _interopRequireDefault(require("./library/align-justify"));
|
1464
1452
|
|
1465
|
-
var _alignJustifyAlt = _interopRequireDefault(require("./library/align-justify-alt"));
|
1466
|
-
|
1467
1453
|
var _alignLeft = _interopRequireDefault(require("./library/align-left"));
|
1468
1454
|
|
1469
1455
|
var _alignNone = _interopRequireDefault(require("./library/align-none"));
|
@@ -1542,8 +1528,6 @@ var _code = _interopRequireDefault(require("./library/code"));
|
|
1542
1528
|
|
1543
1529
|
var _cog = _interopRequireDefault(require("./library/cog"));
|
1544
1530
|
|
1545
|
-
var _cogAlt = _interopRequireDefault(require("./library/cog-alt"));
|
1546
|
-
|
1547
1531
|
var _color = _interopRequireDefault(require("./library/color"));
|
1548
1532
|
|
1549
1533
|
var _column = _interopRequireDefault(require("./library/column"));
|
@@ -1758,6 +1742,8 @@ var _plusCircle = _interopRequireDefault(require("./library/plus-circle"));
|
|
1758
1742
|
|
1759
1743
|
var _plus = _interopRequireDefault(require("./library/plus"));
|
1760
1744
|
|
1745
|
+
var _post = _interopRequireDefault(require("./library/post"));
|
1746
|
+
|
1761
1747
|
var _postAuthor = _interopRequireDefault(require("./library/post-author"));
|
1762
1748
|
|
1763
1749
|
var _postCategories = _interopRequireDefault(require("./library/post-categories"));
|
@@ -1812,6 +1798,8 @@ var _redo = _interopRequireDefault(require("./library/redo"));
|
|
1812
1798
|
|
1813
1799
|
var _removeBug = _interopRequireDefault(require("./library/remove-bug"));
|
1814
1800
|
|
1801
|
+
var _removeSubmenu = _interopRequireDefault(require("./library/remove-submenu"));
|
1802
|
+
|
1815
1803
|
var _replace = _interopRequireDefault(require("./library/replace"));
|
1816
1804
|
|
1817
1805
|
var _reset = _interopRequireDefault(require("./library/reset"));
|
@@ -1842,8 +1830,6 @@ var _shortcode = _interopRequireDefault(require("./library/shortcode"));
|
|
1842
1830
|
|
1843
1831
|
var _siteLogo = _interopRequireDefault(require("./library/site-logo"));
|
1844
1832
|
|
1845
|
-
var _sparkles = _interopRequireDefault(require("./library/sparkles"));
|
1846
|
-
|
1847
1833
|
var _stack = _interopRequireDefault(require("./library/stack"));
|
1848
1834
|
|
1849
1835
|
var _starEmpty = _interopRequireDefault(require("./library/star-empty"));
|
@@ -1906,8 +1892,6 @@ var _tool = _interopRequireDefault(require("./library/tool"));
|
|
1906
1892
|
|
1907
1893
|
var _trash = _interopRequireDefault(require("./library/trash"));
|
1908
1894
|
|
1909
|
-
var _trashFilled = _interopRequireDefault(require("./library/trash-filled"));
|
1910
|
-
|
1911
1895
|
var _trendingDown = _interopRequireDefault(require("./library/trending-down"));
|
1912
1896
|
|
1913
1897
|
var _trendingUp = _interopRequireDefault(require("./library/trending-up"));
|
package/build/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["@wordpress/icons/src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AAEA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA","sourcesContent":["export { default as Icon } from './icon';\n\nexport { default as addCard } from './library/add-card';\nexport { default as addSubmenu } from './library/add-submenu';\nexport { default as alignCenter } from './library/align-center';\nexport { default as alignJustify } from './library/align-justify';\nexport { default as alignJustifyAlt } from './library/align-justify-alt';\nexport { default as alignLeft } from './library/align-left';\nexport { default as alignNone } from './library/align-none';\nexport { default as alignRight } from './library/align-right';\nexport { default as archive } from './library/archive';\nexport { default as archiveTitle } from './library/archive-title';\nexport { default as arrowDown } from './library/arrow-down';\nexport { default as arrowLeft } from './library/arrow-left';\nexport { default as arrowRight } from './library/arrow-right';\nexport { default as arrowUp } from './library/arrow-up';\nexport { default as atSymbol } from './library/at-symbol';\nexport { default as aspectRatio } from './library/aspect-ratio';\nexport { default as audio } from './library/audio';\nexport { default as backup } from './library/backup';\nexport { default as blockDefault } from './library/block-default';\nexport { default as blockTable } from './library/block-table';\nexport { default as box } from './library/box';\nexport { default as brush } from './library/brush';\nexport { default as bug } from './library/bug';\nexport { default as button } from './library/button';\nexport { default as buttons } from './library/buttons';\nexport { default as calendar } from './library/calendar';\nexport { default as cancelCircleFilled } from './library/cancel-circle-filled';\nexport { default as capturePhoto } from './library/capture-photo';\nexport { default as captureVideo } from './library/capture-video';\nexport { default as category } from './library/category';\nexport { default as chartBar } from './library/chart-bar';\nexport { default as check } from './library/check';\nexport { default as chevronDown } from './library/chevron-down';\nexport { default as chevronLeft } from './library/chevron-left';\nexport { default as chevronRight } from './library/chevron-right';\nexport { default as chevronRightSmall } from './library/chevron-right-small';\nexport { default as chevronUp } from './library/chevron-up';\nexport { default as classic } from './library/classic';\nexport { default as close } from './library/close';\nexport { default as closeSmall } from './library/close-small';\nexport { default as cloudUpload } from './library/cloud-upload';\nexport { default as cloud } from './library/cloud';\nexport { default as code } from './library/code';\nexport { default as cog } from './library/cog';\nexport { default as cogAlt } from './library/cog-alt';\nexport { default as color } from './library/color';\nexport { default as column } from './library/column';\nexport { default as columns } from './library/columns';\nexport { default as comment } from './library/comment';\nexport { default as commentAuthorAvatar } from './library/comment-author-avatar';\nexport { default as commentAuthorName } from './library/comment-author-name';\nexport { default as commentContent } from './library/comment-content';\nexport { default as commentReplyLink } from './library/comment-reply-link';\nexport { default as commentEditLink } from './library/comment-edit-link';\nexport { default as cover } from './library/cover';\nexport { default as create } from './library/create';\nexport { default as crop } from './library/crop';\nexport { default as currencyDollar } from './library/currency-dollar';\nexport { default as currencyEuro } from './library/currency-euro';\nexport { default as currencyPound } from './library/currency-pound';\nexport { default as customPostType } from './library/custom-post-type';\nexport { default as desktop } from './library/desktop';\nexport { default as dragHandle } from './library/drag-handle';\nexport { default as download } from './library/download';\nexport { default as edit } from './library/edit';\nexport { default as external } from './library/external';\nexport { default as file } from './library/file';\nexport { default as flipHorizontal } from './library/flip-horizontal';\nexport { default as flipVertical } from './library/flip-vertical';\nexport { default as formatBold } from './library/format-bold';\nexport { default as formatCapitalize } from './library/format-capitalize';\nexport { default as formatIndent } from './library/format-indent';\nexport { default as formatIndentRTL } from './library/format-indent-rtl';\nexport { default as formatItalic } from './library/format-italic';\nexport { default as formatListBullets } from './library/format-list-bullets';\nexport { default as formatListBulletsRTL } from './library/format-list-bullets-rtl';\nexport { default as formatListNumbered } from './library/format-list-numbered';\nexport { default as formatListNumberedRTL } from './library/format-list-numbered-rtl';\nexport { default as formatLtr } from './library/format-ltr';\nexport { default as formatLowercase } from './library/format-lowercase';\nexport { default as formatOutdent } from './library/format-outdent';\nexport { default as formatOutdentRTL } from './library/format-outdent-rtl';\nexport { default as formatRtl } from './library/format-rtl';\nexport { default as formatStrikethrough } from './library/format-strikethrough';\nexport { default as formatUnderline } from './library/format-underline';\nexport { default as formatUppercase } from './library/format-uppercase';\nexport { default as fullscreen } from './library/fullscreen';\nexport { default as gallery } from './library/gallery';\nexport { default as globe } from './library/globe';\nexport { default as grid } from './library/grid';\nexport { default as group } from './library/group';\nexport { default as handle } from './library/handle';\nexport { default as heading } from './library/heading';\nexport { default as help } from './library/help';\nexport { default as helpFilled } from './library/help-filled';\nexport { default as inbox } from './library/inbox';\nexport { default as institution } from './library/institution';\nexport { default as home } from './library/home';\nexport { default as html } from './library/html';\nexport { default as image } from './library/image';\nexport { default as info } from './library/info';\nexport { default as insertAfter } from './library/insert-after';\nexport { default as insertBefore } from './library/insert-before';\nexport { default as justifyLeft } from './library/justify-left';\nexport { default as justifyCenter } from './library/justify-center';\nexport { default as justifyRight } from './library/justify-right';\nexport { default as justifySpaceBetween } from './library/justify-space-between';\nexport { default as key } from './library/key';\nexport { default as keyboardClose } from './library/keyboard-close';\nexport { default as keyboardReturn } from './library/keyboard-return';\nexport { default as layout } from './library/layout';\nexport { default as lifesaver } from './library/lifesaver';\nexport { default as lineDashed } from './library/line-dashed';\nexport { default as lineDotted } from './library/line-dotted';\nexport { default as lineSolid } from './library/line-solid';\nexport { default as link } from './library/link';\nexport { default as linkOff } from './library/link-off';\nexport { default as list } from './library/list';\nexport { default as listView } from './library/list-view';\nexport { default as lock } from './library/lock';\nexport { default as login } from './library/login';\nexport { default as loop } from './library/loop';\nexport { default as mapMarker } from './library/map-marker';\nexport { default as media } from './library/media';\nexport { default as mediaAndText } from './library/media-and-text';\nexport { default as megaphone } from './library/megaphone';\nexport { default as menu } from './library/menu';\nexport { default as mobile } from './library/mobile';\nexport { default as more } from './library/more';\nexport { default as moreHorizontal } from './library/more-horizontal';\nexport { default as moreHorizontalMobile } from './library/more-horizontal-mobile';\nexport { default as moreVertical } from './library/more-vertical';\nexport { default as moveTo } from './library/move-to';\nexport { default as navigation } from './library/navigation';\nexport { default as overlayText } from './library/overlay-text';\nexport { default as pageBreak } from './library/page-break';\nexport { default as customLink } from './library/custom-link';\nexport { default as page } from './library/page';\nexport { default as pages } from './library/pages';\nexport { default as paragraph } from './library/paragraph';\nexport { default as payment } from './library/payment';\nexport { default as percent } from './library/percent';\nexport { default as positionCenter } from './library/position-center';\nexport { default as positionLeft } from './library/position-left';\nexport { default as positionRight } from './library/position-right';\nexport { default as pencil } from './library/pencil';\nexport { default as people } from './library/people';\nexport { default as pin } from './library/pin';\nexport { default as plugins } from './library/plugins';\nexport { default as plusCircleFilled } from './library/plus-circle-filled';\nexport { default as plusCircle } from './library/plus-circle';\nexport { default as plus } from './library/plus';\nexport { default as postAuthor } from './library/post-author';\nexport { default as postCategories } from './library/post-categories';\nexport { default as postContent } from './library/post-content';\nexport { default as postComments } from './library/post-comments';\nexport { default as postCommentsCount } from './library/post-comments-count';\nexport { default as postCommentsForm } from './library/post-comments-form';\nexport { default as postDate } from './library/post-date';\nexport { default as postExcerpt } from './library/post-excerpt';\nexport { default as postFeaturedImage } from './library/post-featured-image';\nexport { default as postList } from './library/post-list';\nexport { default as postTitle } from './library/post-title';\nexport { default as postTerms } from './library/post-terms';\nexport { default as previous } from './library/previous';\nexport { default as next } from './library/next';\nexport { default as preformatted } from './library/preformatted';\nexport { default as pullLeft } from './library/pull-left';\nexport { default as pullRight } from './library/pull-right';\nexport { default as pullquote } from './library/pullquote';\nexport { default as queryPagination } from './library/query-pagination';\nexport { default as queryPaginationNext } from './library/query-pagination-next';\nexport { default as queryPaginationNumbers } from './library/query-pagination-numbers';\nexport { default as queryPaginationPrevious } from './library/query-pagination-previous';\nexport { default as queryTitle } from './library/query-title';\nexport { default as quote } from './library/quote';\nexport { default as receipt } from './library/receipt';\nexport { default as redo } from './library/redo';\nexport { default as removeBug } from './library/remove-bug';\nexport { default as replace } from './library/replace';\nexport { default as reset } from './library/reset';\nexport { default as resizeCornerNE } from './library/resize-corner-n-e';\nexport { default as reusableBlock } from './library/reusable-block';\nexport { default as symbol } from './library/symbol';\nexport { default as rotateLeft } from './library/rotate-left';\nexport { default as rotateRight } from './library/rotate-right';\nexport { default as rss } from './library/rss';\nexport { default as search } from './library/search';\nexport { default as separator } from './library/separator';\nexport { default as settings } from './library/settings';\nexport { default as share } from './library/share';\nexport { default as shield } from './library/shield';\nexport { default as shortcode } from './library/shortcode';\nexport { default as siteLogo } from './library/site-logo';\nexport { default as sparkles } from './library/sparkles';\nexport { default as stack } from './library/stack';\nexport { default as starEmpty } from './library/star-empty';\nexport { default as starFilled } from './library/star-filled';\nexport { default as starHalf } from './library/star-half';\nexport { default as store } from './library/store';\nexport { default as stretchFullWidth } from './library/stretch-full-width';\nexport { default as styles } from './library/styles';\nexport { default as shipping } from './library/shipping';\nexport { default as stretchWide } from './library/stretch-wide';\nexport { default as subscript } from './library/subscript';\nexport { default as superscript } from './library/superscript';\nexport { default as swatch } from './library/swatch';\nexport { default as tableColumnAfter } from './library/table-column-after';\nexport { default as tableColumnBefore } from './library/table-column-before';\nexport { default as tableColumnDelete } from './library/table-column-delete';\nexport { default as tableRowAfter } from './library/table-row-after';\nexport { default as tableRowBefore } from './library/table-row-before';\nexport { default as tableRowDelete } from './library/table-row-delete';\nexport { default as table } from './library/table';\nexport { default as tag } from './library/tag';\nexport { default as symbolFilled } from './library/symbol-filled';\nexport { default as termDescription } from './library/term-description';\nexport { default as footer } from './library/footer';\nexport { default as header } from './library/header';\nexport { default as sidebar } from './library/sidebar';\nexport { default as textColor } from './library/text-color';\nexport { default as tablet } from './library/tablet';\nexport { default as title } from './library/title';\nexport { default as tip } from './library/tip';\nexport { default as tool } from './library/tool';\nexport { default as trash } from './library/trash';\nexport { default as trashFilled } from './library/trash-filled';\nexport { default as trendingDown } from './library/trending-down';\nexport { default as trendingUp } from './library/trending-up';\nexport { default as typography } from './library/typography';\nexport { default as undo } from './library/undo';\nexport { default as ungroup } from './library/ungroup';\nexport { default as unlock } from './library/unlock';\nexport { default as update } from './library/update';\nexport { default as upload } from './library/upload';\nexport { default as verse } from './library/verse';\nexport { default as video } from './library/video';\nexport { default as warning } from './library/warning';\nexport { default as widget } from './library/widget';\nexport { default as wordpress } from './library/wordpress';\n"]}
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AAEA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA","sourcesContent":["export { default as Icon } from './icon';\n\nexport { default as addCard } from './library/add-card';\nexport { default as addSubmenu } from './library/add-submenu';\nexport { default as alignCenter } from './library/align-center';\nexport { default as alignJustify } from './library/align-justify';\nexport { default as alignLeft } from './library/align-left';\nexport { default as alignNone } from './library/align-none';\nexport { default as alignRight } from './library/align-right';\nexport { default as archive } from './library/archive';\nexport { default as archiveTitle } from './library/archive-title';\nexport { default as arrowDown } from './library/arrow-down';\nexport { default as arrowLeft } from './library/arrow-left';\nexport { default as arrowRight } from './library/arrow-right';\nexport { default as arrowUp } from './library/arrow-up';\nexport { default as atSymbol } from './library/at-symbol';\nexport { default as aspectRatio } from './library/aspect-ratio';\nexport { default as audio } from './library/audio';\nexport { default as backup } from './library/backup';\nexport { default as blockDefault } from './library/block-default';\nexport { default as blockTable } from './library/block-table';\nexport { default as box } from './library/box';\nexport { default as brush } from './library/brush';\nexport { default as bug } from './library/bug';\nexport { default as button } from './library/button';\nexport { default as buttons } from './library/buttons';\nexport { default as calendar } from './library/calendar';\nexport { default as cancelCircleFilled } from './library/cancel-circle-filled';\nexport { default as capturePhoto } from './library/capture-photo';\nexport { default as captureVideo } from './library/capture-video';\nexport { default as category } from './library/category';\nexport { default as chartBar } from './library/chart-bar';\nexport { default as check } from './library/check';\nexport { default as chevronDown } from './library/chevron-down';\nexport { default as chevronLeft } from './library/chevron-left';\nexport { default as chevronRight } from './library/chevron-right';\nexport { default as chevronRightSmall } from './library/chevron-right-small';\nexport { default as chevronUp } from './library/chevron-up';\nexport { default as classic } from './library/classic';\nexport { default as close } from './library/close';\nexport { default as closeSmall } from './library/close-small';\nexport { default as cloudUpload } from './library/cloud-upload';\nexport { default as cloud } from './library/cloud';\nexport { default as code } from './library/code';\nexport { default as cog } from './library/cog';\nexport { default as color } from './library/color';\nexport { default as column } from './library/column';\nexport { default as columns } from './library/columns';\nexport { default as comment } from './library/comment';\nexport { default as commentAuthorAvatar } from './library/comment-author-avatar';\nexport { default as commentAuthorName } from './library/comment-author-name';\nexport { default as commentContent } from './library/comment-content';\nexport { default as commentReplyLink } from './library/comment-reply-link';\nexport { default as commentEditLink } from './library/comment-edit-link';\nexport { default as cover } from './library/cover';\nexport { default as create } from './library/create';\nexport { default as crop } from './library/crop';\nexport { default as currencyDollar } from './library/currency-dollar';\nexport { default as currencyEuro } from './library/currency-euro';\nexport { default as currencyPound } from './library/currency-pound';\nexport { default as customPostType } from './library/custom-post-type';\nexport { default as desktop } from './library/desktop';\nexport { default as dragHandle } from './library/drag-handle';\nexport { default as download } from './library/download';\nexport { default as edit } from './library/edit';\nexport { default as external } from './library/external';\nexport { default as file } from './library/file';\nexport { default as flipHorizontal } from './library/flip-horizontal';\nexport { default as flipVertical } from './library/flip-vertical';\nexport { default as formatBold } from './library/format-bold';\nexport { default as formatCapitalize } from './library/format-capitalize';\nexport { default as formatIndent } from './library/format-indent';\nexport { default as formatIndentRTL } from './library/format-indent-rtl';\nexport { default as formatItalic } from './library/format-italic';\nexport { default as formatListBullets } from './library/format-list-bullets';\nexport { default as formatListBulletsRTL } from './library/format-list-bullets-rtl';\nexport { default as formatListNumbered } from './library/format-list-numbered';\nexport { default as formatListNumberedRTL } from './library/format-list-numbered-rtl';\nexport { default as formatLtr } from './library/format-ltr';\nexport { default as formatLowercase } from './library/format-lowercase';\nexport { default as formatOutdent } from './library/format-outdent';\nexport { default as formatOutdentRTL } from './library/format-outdent-rtl';\nexport { default as formatRtl } from './library/format-rtl';\nexport { default as formatStrikethrough } from './library/format-strikethrough';\nexport { default as formatUnderline } from './library/format-underline';\nexport { default as formatUppercase } from './library/format-uppercase';\nexport { default as fullscreen } from './library/fullscreen';\nexport { default as gallery } from './library/gallery';\nexport { default as globe } from './library/globe';\nexport { default as grid } from './library/grid';\nexport { default as group } from './library/group';\nexport { default as handle } from './library/handle';\nexport { default as heading } from './library/heading';\nexport { default as help } from './library/help';\nexport { default as helpFilled } from './library/help-filled';\nexport { default as inbox } from './library/inbox';\nexport { default as institution } from './library/institution';\nexport { default as home } from './library/home';\nexport { default as html } from './library/html';\nexport { default as image } from './library/image';\nexport { default as info } from './library/info';\nexport { default as insertAfter } from './library/insert-after';\nexport { default as insertBefore } from './library/insert-before';\nexport { default as justifyLeft } from './library/justify-left';\nexport { default as justifyCenter } from './library/justify-center';\nexport { default as justifyRight } from './library/justify-right';\nexport { default as justifySpaceBetween } from './library/justify-space-between';\nexport { default as key } from './library/key';\nexport { default as keyboardClose } from './library/keyboard-close';\nexport { default as keyboardReturn } from './library/keyboard-return';\nexport { default as layout } from './library/layout';\nexport { default as lifesaver } from './library/lifesaver';\nexport { default as lineDashed } from './library/line-dashed';\nexport { default as lineDotted } from './library/line-dotted';\nexport { default as lineSolid } from './library/line-solid';\nexport { default as link } from './library/link';\nexport { default as linkOff } from './library/link-off';\nexport { default as list } from './library/list';\nexport { default as listView } from './library/list-view';\nexport { default as lock } from './library/lock';\nexport { default as login } from './library/login';\nexport { default as loop } from './library/loop';\nexport { default as mapMarker } from './library/map-marker';\nexport { default as media } from './library/media';\nexport { default as mediaAndText } from './library/media-and-text';\nexport { default as megaphone } from './library/megaphone';\nexport { default as menu } from './library/menu';\nexport { default as mobile } from './library/mobile';\nexport { default as more } from './library/more';\nexport { default as moreHorizontal } from './library/more-horizontal';\nexport { default as moreHorizontalMobile } from './library/more-horizontal-mobile';\nexport { default as moreVertical } from './library/more-vertical';\nexport { default as moveTo } from './library/move-to';\nexport { default as navigation } from './library/navigation';\nexport { default as overlayText } from './library/overlay-text';\nexport { default as pageBreak } from './library/page-break';\nexport { default as customLink } from './library/custom-link';\nexport { default as page } from './library/page';\nexport { default as pages } from './library/pages';\nexport { default as paragraph } from './library/paragraph';\nexport { default as payment } from './library/payment';\nexport { default as percent } from './library/percent';\nexport { default as positionCenter } from './library/position-center';\nexport { default as positionLeft } from './library/position-left';\nexport { default as positionRight } from './library/position-right';\nexport { default as pencil } from './library/pencil';\nexport { default as people } from './library/people';\nexport { default as pin } from './library/pin';\nexport { default as plugins } from './library/plugins';\nexport { default as plusCircleFilled } from './library/plus-circle-filled';\nexport { default as plusCircle } from './library/plus-circle';\nexport { default as plus } from './library/plus';\nexport { default as post } from './library/post';\nexport { default as postAuthor } from './library/post-author';\nexport { default as postCategories } from './library/post-categories';\nexport { default as postContent } from './library/post-content';\nexport { default as postComments } from './library/post-comments';\nexport { default as postCommentsCount } from './library/post-comments-count';\nexport { default as postCommentsForm } from './library/post-comments-form';\nexport { default as postDate } from './library/post-date';\nexport { default as postExcerpt } from './library/post-excerpt';\nexport { default as postFeaturedImage } from './library/post-featured-image';\nexport { default as postList } from './library/post-list';\nexport { default as postTitle } from './library/post-title';\nexport { default as postTerms } from './library/post-terms';\nexport { default as previous } from './library/previous';\nexport { default as next } from './library/next';\nexport { default as preformatted } from './library/preformatted';\nexport { default as pullLeft } from './library/pull-left';\nexport { default as pullRight } from './library/pull-right';\nexport { default as pullquote } from './library/pullquote';\nexport { default as queryPagination } from './library/query-pagination';\nexport { default as queryPaginationNext } from './library/query-pagination-next';\nexport { default as queryPaginationNumbers } from './library/query-pagination-numbers';\nexport { default as queryPaginationPrevious } from './library/query-pagination-previous';\nexport { default as queryTitle } from './library/query-title';\nexport { default as quote } from './library/quote';\nexport { default as receipt } from './library/receipt';\nexport { default as redo } from './library/redo';\nexport { default as removeBug } from './library/remove-bug';\nexport { default as removeSubmenu } from './library/remove-submenu';\nexport { default as replace } from './library/replace';\nexport { default as reset } from './library/reset';\nexport { default as resizeCornerNE } from './library/resize-corner-n-e';\nexport { default as reusableBlock } from './library/reusable-block';\nexport { default as symbol } from './library/symbol';\nexport { default as rotateLeft } from './library/rotate-left';\nexport { default as rotateRight } from './library/rotate-right';\nexport { default as rss } from './library/rss';\nexport { default as search } from './library/search';\nexport { default as separator } from './library/separator';\nexport { default as settings } from './library/settings';\nexport { default as share } from './library/share';\nexport { default as shield } from './library/shield';\nexport { default as shortcode } from './library/shortcode';\nexport { default as siteLogo } from './library/site-logo';\nexport { default as stack } from './library/stack';\nexport { default as starEmpty } from './library/star-empty';\nexport { default as starFilled } from './library/star-filled';\nexport { default as starHalf } from './library/star-half';\nexport { default as store } from './library/store';\nexport { default as stretchFullWidth } from './library/stretch-full-width';\nexport { default as styles } from './library/styles';\nexport { default as shipping } from './library/shipping';\nexport { default as stretchWide } from './library/stretch-wide';\nexport { default as subscript } from './library/subscript';\nexport { default as superscript } from './library/superscript';\nexport { default as swatch } from './library/swatch';\nexport { default as tableColumnAfter } from './library/table-column-after';\nexport { default as tableColumnBefore } from './library/table-column-before';\nexport { default as tableColumnDelete } from './library/table-column-delete';\nexport { default as tableRowAfter } from './library/table-row-after';\nexport { default as tableRowBefore } from './library/table-row-before';\nexport { default as tableRowDelete } from './library/table-row-delete';\nexport { default as table } from './library/table';\nexport { default as tag } from './library/tag';\nexport { default as symbolFilled } from './library/symbol-filled';\nexport { default as termDescription } from './library/term-description';\nexport { default as footer } from './library/footer';\nexport { default as header } from './library/header';\nexport { default as sidebar } from './library/sidebar';\nexport { default as textColor } from './library/text-color';\nexport { default as tablet } from './library/tablet';\nexport { default as title } from './library/title';\nexport { default as tip } from './library/tip';\nexport { default as tool } from './library/tool';\nexport { default as trash } from './library/trash';\nexport { default as trendingDown } from './library/trending-down';\nexport { default as trendingUp } from './library/trending-up';\nexport { default as typography } from './library/typography';\nexport { default as undo } from './library/undo';\nexport { default as ungroup } from './library/ungroup';\nexport { default as unlock } from './library/unlock';\nexport { default as update } from './library/update';\nexport { default as upload } from './library/upload';\nexport { default as verse } from './library/verse';\nexport { default as video } from './library/video';\nexport { default as warning } from './library/warning';\nexport { default as widget } from './library/widget';\nexport { default as wordpress } from './library/wordpress';\n"]}
|
package/build/library/pin.js
CHANGED
@@ -14,9 +14,9 @@ var _primitives = require("@wordpress/primitives");
|
|
14
14
|
*/
|
15
15
|
const pin = (0, _element.createElement)(_primitives.SVG, {
|
16
16
|
xmlns: "http://www.w3.org/2000/svg",
|
17
|
-
viewBox: "
|
17
|
+
viewBox: "0 0 24 24"
|
18
18
|
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
-
d: "
|
19
|
+
d: "m21.5 9.1-6.6-6.6-4.2 5.6c-1.2-.1-2.4.1-3.6.7-.1 0-.1.1-.2.1-.5.3-.9.6-1.2.9l3.7 3.7-5.7 5.7v1.1h1.1l5.7-5.7 3.7 3.7c.4-.4.7-.8.9-1.2.1-.1.1-.2.2-.3.6-1.1.8-2.4.6-3.6l5.6-4.1zm-7.3 3.5.1.9c.1.9 0 1.8-.4 2.6l-6-6c.8-.4 1.7-.5 2.6-.4l.9.1L15 4.9 19.1 9l-4.9 3.6z"
|
20
20
|
}));
|
21
21
|
var _default = pin;
|
22
22
|
exports.default = _default;
|
package/build/library/pin.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["@wordpress/icons/src/library/pin.js"],"names":["pin"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,GAAG,GACR,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,G","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst pin = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/pin.js"],"names":["pin"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,GAAG,GACR,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,G","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst pin = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"m21.5 9.1-6.6-6.6-4.2 5.6c-1.2-.1-2.4.1-3.6.7-.1 0-.1.1-.2.1-.5.3-.9.6-1.2.9l3.7 3.7-5.7 5.7v1.1h1.1l5.7-5.7 3.7 3.7c.4-.4.7-.8.9-1.2.1-.1.1-.2.2-.3.6-1.1.8-2.4.6-3.6l5.6-4.1zm-7.3 3.5.1.9c.1.9 0 1.8-.4 2.6l-6-6c.8-.4 1.7-.5 2.6-.4l.9.1L15 4.9 19.1 9l-4.9 3.6z\" />\n\t</SVG>\n);\n\nexport default pin;\n"]}
|
@@ -12,14 +12,12 @@ var _primitives = require("@wordpress/primitives");
|
|
12
12
|
/**
|
13
13
|
* WordPress dependencies
|
14
14
|
*/
|
15
|
-
const
|
15
|
+
const post = (0, _element.createElement)(_primitives.SVG, {
|
16
16
|
xmlns: "http://www.w3.org/2000/svg",
|
17
17
|
viewBox: "0 0 24 24"
|
18
18
|
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
-
|
20
|
-
fillRule: "evenodd",
|
21
|
-
d: "M4 5h16v2H4V5zm0 4v2h16V9H4zm0 4h16v2H4v-2zm16 6H4v-2h16v2z"
|
19
|
+
d: "m7.3 9.7 1.4 1.4c.2-.2.3-.3.4-.5 0 0 0-.1.1-.1.3-.5.4-1.1.3-1.6L12 7 9 4 7.2 6.5c-.6-.1-1.1 0-1.6.3 0 0-.1 0-.1.1-.3.1-.4.2-.6.4l1.4 1.4L4 11v1h1l2.3-2.3zM4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4z"
|
22
20
|
}));
|
23
|
-
var _default =
|
21
|
+
var _default = post;
|
24
22
|
exports.default = _default;
|
25
|
-
//# sourceMappingURL=
|
23
|
+
//# sourceMappingURL=post.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/post.js"],"names":["post"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,IAAI,GACT,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,I","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst post = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"m7.3 9.7 1.4 1.4c.2-.2.3-.3.4-.5 0 0 0-.1.1-.1.3-.5.4-1.1.3-1.6L12 7 9 4 7.2 6.5c-.6-.1-1.1 0-1.6.3 0 0-.1 0-.1.1-.3.1-.4.2-.6.4l1.4 1.4L4 11v1h1l2.3-2.3zM4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4z\" />\n\t</SVG>\n);\n\nexport default post;\n"]}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
|
8
|
+
var _element = require("@wordpress/element");
|
9
|
+
|
10
|
+
var _primitives = require("@wordpress/primitives");
|
11
|
+
|
12
|
+
/**
|
13
|
+
* WordPress dependencies
|
14
|
+
*/
|
15
|
+
const removeSubmenu = (0, _element.createElement)(_primitives.SVG, {
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
17
|
+
viewBox: "0 0 24 24"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
fillRule: "evenodd",
|
20
|
+
clipRule: "evenodd",
|
21
|
+
d: "m13.955 20.748 8-17.5-.91-.416L19.597 6H13.5v1.5h5.411l-1.6 3.5H13.5v1.5h3.126l-1.6 3.5H13.5l.028 1.5h.812l-1.295 2.832.91.416ZM17.675 16l-.686 1.5h4.539L21.5 16h-3.825Zm2.286-5-.686 1.5H21.5V11h-1.54ZM2 12c0 3.58 2.42 5.5 6 5.5h.5V19l3-2.5-3-2.5v2H8c-2.48 0-4.5-1.52-4.5-4S5.52 7.5 8 7.5h3.5V6H8c-3.58 0-6 2.42-6 6Z"
|
22
|
+
}));
|
23
|
+
var _default = removeSubmenu;
|
24
|
+
exports.default = _default;
|
25
|
+
//# sourceMappingURL=remove-submenu.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/remove-submenu.js"],"names":["removeSubmenu"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,aAAa,GAClB,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AACC,EAAA,QAAQ,EAAC,SADV;AAEC,EAAA,QAAQ,EAAC,SAFV;AAGC,EAAA,CAAC,EAAC;AAHH,EADD,CADD;eAUeA,a","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst removeSubmenu = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\tfillRule=\"evenodd\"\n\t\t\tclipRule=\"evenodd\"\n\t\t\td=\"m13.955 20.748 8-17.5-.91-.416L19.597 6H13.5v1.5h5.411l-1.6 3.5H13.5v1.5h3.126l-1.6 3.5H13.5l.028 1.5h.812l-1.295 2.832.91.416ZM17.675 16l-.686 1.5h4.539L21.5 16h-3.825Zm2.286-5-.686 1.5H21.5V11h-1.54ZM2 12c0 3.58 2.42 5.5 6 5.5h.5V19l3-2.5-3-2.5v2H8c-2.48 0-4.5-1.52-4.5-4S5.52 7.5 8 7.5h3.5V6H8c-3.58 0-6 2.42-6 6Z\"\n\t\t/>\n\t</SVG>\n);\n\nexport default removeSubmenu;\n"]}
|
package/build-module/index.js
CHANGED
@@ -3,7 +3,6 @@ export { default as addCard } from './library/add-card';
|
|
3
3
|
export { default as addSubmenu } from './library/add-submenu';
|
4
4
|
export { default as alignCenter } from './library/align-center';
|
5
5
|
export { default as alignJustify } from './library/align-justify';
|
6
|
-
export { default as alignJustifyAlt } from './library/align-justify-alt';
|
7
6
|
export { default as alignLeft } from './library/align-left';
|
8
7
|
export { default as alignNone } from './library/align-none';
|
9
8
|
export { default as alignRight } from './library/align-right';
|
@@ -43,7 +42,6 @@ export { default as cloudUpload } from './library/cloud-upload';
|
|
43
42
|
export { default as cloud } from './library/cloud';
|
44
43
|
export { default as code } from './library/code';
|
45
44
|
export { default as cog } from './library/cog';
|
46
|
-
export { default as cogAlt } from './library/cog-alt';
|
47
45
|
export { default as color } from './library/color';
|
48
46
|
export { default as column } from './library/column';
|
49
47
|
export { default as columns } from './library/columns';
|
@@ -151,6 +149,7 @@ export { default as plugins } from './library/plugins';
|
|
151
149
|
export { default as plusCircleFilled } from './library/plus-circle-filled';
|
152
150
|
export { default as plusCircle } from './library/plus-circle';
|
153
151
|
export { default as plus } from './library/plus';
|
152
|
+
export { default as post } from './library/post';
|
154
153
|
export { default as postAuthor } from './library/post-author';
|
155
154
|
export { default as postCategories } from './library/post-categories';
|
156
155
|
export { default as postContent } from './library/post-content';
|
@@ -178,6 +177,7 @@ export { default as quote } from './library/quote';
|
|
178
177
|
export { default as receipt } from './library/receipt';
|
179
178
|
export { default as redo } from './library/redo';
|
180
179
|
export { default as removeBug } from './library/remove-bug';
|
180
|
+
export { default as removeSubmenu } from './library/remove-submenu';
|
181
181
|
export { default as replace } from './library/replace';
|
182
182
|
export { default as reset } from './library/reset';
|
183
183
|
export { default as resizeCornerNE } from './library/resize-corner-n-e';
|
@@ -193,7 +193,6 @@ export { default as share } from './library/share';
|
|
193
193
|
export { default as shield } from './library/shield';
|
194
194
|
export { default as shortcode } from './library/shortcode';
|
195
195
|
export { default as siteLogo } from './library/site-logo';
|
196
|
-
export { default as sparkles } from './library/sparkles';
|
197
196
|
export { default as stack } from './library/stack';
|
198
197
|
export { default as starEmpty } from './library/star-empty';
|
199
198
|
export { default as starFilled } from './library/star-filled';
|
@@ -225,7 +224,6 @@ export { default as title } from './library/title';
|
|
225
224
|
export { default as tip } from './library/tip';
|
226
225
|
export { default as tool } from './library/tool';
|
227
226
|
export { default as trash } from './library/trash';
|
228
|
-
export { default as trashFilled } from './library/trash-filled';
|
229
227
|
export { default as trendingDown } from './library/trending-down';
|
230
228
|
export { default as trendingUp } from './library/trending-up';
|
231
229
|
export { default as typography } from './library/typography';
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["@wordpress/icons/src/index.js"],"names":["default","Icon","addCard","addSubmenu","alignCenter","alignJustify","alignJustifyAlt","alignLeft","alignNone","alignRight","archive","archiveTitle","arrowDown","arrowLeft","arrowRight","arrowUp","atSymbol","aspectRatio","audio","backup","blockDefault","blockTable","box","brush","bug","button","buttons","calendar","cancelCircleFilled","capturePhoto","captureVideo","category","chartBar","check","chevronDown","chevronLeft","chevronRight","chevronRightSmall","chevronUp","classic","close","closeSmall","cloudUpload","cloud","code","cog","cogAlt","color","column","columns","comment","commentAuthorAvatar","commentAuthorName","commentContent","commentReplyLink","commentEditLink","cover","create","crop","currencyDollar","currencyEuro","currencyPound","customPostType","desktop","dragHandle","download","edit","external","file","flipHorizontal","flipVertical","formatBold","formatCapitalize","formatIndent","formatIndentRTL","formatItalic","formatListBullets","formatListBulletsRTL","formatListNumbered","formatListNumberedRTL","formatLtr","formatLowercase","formatOutdent","formatOutdentRTL","formatRtl","formatStrikethrough","formatUnderline","formatUppercase","fullscreen","gallery","globe","grid","group","handle","heading","help","helpFilled","inbox","institution","home","html","image","info","insertAfter","insertBefore","justifyLeft","justifyCenter","justifyRight","justifySpaceBetween","key","keyboardClose","keyboardReturn","layout","lifesaver","lineDashed","lineDotted","lineSolid","link","linkOff","list","listView","lock","login","loop","mapMarker","media","mediaAndText","megaphone","menu","mobile","more","moreHorizontal","moreHorizontalMobile","moreVertical","moveTo","navigation","overlayText","pageBreak","customLink","page","pages","paragraph","payment","percent","positionCenter","positionLeft","positionRight","pencil","people","pin","plugins","plusCircleFilled","plusCircle","plus","postAuthor","postCategories","postContent","postComments","postCommentsCount","postCommentsForm","postDate","postExcerpt","postFeaturedImage","postList","postTitle","postTerms","previous","next","preformatted","pullLeft","pullRight","pullquote","queryPagination","queryPaginationNext","queryPaginationNumbers","queryPaginationPrevious","queryTitle","quote","receipt","redo","removeBug","replace","reset","resizeCornerNE","reusableBlock","symbol","rotateLeft","rotateRight","rss","search","separator","settings","share","shield","shortcode","siteLogo","sparkles","stack","starEmpty","starFilled","starHalf","store","stretchFullWidth","styles","shipping","stretchWide","subscript","superscript","swatch","tableColumnAfter","tableColumnBefore","tableColumnDelete","tableRowAfter","tableRowBefore","tableRowDelete","table","tag","symbolFilled","termDescription","footer","header","sidebar","textColor","tablet","title","tip","tool","trash","trashFilled","trendingDown","trendingUp","typography","undo","ungroup","unlock","update","upload","verse","video","warning","widget","wordpress"],"mappings":"AAAA,SAASA,OAAO,IAAIC,IAApB,QAAgC,QAAhC;AAEA,SAASD,OAAO,IAAIE,OAApB,QAAmC,oBAAnC;AACA,SAASF,OAAO,IAAIG,UAApB,QAAsC,uBAAtC;AACA,SAASH,OAAO,IAAII,WAApB,QAAuC,wBAAvC;AACA,SAASJ,OAAO,IAAIK,YAApB,QAAwC,yBAAxC;AACA,SAASL,OAAO,IAAIM,eAApB,QAA2C,6BAA3C;AACA,SAASN,OAAO,IAAIO,SAApB,QAAqC,sBAArC;AACA,SAASP,OAAO,IAAIQ,SAApB,QAAqC,sBAArC;AACA,SAASR,OAAO,IAAIS,UAApB,QAAsC,uBAAtC;AACA,SAAST,OAAO,IAAIU,OAApB,QAAmC,mBAAnC;AACA,SAASV,OAAO,IAAIW,YAApB,QAAwC,yBAAxC;AACA,SAASX,OAAO,IAAIY,SAApB,QAAqC,sBAArC;AACA,SAASZ,OAAO,IAAIa,SAApB,QAAqC,sBAArC;AACA,SAASb,OAAO,IAAIc,UAApB,QAAsC,uBAAtC;AACA,SAASd,OAAO,IAAIe,OAApB,QAAmC,oBAAnC;AACA,SAASf,OAAO,IAAIgB,QAApB,QAAoC,qBAApC;AACA,SAAShB,OAAO,IAAIiB,WAApB,QAAuC,wBAAvC;AACA,SAASjB,OAAO,IAAIkB,KAApB,QAAiC,iBAAjC;AACA,SAASlB,OAAO,IAAImB,MAApB,QAAkC,kBAAlC;AACA,SAASnB,OAAO,IAAIoB,YAApB,QAAwC,yBAAxC;AACA,SAASpB,OAAO,IAAIqB,UAApB,QAAsC,uBAAtC;AACA,SAASrB,OAAO,IAAIsB,GAApB,QAA+B,eAA/B;AACA,SAAStB,OAAO,IAAIuB,KAApB,QAAiC,iBAAjC;AACA,SAASvB,OAAO,IAAIwB,GAApB,QAA+B,eAA/B;AACA,SAASxB,OAAO,IAAIyB,MAApB,QAAkC,kBAAlC;AACA,SAASzB,OAAO,IAAI0B,OAApB,QAAmC,mBAAnC;AACA,SAAS1B,OAAO,IAAI2B,QAApB,QAAoC,oBAApC;AACA,SAAS3B,OAAO,IAAI4B,kBAApB,QAA8C,gCAA9C;AACA,SAAS5B,OAAO,IAAI6B,YAApB,QAAwC,yBAAxC;AACA,SAAS7B,OAAO,IAAI8B,YAApB,QAAwC,yBAAxC;AACA,SAAS9B,OAAO,IAAI+B,QAApB,QAAoC,oBAApC;AACA,SAAS/B,OAAO,IAAIgC,QAApB,QAAoC,qBAApC;AACA,SAAShC,OAAO,IAAIiC,KAApB,QAAiC,iBAAjC;AACA,SAASjC,OAAO,IAAIkC,WAApB,QAAuC,wBAAvC;AACA,SAASlC,OAAO,IAAImC,WAApB,QAAuC,wBAAvC;AACA,SAASnC,OAAO,IAAIoC,YAApB,QAAwC,yBAAxC;AACA,SAASpC,OAAO,IAAIqC,iBAApB,QAA6C,+BAA7C;AACA,SAASrC,OAAO,IAAIsC,SAApB,QAAqC,sBAArC;AACA,SAAStC,OAAO,IAAIuC,OAApB,QAAmC,mBAAnC;AACA,SAASvC,OAAO,IAAIwC,KAApB,QAAiC,iBAAjC;AACA,SAASxC,OAAO,IAAIyC,UAApB,QAAsC,uBAAtC;AACA,SAASzC,OAAO,IAAI0C,WAApB,QAAuC,wBAAvC;AACA,SAAS1C,OAAO,IAAI2C,KAApB,QAAiC,iBAAjC;AACA,SAAS3C,OAAO,IAAI4C,IAApB,QAAgC,gBAAhC;AACA,SAAS5C,OAAO,IAAI6C,GAApB,QAA+B,eAA/B;AACA,SAAS7C,OAAO,IAAI8C,MAApB,QAAkC,mBAAlC;AACA,SAAS9C,OAAO,IAAI+C,KAApB,QAAiC,iBAAjC;AACA,SAAS/C,OAAO,IAAIgD,MAApB,QAAkC,kBAAlC;AACA,SAAShD,OAAO,IAAIiD,OAApB,QAAmC,mBAAnC;AACA,SAASjD,OAAO,IAAIkD,OAApB,QAAmC,mBAAnC;AACA,SAASlD,OAAO,IAAImD,mBAApB,QAA+C,iCAA/C;AACA,SAASnD,OAAO,IAAIoD,iBAApB,QAA6C,+BAA7C;AACA,SAASpD,OAAO,IAAIqD,cAApB,QAA0C,2BAA1C;AACA,SAASrD,OAAO,IAAIsD,gBAApB,QAA4C,8BAA5C;AACA,SAAStD,OAAO,IAAIuD,eAApB,QAA2C,6BAA3C;AACA,SAASvD,OAAO,IAAIwD,KAApB,QAAiC,iBAAjC;AACA,SAASxD,OAAO,IAAIyD,MAApB,QAAkC,kBAAlC;AACA,SAASzD,OAAO,IAAI0D,IAApB,QAAgC,gBAAhC;AACA,SAAS1D,OAAO,IAAI2D,cAApB,QAA0C,2BAA1C;AACA,SAAS3D,OAAO,IAAI4D,YAApB,QAAwC,yBAAxC;AACA,SAAS5D,OAAO,IAAI6D,aAApB,QAAyC,0BAAzC;AACA,SAAS7D,OAAO,IAAI8D,cAApB,QAA0C,4BAA1C;AACA,SAAS9D,OAAO,IAAI+D,OAApB,QAAmC,mBAAnC;AACA,SAAS/D,OAAO,IAAIgE,UAApB,QAAsC,uBAAtC;AACA,SAAShE,OAAO,IAAIiE,QAApB,QAAoC,oBAApC;AACA,SAASjE,OAAO,IAAIkE,IAApB,QAAgC,gBAAhC;AACA,SAASlE,OAAO,IAAImE,QAApB,QAAoC,oBAApC;AACA,SAASnE,OAAO,IAAIoE,IAApB,QAAgC,gBAAhC;AACA,SAASpE,OAAO,IAAIqE,cAApB,QAA0C,2BAA1C;AACA,SAASrE,OAAO,IAAIsE,YAApB,QAAwC,yBAAxC;AACA,SAAStE,OAAO,IAAIuE,UAApB,QAAsC,uBAAtC;AACA,SAASvE,OAAO,IAAIwE,gBAApB,QAA4C,6BAA5C;AACA,SAASxE,OAAO,IAAIyE,YAApB,QAAwC,yBAAxC;AACA,SAASzE,OAAO,IAAI0E,eAApB,QAA2C,6BAA3C;AACA,SAAS1E,OAAO,IAAI2E,YAApB,QAAwC,yBAAxC;AACA,SAAS3E,OAAO,IAAI4E,iBAApB,QAA6C,+BAA7C;AACA,SAAS5E,OAAO,IAAI6E,oBAApB,QAAgD,mCAAhD;AACA,SAAS7E,OAAO,IAAI8E,kBAApB,QAA8C,gCAA9C;AACA,SAAS9E,OAAO,IAAI+E,qBAApB,QAAiD,oCAAjD;AACA,SAAS/E,OAAO,IAAIgF,SAApB,QAAqC,sBAArC;AACA,SAAShF,OAAO,IAAIiF,eAApB,QAA2C,4BAA3C;AACA,SAASjF,OAAO,IAAIkF,aAApB,QAAyC,0BAAzC;AACA,SAASlF,OAAO,IAAImF,gBAApB,QAA4C,8BAA5C;AACA,SAASnF,OAAO,IAAIoF,SAApB,QAAqC,sBAArC;AACA,SAASpF,OAAO,IAAIqF,mBAApB,QAA+C,gCAA/C;AACA,SAASrF,OAAO,IAAIsF,eAApB,QAA2C,4BAA3C;AACA,SAAStF,OAAO,IAAIuF,eAApB,QAA2C,4BAA3C;AACA,SAASvF,OAAO,IAAIwF,UAApB,QAAsC,sBAAtC;AACA,SAASxF,OAAO,IAAIyF,OAApB,QAAmC,mBAAnC;AACA,SAASzF,OAAO,IAAI0F,KAApB,QAAiC,iBAAjC;AACA,SAAS1F,OAAO,IAAI2F,IAApB,QAAgC,gBAAhC;AACA,SAAS3F,OAAO,IAAI4F,KAApB,QAAiC,iBAAjC;AACA,SAAS5F,OAAO,IAAI6F,MAApB,QAAkC,kBAAlC;AACA,SAAS7F,OAAO,IAAI8F,OAApB,QAAmC,mBAAnC;AACA,SAAS9F,OAAO,IAAI+F,IAApB,QAAgC,gBAAhC;AACA,SAAS/F,OAAO,IAAIgG,UAApB,QAAsC,uBAAtC;AACA,SAAShG,OAAO,IAAIiG,KAApB,QAAiC,iBAAjC;AACA,SAASjG,OAAO,IAAIkG,WAApB,QAAuC,uBAAvC;AACA,SAASlG,OAAO,IAAImG,IAApB,QAAgC,gBAAhC;AACA,SAASnG,OAAO,IAAIoG,IAApB,QAAgC,gBAAhC;AACA,SAASpG,OAAO,IAAIqG,KAApB,QAAiC,iBAAjC;AACA,SAASrG,OAAO,IAAIsG,IAApB,QAAgC,gBAAhC;AACA,SAAStG,OAAO,IAAIuG,WAApB,QAAuC,wBAAvC;AACA,SAASvG,OAAO,IAAIwG,YAApB,QAAwC,yBAAxC;AACA,SAASxG,OAAO,IAAIyG,WAApB,QAAuC,wBAAvC;AACA,SAASzG,OAAO,IAAI0G,aAApB,QAAyC,0BAAzC;AACA,SAAS1G,OAAO,IAAI2G,YAApB,QAAwC,yBAAxC;AACA,SAAS3G,OAAO,IAAI4G,mBAApB,QAA+C,iCAA/C;AACA,SAAS5G,OAAO,IAAI6G,GAApB,QAA+B,eAA/B;AACA,SAAS7G,OAAO,IAAI8G,aAApB,QAAyC,0BAAzC;AACA,SAAS9G,OAAO,IAAI+G,cAApB,QAA0C,2BAA1C;AACA,SAAS/G,OAAO,IAAIgH,MAApB,QAAkC,kBAAlC;AACA,SAAShH,OAAO,IAAIiH,SAApB,QAAqC,qBAArC;AACA,SAASjH,OAAO,IAAIkH,UAApB,QAAsC,uBAAtC;AACA,SAASlH,OAAO,IAAImH,UAApB,QAAsC,uBAAtC;AACA,SAASnH,OAAO,IAAIoH,SAApB,QAAqC,sBAArC;AACA,SAASpH,OAAO,IAAIqH,IAApB,QAAgC,gBAAhC;AACA,SAASrH,OAAO,IAAIsH,OAApB,QAAmC,oBAAnC;AACA,SAAStH,OAAO,IAAIuH,IAApB,QAAgC,gBAAhC;AACA,SAASvH,OAAO,IAAIwH,QAApB,QAAoC,qBAApC;AACA,SAASxH,OAAO,IAAIyH,IAApB,QAAgC,gBAAhC;AACA,SAASzH,OAAO,IAAI0H,KAApB,QAAiC,iBAAjC;AACA,SAAS1H,OAAO,IAAI2H,IAApB,QAAgC,gBAAhC;AACA,SAAS3H,OAAO,IAAI4H,SAApB,QAAqC,sBAArC;AACA,SAAS5H,OAAO,IAAI6H,KAApB,QAAiC,iBAAjC;AACA,SAAS7H,OAAO,IAAI8H,YAApB,QAAwC,0BAAxC;AACA,SAAS9H,OAAO,IAAI+H,SAApB,QAAqC,qBAArC;AACA,SAAS/H,OAAO,IAAIgI,IAApB,QAAgC,gBAAhC;AACA,SAAShI,OAAO,IAAIiI,MAApB,QAAkC,kBAAlC;AACA,SAASjI,OAAO,IAAIkI,IAApB,QAAgC,gBAAhC;AACA,SAASlI,OAAO,IAAImI,cAApB,QAA0C,2BAA1C;AACA,SAASnI,OAAO,IAAIoI,oBAApB,QAAgD,kCAAhD;AACA,SAASpI,OAAO,IAAIqI,YAApB,QAAwC,yBAAxC;AACA,SAASrI,OAAO,IAAIsI,MAApB,QAAkC,mBAAlC;AACA,SAAStI,OAAO,IAAIuI,UAApB,QAAsC,sBAAtC;AACA,SAASvI,OAAO,IAAIwI,WAApB,QAAuC,wBAAvC;AACA,SAASxI,OAAO,IAAIyI,SAApB,QAAqC,sBAArC;AACA,SAASzI,OAAO,IAAI0I,UAApB,QAAsC,uBAAtC;AACA,SAAS1I,OAAO,IAAI2I,IAApB,QAAgC,gBAAhC;AACA,SAAS3I,OAAO,IAAI4I,KAApB,QAAiC,iBAAjC;AACA,SAAS5I,OAAO,IAAI6I,SAApB,QAAqC,qBAArC;AACA,SAAS7I,OAAO,IAAI8I,OAApB,QAAmC,mBAAnC;AACA,SAAS9I,OAAO,IAAI+I,OAApB,QAAmC,mBAAnC;AACA,SAAS/I,OAAO,IAAIgJ,cAApB,QAA0C,2BAA1C;AACA,SAAShJ,OAAO,IAAIiJ,YAApB,QAAwC,yBAAxC;AACA,SAASjJ,OAAO,IAAIkJ,aAApB,QAAyC,0BAAzC;AACA,SAASlJ,OAAO,IAAImJ,MAApB,QAAkC,kBAAlC;AACA,SAASnJ,OAAO,IAAIoJ,MAApB,QAAkC,kBAAlC;AACA,SAASpJ,OAAO,IAAIqJ,GAApB,QAA+B,eAA/B;AACA,SAASrJ,OAAO,IAAIsJ,OAApB,QAAmC,mBAAnC;AACA,SAAStJ,OAAO,IAAIuJ,gBAApB,QAA4C,8BAA5C;AACA,SAASvJ,OAAO,IAAIwJ,UAApB,QAAsC,uBAAtC;AACA,SAASxJ,OAAO,IAAIyJ,IAApB,QAAgC,gBAAhC;AACA,SAASzJ,OAAO,IAAI0J,UAApB,QAAsC,uBAAtC;AACA,SAAS1J,OAAO,IAAI2J,cAApB,QAA0C,2BAA1C;AACA,SAAS3J,OAAO,IAAI4J,WAApB,QAAuC,wBAAvC;AACA,SAAS5J,OAAO,IAAI6J,YAApB,QAAwC,yBAAxC;AACA,SAAS7J,OAAO,IAAI8J,iBAApB,QAA6C,+BAA7C;AACA,SAAS9J,OAAO,IAAI+J,gBAApB,QAA4C,8BAA5C;AACA,SAAS/J,OAAO,IAAIgK,QAApB,QAAoC,qBAApC;AACA,SAAShK,OAAO,IAAIiK,WAApB,QAAuC,wBAAvC;AACA,SAASjK,OAAO,IAAIkK,iBAApB,QAA6C,+BAA7C;AACA,SAASlK,OAAO,IAAImK,QAApB,QAAoC,qBAApC;AACA,SAASnK,OAAO,IAAIoK,SAApB,QAAqC,sBAArC;AACA,SAASpK,OAAO,IAAIqK,SAApB,QAAqC,sBAArC;AACA,SAASrK,OAAO,IAAIsK,QAApB,QAAoC,oBAApC;AACA,SAAStK,OAAO,IAAIuK,IAApB,QAAgC,gBAAhC;AACA,SAASvK,OAAO,IAAIwK,YAApB,QAAwC,wBAAxC;AACA,SAASxK,OAAO,IAAIyK,QAApB,QAAoC,qBAApC;AACA,SAASzK,OAAO,IAAI0K,SAApB,QAAqC,sBAArC;AACA,SAAS1K,OAAO,IAAI2K,SAApB,QAAqC,qBAArC;AACA,SAAS3K,OAAO,IAAI4K,eAApB,QAA2C,4BAA3C;AACA,SAAS5K,OAAO,IAAI6K,mBAApB,QAA+C,iCAA/C;AACA,SAAS7K,OAAO,IAAI8K,sBAApB,QAAkD,oCAAlD;AACA,SAAS9K,OAAO,IAAI+K,uBAApB,QAAmD,qCAAnD;AACA,SAAS/K,OAAO,IAAIgL,UAApB,QAAsC,uBAAtC;AACA,SAAShL,OAAO,IAAIiL,KAApB,QAAiC,iBAAjC;AACA,SAASjL,OAAO,IAAIkL,OAApB,QAAmC,mBAAnC;AACA,SAASlL,OAAO,IAAImL,IAApB,QAAgC,gBAAhC;AACA,SAASnL,OAAO,IAAIoL,SAApB,QAAqC,sBAArC;AACA,SAASpL,OAAO,IAAIqL,OAApB,QAAmC,mBAAnC;AACA,SAASrL,OAAO,IAAIsL,KAApB,QAAiC,iBAAjC;AACA,SAAStL,OAAO,IAAIuL,cAApB,QAA0C,6BAA1C;AACA,SAASvL,OAAO,IAAIwL,aAApB,QAAyC,0BAAzC;AACA,SAASxL,OAAO,IAAIyL,MAApB,QAAkC,kBAAlC;AACA,SAASzL,OAAO,IAAI0L,UAApB,QAAsC,uBAAtC;AACA,SAAS1L,OAAO,IAAI2L,WAApB,QAAuC,wBAAvC;AACA,SAAS3L,OAAO,IAAI4L,GAApB,QAA+B,eAA/B;AACA,SAAS5L,OAAO,IAAI6L,MAApB,QAAkC,kBAAlC;AACA,SAAS7L,OAAO,IAAI8L,SAApB,QAAqC,qBAArC;AACA,SAAS9L,OAAO,IAAI+L,QAApB,QAAoC,oBAApC;AACA,SAAS/L,OAAO,IAAIgM,KAApB,QAAiC,iBAAjC;AACA,SAAShM,OAAO,IAAIiM,MAApB,QAAkC,kBAAlC;AACA,SAASjM,OAAO,IAAIkM,SAApB,QAAqC,qBAArC;AACA,SAASlM,OAAO,IAAImM,QAApB,QAAoC,qBAApC;AACA,SAASnM,OAAO,IAAIoM,QAApB,QAAoC,oBAApC;AACA,SAASpM,OAAO,IAAIqM,KAApB,QAAiC,iBAAjC;AACA,SAASrM,OAAO,IAAIsM,SAApB,QAAqC,sBAArC;AACA,SAAStM,OAAO,IAAIuM,UAApB,QAAsC,uBAAtC;AACA,SAASvM,OAAO,IAAIwM,QAApB,QAAoC,qBAApC;AACA,SAASxM,OAAO,IAAIyM,KAApB,QAAiC,iBAAjC;AACA,SAASzM,OAAO,IAAI0M,gBAApB,QAA4C,8BAA5C;AACA,SAAS1M,OAAO,IAAI2M,MAApB,QAAkC,kBAAlC;AACA,SAAS3M,OAAO,IAAI4M,QAApB,QAAoC,oBAApC;AACA,SAAS5M,OAAO,IAAI6M,WAApB,QAAuC,wBAAvC;AACA,SAAS7M,OAAO,IAAI8M,SAApB,QAAqC,qBAArC;AACA,SAAS9M,OAAO,IAAI+M,WAApB,QAAuC,uBAAvC;AACA,SAAS/M,OAAO,IAAIgN,MAApB,QAAkC,kBAAlC;AACA,SAAShN,OAAO,IAAIiN,gBAApB,QAA4C,8BAA5C;AACA,SAASjN,OAAO,IAAIkN,iBAApB,QAA6C,+BAA7C;AACA,SAASlN,OAAO,IAAImN,iBAApB,QAA6C,+BAA7C;AACA,SAASnN,OAAO,IAAIoN,aAApB,QAAyC,2BAAzC;AACA,SAASpN,OAAO,IAAIqN,cAApB,QAA0C,4BAA1C;AACA,SAASrN,OAAO,IAAIsN,cAApB,QAA0C,4BAA1C;AACA,SAAStN,OAAO,IAAIuN,KAApB,QAAiC,iBAAjC;AACA,SAASvN,OAAO,IAAIwN,GAApB,QAA+B,eAA/B;AACA,SAASxN,OAAO,IAAIyN,YAApB,QAAwC,yBAAxC;AACA,SAASzN,OAAO,IAAI0N,eAApB,QAA2C,4BAA3C;AACA,SAAS1N,OAAO,IAAI2N,MAApB,QAAkC,kBAAlC;AACA,SAAS3N,OAAO,IAAI4N,MAApB,QAAkC,kBAAlC;AACA,SAAS5N,OAAO,IAAI6N,OAApB,QAAmC,mBAAnC;AACA,SAAS7N,OAAO,IAAI8N,SAApB,QAAqC,sBAArC;AACA,SAAS9N,OAAO,IAAI+N,MAApB,QAAkC,kBAAlC;AACA,SAAS/N,OAAO,IAAIgO,KAApB,QAAiC,iBAAjC;AACA,SAAShO,OAAO,IAAIiO,GAApB,QAA+B,eAA/B;AACA,SAASjO,OAAO,IAAIkO,IAApB,QAAgC,gBAAhC;AACA,SAASlO,OAAO,IAAImO,KAApB,QAAiC,iBAAjC;AACA,SAASnO,OAAO,IAAIoO,WAApB,QAAuC,wBAAvC;AACA,SAASpO,OAAO,IAAIqO,YAApB,QAAwC,yBAAxC;AACA,SAASrO,OAAO,IAAIsO,UAApB,QAAsC,uBAAtC;AACA,SAAStO,OAAO,IAAIuO,UAApB,QAAsC,sBAAtC;AACA,SAASvO,OAAO,IAAIwO,IAApB,QAAgC,gBAAhC;AACA,SAASxO,OAAO,IAAIyO,OAApB,QAAmC,mBAAnC;AACA,SAASzO,OAAO,IAAI0O,MAApB,QAAkC,kBAAlC;AACA,SAAS1O,OAAO,IAAI2O,MAApB,QAAkC,kBAAlC;AACA,SAAS3O,OAAO,IAAI4O,MAApB,QAAkC,kBAAlC;AACA,SAAS5O,OAAO,IAAI6O,KAApB,QAAiC,iBAAjC;AACA,SAAS7O,OAAO,IAAI8O,KAApB,QAAiC,iBAAjC;AACA,SAAS9O,OAAO,IAAI+O,OAApB,QAAmC,mBAAnC;AACA,SAAS/O,OAAO,IAAIgP,MAApB,QAAkC,kBAAlC;AACA,SAAShP,OAAO,IAAIiP,SAApB,QAAqC,qBAArC","sourcesContent":["export { default as Icon } from './icon';\n\nexport { default as addCard } from './library/add-card';\nexport { default as addSubmenu } from './library/add-submenu';\nexport { default as alignCenter } from './library/align-center';\nexport { default as alignJustify } from './library/align-justify';\nexport { default as alignJustifyAlt } from './library/align-justify-alt';\nexport { default as alignLeft } from './library/align-left';\nexport { default as alignNone } from './library/align-none';\nexport { default as alignRight } from './library/align-right';\nexport { default as archive } from './library/archive';\nexport { default as archiveTitle } from './library/archive-title';\nexport { default as arrowDown } from './library/arrow-down';\nexport { default as arrowLeft } from './library/arrow-left';\nexport { default as arrowRight } from './library/arrow-right';\nexport { default as arrowUp } from './library/arrow-up';\nexport { default as atSymbol } from './library/at-symbol';\nexport { default as aspectRatio } from './library/aspect-ratio';\nexport { default as audio } from './library/audio';\nexport { default as backup } from './library/backup';\nexport { default as blockDefault } from './library/block-default';\nexport { default as blockTable } from './library/block-table';\nexport { default as box } from './library/box';\nexport { default as brush } from './library/brush';\nexport { default as bug } from './library/bug';\nexport { default as button } from './library/button';\nexport { default as buttons } from './library/buttons';\nexport { default as calendar } from './library/calendar';\nexport { default as cancelCircleFilled } from './library/cancel-circle-filled';\nexport { default as capturePhoto } from './library/capture-photo';\nexport { default as captureVideo } from './library/capture-video';\nexport { default as category } from './library/category';\nexport { default as chartBar } from './library/chart-bar';\nexport { default as check } from './library/check';\nexport { default as chevronDown } from './library/chevron-down';\nexport { default as chevronLeft } from './library/chevron-left';\nexport { default as chevronRight } from './library/chevron-right';\nexport { default as chevronRightSmall } from './library/chevron-right-small';\nexport { default as chevronUp } from './library/chevron-up';\nexport { default as classic } from './library/classic';\nexport { default as close } from './library/close';\nexport { default as closeSmall } from './library/close-small';\nexport { default as cloudUpload } from './library/cloud-upload';\nexport { default as cloud } from './library/cloud';\nexport { default as code } from './library/code';\nexport { default as cog } from './library/cog';\nexport { default as cogAlt } from './library/cog-alt';\nexport { default as color } from './library/color';\nexport { default as column } from './library/column';\nexport { default as columns } from './library/columns';\nexport { default as comment } from './library/comment';\nexport { default as commentAuthorAvatar } from './library/comment-author-avatar';\nexport { default as commentAuthorName } from './library/comment-author-name';\nexport { default as commentContent } from './library/comment-content';\nexport { default as commentReplyLink } from './library/comment-reply-link';\nexport { default as commentEditLink } from './library/comment-edit-link';\nexport { default as cover } from './library/cover';\nexport { default as create } from './library/create';\nexport { default as crop } from './library/crop';\nexport { default as currencyDollar } from './library/currency-dollar';\nexport { default as currencyEuro } from './library/currency-euro';\nexport { default as currencyPound } from './library/currency-pound';\nexport { default as customPostType } from './library/custom-post-type';\nexport { default as desktop } from './library/desktop';\nexport { default as dragHandle } from './library/drag-handle';\nexport { default as download } from './library/download';\nexport { default as edit } from './library/edit';\nexport { default as external } from './library/external';\nexport { default as file } from './library/file';\nexport { default as flipHorizontal } from './library/flip-horizontal';\nexport { default as flipVertical } from './library/flip-vertical';\nexport { default as formatBold } from './library/format-bold';\nexport { default as formatCapitalize } from './library/format-capitalize';\nexport { default as formatIndent } from './library/format-indent';\nexport { default as formatIndentRTL } from './library/format-indent-rtl';\nexport { default as formatItalic } from './library/format-italic';\nexport { default as formatListBullets } from './library/format-list-bullets';\nexport { default as formatListBulletsRTL } from './library/format-list-bullets-rtl';\nexport { default as formatListNumbered } from './library/format-list-numbered';\nexport { default as formatListNumberedRTL } from './library/format-list-numbered-rtl';\nexport { default as formatLtr } from './library/format-ltr';\nexport { default as formatLowercase } from './library/format-lowercase';\nexport { default as formatOutdent } from './library/format-outdent';\nexport { default as formatOutdentRTL } from './library/format-outdent-rtl';\nexport { default as formatRtl } from './library/format-rtl';\nexport { default as formatStrikethrough } from './library/format-strikethrough';\nexport { default as formatUnderline } from './library/format-underline';\nexport { default as formatUppercase } from './library/format-uppercase';\nexport { default as fullscreen } from './library/fullscreen';\nexport { default as gallery } from './library/gallery';\nexport { default as globe } from './library/globe';\nexport { default as grid } from './library/grid';\nexport { default as group } from './library/group';\nexport { default as handle } from './library/handle';\nexport { default as heading } from './library/heading';\nexport { default as help } from './library/help';\nexport { default as helpFilled } from './library/help-filled';\nexport { default as inbox } from './library/inbox';\nexport { default as institution } from './library/institution';\nexport { default as home } from './library/home';\nexport { default as html } from './library/html';\nexport { default as image } from './library/image';\nexport { default as info } from './library/info';\nexport { default as insertAfter } from './library/insert-after';\nexport { default as insertBefore } from './library/insert-before';\nexport { default as justifyLeft } from './library/justify-left';\nexport { default as justifyCenter } from './library/justify-center';\nexport { default as justifyRight } from './library/justify-right';\nexport { default as justifySpaceBetween } from './library/justify-space-between';\nexport { default as key } from './library/key';\nexport { default as keyboardClose } from './library/keyboard-close';\nexport { default as keyboardReturn } from './library/keyboard-return';\nexport { default as layout } from './library/layout';\nexport { default as lifesaver } from './library/lifesaver';\nexport { default as lineDashed } from './library/line-dashed';\nexport { default as lineDotted } from './library/line-dotted';\nexport { default as lineSolid } from './library/line-solid';\nexport { default as link } from './library/link';\nexport { default as linkOff } from './library/link-off';\nexport { default as list } from './library/list';\nexport { default as listView } from './library/list-view';\nexport { default as lock } from './library/lock';\nexport { default as login } from './library/login';\nexport { default as loop } from './library/loop';\nexport { default as mapMarker } from './library/map-marker';\nexport { default as media } from './library/media';\nexport { default as mediaAndText } from './library/media-and-text';\nexport { default as megaphone } from './library/megaphone';\nexport { default as menu } from './library/menu';\nexport { default as mobile } from './library/mobile';\nexport { default as more } from './library/more';\nexport { default as moreHorizontal } from './library/more-horizontal';\nexport { default as moreHorizontalMobile } from './library/more-horizontal-mobile';\nexport { default as moreVertical } from './library/more-vertical';\nexport { default as moveTo } from './library/move-to';\nexport { default as navigation } from './library/navigation';\nexport { default as overlayText } from './library/overlay-text';\nexport { default as pageBreak } from './library/page-break';\nexport { default as customLink } from './library/custom-link';\nexport { default as page } from './library/page';\nexport { default as pages } from './library/pages';\nexport { default as paragraph } from './library/paragraph';\nexport { default as payment } from './library/payment';\nexport { default as percent } from './library/percent';\nexport { default as positionCenter } from './library/position-center';\nexport { default as positionLeft } from './library/position-left';\nexport { default as positionRight } from './library/position-right';\nexport { default as pencil } from './library/pencil';\nexport { default as people } from './library/people';\nexport { default as pin } from './library/pin';\nexport { default as plugins } from './library/plugins';\nexport { default as plusCircleFilled } from './library/plus-circle-filled';\nexport { default as plusCircle } from './library/plus-circle';\nexport { default as plus } from './library/plus';\nexport { default as postAuthor } from './library/post-author';\nexport { default as postCategories } from './library/post-categories';\nexport { default as postContent } from './library/post-content';\nexport { default as postComments } from './library/post-comments';\nexport { default as postCommentsCount } from './library/post-comments-count';\nexport { default as postCommentsForm } from './library/post-comments-form';\nexport { default as postDate } from './library/post-date';\nexport { default as postExcerpt } from './library/post-excerpt';\nexport { default as postFeaturedImage } from './library/post-featured-image';\nexport { default as postList } from './library/post-list';\nexport { default as postTitle } from './library/post-title';\nexport { default as postTerms } from './library/post-terms';\nexport { default as previous } from './library/previous';\nexport { default as next } from './library/next';\nexport { default as preformatted } from './library/preformatted';\nexport { default as pullLeft } from './library/pull-left';\nexport { default as pullRight } from './library/pull-right';\nexport { default as pullquote } from './library/pullquote';\nexport { default as queryPagination } from './library/query-pagination';\nexport { default as queryPaginationNext } from './library/query-pagination-next';\nexport { default as queryPaginationNumbers } from './library/query-pagination-numbers';\nexport { default as queryPaginationPrevious } from './library/query-pagination-previous';\nexport { default as queryTitle } from './library/query-title';\nexport { default as quote } from './library/quote';\nexport { default as receipt } from './library/receipt';\nexport { default as redo } from './library/redo';\nexport { default as removeBug } from './library/remove-bug';\nexport { default as replace } from './library/replace';\nexport { default as reset } from './library/reset';\nexport { default as resizeCornerNE } from './library/resize-corner-n-e';\nexport { default as reusableBlock } from './library/reusable-block';\nexport { default as symbol } from './library/symbol';\nexport { default as rotateLeft } from './library/rotate-left';\nexport { default as rotateRight } from './library/rotate-right';\nexport { default as rss } from './library/rss';\nexport { default as search } from './library/search';\nexport { default as separator } from './library/separator';\nexport { default as settings } from './library/settings';\nexport { default as share } from './library/share';\nexport { default as shield } from './library/shield';\nexport { default as shortcode } from './library/shortcode';\nexport { default as siteLogo } from './library/site-logo';\nexport { default as sparkles } from './library/sparkles';\nexport { default as stack } from './library/stack';\nexport { default as starEmpty } from './library/star-empty';\nexport { default as starFilled } from './library/star-filled';\nexport { default as starHalf } from './library/star-half';\nexport { default as store } from './library/store';\nexport { default as stretchFullWidth } from './library/stretch-full-width';\nexport { default as styles } from './library/styles';\nexport { default as shipping } from './library/shipping';\nexport { default as stretchWide } from './library/stretch-wide';\nexport { default as subscript } from './library/subscript';\nexport { default as superscript } from './library/superscript';\nexport { default as swatch } from './library/swatch';\nexport { default as tableColumnAfter } from './library/table-column-after';\nexport { default as tableColumnBefore } from './library/table-column-before';\nexport { default as tableColumnDelete } from './library/table-column-delete';\nexport { default as tableRowAfter } from './library/table-row-after';\nexport { default as tableRowBefore } from './library/table-row-before';\nexport { default as tableRowDelete } from './library/table-row-delete';\nexport { default as table } from './library/table';\nexport { default as tag } from './library/tag';\nexport { default as symbolFilled } from './library/symbol-filled';\nexport { default as termDescription } from './library/term-description';\nexport { default as footer } from './library/footer';\nexport { default as header } from './library/header';\nexport { default as sidebar } from './library/sidebar';\nexport { default as textColor } from './library/text-color';\nexport { default as tablet } from './library/tablet';\nexport { default as title } from './library/title';\nexport { default as tip } from './library/tip';\nexport { default as tool } from './library/tool';\nexport { default as trash } from './library/trash';\nexport { default as trashFilled } from './library/trash-filled';\nexport { default as trendingDown } from './library/trending-down';\nexport { default as trendingUp } from './library/trending-up';\nexport { default as typography } from './library/typography';\nexport { default as undo } from './library/undo';\nexport { default as ungroup } from './library/ungroup';\nexport { default as unlock } from './library/unlock';\nexport { default as update } from './library/update';\nexport { default as upload } from './library/upload';\nexport { default as verse } from './library/verse';\nexport { default as video } from './library/video';\nexport { default as warning } from './library/warning';\nexport { default as widget } from './library/widget';\nexport { default as wordpress } from './library/wordpress';\n"]}
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/index.js"],"names":["default","Icon","addCard","addSubmenu","alignCenter","alignJustify","alignLeft","alignNone","alignRight","archive","archiveTitle","arrowDown","arrowLeft","arrowRight","arrowUp","atSymbol","aspectRatio","audio","backup","blockDefault","blockTable","box","brush","bug","button","buttons","calendar","cancelCircleFilled","capturePhoto","captureVideo","category","chartBar","check","chevronDown","chevronLeft","chevronRight","chevronRightSmall","chevronUp","classic","close","closeSmall","cloudUpload","cloud","code","cog","color","column","columns","comment","commentAuthorAvatar","commentAuthorName","commentContent","commentReplyLink","commentEditLink","cover","create","crop","currencyDollar","currencyEuro","currencyPound","customPostType","desktop","dragHandle","download","edit","external","file","flipHorizontal","flipVertical","formatBold","formatCapitalize","formatIndent","formatIndentRTL","formatItalic","formatListBullets","formatListBulletsRTL","formatListNumbered","formatListNumberedRTL","formatLtr","formatLowercase","formatOutdent","formatOutdentRTL","formatRtl","formatStrikethrough","formatUnderline","formatUppercase","fullscreen","gallery","globe","grid","group","handle","heading","help","helpFilled","inbox","institution","home","html","image","info","insertAfter","insertBefore","justifyLeft","justifyCenter","justifyRight","justifySpaceBetween","key","keyboardClose","keyboardReturn","layout","lifesaver","lineDashed","lineDotted","lineSolid","link","linkOff","list","listView","lock","login","loop","mapMarker","media","mediaAndText","megaphone","menu","mobile","more","moreHorizontal","moreHorizontalMobile","moreVertical","moveTo","navigation","overlayText","pageBreak","customLink","page","pages","paragraph","payment","percent","positionCenter","positionLeft","positionRight","pencil","people","pin","plugins","plusCircleFilled","plusCircle","plus","post","postAuthor","postCategories","postContent","postComments","postCommentsCount","postCommentsForm","postDate","postExcerpt","postFeaturedImage","postList","postTitle","postTerms","previous","next","preformatted","pullLeft","pullRight","pullquote","queryPagination","queryPaginationNext","queryPaginationNumbers","queryPaginationPrevious","queryTitle","quote","receipt","redo","removeBug","removeSubmenu","replace","reset","resizeCornerNE","reusableBlock","symbol","rotateLeft","rotateRight","rss","search","separator","settings","share","shield","shortcode","siteLogo","stack","starEmpty","starFilled","starHalf","store","stretchFullWidth","styles","shipping","stretchWide","subscript","superscript","swatch","tableColumnAfter","tableColumnBefore","tableColumnDelete","tableRowAfter","tableRowBefore","tableRowDelete","table","tag","symbolFilled","termDescription","footer","header","sidebar","textColor","tablet","title","tip","tool","trash","trendingDown","trendingUp","typography","undo","ungroup","unlock","update","upload","verse","video","warning","widget","wordpress"],"mappings":"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","sourcesContent":["export { default as Icon } from './icon';\n\nexport { default as addCard } from './library/add-card';\nexport { default as addSubmenu } from './library/add-submenu';\nexport { default as alignCenter } from './library/align-center';\nexport { default as alignJustify } from './library/align-justify';\nexport { default as alignLeft } from './library/align-left';\nexport { default as alignNone } from './library/align-none';\nexport { default as alignRight } from './library/align-right';\nexport { default as archive } from './library/archive';\nexport { default as archiveTitle } from './library/archive-title';\nexport { default as arrowDown } from './library/arrow-down';\nexport { default as arrowLeft } from './library/arrow-left';\nexport { default as arrowRight } from './library/arrow-right';\nexport { default as arrowUp } from './library/arrow-up';\nexport { default as atSymbol } from './library/at-symbol';\nexport { default as aspectRatio } from './library/aspect-ratio';\nexport { default as audio } from './library/audio';\nexport { default as backup } from './library/backup';\nexport { default as blockDefault } from './library/block-default';\nexport { default as blockTable } from './library/block-table';\nexport { default as box } from './library/box';\nexport { default as brush } from './library/brush';\nexport { default as bug } from './library/bug';\nexport { default as button } from './library/button';\nexport { default as buttons } from './library/buttons';\nexport { default as calendar } from './library/calendar';\nexport { default as cancelCircleFilled } from './library/cancel-circle-filled';\nexport { default as capturePhoto } from './library/capture-photo';\nexport { default as captureVideo } from './library/capture-video';\nexport { default as category } from './library/category';\nexport { default as chartBar } from './library/chart-bar';\nexport { default as check } from './library/check';\nexport { default as chevronDown } from './library/chevron-down';\nexport { default as chevronLeft } from './library/chevron-left';\nexport { default as chevronRight } from './library/chevron-right';\nexport { default as chevronRightSmall } from './library/chevron-right-small';\nexport { default as chevronUp } from './library/chevron-up';\nexport { default as classic } from './library/classic';\nexport { default as close } from './library/close';\nexport { default as closeSmall } from './library/close-small';\nexport { default as cloudUpload } from './library/cloud-upload';\nexport { default as cloud } from './library/cloud';\nexport { default as code } from './library/code';\nexport { default as cog } from './library/cog';\nexport { default as color } from './library/color';\nexport { default as column } from './library/column';\nexport { default as columns } from './library/columns';\nexport { default as comment } from './library/comment';\nexport { default as commentAuthorAvatar } from './library/comment-author-avatar';\nexport { default as commentAuthorName } from './library/comment-author-name';\nexport { default as commentContent } from './library/comment-content';\nexport { default as commentReplyLink } from './library/comment-reply-link';\nexport { default as commentEditLink } from './library/comment-edit-link';\nexport { default as cover } from './library/cover';\nexport { default as create } from './library/create';\nexport { default as crop } from './library/crop';\nexport { default as currencyDollar } from './library/currency-dollar';\nexport { default as currencyEuro } from './library/currency-euro';\nexport { default as currencyPound } from './library/currency-pound';\nexport { default as customPostType } from './library/custom-post-type';\nexport { default as desktop } from './library/desktop';\nexport { default as dragHandle } from './library/drag-handle';\nexport { default as download } from './library/download';\nexport { default as edit } from './library/edit';\nexport { default as external } from './library/external';\nexport { default as file } from './library/file';\nexport { default as flipHorizontal } from './library/flip-horizontal';\nexport { default as flipVertical } from './library/flip-vertical';\nexport { default as formatBold } from './library/format-bold';\nexport { default as formatCapitalize } from './library/format-capitalize';\nexport { default as formatIndent } from './library/format-indent';\nexport { default as formatIndentRTL } from './library/format-indent-rtl';\nexport { default as formatItalic } from './library/format-italic';\nexport { default as formatListBullets } from './library/format-list-bullets';\nexport { default as formatListBulletsRTL } from './library/format-list-bullets-rtl';\nexport { default as formatListNumbered } from './library/format-list-numbered';\nexport { default as formatListNumberedRTL } from './library/format-list-numbered-rtl';\nexport { default as formatLtr } from './library/format-ltr';\nexport { default as formatLowercase } from './library/format-lowercase';\nexport { default as formatOutdent } from './library/format-outdent';\nexport { default as formatOutdentRTL } from './library/format-outdent-rtl';\nexport { default as formatRtl } from './library/format-rtl';\nexport { default as formatStrikethrough } from './library/format-strikethrough';\nexport { default as formatUnderline } from './library/format-underline';\nexport { default as formatUppercase } from './library/format-uppercase';\nexport { default as fullscreen } from './library/fullscreen';\nexport { default as gallery } from './library/gallery';\nexport { default as globe } from './library/globe';\nexport { default as grid } from './library/grid';\nexport { default as group } from './library/group';\nexport { default as handle } from './library/handle';\nexport { default as heading } from './library/heading';\nexport { default as help } from './library/help';\nexport { default as helpFilled } from './library/help-filled';\nexport { default as inbox } from './library/inbox';\nexport { default as institution } from './library/institution';\nexport { default as home } from './library/home';\nexport { default as html } from './library/html';\nexport { default as image } from './library/image';\nexport { default as info } from './library/info';\nexport { default as insertAfter } from './library/insert-after';\nexport { default as insertBefore } from './library/insert-before';\nexport { default as justifyLeft } from './library/justify-left';\nexport { default as justifyCenter } from './library/justify-center';\nexport { default as justifyRight } from './library/justify-right';\nexport { default as justifySpaceBetween } from './library/justify-space-between';\nexport { default as key } from './library/key';\nexport { default as keyboardClose } from './library/keyboard-close';\nexport { default as keyboardReturn } from './library/keyboard-return';\nexport { default as layout } from './library/layout';\nexport { default as lifesaver } from './library/lifesaver';\nexport { default as lineDashed } from './library/line-dashed';\nexport { default as lineDotted } from './library/line-dotted';\nexport { default as lineSolid } from './library/line-solid';\nexport { default as link } from './library/link';\nexport { default as linkOff } from './library/link-off';\nexport { default as list } from './library/list';\nexport { default as listView } from './library/list-view';\nexport { default as lock } from './library/lock';\nexport { default as login } from './library/login';\nexport { default as loop } from './library/loop';\nexport { default as mapMarker } from './library/map-marker';\nexport { default as media } from './library/media';\nexport { default as mediaAndText } from './library/media-and-text';\nexport { default as megaphone } from './library/megaphone';\nexport { default as menu } from './library/menu';\nexport { default as mobile } from './library/mobile';\nexport { default as more } from './library/more';\nexport { default as moreHorizontal } from './library/more-horizontal';\nexport { default as moreHorizontalMobile } from './library/more-horizontal-mobile';\nexport { default as moreVertical } from './library/more-vertical';\nexport { default as moveTo } from './library/move-to';\nexport { default as navigation } from './library/navigation';\nexport { default as overlayText } from './library/overlay-text';\nexport { default as pageBreak } from './library/page-break';\nexport { default as customLink } from './library/custom-link';\nexport { default as page } from './library/page';\nexport { default as pages } from './library/pages';\nexport { default as paragraph } from './library/paragraph';\nexport { default as payment } from './library/payment';\nexport { default as percent } from './library/percent';\nexport { default as positionCenter } from './library/position-center';\nexport { default as positionLeft } from './library/position-left';\nexport { default as positionRight } from './library/position-right';\nexport { default as pencil } from './library/pencil';\nexport { default as people } from './library/people';\nexport { default as pin } from './library/pin';\nexport { default as plugins } from './library/plugins';\nexport { default as plusCircleFilled } from './library/plus-circle-filled';\nexport { default as plusCircle } from './library/plus-circle';\nexport { default as plus } from './library/plus';\nexport { default as post } from './library/post';\nexport { default as postAuthor } from './library/post-author';\nexport { default as postCategories } from './library/post-categories';\nexport { default as postContent } from './library/post-content';\nexport { default as postComments } from './library/post-comments';\nexport { default as postCommentsCount } from './library/post-comments-count';\nexport { default as postCommentsForm } from './library/post-comments-form';\nexport { default as postDate } from './library/post-date';\nexport { default as postExcerpt } from './library/post-excerpt';\nexport { default as postFeaturedImage } from './library/post-featured-image';\nexport { default as postList } from './library/post-list';\nexport { default as postTitle } from './library/post-title';\nexport { default as postTerms } from './library/post-terms';\nexport { default as previous } from './library/previous';\nexport { default as next } from './library/next';\nexport { default as preformatted } from './library/preformatted';\nexport { default as pullLeft } from './library/pull-left';\nexport { default as pullRight } from './library/pull-right';\nexport { default as pullquote } from './library/pullquote';\nexport { default as queryPagination } from './library/query-pagination';\nexport { default as queryPaginationNext } from './library/query-pagination-next';\nexport { default as queryPaginationNumbers } from './library/query-pagination-numbers';\nexport { default as queryPaginationPrevious } from './library/query-pagination-previous';\nexport { default as queryTitle } from './library/query-title';\nexport { default as quote } from './library/quote';\nexport { default as receipt } from './library/receipt';\nexport { default as redo } from './library/redo';\nexport { default as removeBug } from './library/remove-bug';\nexport { default as removeSubmenu } from './library/remove-submenu';\nexport { default as replace } from './library/replace';\nexport { default as reset } from './library/reset';\nexport { default as resizeCornerNE } from './library/resize-corner-n-e';\nexport { default as reusableBlock } from './library/reusable-block';\nexport { default as symbol } from './library/symbol';\nexport { default as rotateLeft } from './library/rotate-left';\nexport { default as rotateRight } from './library/rotate-right';\nexport { default as rss } from './library/rss';\nexport { default as search } from './library/search';\nexport { default as separator } from './library/separator';\nexport { default as settings } from './library/settings';\nexport { default as share } from './library/share';\nexport { default as shield } from './library/shield';\nexport { default as shortcode } from './library/shortcode';\nexport { default as siteLogo } from './library/site-logo';\nexport { default as stack } from './library/stack';\nexport { default as starEmpty } from './library/star-empty';\nexport { default as starFilled } from './library/star-filled';\nexport { default as starHalf } from './library/star-half';\nexport { default as store } from './library/store';\nexport { default as stretchFullWidth } from './library/stretch-full-width';\nexport { default as styles } from './library/styles';\nexport { default as shipping } from './library/shipping';\nexport { default as stretchWide } from './library/stretch-wide';\nexport { default as subscript } from './library/subscript';\nexport { default as superscript } from './library/superscript';\nexport { default as swatch } from './library/swatch';\nexport { default as tableColumnAfter } from './library/table-column-after';\nexport { default as tableColumnBefore } from './library/table-column-before';\nexport { default as tableColumnDelete } from './library/table-column-delete';\nexport { default as tableRowAfter } from './library/table-row-after';\nexport { default as tableRowBefore } from './library/table-row-before';\nexport { default as tableRowDelete } from './library/table-row-delete';\nexport { default as table } from './library/table';\nexport { default as tag } from './library/tag';\nexport { default as symbolFilled } from './library/symbol-filled';\nexport { default as termDescription } from './library/term-description';\nexport { default as footer } from './library/footer';\nexport { default as header } from './library/header';\nexport { default as sidebar } from './library/sidebar';\nexport { default as textColor } from './library/text-color';\nexport { default as tablet } from './library/tablet';\nexport { default as title } from './library/title';\nexport { default as tip } from './library/tip';\nexport { default as tool } from './library/tool';\nexport { default as trash } from './library/trash';\nexport { default as trendingDown } from './library/trending-down';\nexport { default as trendingUp } from './library/trending-up';\nexport { default as typography } from './library/typography';\nexport { default as undo } from './library/undo';\nexport { default as ungroup } from './library/ungroup';\nexport { default as unlock } from './library/unlock';\nexport { default as update } from './library/update';\nexport { default as upload } from './library/upload';\nexport { default as verse } from './library/verse';\nexport { default as video } from './library/video';\nexport { default as warning } from './library/warning';\nexport { default as widget } from './library/widget';\nexport { default as wordpress } from './library/wordpress';\n"]}
|
@@ -6,9 +6,9 @@ import { createElement } from "@wordpress/element";
|
|
6
6
|
import { SVG, Path } from '@wordpress/primitives';
|
7
7
|
const pin = createElement(SVG, {
|
8
8
|
xmlns: "http://www.w3.org/2000/svg",
|
9
|
-
viewBox: "
|
9
|
+
viewBox: "0 0 24 24"
|
10
10
|
}, createElement(Path, {
|
11
|
-
d: "
|
11
|
+
d: "m21.5 9.1-6.6-6.6-4.2 5.6c-1.2-.1-2.4.1-3.6.7-.1 0-.1.1-.2.1-.5.3-.9.6-1.2.9l3.7 3.7-5.7 5.7v1.1h1.1l5.7-5.7 3.7 3.7c.4-.4.7-.8.9-1.2.1-.1.1-.2.2-.3.6-1.1.8-2.4.6-3.6l5.6-4.1zm-7.3 3.5.1.9c.1.9 0 1.8-.4 2.6l-6-6c.8-.4 1.7-.5 2.6-.4l.9.1L15 4.9 19.1 9l-4.9 3.6z"
|
12
12
|
}));
|
13
13
|
export default pin;
|
14
14
|
//# sourceMappingURL=pin.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["@wordpress/icons/src/library/pin.js"],"names":["SVG","Path","pin"],"mappings":";;AAAA;AACA;AACA;AACA,SAASA,GAAT,EAAcC,IAAd,QAA0B,uBAA1B;AAEA,MAAMC,GAAG,GACR,cAAC,GAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,cAAC,IAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;AAMA,eAAeA,GAAf","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst pin = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/pin.js"],"names":["SVG","Path","pin"],"mappings":";;AAAA;AACA;AACA;AACA,SAASA,GAAT,EAAcC,IAAd,QAA0B,uBAA1B;AAEA,MAAMC,GAAG,GACR,cAAC,GAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,cAAC,IAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;AAMA,eAAeA,GAAf","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst pin = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"m21.5 9.1-6.6-6.6-4.2 5.6c-1.2-.1-2.4.1-3.6.7-.1 0-.1.1-.2.1-.5.3-.9.6-1.2.9l3.7 3.7-5.7 5.7v1.1h1.1l5.7-5.7 3.7 3.7c.4-.4.7-.8.9-1.2.1-.1.1-.2.2-.3.6-1.1.8-2.4.6-3.6l5.6-4.1zm-7.3 3.5.1.9c.1.9 0 1.8-.4 2.6l-6-6c.8-.4 1.7-.5 2.6-.4l.9.1L15 4.9 19.1 9l-4.9 3.6z\" />\n\t</SVG>\n);\n\nexport default pin;\n"]}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { createElement } from "@wordpress/element";
|
2
|
+
|
3
|
+
/**
|
4
|
+
* WordPress dependencies
|
5
|
+
*/
|
6
|
+
import { SVG, Path } from '@wordpress/primitives';
|
7
|
+
const post = createElement(SVG, {
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
9
|
+
viewBox: "0 0 24 24"
|
10
|
+
}, createElement(Path, {
|
11
|
+
d: "m7.3 9.7 1.4 1.4c.2-.2.3-.3.4-.5 0 0 0-.1.1-.1.3-.5.4-1.1.3-1.6L12 7 9 4 7.2 6.5c-.6-.1-1.1 0-1.6.3 0 0-.1 0-.1.1-.3.1-.4.2-.6.4l1.4 1.4L4 11v1h1l2.3-2.3zM4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4z"
|
12
|
+
}));
|
13
|
+
export default post;
|
14
|
+
//# sourceMappingURL=post.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/post.js"],"names":["SVG","Path","post"],"mappings":";;AAAA;AACA;AACA;AACA,SAASA,GAAT,EAAcC,IAAd,QAA0B,uBAA1B;AAEA,MAAMC,IAAI,GACT,cAAC,GAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,cAAC,IAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;AAMA,eAAeA,IAAf","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst post = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"m7.3 9.7 1.4 1.4c.2-.2.3-.3.4-.5 0 0 0-.1.1-.1.3-.5.4-1.1.3-1.6L12 7 9 4 7.2 6.5c-.6-.1-1.1 0-1.6.3 0 0-.1 0-.1.1-.3.1-.4.2-.6.4l1.4 1.4L4 11v1h1l2.3-2.3zM4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4z\" />\n\t</SVG>\n);\n\nexport default post;\n"]}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { createElement } from "@wordpress/element";
|
2
|
+
|
3
|
+
/**
|
4
|
+
* WordPress dependencies
|
5
|
+
*/
|
6
|
+
import { SVG, Path } from '@wordpress/primitives';
|
7
|
+
const removeSubmenu = createElement(SVG, {
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
9
|
+
viewBox: "0 0 24 24"
|
10
|
+
}, createElement(Path, {
|
11
|
+
fillRule: "evenodd",
|
12
|
+
clipRule: "evenodd",
|
13
|
+
d: "m13.955 20.748 8-17.5-.91-.416L19.597 6H13.5v1.5h5.411l-1.6 3.5H13.5v1.5h3.126l-1.6 3.5H13.5l.028 1.5h.812l-1.295 2.832.91.416ZM17.675 16l-.686 1.5h4.539L21.5 16h-3.825Zm2.286-5-.686 1.5H21.5V11h-1.54ZM2 12c0 3.58 2.42 5.5 6 5.5h.5V19l3-2.5-3-2.5v2H8c-2.48 0-4.5-1.52-4.5-4S5.52 7.5 8 7.5h3.5V6H8c-3.58 0-6 2.42-6 6Z"
|
14
|
+
}));
|
15
|
+
export default removeSubmenu;
|
16
|
+
//# sourceMappingURL=remove-submenu.js.map
|