@wordpress/icons 9.37.0 → 9.39.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 +4 -0
- package/build/index.js +7 -0
- package/build/index.js.map +1 -1
- package/build/library/archive.js +3 -1
- package/build/library/archive.js.map +1 -1
- package/build/library/columns.js +3 -1
- package/build/library/columns.js.map +1 -1
- package/build/library/copy.js +3 -1
- package/build/library/copy.js.map +1 -1
- package/build/library/crop.js +1 -1
- package/build/library/crop.js.map +1 -1
- package/build/library/file.js +3 -1
- package/build/library/file.js.map +1 -1
- package/build/library/page.js +3 -1
- package/build/library/page.js.map +1 -1
- package/build/library/pages.js +5 -1
- package/build/library/pages.js.map +1 -1
- package/build/library/plus.js +1 -1
- package/build/library/plus.js.map +1 -1
- package/build/library/post-excerpt.js +1 -1
- package/build/library/post-excerpt.js.map +1 -1
- package/build/library/post-list.js +1 -1
- package/build/library/post-list.js.map +1 -1
- package/build/library/table-of-contents.js +25 -0
- package/build/library/table-of-contents.js.map +1 -0
- package/build/library/tag.js +1 -1
- package/build/library/tag.js.map +1 -1
- package/build/library/trash.js +3 -1
- package/build/library/trash.js.map +1 -1
- package/build-module/index.js +1 -0
- package/build-module/index.js.map +1 -1
- package/build-module/library/archive.js +3 -1
- package/build-module/library/archive.js.map +1 -1
- package/build-module/library/columns.js +3 -1
- package/build-module/library/columns.js.map +1 -1
- package/build-module/library/copy.js +3 -1
- package/build-module/library/copy.js.map +1 -1
- package/build-module/library/crop.js +1 -1
- package/build-module/library/crop.js.map +1 -1
- package/build-module/library/file.js +3 -1
- package/build-module/library/file.js.map +1 -1
- package/build-module/library/page.js +3 -1
- package/build-module/library/page.js.map +1 -1
- package/build-module/library/pages.js +5 -1
- package/build-module/library/pages.js.map +1 -1
- package/build-module/library/plus.js +1 -1
- package/build-module/library/plus.js.map +1 -1
- package/build-module/library/post-excerpt.js +1 -1
- package/build-module/library/post-excerpt.js.map +1 -1
- package/build-module/library/post-list.js +1 -1
- package/build-module/library/post-list.js.map +1 -1
- package/build-module/library/table-of-contents.js +17 -0
- package/build-module/library/table-of-contents.js.map +1 -0
- package/build-module/library/tag.js +1 -1
- package/build-module/library/tag.js.map +1 -1
- package/build-module/library/trash.js +3 -1
- package/build-module/library/trash.js.map +1 -1
- package/build-types/index.d.ts +1 -0
- package/build-types/library/archive.d.ts.map +1 -1
- package/build-types/library/columns.d.ts.map +1 -1
- package/build-types/library/copy.d.ts.map +1 -1
- package/build-types/library/file.d.ts.map +1 -1
- package/build-types/library/page.d.ts.map +1 -1
- package/build-types/library/pages.d.ts.map +1 -1
- package/build-types/library/table-of-contents.d.ts +3 -0
- package/build-types/library/table-of-contents.d.ts.map +1 -0
- package/build-types/library/trash.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/index.js +1 -0
- package/src/library/archive.js +5 -1
- package/src/library/columns.js +5 -1
- package/src/library/copy.js +5 -1
- package/src/library/crop.js +1 -1
- package/src/library/file.js +5 -1
- package/src/library/page.js +2 -1
- package/src/library/pages.js +3 -1
- package/src/library/plus.js +1 -1
- package/src/library/post-excerpt.js +1 -1
- package/src/library/post-list.js +1 -1
- package/src/library/table-of-contents.js +17 -0
- package/src/library/tag.js +1 -1
- package/src/library/trash.js +5 -1
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
package/build/index.js
CHANGED
@@ -1510,6 +1510,12 @@ Object.defineProperty(exports, "tableColumnDelete", {
|
|
1510
1510
|
return _tableColumnDelete.default;
|
1511
1511
|
}
|
1512
1512
|
});
|
1513
|
+
Object.defineProperty(exports, "tableOfContents", {
|
1514
|
+
enumerable: true,
|
1515
|
+
get: function () {
|
1516
|
+
return _tableOfContents.default;
|
1517
|
+
}
|
1518
|
+
});
|
1513
1519
|
Object.defineProperty(exports, "tableRowAfter", {
|
1514
1520
|
enumerable: true,
|
1515
1521
|
get: function () {
|
@@ -1911,6 +1917,7 @@ var _swatch = _interopRequireDefault(require("./library/swatch"));
|
|
1911
1917
|
var _tableColumnAfter = _interopRequireDefault(require("./library/table-column-after"));
|
1912
1918
|
var _tableColumnBefore = _interopRequireDefault(require("./library/table-column-before"));
|
1913
1919
|
var _tableColumnDelete = _interopRequireDefault(require("./library/table-column-delete"));
|
1920
|
+
var _tableOfContents = _interopRequireDefault(require("./library/table-of-contents"));
|
1914
1921
|
var _tableRowAfter = _interopRequireDefault(require("./library/table-row-after"));
|
1915
1922
|
var _tableRowBefore = _interopRequireDefault(require("./library/table-row-before"));
|
1916
1923
|
var _tableRowDelete = _interopRequireDefault(require("./library/table-row-delete"));
|
package/build/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_icon","_interopRequireDefault","require","_addCard","_addSubmenu","_addTemplate","_alignCenter","_alignJustify","_alignLeft","_alignNone","_alignRight","_archive","_arrowDown","_arrowLeft","_arrowRight","_arrowUp","_atSymbol","_aspectRatio","_audio","_backup","_blockDefault","_blockMeta","_blockTable","_border","_box","_brush","_bug","_button","_buttons","_calendar","_cancelCircleFilled","_caption","_capturePhoto","_captureVideo","_category","_chartBar","_check","_chevronDown","_chevronLeft","_chevronLeftSmall","_chevronRight","_chevronRightSmall","_chevronUp","_chevronUpDown","_classic","_close","_closeSmall","_cloudUpload","_cloud","_code","_cog","_color","_column","_columns","_copy","_comment","_commentAuthorAvatar","_commentAuthorName","_commentContent","_commentReplyLink","_commentEditLink","_cover","_create","_crop","_currencyDollar","_currencyEuro","_currencyPound","_customPostType","_desktop","_details","_dragHandle","_drawerLeft","_drawerRight","_download","_edit","_external","_file","_filter","_flipHorizontal","_flipVertical","_formatBold","_formatCapitalize","_formatIndent","_formatIndentRtl","_formatItalic","_formatListBullets","_formatListBulletsRtl","_formatListNumbered","_formatListNumberedRtl","_formatLtr","_formatLowercase","_formatOutdent","_formatOutdentRtl","_formatRtl","_formatStrikethrough","_formatUnderline","_formatUppercase","_fullscreen","_funnel","_gallery","_globe","_grid","_group","_handle","_headingLevel","_headingLevel2","_headingLevel3","_headingLevel4","_headingLevel5","_headingLevel6","_heading","_help","_helpFilled","_inbox","_institution","_home","_html","_image","_info","_insertAfter","_insertBefore","_justifyLeft","_justifyCenter","_justifyRight","_justifySpaceBetween","_justifyStretch","_key","_keyboard","_keyboardClose","_keyboardReturn","_language","_layout","_levelUp","_lifesaver","_lineDashed","_lineDotted","_lineSolid","_link","_linkOff","_list","_listItem","_listView","_lock","_lockOutline","_lockSmall","_login","_loop","_mapMarker","_media","_mediaAndText","_megaphone","_menu","_mobile","_more","_moreHorizontal","_moreHorizontalMobile","_moreVertical","_moveTo","_navigation","_notFound","_overlayText","_pageBreak","_customLink","_page","_pages","_paragraph","_payment","_percent","_positionCenter","_positionLeft","_positionRight","_pencil","_people","_pin","_pinSmall","_plugins","_plusCircleFilled","_plusCircle","_plus","_post","_postAuthor","_postCategories","_postContent","_postComments","_postCommentsCount","_postCommentsForm","_postDate","_postExcerpt","_postFeaturedImage","_postList","_postTerms","_previous","_next","_preformatted","_pullLeft","_pullRight","_pullquote","_queryPagination","_queryPaginationNext","_queryPaginationNumbers","_queryPaginationPrevious","_quote","_receipt","_redo","_removeBug","_removeSubmenu","_replace","_reset","_resizeCornerNE","_reusableBlock","_row","_symbol","_rotateLeft","_rotateRight","_rss","_search","_seen","_unseen","_separator","_settings","_shadow","_share","_shield","_shortcode","_shuffle","_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","_sidesAll","_sidesAxial","_sidesBottom","_sidesHorizontal","_sidesLeft","_sidesRight","_sidesTop","_sidesVertical","_textColor","_textHorizontal","_textVertical","_tablet","_title","_tip","_tool","_trash","_trendingDown","_trendingUp","_typography","_undo","_ungroup","_unlock","_update","_upload","_verse","_video","_warning","_widget","_wordpress"],"sources":["@wordpress/icons/src/index.js"],"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 addTemplate } from './library/add-template';\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 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 blockMeta } from './library/block-meta';\nexport { default as blockTable } from './library/block-table';\nexport { default as border } from './library/border';\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 caption } from './library/caption';\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 chevronLeftSmall } from './library/chevron-left-small';\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 chevronUpDown } from './library/chevron-up-down';\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 copy } from './library/copy';\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 details } from './library/details';\nexport { default as dragHandle } from './library/drag-handle';\nexport { default as drawerLeft } from './library/drawer-left';\nexport { default as drawerRight } from './library/drawer-right';\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 filter } from './library/filter';\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 funnel } from './library/funnel';\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 headingLevel1 } from './library/heading-level-1';\nexport { default as headingLevel2 } from './library/heading-level-2';\nexport { default as headingLevel3 } from './library/heading-level-3';\nexport { default as headingLevel4 } from './library/heading-level-4';\nexport { default as headingLevel5 } from './library/heading-level-5';\nexport { default as headingLevel6 } from './library/heading-level-6';\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 justifyStretch } from './library/justify-stretch';\nexport { default as key } from './library/key';\nexport { default as keyboard } from './library/keyboard';\nexport { default as keyboardClose } from './library/keyboard-close';\nexport { default as keyboardReturn } from './library/keyboard-return';\nexport { default as language } from './library/language';\nexport { default as layout } from './library/layout';\nexport { default as levelUp } from './library/level-up';\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 listItem } from './library/list-item';\nexport { default as listView } from './library/list-view';\nexport { default as lock } from './library/lock';\nexport { default as lockOutline } from './library/lock-outline';\nexport { default as lockSmall } from './library/lock-small';\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 notFound } from './library/not-found';\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 pinSmall } from './library/pin-small';\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 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 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 row } from './library/row';\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 seen } from './library/seen';\nexport { default as unseen } from './library/unseen';\nexport { default as separator } from './library/separator';\nexport { default as settings } from './library/settings';\nexport { default as shadow } from './library/shadow';\nexport { default as share } from './library/share';\nexport { default as shield } from './library/shield';\nexport { default as shortcode } from './library/shortcode';\nexport { default as shuffle } from './library/shuffle';\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 sidesAll } from './library/sides-all';\nexport { default as sidesAxial } from './library/sides-axial';\nexport { default as sidesBottom } from './library/sides-bottom';\nexport { default as sidesHorizontal } from './library/sides-horizontal';\nexport { default as sidesLeft } from './library/sides-left';\nexport { default as sidesRight } from './library/sides-right';\nexport { default as sidesTop } from './library/sides-top';\nexport { default as sidesVertical } from './library/sides-vertical';\nexport { default as textColor } from './library/text-color';\nexport { default as textHorizontal } from './library/text-horizontal';\nexport { default as textVertical } from './library/text-vertical';\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"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
1
|
+
{"version":3,"names":["_icon","_interopRequireDefault","require","_addCard","_addSubmenu","_addTemplate","_alignCenter","_alignJustify","_alignLeft","_alignNone","_alignRight","_archive","_arrowDown","_arrowLeft","_arrowRight","_arrowUp","_atSymbol","_aspectRatio","_audio","_backup","_blockDefault","_blockMeta","_blockTable","_border","_box","_brush","_bug","_button","_buttons","_calendar","_cancelCircleFilled","_caption","_capturePhoto","_captureVideo","_category","_chartBar","_check","_chevronDown","_chevronLeft","_chevronLeftSmall","_chevronRight","_chevronRightSmall","_chevronUp","_chevronUpDown","_classic","_close","_closeSmall","_cloudUpload","_cloud","_code","_cog","_color","_column","_columns","_copy","_comment","_commentAuthorAvatar","_commentAuthorName","_commentContent","_commentReplyLink","_commentEditLink","_cover","_create","_crop","_currencyDollar","_currencyEuro","_currencyPound","_customPostType","_desktop","_details","_dragHandle","_drawerLeft","_drawerRight","_download","_edit","_external","_file","_filter","_flipHorizontal","_flipVertical","_formatBold","_formatCapitalize","_formatIndent","_formatIndentRtl","_formatItalic","_formatListBullets","_formatListBulletsRtl","_formatListNumbered","_formatListNumberedRtl","_formatLtr","_formatLowercase","_formatOutdent","_formatOutdentRtl","_formatRtl","_formatStrikethrough","_formatUnderline","_formatUppercase","_fullscreen","_funnel","_gallery","_globe","_grid","_group","_handle","_headingLevel","_headingLevel2","_headingLevel3","_headingLevel4","_headingLevel5","_headingLevel6","_heading","_help","_helpFilled","_inbox","_institution","_home","_html","_image","_info","_insertAfter","_insertBefore","_justifyLeft","_justifyCenter","_justifyRight","_justifySpaceBetween","_justifyStretch","_key","_keyboard","_keyboardClose","_keyboardReturn","_language","_layout","_levelUp","_lifesaver","_lineDashed","_lineDotted","_lineSolid","_link","_linkOff","_list","_listItem","_listView","_lock","_lockOutline","_lockSmall","_login","_loop","_mapMarker","_media","_mediaAndText","_megaphone","_menu","_mobile","_more","_moreHorizontal","_moreHorizontalMobile","_moreVertical","_moveTo","_navigation","_notFound","_overlayText","_pageBreak","_customLink","_page","_pages","_paragraph","_payment","_percent","_positionCenter","_positionLeft","_positionRight","_pencil","_people","_pin","_pinSmall","_plugins","_plusCircleFilled","_plusCircle","_plus","_post","_postAuthor","_postCategories","_postContent","_postComments","_postCommentsCount","_postCommentsForm","_postDate","_postExcerpt","_postFeaturedImage","_postList","_postTerms","_previous","_next","_preformatted","_pullLeft","_pullRight","_pullquote","_queryPagination","_queryPaginationNext","_queryPaginationNumbers","_queryPaginationPrevious","_quote","_receipt","_redo","_removeBug","_removeSubmenu","_replace","_reset","_resizeCornerNE","_reusableBlock","_row","_symbol","_rotateLeft","_rotateRight","_rss","_search","_seen","_unseen","_separator","_settings","_shadow","_share","_shield","_shortcode","_shuffle","_siteLogo","_stack","_starEmpty","_starFilled","_starHalf","_store","_stretchFullWidth","_styles","_shipping","_stretchWide","_subscript","_superscript","_swatch","_tableColumnAfter","_tableColumnBefore","_tableColumnDelete","_tableOfContents","_tableRowAfter","_tableRowBefore","_tableRowDelete","_table","_tag","_symbolFilled","_termDescription","_footer","_header","_sidebar","_sidesAll","_sidesAxial","_sidesBottom","_sidesHorizontal","_sidesLeft","_sidesRight","_sidesTop","_sidesVertical","_textColor","_textHorizontal","_textVertical","_tablet","_title","_tip","_tool","_trash","_trendingDown","_trendingUp","_typography","_undo","_ungroup","_unlock","_update","_upload","_verse","_video","_warning","_widget","_wordpress"],"sources":["@wordpress/icons/src/index.js"],"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 addTemplate } from './library/add-template';\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 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 blockMeta } from './library/block-meta';\nexport { default as blockTable } from './library/block-table';\nexport { default as border } from './library/border';\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 caption } from './library/caption';\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 chevronLeftSmall } from './library/chevron-left-small';\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 chevronUpDown } from './library/chevron-up-down';\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 copy } from './library/copy';\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 details } from './library/details';\nexport { default as dragHandle } from './library/drag-handle';\nexport { default as drawerLeft } from './library/drawer-left';\nexport { default as drawerRight } from './library/drawer-right';\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 filter } from './library/filter';\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 funnel } from './library/funnel';\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 headingLevel1 } from './library/heading-level-1';\nexport { default as headingLevel2 } from './library/heading-level-2';\nexport { default as headingLevel3 } from './library/heading-level-3';\nexport { default as headingLevel4 } from './library/heading-level-4';\nexport { default as headingLevel5 } from './library/heading-level-5';\nexport { default as headingLevel6 } from './library/heading-level-6';\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 justifyStretch } from './library/justify-stretch';\nexport { default as key } from './library/key';\nexport { default as keyboard } from './library/keyboard';\nexport { default as keyboardClose } from './library/keyboard-close';\nexport { default as keyboardReturn } from './library/keyboard-return';\nexport { default as language } from './library/language';\nexport { default as layout } from './library/layout';\nexport { default as levelUp } from './library/level-up';\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 listItem } from './library/list-item';\nexport { default as listView } from './library/list-view';\nexport { default as lock } from './library/lock';\nexport { default as lockOutline } from './library/lock-outline';\nexport { default as lockSmall } from './library/lock-small';\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 notFound } from './library/not-found';\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 pinSmall } from './library/pin-small';\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 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 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 row } from './library/row';\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 seen } from './library/seen';\nexport { default as unseen } from './library/unseen';\nexport { default as separator } from './library/separator';\nexport { default as settings } from './library/settings';\nexport { default as shadow } from './library/shadow';\nexport { default as share } from './library/share';\nexport { default as shield } from './library/shield';\nexport { default as shortcode } from './library/shortcode';\nexport { default as shuffle } from './library/shuffle';\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 tableOfContents } from './library/table-of-contents';\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 sidesAll } from './library/sides-all';\nexport { default as sidesAxial } from './library/sides-axial';\nexport { default as sidesBottom } from './library/sides-bottom';\nexport { default as sidesHorizontal } from './library/sides-horizontal';\nexport { default as sidesLeft } from './library/sides-left';\nexport { default as sidesRight } from './library/sides-right';\nexport { default as sidesTop } from './library/sides-top';\nexport { default as sidesVertical } from './library/sides-vertical';\nexport { default as textColor } from './library/text-color';\nexport { default as textHorizontal } from './library/text-horizontal';\nexport { default as textVertical } from './library/text-vertical';\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"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,KAAA,GAAAC,sBAAA,CAAAC,OAAA;AAEA,IAAAC,QAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,WAAA,GAAAH,sBAAA,CAAAC,OAAA;AACA,IAAAG,YAAA,GAAAJ,sBAAA,CAAAC,OAAA;AACA,IAAAI,YAAA,GAAAL,sBAAA,CAAAC,OAAA;AACA,IAAAK,aAAA,GAAAN,sBAAA,CAAAC,OAAA;AACA,IAAAM,UAAA,GAAAP,sBAAA,CAAAC,OAAA;AACA,IAAAO,UAAA,GAAAR,sBAAA,CAAAC,OAAA;AACA,IAAAQ,WAAA,GAAAT,sBAAA,CAAAC,OAAA;AACA,IAAAS,QAAA,GAAAV,sBAAA,CAAAC,OAAA;AACA,IAAAU,UAAA,GAAAX,sBAAA,CAAAC,OAAA;AACA,IAAAW,UAAA,GAAAZ,sBAAA,CAAAC,OAAA;AACA,IAAAY,WAAA,GAAAb,sBAAA,CAAAC,OAAA;AACA,IAAAa,QAAA,GAAAd,sBAAA,CAAAC,OAAA;AACA,IAAAc,SAAA,GAAAf,sBAAA,CAAAC,OAAA;AACA,IAAAe,YAAA,GAAAhB,sBAAA,CAAAC,OAAA;AACA,IAAAgB,MAAA,GAAAjB,sBAAA,CAAAC,OAAA;AACA,IAAAiB,OAAA,GAAAlB,sBAAA,CAAAC,OAAA;AACA,IAAAkB,aAAA,GAAAnB,sBAAA,CAAAC,OAAA;AACA,IAAAmB,UAAA,GAAApB,sBAAA,CAAAC,OAAA;AACA,IAAAoB,WAAA,GAAArB,sBAAA,CAAAC,OAAA;AACA,IAAAqB,OAAA,GAAAtB,sBAAA,CAAAC,OAAA;AACA,IAAAsB,IAAA,GAAAvB,sBAAA,CAAAC,OAAA;AACA,IAAAuB,MAAA,GAAAxB,sBAAA,CAAAC,OAAA;AACA,IAAAwB,IAAA,GAAAzB,sBAAA,CAAAC,OAAA;AACA,IAAAyB,OAAA,GAAA1B,sBAAA,CAAAC,OAAA;AACA,IAAA0B,QAAA,GAAA3B,sBAAA,CAAAC,OAAA;AACA,IAAA2B,SAAA,GAAA5B,sBAAA,CAAAC,OAAA;AACA,IAAA4B,mBAAA,GAAA7B,sBAAA,CAAAC,OAAA;AACA,IAAA6B,QAAA,GAAA9B,sBAAA,CAAAC,OAAA;AACA,IAAA8B,aAAA,GAAA/B,sBAAA,CAAAC,OAAA;AACA,IAAA+B,aAAA,GAAAhC,sBAAA,CAAAC,OAAA;AACA,IAAAgC,SAAA,GAAAjC,sBAAA,CAAAC,OAAA;AACA,IAAAiC,SAAA,GAAAlC,sBAAA,CAAAC,OAAA;AACA,IAAAkC,MAAA,GAAAnC,sBAAA,CAAAC,OAAA;AACA,IAAAmC,YAAA,GAAApC,sBAAA,CAAAC,OAAA;AACA,IAAAoC,YAAA,GAAArC,sBAAA,CAAAC,OAAA;AACA,IAAAqC,iBAAA,GAAAtC,sBAAA,CAAAC,OAAA;AACA,IAAAsC,aAAA,GAAAvC,sBAAA,CAAAC,OAAA;AACA,IAAAuC,kBAAA,GAAAxC,sBAAA,CAAAC,OAAA;AACA,IAAAwC,UAAA,GAAAzC,sBAAA,CAAAC,OAAA;AACA,IAAAyC,cAAA,GAAA1C,sBAAA,CAAAC,OAAA;AACA,IAAA0C,QAAA,GAAA3C,sBAAA,CAAAC,OAAA;AACA,IAAA2C,MAAA,GAAA5C,sBAAA,CAAAC,OAAA;AACA,IAAA4C,WAAA,GAAA7C,sBAAA,CAAAC,OAAA;AACA,IAAA6C,YAAA,GAAA9C,sBAAA,CAAAC,OAAA;AACA,IAAA8C,MAAA,GAAA/C,sBAAA,CAAAC,OAAA;AACA,IAAA+C,KAAA,GAAAhD,sBAAA,CAAAC,OAAA;AACA,IAAAgD,IAAA,GAAAjD,sBAAA,CAAAC,OAAA;AACA,IAAAiD,MAAA,GAAAlD,sBAAA,CAAAC,OAAA;AACA,IAAAkD,OAAA,GAAAnD,sBAAA,CAAAC,OAAA;AACA,IAAAmD,QAAA,GAAApD,sBAAA,CAAAC,OAAA;AACA,IAAAoD,KAAA,GAAArD,sBAAA,CAAAC,OAAA;AACA,IAAAqD,QAAA,GAAAtD,sBAAA,CAAAC,OAAA;AACA,IAAAsD,oBAAA,GAAAvD,sBAAA,CAAAC,OAAA;AACA,IAAAuD,kBAAA,GAAAxD,sBAAA,CAAAC,OAAA;AACA,IAAAwD,eAAA,GAAAzD,sBAAA,CAAAC,OAAA;AACA,IAAAyD,iBAAA,GAAA1D,sBAAA,CAAAC,OAAA;AACA,IAAA0D,gBAAA,GAAA3D,sBAAA,CAAAC,OAAA;AACA,IAAA2D,MAAA,GAAA5D,sBAAA,CAAAC,OAAA;AACA,IAAA4D,OAAA,GAAA7D,sBAAA,CAAAC,OAAA;AACA,IAAA6D,KAAA,GAAA9D,sBAAA,CAAAC,OAAA;AACA,IAAA8D,eAAA,GAAA/D,sBAAA,CAAAC,OAAA;AACA,IAAA+D,aAAA,GAAAhE,sBAAA,CAAAC,OAAA;AACA,IAAAgE,cAAA,GAAAjE,sBAAA,CAAAC,OAAA;AACA,IAAAiE,eAAA,GAAAlE,sBAAA,CAAAC,OAAA;AACA,IAAAkE,QAAA,GAAAnE,sBAAA,CAAAC,OAAA;AACA,IAAAmE,QAAA,GAAApE,sBAAA,CAAAC,OAAA;AACA,IAAAoE,WAAA,GAAArE,sBAAA,CAAAC,OAAA;AACA,IAAAqE,WAAA,GAAAtE,sBAAA,CAAAC,OAAA;AACA,IAAAsE,YAAA,GAAAvE,sBAAA,CAAAC,OAAA;AACA,IAAAuE,SAAA,GAAAxE,sBAAA,CAAAC,OAAA;AACA,IAAAwE,KAAA,GAAAzE,sBAAA,CAAAC,OAAA;AACA,IAAAyE,SAAA,GAAA1E,sBAAA,CAAAC,OAAA;AACA,IAAA0E,KAAA,GAAA3E,sBAAA,CAAAC,OAAA;AACA,IAAA2E,OAAA,GAAA5E,sBAAA,CAAAC,OAAA;AACA,IAAA4E,eAAA,GAAA7E,sBAAA,CAAAC,OAAA;AACA,IAAA6E,aAAA,GAAA9E,sBAAA,CAAAC,OAAA;AACA,IAAA8E,WAAA,GAAA/E,sBAAA,CAAAC,OAAA;AACA,IAAA+E,iBAAA,GAAAhF,sBAAA,CAAAC,OAAA;AACA,IAAAgF,aAAA,GAAAjF,sBAAA,CAAAC,OAAA;AACA,IAAAiF,gBAAA,GAAAlF,sBAAA,CAAAC,OAAA;AACA,IAAAkF,aAAA,GAAAnF,sBAAA,CAAAC,OAAA;AACA,IAAAmF,kBAAA,GAAApF,sBAAA,CAAAC,OAAA;AACA,IAAAoF,qBAAA,GAAArF,sBAAA,CAAAC,OAAA;AACA,IAAAqF,mBAAA,GAAAtF,sBAAA,CAAAC,OAAA;AACA,IAAAsF,sBAAA,GAAAvF,sBAAA,CAAAC,OAAA;AACA,IAAAuF,UAAA,GAAAxF,sBAAA,CAAAC,OAAA;AACA,IAAAwF,gBAAA,GAAAzF,sBAAA,CAAAC,OAAA;AACA,IAAAyF,cAAA,GAAA1F,sBAAA,CAAAC,OAAA;AACA,IAAA0F,iBAAA,GAAA3F,sBAAA,CAAAC,OAAA;AACA,IAAA2F,UAAA,GAAA5F,sBAAA,CAAAC,OAAA;AACA,IAAA4F,oBAAA,GAAA7F,sBAAA,CAAAC,OAAA;AACA,IAAA6F,gBAAA,GAAA9F,sBAAA,CAAAC,OAAA;AACA,IAAA8F,gBAAA,GAAA/F,sBAAA,CAAAC,OAAA;AACA,IAAA+F,WAAA,GAAAhG,sBAAA,CAAAC,OAAA;AACA,IAAAgG,OAAA,GAAAjG,sBAAA,CAAAC,OAAA;AACA,IAAAiG,QAAA,GAAAlG,sBAAA,CAAAC,OAAA;AACA,IAAAkG,MAAA,GAAAnG,sBAAA,CAAAC,OAAA;AACA,IAAAmG,KAAA,GAAApG,sBAAA,CAAAC,OAAA;AACA,IAAAoG,MAAA,GAAArG,sBAAA,CAAAC,OAAA;AACA,IAAAqG,OAAA,GAAAtG,sBAAA,CAAAC,OAAA;AACA,IAAAsG,aAAA,GAAAvG,sBAAA,CAAAC,OAAA;AACA,IAAAuG,cAAA,GAAAxG,sBAAA,CAAAC,OAAA;AACA,IAAAwG,cAAA,GAAAzG,sBAAA,CAAAC,OAAA;AACA,IAAAyG,cAAA,GAAA1G,sBAAA,CAAAC,OAAA;AACA,IAAA0G,cAAA,GAAA3G,sBAAA,CAAAC,OAAA;AACA,IAAA2G,cAAA,GAAA5G,sBAAA,CAAAC,OAAA;AACA,IAAA4G,QAAA,GAAA7G,sBAAA,CAAAC,OAAA;AACA,IAAA6G,KAAA,GAAA9G,sBAAA,CAAAC,OAAA;AACA,IAAA8G,WAAA,GAAA/G,sBAAA,CAAAC,OAAA;AACA,IAAA+G,MAAA,GAAAhH,sBAAA,CAAAC,OAAA;AACA,IAAAgH,YAAA,GAAAjH,sBAAA,CAAAC,OAAA;AACA,IAAAiH,KAAA,GAAAlH,sBAAA,CAAAC,OAAA;AACA,IAAAkH,KAAA,GAAAnH,sBAAA,CAAAC,OAAA;AACA,IAAAmH,MAAA,GAAApH,sBAAA,CAAAC,OAAA;AACA,IAAAoH,KAAA,GAAArH,sBAAA,CAAAC,OAAA;AACA,IAAAqH,YAAA,GAAAtH,sBAAA,CAAAC,OAAA;AACA,IAAAsH,aAAA,GAAAvH,sBAAA,CAAAC,OAAA;AACA,IAAAuH,YAAA,GAAAxH,sBAAA,CAAAC,OAAA;AACA,IAAAwH,cAAA,GAAAzH,sBAAA,CAAAC,OAAA;AACA,IAAAyH,aAAA,GAAA1H,sBAAA,CAAAC,OAAA;AACA,IAAA0H,oBAAA,GAAA3H,sBAAA,CAAAC,OAAA;AACA,IAAA2H,eAAA,GAAA5H,sBAAA,CAAAC,OAAA;AACA,IAAA4H,IAAA,GAAA7H,sBAAA,CAAAC,OAAA;AACA,IAAA6H,SAAA,GAAA9H,sBAAA,CAAAC,OAAA;AACA,IAAA8H,cAAA,GAAA/H,sBAAA,CAAAC,OAAA;AACA,IAAA+H,eAAA,GAAAhI,sBAAA,CAAAC,OAAA;AACA,IAAAgI,SAAA,GAAAjI,sBAAA,CAAAC,OAAA;AACA,IAAAiI,OAAA,GAAAlI,sBAAA,CAAAC,OAAA;AACA,IAAAkI,QAAA,GAAAnI,sBAAA,CAAAC,OAAA;AACA,IAAAmI,UAAA,GAAApI,sBAAA,CAAAC,OAAA;AACA,IAAAoI,WAAA,GAAArI,sBAAA,CAAAC,OAAA;AACA,IAAAqI,WAAA,GAAAtI,sBAAA,CAAAC,OAAA;AACA,IAAAsI,UAAA,GAAAvI,sBAAA,CAAAC,OAAA;AACA,IAAAuI,KAAA,GAAAxI,sBAAA,CAAAC,OAAA;AACA,IAAAwI,QAAA,GAAAzI,sBAAA,CAAAC,OAAA;AACA,IAAAyI,KAAA,GAAA1I,sBAAA,CAAAC,OAAA;AACA,IAAA0I,SAAA,GAAA3I,sBAAA,CAAAC,OAAA;AACA,IAAA2I,SAAA,GAAA5I,sBAAA,CAAAC,OAAA;AACA,IAAA4I,KAAA,GAAA7I,sBAAA,CAAAC,OAAA;AACA,IAAA6I,YAAA,GAAA9I,sBAAA,CAAAC,OAAA;AACA,IAAA8I,UAAA,GAAA/I,sBAAA,CAAAC,OAAA;AACA,IAAA+I,MAAA,GAAAhJ,sBAAA,CAAAC,OAAA;AACA,IAAAgJ,KAAA,GAAAjJ,sBAAA,CAAAC,OAAA;AACA,IAAAiJ,UAAA,GAAAlJ,sBAAA,CAAAC,OAAA;AACA,IAAAkJ,MAAA,GAAAnJ,sBAAA,CAAAC,OAAA;AACA,IAAAmJ,aAAA,GAAApJ,sBAAA,CAAAC,OAAA;AACA,IAAAoJ,UAAA,GAAArJ,sBAAA,CAAAC,OAAA;AACA,IAAAqJ,KAAA,GAAAtJ,sBAAA,CAAAC,OAAA;AACA,IAAAsJ,OAAA,GAAAvJ,sBAAA,CAAAC,OAAA;AACA,IAAAuJ,KAAA,GAAAxJ,sBAAA,CAAAC,OAAA;AACA,IAAAwJ,eAAA,GAAAzJ,sBAAA,CAAAC,OAAA;AACA,IAAAyJ,qBAAA,GAAA1J,sBAAA,CAAAC,OAAA;AACA,IAAA0J,aAAA,GAAA3J,sBAAA,CAAAC,OAAA;AACA,IAAA2J,OAAA,GAAA5J,sBAAA,CAAAC,OAAA;AACA,IAAA4J,WAAA,GAAA7J,sBAAA,CAAAC,OAAA;AACA,IAAA6J,SAAA,GAAA9J,sBAAA,CAAAC,OAAA;AACA,IAAA8J,YAAA,GAAA/J,sBAAA,CAAAC,OAAA;AACA,IAAA+J,UAAA,GAAAhK,sBAAA,CAAAC,OAAA;AACA,IAAAgK,WAAA,GAAAjK,sBAAA,CAAAC,OAAA;AACA,IAAAiK,KAAA,GAAAlK,sBAAA,CAAAC,OAAA;AACA,IAAAkK,MAAA,GAAAnK,sBAAA,CAAAC,OAAA;AACA,IAAAmK,UAAA,GAAApK,sBAAA,CAAAC,OAAA;AACA,IAAAoK,QAAA,GAAArK,sBAAA,CAAAC,OAAA;AACA,IAAAqK,QAAA,GAAAtK,sBAAA,CAAAC,OAAA;AACA,IAAAsK,eAAA,GAAAvK,sBAAA,CAAAC,OAAA;AACA,IAAAuK,aAAA,GAAAxK,sBAAA,CAAAC,OAAA;AACA,IAAAwK,cAAA,GAAAzK,sBAAA,CAAAC,OAAA;AACA,IAAAyK,OAAA,GAAA1K,sBAAA,CAAAC,OAAA;AACA,IAAA0K,OAAA,GAAA3K,sBAAA,CAAAC,OAAA;AACA,IAAA2K,IAAA,GAAA5K,sBAAA,CAAAC,OAAA;AACA,IAAA4K,SAAA,GAAA7K,sBAAA,CAAAC,OAAA;AACA,IAAA6K,QAAA,GAAA9K,sBAAA,CAAAC,OAAA;AACA,IAAA8K,iBAAA,GAAA/K,sBAAA,CAAAC,OAAA;AACA,IAAA+K,WAAA,GAAAhL,sBAAA,CAAAC,OAAA;AACA,IAAAgL,KAAA,GAAAjL,sBAAA,CAAAC,OAAA;AACA,IAAAiL,KAAA,GAAAlL,sBAAA,CAAAC,OAAA;AACA,IAAAkL,WAAA,GAAAnL,sBAAA,CAAAC,OAAA;AACA,IAAAmL,eAAA,GAAApL,sBAAA,CAAAC,OAAA;AACA,IAAAoL,YAAA,GAAArL,sBAAA,CAAAC,OAAA;AACA,IAAAqL,aAAA,GAAAtL,sBAAA,CAAAC,OAAA;AACA,IAAAsL,kBAAA,GAAAvL,sBAAA,CAAAC,OAAA;AACA,IAAAuL,iBAAA,GAAAxL,sBAAA,CAAAC,OAAA;AACA,IAAAwL,SAAA,GAAAzL,sBAAA,CAAAC,OAAA;AACA,IAAAyL,YAAA,GAAA1L,sBAAA,CAAAC,OAAA;AACA,IAAA0L,kBAAA,GAAA3L,sBAAA,CAAAC,OAAA;AACA,IAAA2L,SAAA,GAAA5L,sBAAA,CAAAC,OAAA;AACA,IAAA4L,UAAA,GAAA7L,sBAAA,CAAAC,OAAA;AACA,IAAA6L,SAAA,GAAA9L,sBAAA,CAAAC,OAAA;AACA,IAAA8L,KAAA,GAAA/L,sBAAA,CAAAC,OAAA;AACA,IAAA+L,aAAA,GAAAhM,sBAAA,CAAAC,OAAA;AACA,IAAAgM,SAAA,GAAAjM,sBAAA,CAAAC,OAAA;AACA,IAAAiM,UAAA,GAAAlM,sBAAA,CAAAC,OAAA;AACA,IAAAkM,UAAA,GAAAnM,sBAAA,CAAAC,OAAA;AACA,IAAAmM,gBAAA,GAAApM,sBAAA,CAAAC,OAAA;AACA,IAAAoM,oBAAA,GAAArM,sBAAA,CAAAC,OAAA;AACA,IAAAqM,uBAAA,GAAAtM,sBAAA,CAAAC,OAAA;AACA,IAAAsM,wBAAA,GAAAvM,sBAAA,CAAAC,OAAA;AACA,IAAAuM,MAAA,GAAAxM,sBAAA,CAAAC,OAAA;AACA,IAAAwM,QAAA,GAAAzM,sBAAA,CAAAC,OAAA;AACA,IAAAyM,KAAA,GAAA1M,sBAAA,CAAAC,OAAA;AACA,IAAA0M,UAAA,GAAA3M,sBAAA,CAAAC,OAAA;AACA,IAAA2M,cAAA,GAAA5M,sBAAA,CAAAC,OAAA;AACA,IAAA4M,QAAA,GAAA7M,sBAAA,CAAAC,OAAA;AACA,IAAA6M,MAAA,GAAA9M,sBAAA,CAAAC,OAAA;AACA,IAAA8M,eAAA,GAAA/M,sBAAA,CAAAC,OAAA;AACA,IAAA+M,cAAA,GAAAhN,sBAAA,CAAAC,OAAA;AACA,IAAAgN,IAAA,GAAAjN,sBAAA,CAAAC,OAAA;AACA,IAAAiN,OAAA,GAAAlN,sBAAA,CAAAC,OAAA;AACA,IAAAkN,WAAA,GAAAnN,sBAAA,CAAAC,OAAA;AACA,IAAAmN,YAAA,GAAApN,sBAAA,CAAAC,OAAA;AACA,IAAAoN,IAAA,GAAArN,sBAAA,CAAAC,OAAA;AACA,IAAAqN,OAAA,GAAAtN,sBAAA,CAAAC,OAAA;AACA,IAAAsN,KAAA,GAAAvN,sBAAA,CAAAC,OAAA;AACA,IAAAuN,OAAA,GAAAxN,sBAAA,CAAAC,OAAA;AACA,IAAAwN,UAAA,GAAAzN,sBAAA,CAAAC,OAAA;AACA,IAAAyN,SAAA,GAAA1N,sBAAA,CAAAC,OAAA;AACA,IAAA0N,OAAA,GAAA3N,sBAAA,CAAAC,OAAA;AACA,IAAA2N,MAAA,GAAA5N,sBAAA,CAAAC,OAAA;AACA,IAAA4N,OAAA,GAAA7N,sBAAA,CAAAC,OAAA;AACA,IAAA6N,UAAA,GAAA9N,sBAAA,CAAAC,OAAA;AACA,IAAA8N,QAAA,GAAA/N,sBAAA,CAAAC,OAAA;AACA,IAAA+N,SAAA,GAAAhO,sBAAA,CAAAC,OAAA;AACA,IAAAgO,MAAA,GAAAjO,sBAAA,CAAAC,OAAA;AACA,IAAAiO,UAAA,GAAAlO,sBAAA,CAAAC,OAAA;AACA,IAAAkO,WAAA,GAAAnO,sBAAA,CAAAC,OAAA;AACA,IAAAmO,SAAA,GAAApO,sBAAA,CAAAC,OAAA;AACA,IAAAoO,MAAA,GAAArO,sBAAA,CAAAC,OAAA;AACA,IAAAqO,iBAAA,GAAAtO,sBAAA,CAAAC,OAAA;AACA,IAAAsO,OAAA,GAAAvO,sBAAA,CAAAC,OAAA;AACA,IAAAuO,SAAA,GAAAxO,sBAAA,CAAAC,OAAA;AACA,IAAAwO,YAAA,GAAAzO,sBAAA,CAAAC,OAAA;AACA,IAAAyO,UAAA,GAAA1O,sBAAA,CAAAC,OAAA;AACA,IAAA0O,YAAA,GAAA3O,sBAAA,CAAAC,OAAA;AACA,IAAA2O,OAAA,GAAA5O,sBAAA,CAAAC,OAAA;AACA,IAAA4O,iBAAA,GAAA7O,sBAAA,CAAAC,OAAA;AACA,IAAA6O,kBAAA,GAAA9O,sBAAA,CAAAC,OAAA;AACA,IAAA8O,kBAAA,GAAA/O,sBAAA,CAAAC,OAAA;AACA,IAAA+O,gBAAA,GAAAhP,sBAAA,CAAAC,OAAA;AACA,IAAAgP,cAAA,GAAAjP,sBAAA,CAAAC,OAAA;AACA,IAAAiP,eAAA,GAAAlP,sBAAA,CAAAC,OAAA;AACA,IAAAkP,eAAA,GAAAnP,sBAAA,CAAAC,OAAA;AACA,IAAAmP,MAAA,GAAApP,sBAAA,CAAAC,OAAA;AACA,IAAAoP,IAAA,GAAArP,sBAAA,CAAAC,OAAA;AACA,IAAAqP,aAAA,GAAAtP,sBAAA,CAAAC,OAAA;AACA,IAAAsP,gBAAA,GAAAvP,sBAAA,CAAAC,OAAA;AACA,IAAAuP,OAAA,GAAAxP,sBAAA,CAAAC,OAAA;AACA,IAAAwP,OAAA,GAAAzP,sBAAA,CAAAC,OAAA;AACA,IAAAyP,QAAA,GAAA1P,sBAAA,CAAAC,OAAA;AACA,IAAA0P,SAAA,GAAA3P,sBAAA,CAAAC,OAAA;AACA,IAAA2P,WAAA,GAAA5P,sBAAA,CAAAC,OAAA;AACA,IAAA4P,YAAA,GAAA7P,sBAAA,CAAAC,OAAA;AACA,IAAA6P,gBAAA,GAAA9P,sBAAA,CAAAC,OAAA;AACA,IAAA8P,UAAA,GAAA/P,sBAAA,CAAAC,OAAA;AACA,IAAA+P,WAAA,GAAAhQ,sBAAA,CAAAC,OAAA;AACA,IAAAgQ,SAAA,GAAAjQ,sBAAA,CAAAC,OAAA;AACA,IAAAiQ,cAAA,GAAAlQ,sBAAA,CAAAC,OAAA;AACA,IAAAkQ,UAAA,GAAAnQ,sBAAA,CAAAC,OAAA;AACA,IAAAmQ,eAAA,GAAApQ,sBAAA,CAAAC,OAAA;AACA,IAAAoQ,aAAA,GAAArQ,sBAAA,CAAAC,OAAA;AACA,IAAAqQ,OAAA,GAAAtQ,sBAAA,CAAAC,OAAA;AACA,IAAAsQ,MAAA,GAAAvQ,sBAAA,CAAAC,OAAA;AACA,IAAAuQ,IAAA,GAAAxQ,sBAAA,CAAAC,OAAA;AACA,IAAAwQ,KAAA,GAAAzQ,sBAAA,CAAAC,OAAA;AACA,IAAAyQ,MAAA,GAAA1Q,sBAAA,CAAAC,OAAA;AACA,IAAA0Q,aAAA,GAAA3Q,sBAAA,CAAAC,OAAA;AACA,IAAA2Q,WAAA,GAAA5Q,sBAAA,CAAAC,OAAA;AACA,IAAA4Q,WAAA,GAAA7Q,sBAAA,CAAAC,OAAA;AACA,IAAA6Q,KAAA,GAAA9Q,sBAAA,CAAAC,OAAA;AACA,IAAA8Q,QAAA,GAAA/Q,sBAAA,CAAAC,OAAA;AACA,IAAA+Q,OAAA,GAAAhR,sBAAA,CAAAC,OAAA;AACA,IAAAgR,OAAA,GAAAjR,sBAAA,CAAAC,OAAA;AACA,IAAAiR,OAAA,GAAAlR,sBAAA,CAAAC,OAAA;AACA,IAAAkR,MAAA,GAAAnR,sBAAA,CAAAC,OAAA;AACA,IAAAmR,MAAA,GAAApR,sBAAA,CAAAC,OAAA;AACA,IAAAoR,QAAA,GAAArR,sBAAA,CAAAC,OAAA;AACA,IAAAqR,OAAA,GAAAtR,sBAAA,CAAAC,OAAA;AACA,IAAAsR,UAAA,GAAAvR,sBAAA,CAAAC,OAAA"}
|
package/build/library/archive.js
CHANGED
@@ -14,7 +14,9 @@ const archive = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
viewBox: "0 0 24 24",
|
15
15
|
xmlns: "http://www.w3.org/2000/svg"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M11.934 7.406a1 1 0 0 0 .914.594H19a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5h5.764a.5.5 0 0 1 .447.276l.723 1.63Zm1.064-1.216a.5.5 0 0 0 .462.31H19a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.764a2 2 0 0 1 1.789 1.106l.445 1.084ZM8.5 10.5h7V12h-7v-1.5Zm7 3.5h-7v1.5h7V14Z"
|
18
20
|
}));
|
19
21
|
var _default = archive;
|
20
22
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","archive","_react","createElement","SVG","viewBox","xmlns","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/archive.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst archive = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path
|
1
|
+
{"version":3,"names":["_primitives","require","archive","_react","createElement","SVG","viewBox","xmlns","Path","fillRule","clipRule","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/archive.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst archive = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path\n\t\t\tfillRule=\"evenodd\"\n\t\t\tclipRule=\"evenodd\"\n\t\t\td=\"M11.934 7.406a1 1 0 0 0 .914.594H19a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5h5.764a.5.5 0 0 1 .447.276l.723 1.63Zm1.064-1.216a.5.5 0 0 0 .462.31H19a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5.764a2 2 0 0 1 1.789 1.106l.445 1.084ZM8.5 10.5h7V12h-7v-1.5Zm7 3.5h-7v1.5h7V14Z\"\n\t\t/>\n\t</SVG>\n);\n\nexport default archive;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,OAAO,GACZ,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,OAAO,EAAC,WAAW;EAACC,KAAK,EAAC;AAA4B,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,QAAQ,EAAC,SAAS;EAClBC,QAAQ,EAAC,SAAS;EAClBC,CAAC,EAAC;AAAoU,CACtU,CACG,CACL;AAAC,IAAAC,QAAA,GAEaV,OAAO;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build/library/columns.js
CHANGED
@@ -14,7 +14,9 @@ const columns = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
viewBox: "0 0 24 24",
|
15
15
|
xmlns: "http://www.w3.org/2000/svg"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M15 7.5h-5v10h5v-10Zm1.5 0v10H19a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-.5-.5h-2.5ZM6 7.5h2.5v10H6a.5.5 0 0 1-.5-.5V8a.5.5 0 0 1 .5-.5ZM6 6h13a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Z"
|
18
20
|
}));
|
19
21
|
var _default = columns;
|
20
22
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","columns","_react","createElement","SVG","viewBox","xmlns","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/columns.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst columns = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path
|
1
|
+
{"version":3,"names":["_primitives","require","columns","_react","createElement","SVG","viewBox","xmlns","Path","fillRule","clipRule","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/columns.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst columns = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path\n\t\t\tfillRule=\"evenodd\"\n\t\t\tclipRule=\"evenodd\"\n\t\t\td=\"M15 7.5h-5v10h5v-10Zm1.5 0v10H19a.5.5 0 0 0 .5-.5V8a.5.5 0 0 0-.5-.5h-2.5ZM6 7.5h2.5v10H6a.5.5 0 0 1-.5-.5V8a.5.5 0 0 1 .5-.5ZM6 6h13a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Z\"\n\t\t/>\n\t</SVG>\n);\n\nexport default columns;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,OAAO,GACZ,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,OAAO,EAAC,WAAW;EAACC,KAAK,EAAC;AAA4B,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,QAAQ,EAAC,SAAS;EAClBC,QAAQ,EAAC,SAAS;EAClBC,CAAC,EAAC;AAAsM,CACxM,CACG,CACL;AAAC,IAAAC,QAAA,GAEaV,OAAO;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build/library/copy.js
CHANGED
@@ -14,7 +14,9 @@ const copy = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
15
15
|
viewBox: "0 0 24 24"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M5 4.5h11a.5.5 0 0 1 .5.5v11a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5ZM3 5a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm17 3v10.75c0 .69-.56 1.25-1.25 1.25H6v1.5h12.75a2.75 2.75 0 0 0 2.75-2.75V8H20Z"
|
18
20
|
}));
|
19
21
|
var _default = copy;
|
20
22
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","copy","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/copy.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst copy = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path
|
1
|
+
{"version":3,"names":["_primitives","require","copy","_react","createElement","SVG","xmlns","viewBox","Path","fillRule","clipRule","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/copy.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst copy = (\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=\"M5 4.5h11a.5.5 0 0 1 .5.5v11a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5ZM3 5a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm17 3v10.75c0 .69-.56 1.25-1.25 1.25H6v1.5h12.75a2.75 2.75 0 0 0 2.75-2.75V8H20Z\"\n\t\t/>\n\t</SVG>\n);\n\nexport default copy;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,IAAI,GACT,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,QAAQ,EAAC,SAAS;EAClBC,QAAQ,EAAC,SAAS;EAClBC,CAAC,EAAC;AAA4O,CAC9O,CACG,CACL;AAAC,IAAAC,QAAA,GAEaV,IAAI;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build/library/crop.js
CHANGED
@@ -14,7 +14,7 @@ const crop = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
15
15
|
viewBox: "0 0 24 24"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
d: "
|
17
|
+
d: "M18 20v-2h2v-1.5H7.75a.25.25 0 0 1-.25-.25V4H6v2H4v1.5h2v8.75c0 .966.784 1.75 1.75 1.75h8.75v2H18ZM9.273 7.5h6.977a.25.25 0 0 1 .25.25v6.977H18V7.75A1.75 1.75 0 0 0 16.25 6H9.273v1.5Z"
|
18
18
|
}));
|
19
19
|
var _default = crop;
|
20
20
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","crop","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/crop.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst crop = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"
|
1
|
+
{"version":3,"names":["_primitives","require","crop","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/crop.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst crop = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M18 20v-2h2v-1.5H7.75a.25.25 0 0 1-.25-.25V4H6v2H4v1.5h2v8.75c0 .966.784 1.75 1.75 1.75h8.75v2H18ZM9.273 7.5h6.977a.25.25 0 0 1 .25.25v6.977H18V7.75A1.75 1.75 0 0 0 16.25 6H9.273v1.5Z\" />\n\t</SVG>\n);\n\nexport default crop;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,IAAI,GACT,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAyL,CAAE,CAC/L,CACL;AAAC,IAAAC,QAAA,GAEaR,IAAI;AAAAS,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build/library/file.js
CHANGED
@@ -14,7 +14,9 @@ const file = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
viewBox: "0 0 24 24",
|
15
15
|
xmlns: "http://www.w3.org/2000/svg"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M12.848 8a1 1 0 0 1-.914-.594l-.723-1.63a.5.5 0 0 0-.447-.276H5a.5.5 0 0 0-.5.5v11.5a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5v-9A.5.5 0 0 0 19 8h-6.152Zm.612-1.5a.5.5 0 0 1-.462-.31l-.445-1.084A2 2 0 0 0 10.763 4H5a2 2 0 0 0-2 2v11.5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-5.54Z"
|
18
20
|
}));
|
19
21
|
var _default = file;
|
20
22
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","file","_react","createElement","SVG","viewBox","xmlns","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/file.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst file = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path
|
1
|
+
{"version":3,"names":["_primitives","require","file","_react","createElement","SVG","viewBox","xmlns","Path","fillRule","clipRule","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/file.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst file = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path\n\t\t\tfillRule=\"evenodd\"\n\t\t\tclipRule=\"evenodd\"\n\t\t\td=\"M12.848 8a1 1 0 0 1-.914-.594l-.723-1.63a.5.5 0 0 0-.447-.276H5a.5.5 0 0 0-.5.5v11.5a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5v-9A.5.5 0 0 0 19 8h-6.152Zm.612-1.5a.5.5 0 0 1-.462-.31l-.445-1.084A2 2 0 0 0 10.763 4H5a2 2 0 0 0-2 2v11.5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-5.54Z\"\n\t\t/>\n\t</SVG>\n);\n\nexport default file;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,IAAI,GACT,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,OAAO,EAAC,WAAW;EAACC,KAAK,EAAC;AAA4B,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,QAAQ,EAAC,SAAS;EAClBC,QAAQ,EAAC,SAAS;EAClBC,CAAC,EAAC;AAA6R,CAC/R,CACG,CACL;AAAC,IAAAC,QAAA,GAEaV,IAAI;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build/library/page.js
CHANGED
@@ -14,7 +14,9 @@ const page = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
15
15
|
viewBox: "0 0 24 24"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
d: "
|
17
|
+
d: "M15.5 7.5h-7V9h7V7.5Zm-7 3.5h7v1.5h-7V11Zm7 3.5h-7V16h7v-1.5Z"
|
18
|
+
}), (0, _react.createElement)(_primitives.Path, {
|
19
|
+
d: "M17 4H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM7 5.5h10a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H7a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5Z"
|
18
20
|
}));
|
19
21
|
var _default = page;
|
20
22
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","page","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/page.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst page = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"
|
1
|
+
{"version":3,"names":["_primitives","require","page","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/page.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst page = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M15.5 7.5h-7V9h7V7.5Zm-7 3.5h7v1.5h-7V11Zm7 3.5h-7V16h7v-1.5Z\" />\n\t\t<Path d=\"M17 4H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM7 5.5h10a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H7a.5.5 0 0 1-.5-.5V6a.5.5 0 0 1 .5-.5Z\" />\n\t</SVG>\n);\n\nexport default page;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,IAAI,GACT,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAA+D,CAAE,CAAC,EAC1E,IAAAN,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAA6J,CAAE,CACnK,CACL;AAAC,IAAAC,QAAA,GAEaR,IAAI;AAAAS,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build/library/pages.js
CHANGED
@@ -14,7 +14,11 @@ const pages = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
15
15
|
viewBox: "0 0 24 24"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
d: "
|
17
|
+
d: "M14.5 5.5h-7V7h7V5.5ZM7.5 9h7v1.5h-7V9Zm7 3.5h-7V14h7v-1.5Z"
|
18
|
+
}), (0, _react.createElement)(_primitives.Path, {
|
19
|
+
d: "M16 2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM6 3.5h10a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V4a.5.5 0 0 1 .5-.5Z"
|
20
|
+
}), (0, _react.createElement)(_primitives.Path, {
|
21
|
+
d: "M20 8v11c0 .69-.31 1-.999 1H6v1.5h13.001c1.52 0 2.499-.982 2.499-2.5V8H20Z"
|
18
22
|
}));
|
19
23
|
var _default = pages;
|
20
24
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","pages","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/pages.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst pages = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"
|
1
|
+
{"version":3,"names":["_primitives","require","pages","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/pages.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst pages = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M14.5 5.5h-7V7h7V5.5ZM7.5 9h7v1.5h-7V9Zm7 3.5h-7V14h7v-1.5Z\" />\n\t\t<Path d=\"M16 2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2ZM6 3.5h10a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5V4a.5.5 0 0 1 .5-.5Z\" />\n\t\t<Path d=\"M20 8v11c0 .69-.31 1-.999 1H6v1.5h13.001c1.52 0 2.499-.982 2.499-2.5V8H20Z\" />\n\t</SVG>\n);\n\nexport default pages;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,KAAK,GACV,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAA6D,CAAE,CAAC,EACxE,IAAAN,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAA6J,CAAE,CAAC,EACxK,IAAAN,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAA4E,CAAE,CAClF,CACL;AAAC,IAAAC,QAAA,GAEaR,KAAK;AAAAS,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build/library/plus.js
CHANGED
@@ -14,7 +14,7 @@ const plus = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
15
15
|
viewBox: "0 0 24 24"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
d: "
|
17
|
+
d: "M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z"
|
18
18
|
}));
|
19
19
|
var _default = plus;
|
20
20
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","plus","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/plus.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst plus = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"
|
1
|
+
{"version":3,"names":["_primitives","require","plus","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/plus.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst plus = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M11 12.5V17.5H12.5V12.5H17.5V11H12.5V6H11V11H6V12.5H11Z\" />\n\t</SVG>\n);\n\nexport default plus;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,IAAI,GACT,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAyD,CAAE,CAC/D,CACL;AAAC,IAAAC,QAAA,GAEaR,IAAI;AAAAS,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
@@ -14,7 +14,7 @@ const postExcerpt = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
15
15
|
viewBox: "0 0 24 24"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
d: "
|
17
|
+
d: "M8.001 3.984V9.47c0 1.518-.98 2.5-2.499 2.5h-.5v-1.5h.5c.69 0 1-.31 1-1V6.984H4v-3h4.001ZM4 20h9v-1.5H4V20Zm16-4H4v-1.5h16V16ZM13.001 3.984V9.47c0 1.518-.98 2.5-2.499 2.5h-.5v-1.5h.5c.69 0 1-.31 1-1V6.984H9v-3h4.001Z"
|
18
18
|
}));
|
19
19
|
var _default = postExcerpt;
|
20
20
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","postExcerpt","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/post-excerpt.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst postExcerpt = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"
|
1
|
+
{"version":3,"names":["_primitives","require","postExcerpt","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/post-excerpt.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst postExcerpt = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M8.001 3.984V9.47c0 1.518-.98 2.5-2.499 2.5h-.5v-1.5h.5c.69 0 1-.31 1-1V6.984H4v-3h4.001ZM4 20h9v-1.5H4V20Zm16-4H4v-1.5h16V16ZM13.001 3.984V9.47c0 1.518-.98 2.5-2.499 2.5h-.5v-1.5h.5c.69 0 1-.31 1-1V6.984H9v-3h4.001Z\" />\n\t</SVG>\n);\n\nexport default postExcerpt;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,WAAW,GAChB,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAA0N,CAAE,CAChO,CACL;AAAC,IAAAC,QAAA,GAEaR,WAAW;AAAAS,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
@@ -14,7 +14,7 @@ const postList = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
viewBox: "0 0 24 24",
|
15
15
|
xmlns: "http://www.w3.org/2000/svg"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
d: "M18
|
17
|
+
d: "M18 5.5H6a.5.5 0 0 0-.5.5v12a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5ZM6 4h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm1 5h1.5v1.5H7V9Zm1.5 4.5H7V15h1.5v-1.5ZM10 9h7v1.5h-7V9Zm7 4.5h-7V15h7v-1.5Z"
|
18
18
|
}));
|
19
19
|
var _default = postList;
|
20
20
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","postList","_react","createElement","SVG","viewBox","xmlns","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/post-list.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst postList = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path d=\"M18
|
1
|
+
{"version":3,"names":["_primitives","require","postList","_react","createElement","SVG","viewBox","xmlns","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/post-list.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst postList = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path d=\"M18 5.5H6a.5.5 0 0 0-.5.5v12a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5V6a.5.5 0 0 0-.5-.5ZM6 4h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm1 5h1.5v1.5H7V9Zm1.5 4.5H7V15h1.5v-1.5ZM10 9h7v1.5h-7V9Zm7 4.5h-7V15h7v-1.5Z\" />\n\t</SVG>\n);\n\nexport default postList;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,QAAQ,GACb,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,OAAO,EAAC,WAAW;EAACC,KAAK,EAAC;AAA4B,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAA0O,CAAE,CAChP,CACL;AAAC,IAAAC,QAAA,GAEaR,QAAQ;AAAAS,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
var _react = require("react");
|
8
|
+
var _primitives = require("@wordpress/primitives");
|
9
|
+
/**
|
10
|
+
* WordPress dependencies
|
11
|
+
*/
|
12
|
+
|
13
|
+
const tableOfContents = (0, _react.createElement)(_primitives.SVG, {
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
15
|
+
viewBox: "0 0 24 24"
|
16
|
+
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M20 9.484h-8.889v-1.5H20v1.5Zm0 7h-4.889v-1.5H20v1.5Zm-14 .032a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"
|
20
|
+
}), (0, _react.createElement)(_primitives.Path, {
|
21
|
+
d: "M13 15.516a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 8.484a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z"
|
22
|
+
}));
|
23
|
+
var _default = tableOfContents;
|
24
|
+
exports.default = _default;
|
25
|
+
//# sourceMappingURL=table-of-contents.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["_primitives","require","tableOfContents","_react","createElement","SVG","xmlns","viewBox","Path","fillRule","clipRule","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/table-of-contents.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst tableOfContents = (\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=\"M20 9.484h-8.889v-1.5H20v1.5Zm0 7h-4.889v-1.5H20v1.5Zm-14 .032a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 1a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"\n\t\t/>\n\t\t<Path d=\"M13 15.516a2 2 0 1 1-4 0 2 2 0 0 1 4 0ZM8 8.484a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z\" />\n\t</SVG>\n);\n\nexport default tableOfContents;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,eAAe,GACpB,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,QAAQ,EAAC,SAAS;EAClBC,QAAQ,EAAC,SAAS;EAClBC,CAAC,EAAC;AAA8H,CAChI,CAAC,EACF,IAAAR,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACG,CAAC,EAAC;AAA8E,CAAE,CACpF,CACL;AAAC,IAAAC,QAAA,GAEaV,eAAe;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build/library/tag.js
CHANGED
@@ -14,7 +14,7 @@ const tag = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
15
15
|
viewBox: "0 0 24 24"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
d: "
|
17
|
+
d: "M4.75 4a.75.75 0 0 0-.75.75v7.826c0 .2.08.39.22.53l6.72 6.716a2.313 2.313 0 0 0 3.276-.001l5.61-5.611-.531-.53.532.528a2.315 2.315 0 0 0 0-3.264L13.104 4.22a.75.75 0 0 0-.53-.22H4.75ZM19 12.576a.815.815 0 0 1-.236.574l-5.61 5.611a.814.814 0 0 1-1.153 0L5.5 12.264V5.5h6.763l6.5 6.502a.816.816 0 0 1 .237.574ZM8.75 9.75a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
|
18
18
|
}));
|
19
19
|
var _default = tag;
|
20
20
|
exports.default = _default;
|
package/build/library/tag.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","tag","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/tag.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst tag = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"
|
1
|
+
{"version":3,"names":["_primitives","require","tag","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/tag.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst tag = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M4.75 4a.75.75 0 0 0-.75.75v7.826c0 .2.08.39.22.53l6.72 6.716a2.313 2.313 0 0 0 3.276-.001l5.61-5.611-.531-.53.532.528a2.315 2.315 0 0 0 0-3.264L13.104 4.22a.75.75 0 0 0-.53-.22H4.75ZM19 12.576a.815.815 0 0 1-.236.574l-5.61 5.611a.814.814 0 0 1-1.153 0L5.5 12.264V5.5h6.763l6.5 6.502a.816.816 0 0 1 .237.574ZM8.75 9.75a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\" />\n\t</SVG>\n);\n\nexport default tag;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,GAAG,GACR,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAA6V,CAAE,CACnW,CACL;AAAC,IAAAC,QAAA,GAEaR,GAAG;AAAAS,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build/library/trash.js
CHANGED
@@ -14,7 +14,9 @@ const trash = (0, _react.createElement)(_primitives.SVG, {
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
15
15
|
viewBox: "0 0 24 24"
|
16
16
|
}, (0, _react.createElement)(_primitives.Path, {
|
17
|
-
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M12 5.5A2.25 2.25 0 0 0 9.878 7h4.244A2.251 2.251 0 0 0 12 5.5ZM12 4a3.751 3.751 0 0 0-3.675 3H5v1.5h1.27l.818 8.997a2.75 2.75 0 0 0 2.739 2.501h4.347a2.75 2.75 0 0 0 2.738-2.5L17.73 8.5H19V7h-3.325A3.751 3.751 0 0 0 12 4Zm4.224 4.5H7.776l.806 8.861a1.25 1.25 0 0 0 1.245 1.137h4.347a1.25 1.25 0 0 0 1.245-1.137l.805-8.861Z"
|
18
20
|
}));
|
19
21
|
var _default = trash;
|
20
22
|
exports.default = _default;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_primitives","require","trash","_react","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/trash.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst trash = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path
|
1
|
+
{"version":3,"names":["_primitives","require","trash","_react","createElement","SVG","xmlns","viewBox","Path","fillRule","clipRule","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/trash.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst trash = (\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=\"M12 5.5A2.25 2.25 0 0 0 9.878 7h4.244A2.251 2.251 0 0 0 12 5.5ZM12 4a3.751 3.751 0 0 0-3.675 3H5v1.5h1.27l.818 8.997a2.75 2.75 0 0 0 2.739 2.501h4.347a2.75 2.75 0 0 0 2.738-2.5L17.73 8.5H19V7h-3.325A3.751 3.751 0 0 0 12 4Zm4.224 4.5H7.776l.806 8.861a1.25 1.25 0 0 0 1.245 1.137h4.347a1.25 1.25 0 0 0 1.245-1.137l.805-8.861Z\"\n\t\t/>\n\t</SVG>\n);\n\nexport default trash;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,KAAK,GACV,IAAAC,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,MAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,QAAQ,EAAC,SAAS;EAClBC,QAAQ,EAAC,SAAS;EAClBC,CAAC,EAAC;AAAqU,CACvU,CACG,CACL;AAAC,IAAAC,QAAA,GAEaV,KAAK;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/build-module/index.js
CHANGED
@@ -237,6 +237,7 @@ export { default as swatch } from './library/swatch';
|
|
237
237
|
export { default as tableColumnAfter } from './library/table-column-after';
|
238
238
|
export { default as tableColumnBefore } from './library/table-column-before';
|
239
239
|
export { default as tableColumnDelete } from './library/table-column-delete';
|
240
|
+
export { default as tableOfContents } from './library/table-of-contents';
|
240
241
|
export { default as tableRowAfter } from './library/table-row-after';
|
241
242
|
export { default as tableRowBefore } from './library/table-row-before';
|
242
243
|
export { default as tableRowDelete } from './library/table-row-delete';
|