@wordpress/icons 6.2.0 → 6.3.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 +7 -0
- package/README.md +7 -1
- package/build/index.js +24 -0
- package/build/index.js.map +1 -1
- package/build/library/post-terms.js +23 -0
- package/build/library/post-terms.js.map +1 -0
- package/build/library/query-pagination-next.js +2 -15
- package/build/library/query-pagination-next.js.map +1 -1
- package/build/library/query-pagination-numbers.js +2 -10
- package/build/library/query-pagination-numbers.js.map +1 -1
- package/build/library/query-pagination-previous.js +2 -17
- package/build/library/query-pagination-previous.js.map +1 -1
- package/build/library/query-pagination.js +2 -18
- package/build/library/query-pagination.js.map +1 -1
- package/build/library/query-title.js +23 -0
- package/build/library/query-title.js.map +1 -0
- package/build/library/tip.js +23 -0
- package/build/library/tip.js.map +1 -0
- package/build-module/index.js +3 -0
- package/build-module/index.js.map +1 -1
- package/build-module/library/post-terms.js +14 -0
- package/build-module/library/post-terms.js.map +1 -0
- package/build-module/library/query-pagination-next.js +3 -16
- package/build-module/library/query-pagination-next.js.map +1 -1
- package/build-module/library/query-pagination-numbers.js +3 -11
- package/build-module/library/query-pagination-numbers.js.map +1 -1
- package/build-module/library/query-pagination-previous.js +3 -18
- package/build-module/library/query-pagination-previous.js.map +1 -1
- package/build-module/library/query-pagination.js +3 -19
- package/build-module/library/query-pagination.js.map +1 -1
- package/build-module/library/query-title.js +14 -0
- package/build-module/library/query-title.js.map +1 -0
- package/build-module/library/tip.js +14 -0
- package/build-module/library/tip.js.map +1 -0
- package/build-types/index.d.ts +3 -0
- package/build-types/library/post-terms.d.ts +3 -0
- package/build-types/library/post-terms.d.ts.map +1 -0
- package/build-types/library/query-pagination-next.d.ts.map +1 -1
- package/build-types/library/query-pagination-numbers.d.ts.map +1 -1
- package/build-types/library/query-pagination-previous.d.ts.map +1 -1
- package/build-types/library/query-pagination.d.ts.map +1 -1
- package/build-types/library/query-title.d.ts +3 -0
- package/build-types/library/query-title.d.ts.map +1 -0
- package/build-types/library/tip.d.ts +3 -0
- package/build-types/library/tip.d.ts.map +1 -0
- package/package.json +4 -4
- package/src/index.js +3 -0
- package/src/library/post-terms.js +12 -0
- package/src/library/query-pagination-next.js +2 -4
- package/src/library/query-pagination-numbers.js +2 -4
- package/src/library/query-pagination-previous.js +2 -18
- package/src/library/query-pagination.js +2 -4
- package/src/library/query-title.js +12 -0
- package/src/library/tip.js +12 -0
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,13 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
+
## 6.3.0 (2022-02-10)
|
6
|
+
|
7
|
+
### New Features
|
8
|
+
|
9
|
+
- Added new block icon: `tip` ([#38424](https://github.com/WordPress/gutenberg/pull/38424)).
|
10
|
+
- Added new query title, post terms icons, updated pagination, pagination next/prev, and pagination numbers icons: `tip` ([#38521](https://github.com/WordPress/gutenberg/pull/38521)).
|
11
|
+
|
5
12
|
## 6.2.0 (2022-01-27)
|
6
13
|
|
7
14
|
## 6.1.0 (2021-11-07)
|
package/README.md
CHANGED
@@ -26,4 +26,10 @@ import { Icon, check } from '@wordpress/icons';
|
|
26
26
|
| ------ | --------- | ------- | ----------------------- |
|
27
27
|
| `size` | `integer` | `24` | Size of icon in pixels. |
|
28
28
|
|
29
|
-
|
29
|
+
## Contributing to this package
|
30
|
+
|
31
|
+
This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to [npm](https://www.npmjs.com/) and used by [WordPress](https://make.wordpress.org/core/) as well as other software projects.
|
32
|
+
|
33
|
+
To find out more about contributing to this package or Gutenberg as a whole, please read the project's main [contributor guide](https://github.com/WordPress/gutenberg/tree/HEAD/CONTRIBUTING.md).
|
34
|
+
|
35
|
+
<br /><br /><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
|
package/build/index.js
CHANGED
@@ -1001,6 +1001,12 @@ Object.defineProperty(exports, "postList", {
|
|
1001
1001
|
return _postList.default;
|
1002
1002
|
}
|
1003
1003
|
});
|
1004
|
+
Object.defineProperty(exports, "postTerms", {
|
1005
|
+
enumerable: true,
|
1006
|
+
get: function () {
|
1007
|
+
return _postTerms.default;
|
1008
|
+
}
|
1009
|
+
});
|
1004
1010
|
Object.defineProperty(exports, "postTitle", {
|
1005
1011
|
enumerable: true,
|
1006
1012
|
get: function () {
|
@@ -1061,6 +1067,12 @@ Object.defineProperty(exports, "queryPaginationPrevious", {
|
|
1061
1067
|
return _queryPaginationPrevious.default;
|
1062
1068
|
}
|
1063
1069
|
});
|
1070
|
+
Object.defineProperty(exports, "queryTitle", {
|
1071
|
+
enumerable: true,
|
1072
|
+
get: function () {
|
1073
|
+
return _queryTitle.default;
|
1074
|
+
}
|
1075
|
+
});
|
1064
1076
|
Object.defineProperty(exports, "quote", {
|
1065
1077
|
enumerable: true,
|
1066
1078
|
get: function () {
|
@@ -1331,6 +1343,12 @@ Object.defineProperty(exports, "textColor", {
|
|
1331
1343
|
return _textColor.default;
|
1332
1344
|
}
|
1333
1345
|
});
|
1346
|
+
Object.defineProperty(exports, "tip", {
|
1347
|
+
enumerable: true,
|
1348
|
+
get: function () {
|
1349
|
+
return _tip.default;
|
1350
|
+
}
|
1351
|
+
});
|
1334
1352
|
Object.defineProperty(exports, "title", {
|
1335
1353
|
enumerable: true,
|
1336
1354
|
get: function () {
|
@@ -1762,6 +1780,8 @@ var _postList = _interopRequireDefault(require("./library/post-list"));
|
|
1762
1780
|
|
1763
1781
|
var _postTitle = _interopRequireDefault(require("./library/post-title"));
|
1764
1782
|
|
1783
|
+
var _postTerms = _interopRequireDefault(require("./library/post-terms"));
|
1784
|
+
|
1765
1785
|
var _previous = _interopRequireDefault(require("./library/previous"));
|
1766
1786
|
|
1767
1787
|
var _next = _interopRequireDefault(require("./library/next"));
|
@@ -1782,6 +1802,8 @@ var _queryPaginationNumbers = _interopRequireDefault(require("./library/query-pa
|
|
1782
1802
|
|
1783
1803
|
var _queryPaginationPrevious = _interopRequireDefault(require("./library/query-pagination-previous"));
|
1784
1804
|
|
1805
|
+
var _queryTitle = _interopRequireDefault(require("./library/query-title"));
|
1806
|
+
|
1785
1807
|
var _quote = _interopRequireDefault(require("./library/quote"));
|
1786
1808
|
|
1787
1809
|
var _receipt = _interopRequireDefault(require("./library/receipt"));
|
@@ -1878,6 +1900,8 @@ var _tablet = _interopRequireDefault(require("./library/tablet"));
|
|
1878
1900
|
|
1879
1901
|
var _title = _interopRequireDefault(require("./library/title"));
|
1880
1902
|
|
1903
|
+
var _tip = _interopRequireDefault(require("./library/tip"));
|
1904
|
+
|
1881
1905
|
var _tool = _interopRequireDefault(require("./library/tool"));
|
1882
1906
|
|
1883
1907
|
var _trash = _interopRequireDefault(require("./library/trash"));
|
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","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 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 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 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;;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"]}
|
@@ -0,0 +1,23 @@
|
|
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 postTerms = (0, _element.createElement)(_primitives.SVG, {
|
16
|
+
viewBox: "0 0 24 24",
|
17
|
+
xmlns: "http://www.w3.org/2000/svg"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
d: "M8.1 12.3c.1.1.3.3.5.3.2.1.4.1.6.1.2 0 .4 0 .6-.1.2-.1.4-.2.5-.3l3-3c.3-.3.5-.7.5-1.1 0-.4-.2-.8-.5-1.1L9.7 3.5c-.1-.2-.3-.3-.5-.3H5c-.4 0-.8.4-.8.8v4.2c0 .2.1.4.2.5l3.7 3.6zM5.8 4.8h3.1l3.4 3.4v.1l-3 3 .5.5-.7-.5-3.3-3.4V4.8zM4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4z"
|
20
|
+
}));
|
21
|
+
var _default = postTerms;
|
22
|
+
exports.default = _default;
|
23
|
+
//# sourceMappingURL=post-terms.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/post-terms.js"],"names":["postTerms"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,SAAS,GACd,4BAAC,eAAD;AAAK,EAAA,OAAO,EAAC,WAAb;AAAyB,EAAA,KAAK,EAAC;AAA/B,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,S","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst postTerms = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path d=\"M8.1 12.3c.1.1.3.3.5.3.2.1.4.1.6.1.2 0 .4 0 .6-.1.2-.1.4-.2.5-.3l3-3c.3-.3.5-.7.5-1.1 0-.4-.2-.8-.5-1.1L9.7 3.5c-.1-.2-.3-.3-.5-.3H5c-.4 0-.8.4-.8.8v4.2c0 .2.1.4.2.5l3.7 3.6zM5.8 4.8h3.1l3.4 3.4v.1l-3 3 .5.5-.7-.5-3.3-3.4V4.8zM4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4z\" />\n\t</SVG>\n);\n\nexport default postTerms;\n"]}
|
@@ -15,21 +15,8 @@ var _primitives = require("@wordpress/primitives");
|
|
15
15
|
const queryPaginationNext = (0, _element.createElement)(_primitives.SVG, {
|
16
16
|
xmlns: "http://www.w3.org/2000/svg",
|
17
17
|
viewBox: "0 0 24 24"
|
18
|
-
}, (0, _element.createElement)(_primitives.
|
19
|
-
|
20
|
-
y: "10.5",
|
21
|
-
width: "3",
|
22
|
-
height: "3",
|
23
|
-
rx: "1.5"
|
24
|
-
}), (0, _element.createElement)(_primitives.Rect, {
|
25
|
-
x: "11",
|
26
|
-
y: "10.5",
|
27
|
-
width: "3",
|
28
|
-
height: "3",
|
29
|
-
rx: "1.5"
|
30
|
-
}), (0, _element.createElement)(_primitives.Path, {
|
31
|
-
d: "M16.5 9.5L19 12l-2.5 2.5",
|
32
|
-
strokeWidth: "1.5"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
d: "M5 13.5h3v-3H5v3zm5 0h3v-3h-3v3zM17 9l-1 1 2 2-2 2 1 1 3-3-3-3z"
|
33
20
|
}));
|
34
21
|
var _default = queryPaginationNext;
|
35
22
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["@wordpress/icons/src/library/query-pagination-next.js"],"names":["queryPaginationNext"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,mBAAmB,GACxB,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/query-pagination-next.js"],"names":["queryPaginationNext"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,mBAAmB,GACxB,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,mB","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst queryPaginationNext = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M5 13.5h3v-3H5v3zm5 0h3v-3h-3v3zM17 9l-1 1 2 2-2 2 1 1 3-3-3-3z\" />\n\t</SVG>\n);\n\nexport default queryPaginationNext;\n"]}
|
@@ -15,16 +15,8 @@ var _primitives = require("@wordpress/primitives");
|
|
15
15
|
const queryPaginationNumbers = (0, _element.createElement)(_primitives.SVG, {
|
16
16
|
xmlns: "http://www.w3.org/2000/svg",
|
17
17
|
viewBox: "0 0 24 24"
|
18
|
-
}, (0, _element.createElement)(_primitives.
|
19
|
-
|
20
|
-
y: "10.5",
|
21
|
-
width: "6",
|
22
|
-
height: "3",
|
23
|
-
rx: "1.5"
|
24
|
-
}), (0, _element.createElement)(_primitives.Path, {
|
25
|
-
d: "M13.5 14v-4l-1.5.5"
|
26
|
-
}), (0, _element.createElement)(_primitives.Path, {
|
27
|
-
d: "M19.266 9.805c-.473-.611-1.22-.51-1.702-.367a3.854 3.854 0 00-.718.307l.13 1.082c.192-.17.47-.422.782-.515.34-.1.578.025.668.141.21.27-.034.835-.16 1.055-.49.85-.93 1.594-1.45 2.492H19.5v-1h-.914c.277-.574.814-1.443.914-2.106.052-.343.02-.762-.234-1.09z"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
d: "M4 13.5h6v-3H4v3zm8.2-2.5.8-.3V14h1V9.3l-2.2.7.4 1zm7.1-1.2c-.5-.6-1.2-.5-1.7-.4-.3.1-.5.2-.7.3l.1 1.1c.2-.2.5-.4.8-.5.3-.1.6 0 .7.1.2.3 0 .8-.2 1.1-.5.8-.9 1.6-1.4 2.5h2.7v-1h-.9c.3-.6.8-1.4.9-2.1 0-.3-.1-.8-.3-1.1z"
|
28
20
|
}));
|
29
21
|
var _default = queryPaginationNumbers;
|
30
22
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["@wordpress/icons/src/library/query-pagination-numbers.js"],"names":["queryPaginationNumbers"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,sBAAsB,GAC3B,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/query-pagination-numbers.js"],"names":["queryPaginationNumbers"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,sBAAsB,GAC3B,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,sB","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst queryPaginationNumbers = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M4 13.5h6v-3H4v3zm8.2-2.5.8-.3V14h1V9.3l-2.2.7.4 1zm7.1-1.2c-.5-.6-1.2-.5-1.7-.4-.3.1-.5.2-.7.3l.1 1.1c.2-.2.5-.4.8-.5.3-.1.6 0 .7.1.2.3 0 .8-.2 1.1-.5.8-.9 1.6-1.4 2.5h2.7v-1h-.9c.3-.6.8-1.4.9-2.1 0-.3-.1-.8-.3-1.1z\" />\n\t</SVG>\n);\n\nexport default queryPaginationNumbers;\n"]}
|
@@ -15,23 +15,8 @@ var _primitives = require("@wordpress/primitives");
|
|
15
15
|
const queryPaginationPrevious = (0, _element.createElement)(_primitives.SVG, {
|
16
16
|
xmlns: "http://www.w3.org/2000/svg",
|
17
17
|
viewBox: "0 0 24 24"
|
18
|
-
}, (0, _element.createElement)(_primitives.
|
19
|
-
|
20
|
-
y: "13.5",
|
21
|
-
width: "3",
|
22
|
-
height: "3",
|
23
|
-
rx: "1.5",
|
24
|
-
transform: "rotate(-180 18 13.5)"
|
25
|
-
}), (0, _element.createElement)(_primitives.Rect, {
|
26
|
-
x: "13",
|
27
|
-
y: "13.5",
|
28
|
-
width: "3",
|
29
|
-
height: "3",
|
30
|
-
rx: "1.5",
|
31
|
-
transform: "rotate(-180 13 13.5)"
|
32
|
-
}), (0, _element.createElement)(_primitives.Path, {
|
33
|
-
d: "M7.5 14.5L5 12l2.5-2.5",
|
34
|
-
strokeWidth: "1.5"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
d: "M16 10.5v3h3v-3h-3zm-5 3h3v-3h-3v3zM7 9l-3 3 3 3 1-1-2-2 2-2-1-1z"
|
35
20
|
}));
|
36
21
|
var _default = queryPaginationPrevious;
|
37
22
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["@wordpress/icons/src/library/query-pagination-previous.js"],"names":["queryPaginationPrevious"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,uBAAuB,GAC5B,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/query-pagination-previous.js"],"names":["queryPaginationPrevious"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,uBAAuB,GAC5B,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,uB","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst queryPaginationPrevious = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M16 10.5v3h3v-3h-3zm-5 3h3v-3h-3v3zM7 9l-3 3 3 3 1-1-2-2 2-2-1-1z\" />\n\t</SVG>\n);\n\nexport default queryPaginationPrevious;\n"]}
|
@@ -15,24 +15,8 @@ var _primitives = require("@wordpress/primitives");
|
|
15
15
|
const queryPagination = (0, _element.createElement)(_primitives.SVG, {
|
16
16
|
xmlns: "http://www.w3.org/2000/svg",
|
17
17
|
viewBox: "0 0 24 24"
|
18
|
-
}, (0, _element.createElement)(_primitives.
|
19
|
-
|
20
|
-
y: "10.5",
|
21
|
-
width: "6",
|
22
|
-
height: "3",
|
23
|
-
rx: "1.5"
|
24
|
-
}), (0, _element.createElement)(_primitives.Rect, {
|
25
|
-
x: "12",
|
26
|
-
y: "10.5",
|
27
|
-
width: "3",
|
28
|
-
height: "3",
|
29
|
-
rx: "1.5"
|
30
|
-
}), (0, _element.createElement)(_primitives.Rect, {
|
31
|
-
x: "17",
|
32
|
-
y: "10.5",
|
33
|
-
width: "3",
|
34
|
-
height: "3",
|
35
|
-
rx: "1.5"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
d: "M4 13.5h6v-3H4v3zm8 0h3v-3h-3v3zm5-3v3h3v-3h-3z"
|
36
20
|
}));
|
37
21
|
var _default = queryPagination;
|
38
22
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["@wordpress/icons/src/library/query-pagination.js"],"names":["queryPagination"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,eAAe,GACpB,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/query-pagination.js"],"names":["queryPagination"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,eAAe,GACpB,4BAAC,eAAD;AAAK,EAAA,KAAK,EAAC,4BAAX;AAAwC,EAAA,OAAO,EAAC;AAAhD,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,e","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst queryPagination = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M4 13.5h6v-3H4v3zm8 0h3v-3h-3v3zm5-3v3h3v-3h-3z\" />\n\t</SVG>\n);\n\nexport default queryPagination;\n"]}
|
@@ -0,0 +1,23 @@
|
|
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 queryTitle = (0, _element.createElement)(_primitives.SVG, {
|
16
|
+
viewBox: "0 0 24 24",
|
17
|
+
xmlns: "http://www.w3.org/2000/svg"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
d: "M4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4zm1.3-2.9c.6.3 1.3.5 2 .5.8 0 1.4-.2 2-.5.1 0 .1-.1.2-.2l.8.7.9-1-.8-.7.3-.3a5.09 5.09 0 0 0 0-4.4c-.2-.6-.7-1-1.3-1.4-.6-.3-1.3-.5-2-.5-.8 0-1.4.2-2 .5-.7.4-1.1.8-1.5 1.5-.3.6-.5 1.3-.5 2.2 0 .8.2 1.6.5 2.2.4.6.8 1.1 1.4 1.4zm-.1-5c.2-.4.5-.7.8-1s.8-.4 1.3-.4 1 .1 1.3.4.6.6.8 1c.3.4.4.8.4 1.4 0 .5-.1 1-.3 1.4v.1l-1-.9-.9 1 .9.9c-.3.2-.7.3-1.2.3s-1-.1-1.3-.4c-.4-.2-.6-.6-.8-1C5 9 4.9 8.5 4.9 8c0-.6.1-1 .3-1.4z"
|
20
|
+
}));
|
21
|
+
var _default = queryTitle;
|
22
|
+
exports.default = _default;
|
23
|
+
//# sourceMappingURL=query-title.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/query-title.js"],"names":["queryTitle"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,UAAU,GACf,4BAAC,eAAD;AAAK,EAAA,OAAO,EAAC,WAAb;AAAyB,EAAA,KAAK,EAAC;AAA/B,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,U","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst queryTitle = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path d=\"M4 20h9v-1.5H4V20zm0-5.5V16h16v-1.5H4zm1.3-2.9c.6.3 1.3.5 2 .5.8 0 1.4-.2 2-.5.1 0 .1-.1.2-.2l.8.7.9-1-.8-.7.3-.3a5.09 5.09 0 0 0 0-4.4c-.2-.6-.7-1-1.3-1.4-.6-.3-1.3-.5-2-.5-.8 0-1.4.2-2 .5-.7.4-1.1.8-1.5 1.5-.3.6-.5 1.3-.5 2.2 0 .8.2 1.6.5 2.2.4.6.8 1.1 1.4 1.4zm-.1-5c.2-.4.5-.7.8-1s.8-.4 1.3-.4 1 .1 1.3.4.6.6.8 1c.3.4.4.8.4 1.4 0 .5-.1 1-.3 1.4v.1l-1-.9-.9 1 .9.9c-.3.2-.7.3-1.2.3s-1-.1-1.3-.4c-.4-.2-.6-.6-.8-1C5 9 4.9 8.5 4.9 8c0-.6.1-1 .3-1.4z\" />\n\t</SVG>\n);\n\nexport default queryTitle;\n"]}
|
@@ -0,0 +1,23 @@
|
|
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 tip = (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
|
+
d: "M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z"
|
20
|
+
}));
|
21
|
+
var _default = tip;
|
22
|
+
exports.default = _default;
|
23
|
+
//# sourceMappingURL=tip.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/tip.js"],"names":["tip"],"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 tip = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z\" />\n\t</SVG>\n);\n\nexport default tip;\n"]}
|
package/build-module/index.js
CHANGED
@@ -162,6 +162,7 @@ export { default as postExcerpt } from './library/post-excerpt';
|
|
162
162
|
export { default as postFeaturedImage } from './library/post-featured-image';
|
163
163
|
export { default as postList } from './library/post-list';
|
164
164
|
export { default as postTitle } from './library/post-title';
|
165
|
+
export { default as postTerms } from './library/post-terms';
|
165
166
|
export { default as previous } from './library/previous';
|
166
167
|
export { default as next } from './library/next';
|
167
168
|
export { default as preformatted } from './library/preformatted';
|
@@ -172,6 +173,7 @@ export { default as queryPagination } from './library/query-pagination';
|
|
172
173
|
export { default as queryPaginationNext } from './library/query-pagination-next';
|
173
174
|
export { default as queryPaginationNumbers } from './library/query-pagination-numbers';
|
174
175
|
export { default as queryPaginationPrevious } from './library/query-pagination-previous';
|
176
|
+
export { default as queryTitle } from './library/query-title';
|
175
177
|
export { default as quote } from './library/quote';
|
176
178
|
export { default as receipt } from './library/receipt';
|
177
179
|
export { default as redo } from './library/redo';
|
@@ -220,6 +222,7 @@ export { default as sidebar } from './library/sidebar';
|
|
220
222
|
export { default as textColor } from './library/text-color';
|
221
223
|
export { default as tablet } from './library/tablet';
|
222
224
|
export { default as title } from './library/title';
|
225
|
+
export { default as tip } from './library/tip';
|
223
226
|
export { default as tool } from './library/tool';
|
224
227
|
export { default as trash } from './library/trash';
|
225
228
|
export { default as trashFilled } from './library/trash-filled';
|