@automattic/social-previews 2.0.0 → 2.0.1-beta.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/dist/cjs/helpers.js +10 -5
- package/dist/cjs/helpers.js.map +1 -1
- package/dist/cjs/index.js +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/instagram-preview/constants.js +6 -0
- package/dist/cjs/instagram-preview/constants.js.map +1 -0
- package/dist/cjs/instagram-preview/icons/bookmark.js +9 -0
- package/dist/cjs/instagram-preview/icons/bookmark.js.map +1 -0
- package/dist/cjs/instagram-preview/icons/comment.js +9 -0
- package/dist/cjs/instagram-preview/icons/comment.js.map +1 -0
- package/dist/cjs/instagram-preview/icons/default-avatar.js +9 -0
- package/dist/cjs/instagram-preview/icons/default-avatar.js.map +1 -0
- package/dist/cjs/instagram-preview/icons/heart.js +9 -0
- package/dist/cjs/instagram-preview/icons/heart.js.map +1 -0
- package/dist/cjs/instagram-preview/icons/menu.js +9 -0
- package/dist/cjs/instagram-preview/icons/menu.js.map +1 -0
- package/dist/cjs/instagram-preview/icons/share.js +9 -0
- package/dist/cjs/instagram-preview/icons/share.js.map +1 -0
- package/dist/cjs/instagram-preview/index.js +6 -0
- package/dist/cjs/instagram-preview/index.js.map +1 -0
- package/dist/cjs/instagram-preview/post-preview.js +30 -0
- package/dist/cjs/instagram-preview/post-preview.js.map +1 -0
- package/dist/cjs/instagram-preview/previews.js +15 -0
- package/dist/cjs/instagram-preview/previews.js.map +1 -0
- package/dist/cjs/instagram-preview/style.scss +103 -0
- package/dist/cjs/instagram-preview/types.js +3 -0
- package/dist/cjs/instagram-preview/types.js.map +1 -0
- package/dist/esm/helpers.js +10 -5
- package/dist/esm/helpers.js.map +1 -1
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/instagram-preview/constants.js +3 -0
- package/dist/esm/instagram-preview/constants.js.map +1 -0
- package/dist/esm/instagram-preview/icons/bookmark.js +5 -0
- package/dist/esm/instagram-preview/icons/bookmark.js.map +1 -0
- package/dist/esm/instagram-preview/icons/comment.js +5 -0
- package/dist/esm/instagram-preview/icons/comment.js.map +1 -0
- package/dist/esm/instagram-preview/icons/default-avatar.js +5 -0
- package/dist/esm/instagram-preview/icons/default-avatar.js.map +1 -0
- package/dist/esm/instagram-preview/icons/heart.js +5 -0
- package/dist/esm/instagram-preview/icons/heart.js.map +1 -0
- package/dist/esm/instagram-preview/icons/menu.js +5 -0
- package/dist/esm/instagram-preview/icons/menu.js.map +1 -0
- package/dist/esm/instagram-preview/icons/share.js +5 -0
- package/dist/esm/instagram-preview/icons/share.js.map +1 -0
- package/dist/esm/instagram-preview/index.js +3 -0
- package/dist/esm/instagram-preview/index.js.map +1 -0
- package/dist/esm/instagram-preview/post-preview.js +26 -0
- package/dist/esm/instagram-preview/post-preview.js.map +1 -0
- package/dist/esm/instagram-preview/previews.js +10 -0
- package/dist/esm/instagram-preview/previews.js.map +1 -0
- package/dist/esm/instagram-preview/style.scss +103 -0
- package/dist/esm/instagram-preview/types.js +2 -0
- package/dist/esm/instagram-preview/types.js.map +1 -0
- package/dist/tsconfig-cjs.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/helpers.d.ts +2 -1
- package/dist/types/helpers.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/instagram-preview/constants.d.ts +3 -0
- package/dist/types/instagram-preview/constants.d.ts.map +1 -0
- package/dist/types/instagram-preview/icons/bookmark.d.ts +2 -0
- package/dist/types/instagram-preview/icons/bookmark.d.ts.map +1 -0
- package/dist/types/instagram-preview/icons/comment.d.ts +2 -0
- package/dist/types/instagram-preview/icons/comment.d.ts.map +1 -0
- package/dist/types/instagram-preview/icons/default-avatar.d.ts +2 -0
- package/dist/types/instagram-preview/icons/default-avatar.d.ts.map +1 -0
- package/dist/types/instagram-preview/icons/heart.d.ts +2 -0
- package/dist/types/instagram-preview/icons/heart.d.ts.map +1 -0
- package/dist/types/instagram-preview/icons/menu.d.ts +2 -0
- package/dist/types/instagram-preview/icons/menu.d.ts.map +1 -0
- package/dist/types/instagram-preview/icons/share.d.ts +2 -0
- package/dist/types/instagram-preview/icons/share.d.ts.map +1 -0
- package/dist/types/instagram-preview/index.d.ts +3 -0
- package/dist/types/instagram-preview/index.d.ts.map +1 -0
- package/dist/types/instagram-preview/post-preview.d.ts +4 -0
- package/dist/types/instagram-preview/post-preview.d.ts.map +1 -0
- package/dist/types/instagram-preview/previews.d.ts +3 -0
- package/dist/types/instagram-preview/previews.d.ts.map +1 -0
- package/dist/types/instagram-preview/types.d.ts +8 -0
- package/dist/types/instagram-preview/types.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/helpers.ts +13 -8
- package/src/index.ts +1 -0
- package/src/instagram-preview/constants.tsx +2 -0
- package/src/instagram-preview/icons/bookmark.tsx +21 -0
- package/src/instagram-preview/icons/comment.tsx +20 -0
- package/src/instagram-preview/icons/default-avatar.tsx +10 -0
- package/src/instagram-preview/icons/heart.tsx +14 -0
- package/src/instagram-preview/icons/menu.tsx +24 -0
- package/src/instagram-preview/icons/share.tsx +30 -0
- package/src/instagram-preview/index.tsx +2 -0
- package/src/instagram-preview/post-preview.tsx +76 -0
- package/src/instagram-preview/previews.tsx +33 -0
- package/src/instagram-preview/style.scss +103 -0
- package/src/instagram-preview/types.ts +9 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react/jsx-runtime.d.ts","../src/constants.ts","../src/helpers.ts","../src/shared/section-heading/index.tsx","../src/types.ts","../src/google-search-preview/index.tsx","../src/twitter-preview/constants.ts","../../../node_modules/classnames/index.d.ts","../src/twitter-preview/types.ts","../src/twitter-preview/card.tsx","../src/twitter-preview/footer.tsx","../src/twitter-preview/header.tsx","../src/twitter-preview/media.tsx","../../../node_modules/@types/wordpress__components/primitives/block-quotation/index.d.ts","../../../node_modules/@types/wordpress__components/primitives/horizontal-rule/index.d.ts","../../../node_modules/@types/wordpress__components/primitives/svg/index.d.ts","../../../node_modules/@types/wordpress__components/primitives/index.d.ts","../../../node_modules/@types/wordpress__components/angle-picker-control/index.d.ts","../../../node_modules/@types/wordpress__components/animate/index.d.ts","../../../node_modules/@types/wordpress__components/autocomplete/index.d.ts","../../../node_modules/@types/wordpress__components/base-control/index.d.ts","../../../node_modules/@types/wordpress__components/dashicon/index.d.ts","../../../node_modules/@types/wordpress__components/icon/index.d.ts","../../../node_modules/@types/wordpress__components/popover/index.d.ts","../../../node_modules/@types/wordpress__components/shortcut/index.d.ts","../../../node_modules/@types/wordpress__components/tooltip/index.d.ts","../../../node_modules/@types/wordpress__components/button/index.d.ts","../../../node_modules/@types/wordpress__components/button-group/index.d.ts","../../../node_modules/@types/wordpress__components/card/index.d.ts","../../../node_modules/@types/wordpress__components/card/body/index.d.ts","../../../node_modules/@types/wordpress__components/card/divider/index.d.ts","../../../node_modules/@types/wordpress__components/card/footer/index.d.ts","../../../node_modules/@types/wordpress__components/card/header/index.d.ts","../../../node_modules/@types/wordpress__components/card/media/index.d.ts","../../../node_modules/@types/wordpress__components/checkbox-control/index.d.ts","../../../node_modules/@types/wordpress__components/clipboard-button/index.d.ts","../../../node_modules/@types/wordpress__components/color-indicator/index.d.ts","../../../node_modules/@types/wordpress__components/color-palette/index.d.ts","../../../node_modules/@types/tinycolor2/index.d.ts","../../../node_modules/@types/wordpress__components/color-picker/index.d.ts","../../../node_modules/@types/wordpress__components/combobox-control/index.d.ts","../../../node_modules/downshift/typings/index.d.ts","../../../node_modules/@types/wordpress__components/custom-select-control/index.d.ts","../../../node_modules/@types/wordpress__components/date-time/date.d.ts","../../../node_modules/@types/wordpress__components/date-time/time.d.ts","../../../node_modules/@types/wordpress__components/date-time/index.d.ts","../../../node_modules/@types/wordpress__components/disabled/index.d.ts","../../../node_modules/@types/wordpress__components/draggable/index.d.ts","../../../node_modules/@types/wordpress__components/drop-zone/index.d.ts","../../../node_modules/@types/wordpress__components/drop-zone/provider.d.ts","../../../node_modules/@types/wordpress__components/dropdown/index.d.ts","../../../node_modules/@types/wordpress__components/dropdown-menu/index.d.ts","../../../node_modules/@types/wordpress__components/external-link/index.d.ts","../../../node_modules/@types/wordpress__components/flex/index.d.ts","../../../node_modules/@types/wordpress__components/flex/block.d.ts","../../../node_modules/@types/wordpress__components/flex/item.d.ts","../../../node_modules/@types/wordpress__components/focal-point-picker/index.d.ts","../../../node_modules/@types/wordpress__components/focusable-iframe/index.d.ts","../../../node_modules/@types/wordpress__components/font-size-picker/index.d.ts","../../../node_modules/@types/wordpress__components/icon-button/index.d.ts","../../../node_modules/@types/wordpress__components/form-file-upload/index.d.ts","../../../node_modules/@types/wordpress__components/form-toggle/index.d.ts","../../../node_modules/@types/wordpress__components/form-token-field/index.d.ts","../../../node_modules/@types/wordpress__components/guide/index.d.ts","../../../node_modules/@types/wordpress__components/keyboard-shortcuts/index.d.ts","../../../node_modules/@types/wordpress__components/menu-group/index.d.ts","../../../node_modules/@types/wordpress__components/menu-item/index.d.ts","../../../node_modules/@types/wordpress__components/menu-items-choice/index.d.ts","../../../node_modules/@types/wordpress__components/modal/index.d.ts","../../../node_modules/@types/wordpress__components/navigable-container/tabbable.d.ts","../../../node_modules/@types/wordpress__components/navigable-container/menu.d.ts","../../../node_modules/@types/wordpress__components/navigable-container/index.d.ts","../../../node_modules/@types/wordpress__components/notice/index.d.ts","../../../node_modules/@types/wordpress__components/notice/list.d.ts","../../../node_modules/@types/wordpress__components/panel/index.d.ts","../../../node_modules/@types/wordpress__components/panel/body.d.ts","../../../node_modules/@types/wordpress__components/panel/header.d.ts","../../../node_modules/@types/wordpress__components/panel/row.d.ts","../../../node_modules/@types/wordpress__components/placeholder/index.d.ts","../../../node_modules/@types/wordpress__components/query-controls/index.d.ts","../../../node_modules/@types/wordpress__components/radio-control/index.d.ts","../../../node_modules/@types/wordpress__components/range-control/index.d.ts","../../../node_modules/re-resizable/lib/resizer.d.ts","../../../node_modules/re-resizable/lib/index.d.ts","../../../node_modules/@types/wordpress__components/resizable-box/index.d.ts","../../../node_modules/@types/wordpress__components/responsive-wrapper/index.d.ts","../../../node_modules/@types/wordpress__components/sandbox/index.d.ts","../../../node_modules/@types/wordpress__components/scroll-lock/index.d.ts","../../../node_modules/@types/wordpress__components/select-control/index.d.ts","../../../node_modules/@types/wordpress__components/snackbar/index.d.ts","../../../node_modules/@types/wordpress__components/snackbar/list.d.ts","../../../node_modules/@types/wordpress__components/spinner/index.d.ts","../../../node_modules/@types/wordpress__components/tab-panel/index.d.ts","../../../node_modules/@types/wordpress__components/text-control/index.d.ts","../../../node_modules/@types/wordpress__components/textarea-control/index.d.ts","../../../node_modules/@types/wordpress__components/tip/index.d.ts","../../../node_modules/@types/wordpress__components/toggle-control/index.d.ts","../../../node_modules/@types/wordpress__components/toolbar-button/index.d.ts","../../../node_modules/@types/wordpress__components/toolbar/index.d.ts","../../../node_modules/@types/wordpress__components/toolbar-group/index.d.ts","../../../node_modules/@types/wordpress__components/tree-select/index.d.ts","../../../node_modules/@types/wordpress__components/ui/context/wordpress-component.d.ts","../../../node_modules/@types/wordpress__components/visually-hidden/index.d.ts","../../../node_modules/@types/wordpress__components/isolated-event-container/index.d.ts","../../../node_modules/@types/wordpress__components/slot-fill/slot.d.ts","../../../node_modules/@types/wordpress__components/slot-fill/fill.d.ts","../../../node_modules/@wordpress/element/build-types/react.d.ts","../../../node_modules/@wordpress/element/build-types/create-interpolate-element.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@wordpress/element/build-types/react-platform.d.ts","../../../node_modules/@wordpress/element/build-types/utils.d.ts","../../../node_modules/@wordpress/element/build-types/platform.d.ts","../../../node_modules/@wordpress/element/build-types/serialize.d.ts","../../../node_modules/@wordpress/element/build-types/raw-html.d.ts","../../../node_modules/@wordpress/element/build-types/index.d.ts","../../../node_modules/@types/wordpress__components/slot-fill/context.d.ts","../../../node_modules/@types/wordpress__components/slot-fill/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/navigate-regions/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-constrained-tabbing/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-fallback-styles/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-filters/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-focus-outside/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-focus-return/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-notices/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-spoken-messages/index.d.ts","../../../node_modules/@types/wordpress__components/index.d.ts","../src/twitter-preview/quote-tweet.tsx","../../../node_modules/@wordpress/i18n/build-types/sprintf.d.ts","../../../node_modules/@wordpress/hooks/build-types/createaddhook.d.ts","../../../node_modules/@wordpress/hooks/build-types/createremovehook.d.ts","../../../node_modules/@wordpress/hooks/build-types/createhashook.d.ts","../../../node_modules/@wordpress/hooks/build-types/createdoinghook.d.ts","../../../node_modules/@wordpress/hooks/build-types/createdidhook.d.ts","../../../node_modules/@wordpress/hooks/build-types/index.d.ts","../../../node_modules/@wordpress/hooks/build-types/createhooks.d.ts","../../../node_modules/@wordpress/i18n/build-types/create-i18n.d.ts","../../../node_modules/@wordpress/i18n/build-types/default-i18n.d.ts","../../../node_modules/@wordpress/i18n/build-types/index.d.ts","../src/twitter-preview/sidebar.tsx","../src/twitter-preview/text.tsx","../src/twitter-preview/post-preview.tsx","../src/twitter-preview/link-preview.tsx","../src/twitter-preview/previews.tsx","../src/twitter-preview/index.tsx","../src/linkedin-preview/constants.ts","../src/linkedin-preview/types.ts","../src/linkedin-preview/post-preview.tsx","../src/linkedin-preview/link-preview.tsx","../src/linkedin-preview/previews.tsx","../src/linkedin-preview/index.tsx","../src/tumblr-preview/helpers.ts","../src/tumblr-preview/post/icons/index.tsx","../src/tumblr-preview/post/actions/index.tsx","../src/tumblr-preview/types.ts","../src/tumblr-preview/post/header/index.tsx","../src/tumblr-preview/link-preview.tsx","../src/tumblr-preview/post-preview.tsx","../src/tumblr-preview/previews.tsx","../src/tumblr-preview/index.tsx","../src/facebook-preview/helpers.ts","../src/facebook-preview/custom-text.tsx","../src/facebook-preview/types.ts","../src/facebook-preview/hooks/use-image-hook.ts","../src/facebook-preview/post/icons/index.tsx","../src/facebook-preview/post/actions/index.tsx","../src/facebook-preview/post/header/index.tsx","../src/facebook-preview/link-preview.tsx","../src/facebook-preview/link-preview-details.tsx","../src/facebook-preview/post-preview.tsx","../src/facebook-preview/previews.tsx","../src/facebook-preview/index.tsx","../src/index.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"0a6f28e1d77b99b0ef7da2f0bf50f301ea8a7eb7b4f573e458e725452a477bd2","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9",{"version":"527c502e59dac710ab60e2520e00c7e3509c5e01a3fdd73861ee13eecdf507d3","signature":"c3f0c900cf78f3786f0de5daf346865a877fec21b235537ed3e8321c46c8b17e"},{"version":"106e0f8f16070fe29cffeee42a92834a0e9a4ce9953fd813d01668fd2bb149a3","signature":"3b999d1962421445ef06bca9a0902ea9262ae78dabeb98737d008e04cc47e923"},{"version":"dcc29863080201dfb7e9941711042379f362891d77415992bb20387ae2464004","signature":"97ddcfad73b5b37c7fea1a549d68a7a4447d1395387c2633a01398d7871ae6db"},{"version":"5f03f22d4207219fb4c9d5ca5b7ed5d767d99268cfd895e5c00f676772647c0e","signature":"8e6570c15fd26615e81dbe719057e304fb9c24a7a8b2002d5714752628eb24ba"},{"version":"d663b864145a5b0dfd0203d4cf79c5d217ecf6f9248876f2eb12a5d9fadd22d5","signature":"385a5210e392d4ad31fbe33b5ceffd35a3d68289a03bf2adc4a239cacc68053a"},{"version":"b900fda6f1fbe49735b1b44bf295680806a8b838879f5f6a470112057acaabec","signature":"7453fa4fde6f5285de912d956d5d0b1f5abb2d073340c2907c64e7e5c17ff7c1"},"2bcb1acd536e696b5e4405ab92e847eb7b7eaa121c8e80c96394c130f141919f",{"version":"4eeb7bc488e7774ed59665b758e3c053c2cc59f1c9ac0ef2dea8d2035e67d8ab","signature":"0f2a2a0845bb5fb302bbfcb554e91beae36303b04ca9f9729b2ae6e9559e6b4a"},{"version":"a52320dd4e3d6f433d8ccc1bd086c8b1e3fbb685a63bcaacfbc2055ed36c11bb","signature":"c8d2fdd02bbde7c84e48140f831bfcaaf65ed17ba7e44278715c798d2c5ff26d"},{"version":"87eba8e3322166acd3e79a2608d0a2299559db3a2486cd5a30875fa8449321c8","signature":"ff66e141d1e614dfe85d2b16d3d27fbdf0e8e48f016f1c1712a102143cdb2f94"},{"version":"ba6a9c736ceefd68af66611df02fd113ee9947c15714d9e18a674f1018baac65","signature":"a555a30b37d4e4417d979e240fdded1b6959327c3ad83ec17552fde310db5a5f"},{"version":"a10f59033bc90ef2605b01007766d573fd95e58420195f127cfbac16ff533355","signature":"ca08c093c89d8b805d30874815c6ba6484f4330971fd25f4d01afb536540eaf7"},"850b47caf7676ad0600572959c672ceb39453d6a165fa28b9cb24c171c191c47","9778a7fb808cd659cf1277a7ffa4981f977584450ae3f41fbbfa828f4d6c0281","e0552ec0dcd5d40839322b887826666970d5b00141d8f49f40f4af8501a4f842","6bb78d32e4f6dabbfdda8f1a25390926ea1942a178a17393d16d2e64c3a55afd","dd8319d9e96573d141bb118f2a3624c820ca753ac80197b0b408632ee827afb4","d0602227196a31dea4b3a3ec7505fba4f2f6d2ccfc205d2a720a45d5a71c0119","ab36f1a26a608eb9cf0e4444e32b64f0bacd79e06767b7b16cfc79075d854e04","83667997a4ba8f1c342c1e622023081b3342926248d41756bab3cc72510e5158","e2f4b3e78889e9087e3e718682298a5000edda6b9fb7c26c0f5f10d87ba95c91","cb67fc772f4bcfaef4cbae3c346001af47fc8f19b36210a122eeb9c3a5ec6286","f659c8e51910bd41c292783b0baae49701af59355b2d4596174e43ca4ccd9931","0c2a425f190a972658adee4063489a96409e149412561da46d12eace84d6d6aa","ddb40b5dab0ee92d0821a5a57a125cebd69a1fdd23e311f4094cda0783f74962","fa9b9fa688341ba7e41e5db9d50c4ea2392d244e43a9ad1c66f3c98fbea882b5","10a3969a97c43344a5e3c2db01a36683623fc9feeceee7c26520963919c28fc9","dc61ee18cef5844ce4554c82a8e485ab488442c172f147e3ff473eb72c1eda0c","f64e5667880efd6de9e33b8494d7e8f3093a8b704019a29da461e377e72c7345","137fb391a3bb2b089044ab86dac929b6cab899808b6749678324fdfe4ff489fc","7ec5bbc5108190bea609331bc897a4c3915fb038635d3817126f58ef71a2096d","140dfacff324c49808f23a9eb26998464d61dff2fffe3330126a58e3932ca633","023e9ba3553d498a87107593b395d6ae464c4552fa962ece16a945dca9d7eaa6","fda294585999610211df645b94980a77915f4dee22e3c7e3da5d2575be5cca58","3beece8898b5c007921906c9489263029542930e8a0bd1ac594959fed14a7085","9eac9b55bc647a889aad55985cc101f968d77b57aadd9094e2980d1798b7bb97","1eb2e9d747162c677cd955952c8f683b9ee43a505ab9197b3ed90990aa52d8b2","27bd05635cf2be7e3f75f375de542eab00cbb24c6b9961d37a0bf99fd344d1fc","65f253971a2e791e105586eadfdaabedd3a6b2d4c5ec7682dc519fd5680702fe","d43c5a945d562827501835c2e938c0860585ddca7348c449b474771c6933ee92","b65f4e65f31c918ae531d50bea70ebebeb7b6b7801311f5bcba8d5b62af5d4c7","6f489d07bfb6a1fa8c98099a5db9a1f0e6747a0371a188c4a44c8dfac4f848be","c07995fdbc13e5ebe30a8c7abf4620fbaac413e3796474d7211d73a8d0408714","9f2d4c8b4c05316ece362bead0cfd35b11f43ccebdb206f2996c353193b2fb4a","20343dba7282554cc7094b7d9ec8052bd2ecae7523b5c8079b1b2c809be03175","f3a3acb5717dcbb37c3c34ab63cadc342bf1dd3d15c2c33be9dc75c016b3e5c4","c0aabde2eb2296947eab296c6f79bb2e240135cd07c7b16d0a5c891dc0b7c8d8","c80cf79dd74a9f3c4dddb24e259f48004049a666c7e0e9cfcc436d325076d29e","11caf4063f614a9b77b1e842e400c11b10738a879fbd52019d8545c8b60e4b27","2d68f6e20630e451d014f34849e7463e2bde6cd0da4788d11e1e914f0f06d68f","ff1b4b65cb933e00c4797e8f1a1c2e7a71dab6ea9a44c6f1467c53de9c404b9d","18214bce267a4a357c99b66b466211c30ccf8a216d33f7516f46fc2d56068028","9db396d5656c1f069f67fd484e238dd9b9cad9a8750a6b36f266c0f97c53b2b2","dd8b5553964d6fcfaae5db6f97bc02b20e9f3ef28db3adc5f0635c6098628689","3896286e9f0fd58c2c9ee4dbdb928b879f276cc4bb4206e88dd5a8a71b9588ce","2aa5c11309314cca986f51d0f5806b34e46ea288a48332605a2b3546ad17162e","780cd68a14a0f31909e2af2f12f6d5e569870e451af0911fd7ad405e6c9737ac","b96647e962b12ad30f9f837d99422982fb7f3ea322aca3ebf35b9d74cf45b194","748b80a901199e9f6f0385dd90019b992584a6211c8dcbd45d37e3ac279f41a7","938473cd52a983fa7572e4e117b24da7bde6b84458703bd4ea4ed2c754a34367","9cd79a786c5eb3e2fc414a5ae47afeee3e670fae45a23547082f3e48e16f524e","a76adf8da68fedd9ab061b4f4ca119c92a109bead5a9172666a6d92dd86a8b2d","e78b3fc14838727ef92e03a2692742a89de89f74106be94c0c0d99a3c53f13f0","422d81d6a8eb88381cd79471f8172723a3db3584d24037399c2ccb3a6a4635fa","fefe780dd9ecfadc9be3a8550f4dc5d2e85312a51938a31e8a4ca1f45a717ea6","a214339a53a742e8939644a8e7ebb199dbb8625c21516aa87e46cb2c4c8c6927","b478b3aea355dac24fdb4c9ad0c0fac6eb31ea345e06e31bbdeef08897f3fbbd","dd9b45e3778ede854d55d634f9f2d0bd3a9ea8002725ae00b5c0bc2b38909f3e","1259120ee908705df74ed5a5322ed94a34ce59d1de72938fbbcb7fdaffa9ab1b","820ad72db908bb9e575888a4b15f30a0a9e2ae05c20772fa53bf212ed9dfc867","9d9803d2645b62044f69b6db6b8a5767075ffd1d1ac0a83ca74c92dd53c58eda","619913c29552bdc4062c47134ce0c28c81f182da105597207942db3973720af8","63ae556b2665713f670684b02851a366769ff1341ed74e0d9713f2feaead429c","bc897ca856a93b0940485bb0bff54057e93e2a4e04af0db4eff78a71a3366f66","0cb29f1382849b88b479fb64e1cdded4ffdad7a2619dc5ab00c26ec162f43b02","ef68715ebd032fb71c29943da2fb5b4a3f2efa71ad60f46e843eb0b6155d79a5","a70b431c176af823e84221cc174eeb543f492db71f2e04beb0c993bb85fbe433","ef30ec6d28d5d6be96971d26c83ecddad8798ed199f3640c42956b03d3276997","9848e8fb7d4c63aa3aa825d0e22850f71813559b9c134178f6026207403a1503","406de7f027674f5b20a6a24e2b8d92d00a2402ca8f5ca5e7f3753f968bfc659f","b866f59d36872c5764cad9d4e557d1c6747a0d2f6c87d5ab9bac0f03b6ddd376","a023f3b0ece37c3e324a4af0ec7a7f8b5b6a570690aae1e9db744ec79f623a45",{"version":"59db4760295f5fa518852040cfbb7766845b7b21f89f99c7b9c4a5daebd0292e","affectsGlobalScope":true},"450e3930fb878526758ecd51d4ec07580e02ae8b80bb054a112447ed3ca0507e","5c94d87081895dc2e8a9bc4a70a87ffe822eaeac48f7adc08ec51088b6387cc5","58371fe0b411c3cfe69420e76fc40a065055feb8382084914f29271fed43bbf2","2c2bd6d3fd648645233a2b543a21aa0e11f2225aa79168521951bbd8138001a3","50d36b800b48bbb2b40c4a15f5e99b86b8a8b3957ea9df7a32364ccf46928388","b7e97f13075e9544573272c80c3af16e52dc8275aa55725bf75827e8141ae1a3","a9addcffba04712036add3d309b55c8c3501c67c58e46a14627494f80ba525b5","3995101c1155bff8e2fbcd0cbbd9d58fbf1096d5aa65065b27d0eb91b1422d5d","aecb88d08542f2ac69a1587049186cc46364963d1e178bd55cce4e1016d7287e","1e90806d8e61f5f9e0fbc5b812f0815aff8b52105d9e596c4e7ac38a4e90b509","11791162f36c1147c692d32748cd92b95bbfb45daf7f0c7b5b83936ffe309fb4","2ee18958570410f7b3918568c5049fe155d70d5f5c24041e5640daced45d2eb6","356764ce306682255522f01a85cb9b8a5b91f40f878a0b10a1f1c846651a8b2a","26cfeb5ef4e36bb10757e094fdada9b2bb0c51d7734e9ede397d1e1e79d1f467","a48152f1cd5c6c98b19041f5e5dfc727d831c278369cb46d58bb9c4edce85e8d","80da4c5d257b95cd81d9accab4b5ec6c9dae43552a6cdab118443f4b9c81bf94","93a07fc07440ab01aafbb2a840a73c0f2b7c10c9be87a30b1cdd71909cfe3773","e3b72d84f81661292abc65e4d0695c003d91624c75a1a8f917bd0008bdb331a6","7d56271e55d3c417a122c0bcbf1dfddf9f6b085db6c98bdb794b4cf342da2178","7e64aa531253ebdea89ed0cb3d8f9036c6cb236e72090be36f22d3cf257f5481","10d2c376acae3df832b184e05f09d6c07780bde99874df8e1d11880978572043","bd2f0702cf222ed7a5be4c7df3b3d208f7927ad1ababe0c1ca94f3ee8b5f7407","e59d00012fb20e6746def2f4bc94650526aa6c574c49ad6a50a992f61a3ee675","e47b8ec56eb49bc1c53c9012daa9874de14ad0c5da442485aec333571c74b526","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6","5d7018910750d9cb4a912577ad2951fc3fad83c30d637689b69ffc6bbb0c9f5a","d2d9e98a2b167079474768593e1e7125fc3db055add8fbdb5977e3d05a8a3696","6462da67490105ba7d98cf312c2faf8794c425781128b161ea8394d66502eec8","62359da52b6c8d00c50c2e50738fac82e902f916fdf458d8159e7edb1c60c3a8","1e0ac21bc775686383ea8c8e48bd98b385e6195b25c85525a7affd08a2cd38b9","0449615e1ed03c7d54fc435a63b7ef0cb4e5cea5ac40c9a63280a46f7eeae0ff","03cb8b37f51d8e0362b26a714c01be565e6ef5103dba9ce8cdd3c82738ec0dc2","ec8a1eb3ef2a6d758548ede5e39a79e50760f59c1cf3439998ac7bb4f25cb60c","0881b6ea2559bca8c7953fc51a719f37de5f8de1943f04efc9c76ce8399a440d","6e6169927e92ebde750d7bfa9e36e96362bfedce9491d3edc5d5b84ba33d0744","54d28f008fd91d2f3c5688ca7043e97ab15ebb2ecca3894cf2178cc0fed89aae","9d007a65ef13163bdc51104fe942f20fe70c0ae5fb8a6e338a4f13f543a6654e","178417178d968f3d103fc853fb3bd9d8da924e91c5d762ed23469655d7de3a16","2203833e7b4b1ac95aa077a7f50305b7a5e265ea89747f024ca29ad842f6831d","6c345dc954e1c44330e90bd7998bcbbe6920af3e34b5188d4be08538a8b7307f","daa7a2fbe02dd0946e782682c94bc54e041d050d7bc69a8419e3e1d14454257d","c65d88ffecfe143360480439d3a036c3c318be44aae6d0e623818f1f15ac80c6",{"version":"d3a870270b4790de9f13d0cff63311cbf15ddd735b21ab7899f88dd41134ef0e","signature":"ed8df3e4aa5ba054c0aa05bcacc617750806f59dc60323bd2c7901b9d16f1089"},"762bc52248d3fab9873c7af564caf622358312cb35de42a4393b71cc36e14621","d02ec79cefaf292fae64b3be5a4416e64b4e420a6429fd458fac6e1bb4c7950e","27abed653f600ea0d5c86e94181beb42824e0f3f16337e2f9e7e9e9c2c392edf","d7871e0e653aa7197fee88886db5678bee6d42164c1f36e4bce9421ddfa7ca49","11ed10bdb3bcc99893570507eac8fece4840add97ee1d4f5a7fbf41cbfdea0d4","429fb571d3db07d3eaa2e74d43eb4190ece3e0de832ed564aeeaf08873e598eb","406d52bf33d618d846aa0d831ee004290567e328edcd4517bbff2937cc977abf","d3060e0810fc0d0dc009e6f086ef413d3c8aeaaf07da25c8d25fd4e181646acf","023747bf4162d5f675dbee1acbfb409a33e70d2358fd218b6a1b22dee8706c1a","08f7e6ffa66c66a636aecc5acbeb998215d9d09ccba0c558afb7df7e218edeaf","f829eb39aea4487f0ff94a42c56a1a73bc5202bbdeb03f7a638e4ab3e290d017",{"version":"b8b55fdb9bb582e96e482d4e6b229fd94531dcf6f0138524dcdb1846ce445e6a","signature":"03ba76a59ab58bab0ac4fb11539232afe1123be836e161f63b8b37099390ba87"},{"version":"39bcac356d0b5b8f583832c2218ff1d897c215a8abf9983e103bb04bb6051a7f","signature":"b3872011e10ed1b8a897d1487bdb638c03d1be14e37d851ae6e8e3ded66c1c16"},{"version":"1bb491b247ea28bd6b62810b4073f8a8b36631fe585a43b264b6e069d35017bb","signature":"73aba49f5b70c278dd813e0e2521ccd6c356897dabe75d55a8cad9adc6898ebc"},{"version":"f4bff64012dd8cd2294d6634f60e6734e391a11e0478179d0b842c4d08b78ac4","signature":"15e30da807f2b290eae0037b9dfb659836c2cead675bf113a028dd9abc2cdd9c"},{"version":"cf652504b4863e9e96051738e5963c9c209dddc1f8c4b08f5af067c209d33856","signature":"3355e7c4532d4f49ecfb1b636fa29aa827644447aac69b13712df9b5c670d2b6"},"9317e2e5e674733f73a15d29b00e2bec6084480c7e95d33943720e127034ce80",{"version":"b3fd303cb603eaaa502159970dae2df50c9af67d9bece8ab6c50490442ca5ab9","signature":"b89bb63c52ec63c36f9b2584814b40f8c5c82e7a7a85129a03f106a22c2dc37e"},{"version":"601730ee7cd4c3e4cadda8a5cd0dae5581a083a868b9b600f691e2a56beaf092","signature":"fe382861865d82b148b9614a66ee3f62138a5f0adea019f5441761e4f4f5812a"},{"version":"f9504bfc65d9eb72dede15cb474dd63ee7fb84dd539adf5cbda38537ef9d9290","signature":"28c108b450f31e7f3d3e66c7d83c29afcc88842fc9f6228c7a3ba7c9e3ce4d67"},{"version":"0a2f6fa78d7d6973010a4a7643b4719d0816598a485d0c4797ea73a0db535cdf","signature":"ecdb3a0c4b11dba69b150b65fcd487a54f494f43ee6a4ce82408dcd3d2780ed9"},{"version":"0ad46160082c27a6601f01e9a567c228781180d4798372b1f30ff4a10806e6b0","signature":"ba6bcb2476e6b2b19dc452fd6f80a3e36db42bfe47fdb27997a18c29198e2ad5"},"9317e2e5e674733f73a15d29b00e2bec6084480c7e95d33943720e127034ce80",{"version":"aa1150ede3481bbd5949956b4b1f265ff73b130a91b17cba9e2328785021037a","signature":"8a7ea33d4105f3c08a8233ce25c6c642a95fbc1293b234f00508a43c9a4aa664"},{"version":"29fed291882095086ffe6d0a9e6c4de9012753a42e6021050636eb0da0a62744","signature":"9221f1b162330f46b75d02e7961cc1405437cc71b1dea8cc835e0d8bc8bcd6d4"},{"version":"58e1f4ca1b2ea76153275a80ff1f093b69db12f8dc45da934f9dccf6ddd84697","signature":"e580c609d1fbfae4122678349851b2d735878da1413ca5eaf1043fd72aac1091"},{"version":"c32ff1caf9c8e8a69d2f9d404d5c612c03d16d3398e080379e43d9a5399dd9cc","signature":"127c43e0de62f906a9992af1e406e00a04ba473e983fd12bce0a93cd6856da3d"},{"version":"73e6eca9bc9440da021456a248e83439d7b951999a7f140eb7f295cb45ef3fef","signature":"d18ddb872c449284c23afc44da4e0c2f3f40ce720b1e64464a1f872074cba76a"},{"version":"e96ca860341e2fda609091071ec5c501be7d89c1b938bb16bedd0fdea7aa9e93","signature":"97541bcf3caef1d337c188ee2c7e0fc1a6afa1c9e2a183b3837a681acf9ecc23"},{"version":"41bb37a7f594df20bd2adabb762237c4216db0ffdce01b218c09d3f4d2456024","signature":"a07705ba3cbc102c9e8934cff002048da6b18d3b8ee4a703d777af3998305698"},{"version":"ab0ba2a2453abff51817a62818aaa0f2f5d12b638173409f36bae2bdbe84f8fb","signature":"b77a917b1a18a63fc32d7493e538912d3f70e39eb9d46233e0ab8e0584904827"},"9317e2e5e674733f73a15d29b00e2bec6084480c7e95d33943720e127034ce80",{"version":"aa632a25de095c3a57cbd54595c21b0d9ce46ed711b8367551e0428f85e3ae0b","signature":"29a2c5c93d2ccbcd52a720428313610d4b08dcc7f8417dcb7366b5b3a326709c"},{"version":"260ca051b1cc821de26d6c3d43aac7e32ca191c6482602a3dd544a461a8506ea","signature":"42dc580370222fd7962c077d95961e5a230d193c254c6378f65f1779b3f01a46"},{"version":"e9c2ad01c0918139a5b4f2ca3d80ec0f460f5cd01e254d6b00a2f7cba19f5306","signature":"32ea9201a304a62b300df72c36e4bbe4565e3c5781d22a6ae5c6c0585a52de0f"},{"version":"0b473376f09bcd2a8822e8853badcc904933e653b57e521c92fff6758cf84068","signature":"1141557b25031a5c242e6aeaa65388f10cd7dd59c7dd28841aa042f1ededc589"},{"version":"57cca8a50dd3d1985a504e96fd8f98181ff60c62987c0b933efb490dc4a3b43d","signature":"adc7b220fd4c116cb47398ca651e49c69011e5958853c94c6e25581b5ebfc88d"},{"version":"1c43d94deb080d64b3203f1c39768f70cd0c732f3439226245256c56c57bb89e","signature":"b98d6db129e4be80f59fc688e34a58acdb30a620828601f37e45a06621f46eca"},{"version":"d4a8822c61891177e0aacdd78d9e9daabdc3aa7f4c45b5ca7db4958cc3e1453e","signature":"5cb7c4f0d0bb73f732ad169f1debd37c77dd1e2448eb597ff7f4235bc61e2ddb"},{"version":"0f242fbab1f0130b2f464fa7979096884caba226dff26a8305de12496912f2e7","signature":"3dfcf2e7c0f48eab974d966c7b67b72301830bc41e181205f7695a8a7ec97983"},{"version":"5a437dbce6784dd9bb062d0b07a21c133f2dd178ce91181abd281b0c1df3a1fe","signature":"9da0bf1ec65a5e72eb9daa2da785f46f5e7dc066486b2d360929d45adb815660"},{"version":"7d990c94a74c07a420b926764df25c29592fe2d8c75aebab50e7f79a3a71923c","signature":"f0d7c131b6a06308b86f842fd68bd602389bb329cd6bf4395afda32654fbbeb3"},{"version":"21f7b14a9240bb4307359e48e655687c42474406f2a8e823b87f0dadd1da0233","signature":"e2fd3acec514ee6e9ce9fbf52dd24cdef19c90c5871238025fbc87be971097ae"},"1a4a4c1915be6b1495b4d54dc62aad7fdd158f12d58be7620278b882b01f4d32","9980fee73bc2e8972c5a65594ff4067270961c54846954858856dbd0e670c0b7"],"options":{"composite":true,"declaration":true,"declarationDir":"./types","declarationMap":true,"esModuleInterop":true,"importHelpers":true,"jsx":4,"module":7,"noEmitHelpers":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"fileIdsList":[[58],[54,55,56,57],[58,81,84],[87],[75],[58,79],[58,85],[58,97],[58,100],[58,102,103],[58,80,82,109],[58,82],[58,118],[58,173],[58,132],[58,80,82,83,85],[58,80],[75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,98,99,101,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,130,131,132,133,134,135,136,137,138,139,140,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,162,175,176,177,178,179,180,181,182,183],[58,83],[128,129],[58,128],[58,131],[58,81],[58,184],[72,73,74],[58,79,80],[58,142],[58,163,164,174],[58,85,110,118],[58,110,156],[58,82,83],[58,147],[58,160],[165],[165,166,168,169,170,171,172],[167],[58,165],[192],[187,188,189,190,191,192],[187,188,189,190,191,193],[192,193],[194],[186,194,195],[58,141],[53,59],[53,59,61,218],[53,59,61],[53,58,59,60,196,220],[53,59,225,227,228],[53,59,60,219,220,221,223,224],[53,59,60,196,218,219,220,221,222,223,224],[53,59,196,222],[53,58,59,196,220,222],[53,59,62,63,184,196,220,225,226,227],[53,59,60,63],[53,59,61,63],[53,59,60,63,64,202,208,217,229],[53,59,205,206,207],[53,59,203,204,205],[53,59,61,196,203,204],[53,59,62,184,196,203,204,205,206],[53,59,63],[53,59,214,215,216],[53,59,61,196,209,211,212,213],[53,59,196,209,211,212,213],[53,59,196,210],[53,59,196,210,212],[53,59,62,63,184,196,212,214,215],[53,59,61,66,67],[53,59,61,67],[53,59,199,200,201],[53,59,65,67,199],[53,58,59,66,67],[53,59,67,68,69,70,71,185,197,198],[53,59,62,67,184,196,199,200],[53,59,67,184],[53,59,65,67,196],[53,59,62],[61],[220],[63,220],[60,63],[63],[203,204],[204],[212],[63,212],[67],[65,67],[62]],"referencedMap":[[167,1],[58,2],[59,1],[76,1],[77,1],[78,1],[79,1],[86,1],[85,3],[88,4],[89,5],[90,4],[91,4],[93,6],[94,7],[95,1],[96,1],[98,8],[99,1],[101,9],[80,1],[102,1],[104,10],[103,1],[105,1],[106,1],[107,1],[108,1],[110,11],[109,12],[111,1],[113,1],[112,1],[114,1],[115,6],[116,1],[117,1],[119,13],[120,1],[121,1],[122,1],[176,1],[177,1],[178,1],[179,1],[180,14],[181,1],[182,15],[183,1],[118,16],[81,17],[184,18],[162,1],[123,1],[124,1],[125,13],[126,19],[127,1],[130,20],[129,21],[128,1],[131,1],[132,22],[134,23],[135,1],[133,1],[136,1],[137,23],[82,24],[75,25],[74,1],[138,1],[139,6],[140,26],[143,27],[144,1],[145,1],[146,1],[147,6],[83,1],[174,14],[164,1],[175,28],[163,1],[148,22],[149,15],[150,1],[151,1],[152,6],[153,6],[154,1],[155,6],[156,29],[158,30],[157,30],[84,31],[159,32],[160,1],[161,33],[166,34],[173,35],[172,1],[168,36],[165,1],[171,37],[187,38],[191,38],[190,38],[189,38],[193,39],[188,38],[192,40],[194,41],[195,42],[196,43],[100,1],[142,44],[141,1],[60,45],[219,46],[218,47],[221,48],[229,49],[226,50],[225,51],[227,50],[223,52],[224,53],[222,45],[228,54],[220,55],[64,56],[61,45],[230,57],[203,45],[208,58],[206,59],[205,60],[207,61],[204,62],[62,45],[209,47],[217,63],[214,64],[215,65],[211,66],[213,67],[210,45],[216,68],[212,62],[68,69],[65,45],[69,45],[70,70],[202,71],[200,72],[71,73],[199,74],[201,75],[185,76],[197,77],[198,70],[67,62],[63,78]],"exportedModulesMap":[[167,1],[58,2],[59,1],[76,1],[77,1],[78,1],[79,1],[86,1],[85,3],[88,4],[89,5],[90,4],[91,4],[93,6],[94,7],[95,1],[96,1],[98,8],[99,1],[101,9],[80,1],[102,1],[104,10],[103,1],[105,1],[106,1],[107,1],[108,1],[110,11],[109,12],[111,1],[113,1],[112,1],[114,1],[115,6],[116,1],[117,1],[119,13],[120,1],[121,1],[122,1],[176,1],[177,1],[178,1],[179,1],[180,14],[181,1],[182,15],[183,1],[118,16],[81,17],[184,18],[162,1],[123,1],[124,1],[125,13],[126,19],[127,1],[130,20],[129,21],[128,1],[131,1],[132,22],[134,23],[135,1],[133,1],[136,1],[137,23],[82,24],[75,25],[74,1],[138,1],[139,6],[140,26],[143,27],[144,1],[145,1],[146,1],[147,6],[83,1],[174,14],[164,1],[175,28],[163,1],[148,22],[149,15],[150,1],[151,1],[152,6],[153,6],[154,1],[155,6],[156,29],[158,30],[157,30],[84,31],[159,32],[160,1],[161,33],[166,34],[173,35],[172,1],[168,36],[165,1],[171,37],[187,38],[191,38],[190,38],[189,38],[193,39],[188,38],[192,40],[194,41],[195,42],[196,43],[100,1],[142,44],[141,1],[218,79],[221,80],[229,49],[226,80],[225,80],[227,80],[224,80],[228,81],[220,82],[64,83],[230,57],[208,58],[206,84],[205,85],[207,85],[204,83],[209,79],[217,63],[214,86],[215,86],[213,86],[216,87],[212,83],[68,88],[70,88],[202,71],[200,89],[71,88],[199,88],[201,88],[185,88],[197,88],[198,88],[67,83],[63,90]],"semanticDiagnosticsPerFile":[56,167,54,58,59,57,97,76,77,78,79,86,85,88,89,90,91,87,92,93,94,95,96,98,99,101,80,102,104,103,105,106,107,108,110,109,111,113,112,114,115,116,117,119,120,121,122,176,177,178,179,180,181,182,183,118,81,184,162,123,124,125,126,127,130,129,128,131,132,134,135,133,136,137,82,72,73,75,74,138,139,140,143,144,145,146,147,83,174,164,175,163,148,149,150,151,152,153,154,155,156,158,157,84,159,160,161,166,173,170,172,168,165,171,169,187,191,190,189,193,188,192,194,195,196,186,66,55,100,142,141,53,10,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,1,60,219,218,221,229,226,225,227,223,224,222,228,220,64,61,230,203,208,206,205,207,204,62,209,217,214,215,211,213,210,216,212,68,65,69,70,202,200,71,199,201,185,197,198,67,63]},"version":"4.7.4"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react/jsx-runtime.d.ts","../src/constants.ts","../src/helpers.ts","../src/shared/section-heading/index.tsx","../src/types.ts","../src/google-search-preview/index.tsx","../src/twitter-preview/constants.ts","../../../node_modules/classnames/index.d.ts","../src/twitter-preview/types.ts","../src/twitter-preview/card.tsx","../src/twitter-preview/footer.tsx","../src/twitter-preview/header.tsx","../src/twitter-preview/media.tsx","../../../node_modules/@types/wordpress__components/primitives/block-quotation/index.d.ts","../../../node_modules/@types/wordpress__components/primitives/horizontal-rule/index.d.ts","../../../node_modules/@types/wordpress__components/primitives/svg/index.d.ts","../../../node_modules/@types/wordpress__components/primitives/index.d.ts","../../../node_modules/@types/wordpress__components/angle-picker-control/index.d.ts","../../../node_modules/@types/wordpress__components/animate/index.d.ts","../../../node_modules/@types/wordpress__components/autocomplete/index.d.ts","../../../node_modules/@types/wordpress__components/base-control/index.d.ts","../../../node_modules/@types/wordpress__components/dashicon/index.d.ts","../../../node_modules/@types/wordpress__components/icon/index.d.ts","../../../node_modules/@types/wordpress__components/popover/index.d.ts","../../../node_modules/@types/wordpress__components/shortcut/index.d.ts","../../../node_modules/@types/wordpress__components/tooltip/index.d.ts","../../../node_modules/@types/wordpress__components/button/index.d.ts","../../../node_modules/@types/wordpress__components/button-group/index.d.ts","../../../node_modules/@types/wordpress__components/card/index.d.ts","../../../node_modules/@types/wordpress__components/card/body/index.d.ts","../../../node_modules/@types/wordpress__components/card/divider/index.d.ts","../../../node_modules/@types/wordpress__components/card/footer/index.d.ts","../../../node_modules/@types/wordpress__components/card/header/index.d.ts","../../../node_modules/@types/wordpress__components/card/media/index.d.ts","../../../node_modules/@types/wordpress__components/checkbox-control/index.d.ts","../../../node_modules/@types/wordpress__components/clipboard-button/index.d.ts","../../../node_modules/@types/wordpress__components/color-indicator/index.d.ts","../../../node_modules/@types/wordpress__components/color-palette/index.d.ts","../../../node_modules/@types/tinycolor2/index.d.ts","../../../node_modules/@types/wordpress__components/color-picker/index.d.ts","../../../node_modules/@types/wordpress__components/combobox-control/index.d.ts","../../../node_modules/downshift/typings/index.d.ts","../../../node_modules/@types/wordpress__components/custom-select-control/index.d.ts","../../../node_modules/@types/wordpress__components/date-time/date.d.ts","../../../node_modules/@types/wordpress__components/date-time/time.d.ts","../../../node_modules/@types/wordpress__components/date-time/index.d.ts","../../../node_modules/@types/wordpress__components/disabled/index.d.ts","../../../node_modules/@types/wordpress__components/draggable/index.d.ts","../../../node_modules/@types/wordpress__components/drop-zone/index.d.ts","../../../node_modules/@types/wordpress__components/drop-zone/provider.d.ts","../../../node_modules/@types/wordpress__components/dropdown/index.d.ts","../../../node_modules/@types/wordpress__components/dropdown-menu/index.d.ts","../../../node_modules/@types/wordpress__components/external-link/index.d.ts","../../../node_modules/@types/wordpress__components/flex/index.d.ts","../../../node_modules/@types/wordpress__components/flex/block.d.ts","../../../node_modules/@types/wordpress__components/flex/item.d.ts","../../../node_modules/@types/wordpress__components/focal-point-picker/index.d.ts","../../../node_modules/@types/wordpress__components/focusable-iframe/index.d.ts","../../../node_modules/@types/wordpress__components/font-size-picker/index.d.ts","../../../node_modules/@types/wordpress__components/icon-button/index.d.ts","../../../node_modules/@types/wordpress__components/form-file-upload/index.d.ts","../../../node_modules/@types/wordpress__components/form-toggle/index.d.ts","../../../node_modules/@types/wordpress__components/form-token-field/index.d.ts","../../../node_modules/@types/wordpress__components/guide/index.d.ts","../../../node_modules/@types/wordpress__components/keyboard-shortcuts/index.d.ts","../../../node_modules/@types/wordpress__components/menu-group/index.d.ts","../../../node_modules/@types/wordpress__components/menu-item/index.d.ts","../../../node_modules/@types/wordpress__components/menu-items-choice/index.d.ts","../../../node_modules/@types/wordpress__components/modal/index.d.ts","../../../node_modules/@types/wordpress__components/navigable-container/tabbable.d.ts","../../../node_modules/@types/wordpress__components/navigable-container/menu.d.ts","../../../node_modules/@types/wordpress__components/navigable-container/index.d.ts","../../../node_modules/@types/wordpress__components/notice/index.d.ts","../../../node_modules/@types/wordpress__components/notice/list.d.ts","../../../node_modules/@types/wordpress__components/panel/index.d.ts","../../../node_modules/@types/wordpress__components/panel/body.d.ts","../../../node_modules/@types/wordpress__components/panel/header.d.ts","../../../node_modules/@types/wordpress__components/panel/row.d.ts","../../../node_modules/@types/wordpress__components/placeholder/index.d.ts","../../../node_modules/@types/wordpress__components/query-controls/index.d.ts","../../../node_modules/@types/wordpress__components/radio-control/index.d.ts","../../../node_modules/@types/wordpress__components/range-control/index.d.ts","../../../node_modules/re-resizable/lib/resizer.d.ts","../../../node_modules/re-resizable/lib/index.d.ts","../../../node_modules/@types/wordpress__components/resizable-box/index.d.ts","../../../node_modules/@types/wordpress__components/responsive-wrapper/index.d.ts","../../../node_modules/@types/wordpress__components/sandbox/index.d.ts","../../../node_modules/@types/wordpress__components/scroll-lock/index.d.ts","../../../node_modules/@types/wordpress__components/select-control/index.d.ts","../../../node_modules/@types/wordpress__components/snackbar/index.d.ts","../../../node_modules/@types/wordpress__components/snackbar/list.d.ts","../../../node_modules/@types/wordpress__components/spinner/index.d.ts","../../../node_modules/@types/wordpress__components/tab-panel/index.d.ts","../../../node_modules/@types/wordpress__components/text-control/index.d.ts","../../../node_modules/@types/wordpress__components/textarea-control/index.d.ts","../../../node_modules/@types/wordpress__components/tip/index.d.ts","../../../node_modules/@types/wordpress__components/toggle-control/index.d.ts","../../../node_modules/@types/wordpress__components/toolbar-button/index.d.ts","../../../node_modules/@types/wordpress__components/toolbar/index.d.ts","../../../node_modules/@types/wordpress__components/toolbar-group/index.d.ts","../../../node_modules/@types/wordpress__components/tree-select/index.d.ts","../../../node_modules/@types/wordpress__components/ui/context/wordpress-component.d.ts","../../../node_modules/@types/wordpress__components/visually-hidden/index.d.ts","../../../node_modules/@types/wordpress__components/isolated-event-container/index.d.ts","../../../node_modules/@types/wordpress__components/slot-fill/slot.d.ts","../../../node_modules/@types/wordpress__components/slot-fill/fill.d.ts","../../../node_modules/@wordpress/element/build-types/react.d.ts","../../../node_modules/@wordpress/element/build-types/create-interpolate-element.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@wordpress/element/build-types/react-platform.d.ts","../../../node_modules/@wordpress/element/build-types/utils.d.ts","../../../node_modules/@wordpress/element/build-types/platform.d.ts","../../../node_modules/@wordpress/element/build-types/serialize.d.ts","../../../node_modules/@wordpress/element/build-types/raw-html.d.ts","../../../node_modules/@wordpress/element/build-types/index.d.ts","../../../node_modules/@types/wordpress__components/slot-fill/context.d.ts","../../../node_modules/@types/wordpress__components/slot-fill/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/navigate-regions/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-constrained-tabbing/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-fallback-styles/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-filters/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-focus-outside/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-focus-return/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-notices/index.d.ts","../../../node_modules/@types/wordpress__components/higher-order/with-spoken-messages/index.d.ts","../../../node_modules/@types/wordpress__components/index.d.ts","../src/twitter-preview/quote-tweet.tsx","../../../node_modules/@wordpress/i18n/build-types/sprintf.d.ts","../../../node_modules/@wordpress/hooks/build-types/createaddhook.d.ts","../../../node_modules/@wordpress/hooks/build-types/createremovehook.d.ts","../../../node_modules/@wordpress/hooks/build-types/createhashook.d.ts","../../../node_modules/@wordpress/hooks/build-types/createdoinghook.d.ts","../../../node_modules/@wordpress/hooks/build-types/createdidhook.d.ts","../../../node_modules/@wordpress/hooks/build-types/index.d.ts","../../../node_modules/@wordpress/hooks/build-types/createhooks.d.ts","../../../node_modules/@wordpress/i18n/build-types/create-i18n.d.ts","../../../node_modules/@wordpress/i18n/build-types/default-i18n.d.ts","../../../node_modules/@wordpress/i18n/build-types/index.d.ts","../src/twitter-preview/sidebar.tsx","../src/twitter-preview/text.tsx","../src/twitter-preview/post-preview.tsx","../src/twitter-preview/link-preview.tsx","../src/twitter-preview/previews.tsx","../src/twitter-preview/index.tsx","../src/linkedin-preview/constants.ts","../src/linkedin-preview/types.ts","../src/linkedin-preview/post-preview.tsx","../src/linkedin-preview/link-preview.tsx","../src/linkedin-preview/previews.tsx","../src/linkedin-preview/index.tsx","../src/tumblr-preview/helpers.ts","../src/tumblr-preview/post/icons/index.tsx","../src/tumblr-preview/post/actions/index.tsx","../src/tumblr-preview/types.ts","../src/tumblr-preview/post/header/index.tsx","../src/tumblr-preview/link-preview.tsx","../src/tumblr-preview/post-preview.tsx","../src/tumblr-preview/previews.tsx","../src/tumblr-preview/index.tsx","../src/facebook-preview/helpers.ts","../src/facebook-preview/custom-text.tsx","../src/facebook-preview/types.ts","../src/facebook-preview/hooks/use-image-hook.ts","../src/facebook-preview/post/icons/index.tsx","../src/facebook-preview/post/actions/index.tsx","../src/facebook-preview/post/header/index.tsx","../src/facebook-preview/link-preview.tsx","../src/facebook-preview/link-preview-details.tsx","../src/facebook-preview/post-preview.tsx","../src/facebook-preview/previews.tsx","../src/facebook-preview/index.tsx","../src/instagram-preview/constants.tsx","../src/instagram-preview/icons/bookmark.tsx","../src/instagram-preview/icons/comment.tsx","../src/instagram-preview/icons/default-avatar.tsx","../src/instagram-preview/icons/heart.tsx","../src/instagram-preview/icons/menu.tsx","../src/instagram-preview/icons/share.tsx","../src/instagram-preview/types.ts","../src/instagram-preview/post-preview.tsx","../src/instagram-preview/previews.tsx","../src/instagram-preview/index.tsx","../src/index.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"0a6f28e1d77b99b0ef7da2f0bf50f301ea8a7eb7b4f573e458e725452a477bd2","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9",{"version":"527c502e59dac710ab60e2520e00c7e3509c5e01a3fdd73861ee13eecdf507d3","signature":"c3f0c900cf78f3786f0de5daf346865a877fec21b235537ed3e8321c46c8b17e"},{"version":"40d128157ec7f2f1e4e7981ac68bd8f94e3509b003d7e44e1e017ecb5a5e1176","signature":"a7ca0d22a77de4e57e6d43971f14aa3e0f40c444b617ab8fe1d21dbc0f51da8d"},{"version":"dcc29863080201dfb7e9941711042379f362891d77415992bb20387ae2464004","signature":"97ddcfad73b5b37c7fea1a549d68a7a4447d1395387c2633a01398d7871ae6db"},{"version":"5f03f22d4207219fb4c9d5ca5b7ed5d767d99268cfd895e5c00f676772647c0e","signature":"8e6570c15fd26615e81dbe719057e304fb9c24a7a8b2002d5714752628eb24ba"},{"version":"d663b864145a5b0dfd0203d4cf79c5d217ecf6f9248876f2eb12a5d9fadd22d5","signature":"385a5210e392d4ad31fbe33b5ceffd35a3d68289a03bf2adc4a239cacc68053a"},{"version":"b900fda6f1fbe49735b1b44bf295680806a8b838879f5f6a470112057acaabec","signature":"7453fa4fde6f5285de912d956d5d0b1f5abb2d073340c2907c64e7e5c17ff7c1"},"2bcb1acd536e696b5e4405ab92e847eb7b7eaa121c8e80c96394c130f141919f",{"version":"4eeb7bc488e7774ed59665b758e3c053c2cc59f1c9ac0ef2dea8d2035e67d8ab","signature":"0f2a2a0845bb5fb302bbfcb554e91beae36303b04ca9f9729b2ae6e9559e6b4a"},{"version":"a52320dd4e3d6f433d8ccc1bd086c8b1e3fbb685a63bcaacfbc2055ed36c11bb","signature":"c8d2fdd02bbde7c84e48140f831bfcaaf65ed17ba7e44278715c798d2c5ff26d"},{"version":"87eba8e3322166acd3e79a2608d0a2299559db3a2486cd5a30875fa8449321c8","signature":"ff66e141d1e614dfe85d2b16d3d27fbdf0e8e48f016f1c1712a102143cdb2f94"},{"version":"ba6a9c736ceefd68af66611df02fd113ee9947c15714d9e18a674f1018baac65","signature":"a555a30b37d4e4417d979e240fdded1b6959327c3ad83ec17552fde310db5a5f"},{"version":"a10f59033bc90ef2605b01007766d573fd95e58420195f127cfbac16ff533355","signature":"ca08c093c89d8b805d30874815c6ba6484f4330971fd25f4d01afb536540eaf7"},"850b47caf7676ad0600572959c672ceb39453d6a165fa28b9cb24c171c191c47","9778a7fb808cd659cf1277a7ffa4981f977584450ae3f41fbbfa828f4d6c0281","e0552ec0dcd5d40839322b887826666970d5b00141d8f49f40f4af8501a4f842","6bb78d32e4f6dabbfdda8f1a25390926ea1942a178a17393d16d2e64c3a55afd","dd8319d9e96573d141bb118f2a3624c820ca753ac80197b0b408632ee827afb4","d0602227196a31dea4b3a3ec7505fba4f2f6d2ccfc205d2a720a45d5a71c0119","ab36f1a26a608eb9cf0e4444e32b64f0bacd79e06767b7b16cfc79075d854e04","83667997a4ba8f1c342c1e622023081b3342926248d41756bab3cc72510e5158","e2f4b3e78889e9087e3e718682298a5000edda6b9fb7c26c0f5f10d87ba95c91","cb67fc772f4bcfaef4cbae3c346001af47fc8f19b36210a122eeb9c3a5ec6286","f659c8e51910bd41c292783b0baae49701af59355b2d4596174e43ca4ccd9931","0c2a425f190a972658adee4063489a96409e149412561da46d12eace84d6d6aa","ddb40b5dab0ee92d0821a5a57a125cebd69a1fdd23e311f4094cda0783f74962","fa9b9fa688341ba7e41e5db9d50c4ea2392d244e43a9ad1c66f3c98fbea882b5","10a3969a97c43344a5e3c2db01a36683623fc9feeceee7c26520963919c28fc9","dc61ee18cef5844ce4554c82a8e485ab488442c172f147e3ff473eb72c1eda0c","f64e5667880efd6de9e33b8494d7e8f3093a8b704019a29da461e377e72c7345","137fb391a3bb2b089044ab86dac929b6cab899808b6749678324fdfe4ff489fc","7ec5bbc5108190bea609331bc897a4c3915fb038635d3817126f58ef71a2096d","140dfacff324c49808f23a9eb26998464d61dff2fffe3330126a58e3932ca633","023e9ba3553d498a87107593b395d6ae464c4552fa962ece16a945dca9d7eaa6","fda294585999610211df645b94980a77915f4dee22e3c7e3da5d2575be5cca58","3beece8898b5c007921906c9489263029542930e8a0bd1ac594959fed14a7085","9eac9b55bc647a889aad55985cc101f968d77b57aadd9094e2980d1798b7bb97","1eb2e9d747162c677cd955952c8f683b9ee43a505ab9197b3ed90990aa52d8b2","27bd05635cf2be7e3f75f375de542eab00cbb24c6b9961d37a0bf99fd344d1fc","65f253971a2e791e105586eadfdaabedd3a6b2d4c5ec7682dc519fd5680702fe","d43c5a945d562827501835c2e938c0860585ddca7348c449b474771c6933ee92","b65f4e65f31c918ae531d50bea70ebebeb7b6b7801311f5bcba8d5b62af5d4c7","6f489d07bfb6a1fa8c98099a5db9a1f0e6747a0371a188c4a44c8dfac4f848be","c07995fdbc13e5ebe30a8c7abf4620fbaac413e3796474d7211d73a8d0408714","9f2d4c8b4c05316ece362bead0cfd35b11f43ccebdb206f2996c353193b2fb4a","20343dba7282554cc7094b7d9ec8052bd2ecae7523b5c8079b1b2c809be03175","f3a3acb5717dcbb37c3c34ab63cadc342bf1dd3d15c2c33be9dc75c016b3e5c4","c0aabde2eb2296947eab296c6f79bb2e240135cd07c7b16d0a5c891dc0b7c8d8","c80cf79dd74a9f3c4dddb24e259f48004049a666c7e0e9cfcc436d325076d29e","11caf4063f614a9b77b1e842e400c11b10738a879fbd52019d8545c8b60e4b27","2d68f6e20630e451d014f34849e7463e2bde6cd0da4788d11e1e914f0f06d68f","ff1b4b65cb933e00c4797e8f1a1c2e7a71dab6ea9a44c6f1467c53de9c404b9d","18214bce267a4a357c99b66b466211c30ccf8a216d33f7516f46fc2d56068028","9db396d5656c1f069f67fd484e238dd9b9cad9a8750a6b36f266c0f97c53b2b2","dd8b5553964d6fcfaae5db6f97bc02b20e9f3ef28db3adc5f0635c6098628689","3896286e9f0fd58c2c9ee4dbdb928b879f276cc4bb4206e88dd5a8a71b9588ce","2aa5c11309314cca986f51d0f5806b34e46ea288a48332605a2b3546ad17162e","780cd68a14a0f31909e2af2f12f6d5e569870e451af0911fd7ad405e6c9737ac","b96647e962b12ad30f9f837d99422982fb7f3ea322aca3ebf35b9d74cf45b194","748b80a901199e9f6f0385dd90019b992584a6211c8dcbd45d37e3ac279f41a7","938473cd52a983fa7572e4e117b24da7bde6b84458703bd4ea4ed2c754a34367","9cd79a786c5eb3e2fc414a5ae47afeee3e670fae45a23547082f3e48e16f524e","a76adf8da68fedd9ab061b4f4ca119c92a109bead5a9172666a6d92dd86a8b2d","e78b3fc14838727ef92e03a2692742a89de89f74106be94c0c0d99a3c53f13f0","422d81d6a8eb88381cd79471f8172723a3db3584d24037399c2ccb3a6a4635fa","fefe780dd9ecfadc9be3a8550f4dc5d2e85312a51938a31e8a4ca1f45a717ea6","a214339a53a742e8939644a8e7ebb199dbb8625c21516aa87e46cb2c4c8c6927","b478b3aea355dac24fdb4c9ad0c0fac6eb31ea345e06e31bbdeef08897f3fbbd","dd9b45e3778ede854d55d634f9f2d0bd3a9ea8002725ae00b5c0bc2b38909f3e","1259120ee908705df74ed5a5322ed94a34ce59d1de72938fbbcb7fdaffa9ab1b","820ad72db908bb9e575888a4b15f30a0a9e2ae05c20772fa53bf212ed9dfc867","9d9803d2645b62044f69b6db6b8a5767075ffd1d1ac0a83ca74c92dd53c58eda","619913c29552bdc4062c47134ce0c28c81f182da105597207942db3973720af8","63ae556b2665713f670684b02851a366769ff1341ed74e0d9713f2feaead429c","bc897ca856a93b0940485bb0bff54057e93e2a4e04af0db4eff78a71a3366f66","0cb29f1382849b88b479fb64e1cdded4ffdad7a2619dc5ab00c26ec162f43b02","ef68715ebd032fb71c29943da2fb5b4a3f2efa71ad60f46e843eb0b6155d79a5","a70b431c176af823e84221cc174eeb543f492db71f2e04beb0c993bb85fbe433","ef30ec6d28d5d6be96971d26c83ecddad8798ed199f3640c42956b03d3276997","9848e8fb7d4c63aa3aa825d0e22850f71813559b9c134178f6026207403a1503","406de7f027674f5b20a6a24e2b8d92d00a2402ca8f5ca5e7f3753f968bfc659f","b866f59d36872c5764cad9d4e557d1c6747a0d2f6c87d5ab9bac0f03b6ddd376","a023f3b0ece37c3e324a4af0ec7a7f8b5b6a570690aae1e9db744ec79f623a45",{"version":"59db4760295f5fa518852040cfbb7766845b7b21f89f99c7b9c4a5daebd0292e","affectsGlobalScope":true},"450e3930fb878526758ecd51d4ec07580e02ae8b80bb054a112447ed3ca0507e","5c94d87081895dc2e8a9bc4a70a87ffe822eaeac48f7adc08ec51088b6387cc5","58371fe0b411c3cfe69420e76fc40a065055feb8382084914f29271fed43bbf2","2c2bd6d3fd648645233a2b543a21aa0e11f2225aa79168521951bbd8138001a3","50d36b800b48bbb2b40c4a15f5e99b86b8a8b3957ea9df7a32364ccf46928388","b7e97f13075e9544573272c80c3af16e52dc8275aa55725bf75827e8141ae1a3","a9addcffba04712036add3d309b55c8c3501c67c58e46a14627494f80ba525b5","3995101c1155bff8e2fbcd0cbbd9d58fbf1096d5aa65065b27d0eb91b1422d5d","aecb88d08542f2ac69a1587049186cc46364963d1e178bd55cce4e1016d7287e","1e90806d8e61f5f9e0fbc5b812f0815aff8b52105d9e596c4e7ac38a4e90b509","11791162f36c1147c692d32748cd92b95bbfb45daf7f0c7b5b83936ffe309fb4","2ee18958570410f7b3918568c5049fe155d70d5f5c24041e5640daced45d2eb6","356764ce306682255522f01a85cb9b8a5b91f40f878a0b10a1f1c846651a8b2a","26cfeb5ef4e36bb10757e094fdada9b2bb0c51d7734e9ede397d1e1e79d1f467","a48152f1cd5c6c98b19041f5e5dfc727d831c278369cb46d58bb9c4edce85e8d","80da4c5d257b95cd81d9accab4b5ec6c9dae43552a6cdab118443f4b9c81bf94","93a07fc07440ab01aafbb2a840a73c0f2b7c10c9be87a30b1cdd71909cfe3773","e3b72d84f81661292abc65e4d0695c003d91624c75a1a8f917bd0008bdb331a6","7d56271e55d3c417a122c0bcbf1dfddf9f6b085db6c98bdb794b4cf342da2178","7e64aa531253ebdea89ed0cb3d8f9036c6cb236e72090be36f22d3cf257f5481","10d2c376acae3df832b184e05f09d6c07780bde99874df8e1d11880978572043","bd2f0702cf222ed7a5be4c7df3b3d208f7927ad1ababe0c1ca94f3ee8b5f7407","e59d00012fb20e6746def2f4bc94650526aa6c574c49ad6a50a992f61a3ee675","e47b8ec56eb49bc1c53c9012daa9874de14ad0c5da442485aec333571c74b526","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6","5d7018910750d9cb4a912577ad2951fc3fad83c30d637689b69ffc6bbb0c9f5a","d2d9e98a2b167079474768593e1e7125fc3db055add8fbdb5977e3d05a8a3696","6462da67490105ba7d98cf312c2faf8794c425781128b161ea8394d66502eec8","62359da52b6c8d00c50c2e50738fac82e902f916fdf458d8159e7edb1c60c3a8","1e0ac21bc775686383ea8c8e48bd98b385e6195b25c85525a7affd08a2cd38b9","0449615e1ed03c7d54fc435a63b7ef0cb4e5cea5ac40c9a63280a46f7eeae0ff","03cb8b37f51d8e0362b26a714c01be565e6ef5103dba9ce8cdd3c82738ec0dc2","ec8a1eb3ef2a6d758548ede5e39a79e50760f59c1cf3439998ac7bb4f25cb60c","0881b6ea2559bca8c7953fc51a719f37de5f8de1943f04efc9c76ce8399a440d","6e6169927e92ebde750d7bfa9e36e96362bfedce9491d3edc5d5b84ba33d0744","54d28f008fd91d2f3c5688ca7043e97ab15ebb2ecca3894cf2178cc0fed89aae","9d007a65ef13163bdc51104fe942f20fe70c0ae5fb8a6e338a4f13f543a6654e","178417178d968f3d103fc853fb3bd9d8da924e91c5d762ed23469655d7de3a16","2203833e7b4b1ac95aa077a7f50305b7a5e265ea89747f024ca29ad842f6831d","6c345dc954e1c44330e90bd7998bcbbe6920af3e34b5188d4be08538a8b7307f","daa7a2fbe02dd0946e782682c94bc54e041d050d7bc69a8419e3e1d14454257d","c65d88ffecfe143360480439d3a036c3c318be44aae6d0e623818f1f15ac80c6",{"version":"d3a870270b4790de9f13d0cff63311cbf15ddd735b21ab7899f88dd41134ef0e","signature":"ed8df3e4aa5ba054c0aa05bcacc617750806f59dc60323bd2c7901b9d16f1089"},"762bc52248d3fab9873c7af564caf622358312cb35de42a4393b71cc36e14621","d02ec79cefaf292fae64b3be5a4416e64b4e420a6429fd458fac6e1bb4c7950e","27abed653f600ea0d5c86e94181beb42824e0f3f16337e2f9e7e9e9c2c392edf","d7871e0e653aa7197fee88886db5678bee6d42164c1f36e4bce9421ddfa7ca49","11ed10bdb3bcc99893570507eac8fece4840add97ee1d4f5a7fbf41cbfdea0d4","429fb571d3db07d3eaa2e74d43eb4190ece3e0de832ed564aeeaf08873e598eb","406d52bf33d618d846aa0d831ee004290567e328edcd4517bbff2937cc977abf","d3060e0810fc0d0dc009e6f086ef413d3c8aeaaf07da25c8d25fd4e181646acf","023747bf4162d5f675dbee1acbfb409a33e70d2358fd218b6a1b22dee8706c1a","08f7e6ffa66c66a636aecc5acbeb998215d9d09ccba0c558afb7df7e218edeaf","f829eb39aea4487f0ff94a42c56a1a73bc5202bbdeb03f7a638e4ab3e290d017",{"version":"b8b55fdb9bb582e96e482d4e6b229fd94531dcf6f0138524dcdb1846ce445e6a","signature":"03ba76a59ab58bab0ac4fb11539232afe1123be836e161f63b8b37099390ba87"},{"version":"39bcac356d0b5b8f583832c2218ff1d897c215a8abf9983e103bb04bb6051a7f","signature":"b3872011e10ed1b8a897d1487bdb638c03d1be14e37d851ae6e8e3ded66c1c16"},{"version":"1bb491b247ea28bd6b62810b4073f8a8b36631fe585a43b264b6e069d35017bb","signature":"73aba49f5b70c278dd813e0e2521ccd6c356897dabe75d55a8cad9adc6898ebc"},{"version":"f4bff64012dd8cd2294d6634f60e6734e391a11e0478179d0b842c4d08b78ac4","signature":"15e30da807f2b290eae0037b9dfb659836c2cead675bf113a028dd9abc2cdd9c"},{"version":"cf652504b4863e9e96051738e5963c9c209dddc1f8c4b08f5af067c209d33856","signature":"3355e7c4532d4f49ecfb1b636fa29aa827644447aac69b13712df9b5c670d2b6"},"9317e2e5e674733f73a15d29b00e2bec6084480c7e95d33943720e127034ce80",{"version":"b3fd303cb603eaaa502159970dae2df50c9af67d9bece8ab6c50490442ca5ab9","signature":"b89bb63c52ec63c36f9b2584814b40f8c5c82e7a7a85129a03f106a22c2dc37e"},{"version":"601730ee7cd4c3e4cadda8a5cd0dae5581a083a868b9b600f691e2a56beaf092","signature":"fe382861865d82b148b9614a66ee3f62138a5f0adea019f5441761e4f4f5812a"},{"version":"f9504bfc65d9eb72dede15cb474dd63ee7fb84dd539adf5cbda38537ef9d9290","signature":"28c108b450f31e7f3d3e66c7d83c29afcc88842fc9f6228c7a3ba7c9e3ce4d67"},{"version":"0a2f6fa78d7d6973010a4a7643b4719d0816598a485d0c4797ea73a0db535cdf","signature":"ecdb3a0c4b11dba69b150b65fcd487a54f494f43ee6a4ce82408dcd3d2780ed9"},{"version":"0ad46160082c27a6601f01e9a567c228781180d4798372b1f30ff4a10806e6b0","signature":"ba6bcb2476e6b2b19dc452fd6f80a3e36db42bfe47fdb27997a18c29198e2ad5"},"9317e2e5e674733f73a15d29b00e2bec6084480c7e95d33943720e127034ce80",{"version":"aa1150ede3481bbd5949956b4b1f265ff73b130a91b17cba9e2328785021037a","signature":"8a7ea33d4105f3c08a8233ce25c6c642a95fbc1293b234f00508a43c9a4aa664"},{"version":"29fed291882095086ffe6d0a9e6c4de9012753a42e6021050636eb0da0a62744","signature":"9221f1b162330f46b75d02e7961cc1405437cc71b1dea8cc835e0d8bc8bcd6d4"},{"version":"58e1f4ca1b2ea76153275a80ff1f093b69db12f8dc45da934f9dccf6ddd84697","signature":"e580c609d1fbfae4122678349851b2d735878da1413ca5eaf1043fd72aac1091"},{"version":"c32ff1caf9c8e8a69d2f9d404d5c612c03d16d3398e080379e43d9a5399dd9cc","signature":"127c43e0de62f906a9992af1e406e00a04ba473e983fd12bce0a93cd6856da3d"},{"version":"73e6eca9bc9440da021456a248e83439d7b951999a7f140eb7f295cb45ef3fef","signature":"d18ddb872c449284c23afc44da4e0c2f3f40ce720b1e64464a1f872074cba76a"},{"version":"e96ca860341e2fda609091071ec5c501be7d89c1b938bb16bedd0fdea7aa9e93","signature":"97541bcf3caef1d337c188ee2c7e0fc1a6afa1c9e2a183b3837a681acf9ecc23"},{"version":"41bb37a7f594df20bd2adabb762237c4216db0ffdce01b218c09d3f4d2456024","signature":"a07705ba3cbc102c9e8934cff002048da6b18d3b8ee4a703d777af3998305698"},{"version":"ab0ba2a2453abff51817a62818aaa0f2f5d12b638173409f36bae2bdbe84f8fb","signature":"b77a917b1a18a63fc32d7493e538912d3f70e39eb9d46233e0ab8e0584904827"},"9317e2e5e674733f73a15d29b00e2bec6084480c7e95d33943720e127034ce80",{"version":"aa632a25de095c3a57cbd54595c21b0d9ce46ed711b8367551e0428f85e3ae0b","signature":"29a2c5c93d2ccbcd52a720428313610d4b08dcc7f8417dcb7366b5b3a326709c"},{"version":"260ca051b1cc821de26d6c3d43aac7e32ca191c6482602a3dd544a461a8506ea","signature":"42dc580370222fd7962c077d95961e5a230d193c254c6378f65f1779b3f01a46"},{"version":"e9c2ad01c0918139a5b4f2ca3d80ec0f460f5cd01e254d6b00a2f7cba19f5306","signature":"32ea9201a304a62b300df72c36e4bbe4565e3c5781d22a6ae5c6c0585a52de0f"},{"version":"0b473376f09bcd2a8822e8853badcc904933e653b57e521c92fff6758cf84068","signature":"1141557b25031a5c242e6aeaa65388f10cd7dd59c7dd28841aa042f1ededc589"},{"version":"57cca8a50dd3d1985a504e96fd8f98181ff60c62987c0b933efb490dc4a3b43d","signature":"adc7b220fd4c116cb47398ca651e49c69011e5958853c94c6e25581b5ebfc88d"},{"version":"1c43d94deb080d64b3203f1c39768f70cd0c732f3439226245256c56c57bb89e","signature":"b98d6db129e4be80f59fc688e34a58acdb30a620828601f37e45a06621f46eca"},{"version":"d4a8822c61891177e0aacdd78d9e9daabdc3aa7f4c45b5ca7db4958cc3e1453e","signature":"5cb7c4f0d0bb73f732ad169f1debd37c77dd1e2448eb597ff7f4235bc61e2ddb"},{"version":"0f242fbab1f0130b2f464fa7979096884caba226dff26a8305de12496912f2e7","signature":"3dfcf2e7c0f48eab974d966c7b67b72301830bc41e181205f7695a8a7ec97983"},{"version":"5a437dbce6784dd9bb062d0b07a21c133f2dd178ce91181abd281b0c1df3a1fe","signature":"9da0bf1ec65a5e72eb9daa2da785f46f5e7dc066486b2d360929d45adb815660"},{"version":"7d990c94a74c07a420b926764df25c29592fe2d8c75aebab50e7f79a3a71923c","signature":"f0d7c131b6a06308b86f842fd68bd602389bb329cd6bf4395afda32654fbbeb3"},{"version":"21f7b14a9240bb4307359e48e655687c42474406f2a8e823b87f0dadd1da0233","signature":"e2fd3acec514ee6e9ce9fbf52dd24cdef19c90c5871238025fbc87be971097ae"},"1a4a4c1915be6b1495b4d54dc62aad7fdd158f12d58be7620278b882b01f4d32",{"version":"f6883fde624bbb3e306c25abde6a914097139efcf0b2a9a5c75ff186e482c942","signature":"e69970ddd86d0fb74c3d27f8c72da45d4e4f5a0d2695ac577d06d344c855568a"},{"version":"caaf188373b980c70230256413683f0281d4ee9b4eecc972b2fbceddea4d0b8c","signature":"27e15adeed347811b8cdf82a7d90b343739c68ca512b366e4cdb0e2f478519a4"},{"version":"ab1cf038be6b4be6014fd0ae3ff3687e862e99ca92484a2144edf68c9951ad00","signature":"bcc3bbd3e34046309197fb8347efdf84c2d162c35e465b372e7b33cfa9533118"},{"version":"5c4dc9f0ca64841089b3bc3f5d4be48c039e1c46366105f39e0ca48a6753c4e8","signature":"8cc4824a3ea420a573260c8b101035591b6e7660f0b29443ccdad75c429760de"},{"version":"08003aface0aeda746199dce2ff83f1c90d024eb910ce066d0120863084163f0","signature":"573db26db75bddf5f9a7c1f22ef8813e7755ae1fb0e7f1b436e8824d5b27b2ca"},{"version":"8a8ac73d78af775c1d26e5908a5b4fc0a45d59941ce35eb2430f4438776ed6e8","signature":"696ddd0351f1aa8d992d673a06e9b0c873f18c119f00e39c96cfacc99db2cf45"},{"version":"d8bd5e7d03961d3d9a4a05c15f9630a8cb7cac2e7ad9897433030af7cbad443c","signature":"1a4af102921baef0462cf5b109cfc2c433350fb1f4d8d12b4f38d184419e17da"},{"version":"a9e9b0e74b265f2cdba077ed0fa6cb0b38ed61b3f2f6172c5a43b7083e78bb73","signature":"220e55acb181047a03410c755be7463767be8bee2f762ed5264c2b36b715ef86"},{"version":"95cec156cca5627964c22ba7785359ab4755181f100393b842233ca1e8e757cf","signature":"917a7147d88ba55471e74848f4113df7988ba126a1546c359eeff3654f5e717a"},{"version":"d55b5781220cdd060cd8ebbfa5c17a4d01e92ee865a93e875f19307fcf37a966","signature":"da2812afd8d8860c53b63a64b66854c84eb1208e40923fb4703fc0eeebc852e6"},"db1b0fdebbe98de6a37530213937aa84c5e6630acba84a1274306263422aa80c","a80903a71916e0c834473d2204a2567e4c101b2d537cee8f25f6eac7227c52e0"],"options":{"composite":true,"declaration":true,"declarationDir":"./types","declarationMap":true,"esModuleInterop":true,"importHelpers":true,"jsx":4,"module":7,"noEmitHelpers":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"fileIdsList":[[58],[54,55,56,57],[58,81,84],[87],[75],[58,79],[58,85],[58,97],[58,100],[58,102,103],[58,80,82,109],[58,82],[58,118],[58,173],[58,132],[58,80,82,83,85],[58,80],[75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,98,99,101,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,130,131,132,133,134,135,136,137,138,139,140,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,162,175,176,177,178,179,180,181,182,183],[58,83],[128,129],[58,128],[58,131],[58,81],[58,184],[72,73,74],[58,79,80],[58,142],[58,163,164,174],[58,85,110,118],[58,110,156],[58,82,83],[58,147],[58,160],[165],[165,166,168,169,170,171,172],[167],[58,165],[192],[187,188,189,190,191,192],[187,188,189,190,191,193],[192,193],[194],[186,194,195],[58,141],[53,59],[53,59,61,218],[53,59,61],[53,58,59,60,196,220],[53,59,225,227,228],[53,59,60,219,220,221,223,224],[53,59,60,196,218,219,220,221,222,223,224],[53,59,196,222],[53,58,59,196,220,222],[53,59,62,63,184,196,220,225,226,227],[53,59,60,63],[53,59,61,63],[53,59,60,63,64,202,208,217,229,240],[53,59,238,239],[53,59,61,196,230,231,232,233,234,235,236,237],[53,59,62,196,237,238],[53,59,63],[53,59,205,206,207],[53,59,203,204,205],[53,59,61,196,203,204],[53,59,62,184,196,203,204,205,206],[53,59,214,215,216],[53,59,61,196,209,211,212,213],[53,59,196,209,211,212,213],[53,59,196,210],[53,59,196,210,212],[53,59,62,63,184,196,212,214,215],[53,59,61,66,67],[53,59,61,67],[53,59,199,200,201],[53,59,65,67,199],[53,58,59,66,67],[53,59,67,68,69,70,71,185,197,198],[53,59,62,67,184,196,199,200],[53,59,67,184],[53,59,65,67,196],[53,59,62],[61],[220],[63,220],[60,63],[63],[237],[203,204],[204],[212],[63,212],[67],[65,67],[62]],"referencedMap":[[167,1],[58,2],[59,1],[76,1],[77,1],[78,1],[79,1],[86,1],[85,3],[88,4],[89,5],[90,4],[91,4],[93,6],[94,7],[95,1],[96,1],[98,8],[99,1],[101,9],[80,1],[102,1],[104,10],[103,1],[105,1],[106,1],[107,1],[108,1],[110,11],[109,12],[111,1],[113,1],[112,1],[114,1],[115,6],[116,1],[117,1],[119,13],[120,1],[121,1],[122,1],[176,1],[177,1],[178,1],[179,1],[180,14],[181,1],[182,15],[183,1],[118,16],[81,17],[184,18],[162,1],[123,1],[124,1],[125,13],[126,19],[127,1],[130,20],[129,21],[128,1],[131,1],[132,22],[134,23],[135,1],[133,1],[136,1],[137,23],[82,24],[75,25],[74,1],[138,1],[139,6],[140,26],[143,27],[144,1],[145,1],[146,1],[147,6],[83,1],[174,14],[164,1],[175,28],[163,1],[148,22],[149,15],[150,1],[151,1],[152,6],[153,6],[154,1],[155,6],[156,29],[158,30],[157,30],[84,31],[159,32],[160,1],[161,33],[166,34],[173,35],[172,1],[168,36],[165,1],[171,37],[187,38],[191,38],[190,38],[189,38],[193,39],[188,38],[192,40],[194,41],[195,42],[196,43],[100,1],[142,44],[141,1],[60,45],[219,46],[218,47],[221,48],[229,49],[226,50],[225,51],[227,50],[223,52],[224,53],[222,45],[228,54],[220,55],[64,56],[61,45],[241,57],[230,45],[231,45],[232,45],[233,45],[234,45],[235,45],[236,45],[240,58],[238,59],[239,60],[237,61],[203,45],[208,62],[206,63],[205,64],[207,65],[204,61],[62,45],[209,47],[217,66],[214,67],[215,68],[211,69],[213,70],[210,45],[216,71],[212,61],[68,72],[65,45],[69,45],[70,73],[202,74],[200,75],[71,76],[199,77],[201,78],[185,79],[197,80],[198,73],[67,61],[63,81]],"exportedModulesMap":[[167,1],[58,2],[59,1],[76,1],[77,1],[78,1],[79,1],[86,1],[85,3],[88,4],[89,5],[90,4],[91,4],[93,6],[94,7],[95,1],[96,1],[98,8],[99,1],[101,9],[80,1],[102,1],[104,10],[103,1],[105,1],[106,1],[107,1],[108,1],[110,11],[109,12],[111,1],[113,1],[112,1],[114,1],[115,6],[116,1],[117,1],[119,13],[120,1],[121,1],[122,1],[176,1],[177,1],[178,1],[179,1],[180,14],[181,1],[182,15],[183,1],[118,16],[81,17],[184,18],[162,1],[123,1],[124,1],[125,13],[126,19],[127,1],[130,20],[129,21],[128,1],[131,1],[132,22],[134,23],[135,1],[133,1],[136,1],[137,23],[82,24],[75,25],[74,1],[138,1],[139,6],[140,26],[143,27],[144,1],[145,1],[146,1],[147,6],[83,1],[174,14],[164,1],[175,28],[163,1],[148,22],[149,15],[150,1],[151,1],[152,6],[153,6],[154,1],[155,6],[156,29],[158,30],[157,30],[84,31],[159,32],[160,1],[161,33],[166,34],[173,35],[172,1],[168,36],[165,1],[171,37],[187,38],[191,38],[190,38],[189,38],[193,39],[188,38],[192,40],[194,41],[195,42],[196,43],[100,1],[142,44],[141,1],[218,82],[221,83],[229,49],[226,83],[225,83],[227,83],[224,83],[228,84],[220,85],[64,86],[241,57],[240,58],[238,87],[239,87],[237,86],[208,62],[206,88],[205,89],[207,89],[204,86],[209,82],[217,66],[214,90],[215,90],[213,90],[216,91],[212,86],[68,92],[70,92],[202,74],[200,93],[71,92],[199,92],[201,92],[185,92],[197,92],[198,92],[67,86],[63,94]],"semanticDiagnosticsPerFile":[56,167,54,58,59,57,97,76,77,78,79,86,85,88,89,90,91,87,92,93,94,95,96,98,99,101,80,102,104,103,105,106,107,108,110,109,111,113,112,114,115,116,117,119,120,121,122,176,177,178,179,180,181,182,183,118,81,184,162,123,124,125,126,127,130,129,128,131,132,134,135,133,136,137,82,72,73,75,74,138,139,140,143,144,145,146,147,83,174,164,175,163,148,149,150,151,152,153,154,155,156,158,157,84,159,160,161,166,173,170,172,168,165,171,169,187,191,190,189,193,188,192,194,195,196,186,66,55,100,142,141,53,10,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,1,60,219,218,221,229,226,225,227,223,224,222,228,220,64,61,241,230,231,232,233,234,235,236,240,238,239,237,203,208,206,205,207,204,62,209,217,214,215,211,213,210,216,212,68,65,69,70,202,200,71,199,201,185,197,198,67,63]},"version":"4.7.4"}
|
package/dist/types/helpers.d.ts
CHANGED
|
@@ -10,11 +10,12 @@ export declare const firstValid: (...args: ConditionalFormatter[]) => NullableFo
|
|
|
10
10
|
export declare const stripHtmlTags: Formatter;
|
|
11
11
|
export declare const hasTag: (text: string, tag: string) => boolean;
|
|
12
12
|
export declare const formatTweetDate: (date?: number | Date | undefined) => string;
|
|
13
|
-
declare type Platform = 'twitter' | 'facebook' | 'linkedin';
|
|
13
|
+
declare type Platform = 'twitter' | 'facebook' | 'linkedin' | 'instagram';
|
|
14
14
|
declare type PreviewTextOptions = {
|
|
15
15
|
platform: Platform;
|
|
16
16
|
maxChars?: number;
|
|
17
17
|
maxLines?: number;
|
|
18
|
+
hyperlinkUrls?: boolean;
|
|
18
19
|
};
|
|
19
20
|
/**
|
|
20
21
|
* Prepares the text for the preview.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../src/helpers.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS,GAAG,CAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,GAAG,KAAM,MAAM,CAAC;AAClE,aAAK,0BAA0B,CAAE,CAAC,SAAS,SAAS,EAAE,UAAU,IAAK,CACpE,GAAG,CAAC,EAAE,UAAU,CAAE,CAAC,CAAE,KACjB,UAAU,CAAE,CAAC,CAAE,GAAG,UAAU,CAAC;AAClC,aAAK,oBAAoB,GAAG,0BAA0B,CAAE,SAAS,EAAE,OAAO,CAAE,CAAC;AAC7E,aAAK,iBAAiB,GAAG,0BAA0B,CAAE,SAAS,EAAE,SAAS,CAAE,CAAC;AAE5E,eAAO,MAAM,UAAU,QAAU,MAAM,KAAI,MAGlB,CAAC;AAE1B,eAAO,MAAM,WAAW,EAAE,CAAE,CAAC,EAAE,MAAM,KAAM,oBACL,CAAC;AAEvC,eAAO,MAAM,gBAAgB,EAAE,CAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,KAAM,oBAQzD,CAAC;AAEH,eAAO,MAAM,cAAc,EAAE,CAAE,CAAC,EAAE,MAAM,KAAM,SACR,CAAC;AAEvC,eAAO,MAAM,UAAU,EAAE,CAAE,GAAG,IAAI,EAAE,oBAAoB,EAAE,KAAM,iBAGM,CAAC;AAEvE,eAAO,MAAM,aAAa,EAAE,SAI3B,CAAC;AAEF,eAAO,MAAM,MAAM,SAAW,MAAM,OAAO,MAAM,KAAI,OAIpD,CAAC;AAEF,eAAO,MAAM,eAAe,8CAIlB,CAAC;AAEX,aAAK,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../src/helpers.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS,GAAG,CAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,GAAG,KAAM,MAAM,CAAC;AAClE,aAAK,0BAA0B,CAAE,CAAC,SAAS,SAAS,EAAE,UAAU,IAAK,CACpE,GAAG,CAAC,EAAE,UAAU,CAAE,CAAC,CAAE,KACjB,UAAU,CAAE,CAAC,CAAE,GAAG,UAAU,CAAC;AAClC,aAAK,oBAAoB,GAAG,0BAA0B,CAAE,SAAS,EAAE,OAAO,CAAE,CAAC;AAC7E,aAAK,iBAAiB,GAAG,0BAA0B,CAAE,SAAS,EAAE,SAAS,CAAE,CAAC;AAE5E,eAAO,MAAM,UAAU,QAAU,MAAM,KAAI,MAGlB,CAAC;AAE1B,eAAO,MAAM,WAAW,EAAE,CAAE,CAAC,EAAE,MAAM,KAAM,oBACL,CAAC;AAEvC,eAAO,MAAM,gBAAgB,EAAE,CAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,KAAM,oBAQzD,CAAC;AAEH,eAAO,MAAM,cAAc,EAAE,CAAE,CAAC,EAAE,MAAM,KAAM,SACR,CAAC;AAEvC,eAAO,MAAM,UAAU,EAAE,CAAE,GAAG,IAAI,EAAE,oBAAoB,EAAE,KAAM,iBAGM,CAAC;AAEvE,eAAO,MAAM,aAAa,EAAE,SAI3B,CAAC;AAEF,eAAO,MAAM,MAAM,SAAW,MAAM,OAAO,MAAM,KAAI,OAIpD,CAAC;AAEF,eAAO,MAAM,eAAe,8CAIlB,CAAC;AAEX,aAAK,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,UAAU,GAAG,WAAW,CAAC;AAElE,aAAK,kBAAkB,GAAG;IACzB,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,OAAO,CAAC;CACxB,CAAC;AAEF;;GAEG;AACH,wBAAgB,kBAAkB,CAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,kBAAkB,GAAI,MAAM,CAgDtF"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,mBAAmB,CAAC;AAClC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC;AACpC,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/instagram-preview/constants.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,oBAAoB,MAAM,CAAC;AACxC,eAAO,MAAM,mBAAmB,IAAI,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bookmark.d.ts","sourceRoot":"","sources":["../../../../src/instagram-preview/icons/bookmark.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAoB5B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"comment.d.ts","sourceRoot":"","sources":["../../../../src/instagram-preview/icons/comment.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAmB3B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default-avatar.d.ts","sourceRoot":"","sources":["../../../../src/instagram-preview/icons/default-avatar.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EASjC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"heart.d.ts","sourceRoot":"","sources":["../../../../src/instagram-preview/icons/heart.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAazB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["../../../../src/instagram-preview/icons/menu.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAuBxB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"share.d.ts","sourceRoot":"","sources":["../../../../src/instagram-preview/icons/share.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EA6BzB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/instagram-preview/index.tsx"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"post-preview.d.ts","sourceRoot":"","sources":["../../../src/instagram-preview/post-preview.tsx"],"names":[],"mappings":"AASA,OAAO,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAEhD,OAAO,cAAc,CAAC;AAEtB,wBAAgB,oBAAoB,CAAE,EACrC,KAAK,EACL,IAAI,EACJ,YAAY,EACZ,OAAO,GACP,EAAE,qBAAqB,eAyDvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"previews.d.ts","sourceRoot":"","sources":["../../../src/instagram-preview/previews.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAE,sBAAsB,CA2B/D,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SocialPreviewBaseProps, SocialPreviewsBaseProps } from '../types';
|
|
2
|
+
export declare type InstagramPreviewProps = Pick<SocialPreviewBaseProps, 'image'> & {
|
|
3
|
+
name: string;
|
|
4
|
+
profileImage: string;
|
|
5
|
+
caption?: string;
|
|
6
|
+
};
|
|
7
|
+
export declare type InstagramPreviewsProps = InstagramPreviewProps & SocialPreviewsBaseProps;
|
|
8
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/instagram-preview/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,MAAM,UAAU,CAAC;AAE3E,oBAAY,qBAAqB,GAAG,IAAI,CAAE,sBAAsB,EAAE,OAAO,CAAE,GAAG;IAC7E,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,oBAAY,sBAAsB,GAAG,qBAAqB,GAAG,uBAAuB,CAAC"}
|
package/package.json
CHANGED
package/src/helpers.ts
CHANGED
|
@@ -49,19 +49,20 @@ export const formatTweetDate = new Intl.DateTimeFormat( 'en-US', {
|
|
|
49
49
|
day: 'numeric',
|
|
50
50
|
} ).format;
|
|
51
51
|
|
|
52
|
-
type Platform = 'twitter' | 'facebook' | 'linkedin';
|
|
52
|
+
type Platform = 'twitter' | 'facebook' | 'linkedin' | 'instagram';
|
|
53
53
|
|
|
54
54
|
type PreviewTextOptions = {
|
|
55
55
|
platform: Platform;
|
|
56
56
|
maxChars?: number;
|
|
57
57
|
maxLines?: number;
|
|
58
|
+
hyperlinkUrls?: boolean;
|
|
58
59
|
};
|
|
59
60
|
|
|
60
61
|
/**
|
|
61
62
|
* Prepares the text for the preview.
|
|
62
63
|
*/
|
|
63
64
|
export function preparePreviewText( text: string, options: PreviewTextOptions ): string {
|
|
64
|
-
const { platform, maxChars, maxLines } = options;
|
|
65
|
+
const { platform, maxChars, maxLines, hyperlinkUrls = true } = options;
|
|
65
66
|
|
|
66
67
|
let result = stripHtmlTags( text );
|
|
67
68
|
|
|
@@ -77,12 +78,14 @@ export function preparePreviewText( text: string, options: PreviewTextOptions ):
|
|
|
77
78
|
}
|
|
78
79
|
}
|
|
79
80
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
81
|
+
if ( hyperlinkUrls ) {
|
|
82
|
+
// Convert URLs to hyperlinks.
|
|
83
|
+
result = result.replace(
|
|
84
|
+
// TODO: Use a better regex here to match the URLs without protocol.
|
|
85
|
+
/(https?:\/\/\S+)/g,
|
|
86
|
+
'<a href="$1" rel="noopener noreferrer" target="_blank">$1</a>'
|
|
87
|
+
);
|
|
88
|
+
}
|
|
86
89
|
|
|
87
90
|
let hashtagUrl;
|
|
88
91
|
|
|
@@ -90,6 +93,8 @@ export function preparePreviewText( text: string, options: PreviewTextOptions ):
|
|
|
90
93
|
hashtagUrl = 'https://twitter.com/hashtag/';
|
|
91
94
|
} else if ( 'linkedin' === platform ) {
|
|
92
95
|
hashtagUrl = 'https://www.linkedin.com/feed/hashtag/?keywords=';
|
|
96
|
+
} else if ( 'instagram' === platform ) {
|
|
97
|
+
hashtagUrl = 'https://www.instagram.com/explore/tags/';
|
|
93
98
|
}
|
|
94
99
|
|
|
95
100
|
if ( hashtagUrl ) {
|
package/src/index.ts
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export const Bookmark: React.FC = () => {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
color="rgb(38, 38, 38)"
|
|
5
|
+
fill="rgb(38, 38, 38)"
|
|
6
|
+
height="24"
|
|
7
|
+
role="img"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
width="24"
|
|
10
|
+
>
|
|
11
|
+
<polygon
|
|
12
|
+
fill="none"
|
|
13
|
+
points="20 21 12 13.44 4 21 4 3 20 3 20 21"
|
|
14
|
+
stroke="currentColor"
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
strokeWidth="2"
|
|
18
|
+
></polygon>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const Comment: React.FC = () => {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
color="rgb(38, 38, 38)"
|
|
5
|
+
fill="rgb(38, 38, 38)"
|
|
6
|
+
height="24"
|
|
7
|
+
role="img"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
width="24"
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M20.656 17.008a9.993 9.993 0 1 0-3.59 3.615L22 22Z"
|
|
13
|
+
fill="none"
|
|
14
|
+
stroke="currentColor"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
strokeWidth="2"
|
|
17
|
+
></path>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export const DefaultAvatar: React.FC = () => {
|
|
2
|
+
return (
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 340 340" width="340" height="340">
|
|
4
|
+
<path
|
|
5
|
+
fill="#DDD"
|
|
6
|
+
d="m169,.5a169,169 0 1,0 2,0zm0,86a76,76 0 1 1-2,0zM57,287q27-35 67-35h92q40,0 67,35a164,164 0 0,1-226,0"
|
|
7
|
+
/>
|
|
8
|
+
</svg>
|
|
9
|
+
);
|
|
10
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export const Heart: React.FC = () => {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
color="rgb(38, 38, 38)"
|
|
5
|
+
fill="rgb(38, 38, 38)"
|
|
6
|
+
height="24"
|
|
7
|
+
role="img"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
width="24"
|
|
10
|
+
>
|
|
11
|
+
<path d="M16.792 3.904A4.989 4.989 0 0 1 21.5 9.122c0 3.072-2.652 4.959-5.197 7.222-2.512 2.243-3.865 3.469-4.303 3.752-.477-.309-2.143-1.823-4.303-3.752C5.141 14.072 2.5 12.167 2.5 9.122a4.989 4.989 0 0 1 4.708-5.218 4.21 4.21 0 0 1 3.675 1.941c.84 1.175.98 1.763 1.12 1.763s.278-.588 1.11-1.766a4.17 4.17 0 0 1 3.679-1.938m0-2a6.04 6.04 0 0 0-4.797 2.127 6.052 6.052 0 0 0-4.787-2.127A6.985 6.985 0 0 0 .5 9.122c0 3.61 2.55 5.827 5.015 7.97.283.246.569.494.853.747l1.027.918a44.998 44.998 0 0 0 3.518 3.018 2 2 0 0 0 2.174 0 45.263 45.263 0 0 0 3.626-3.115l.922-.824c.293-.26.59-.519.885-.774 2.334-2.025 4.98-4.32 4.98-7.94a6.985 6.985 0 0 0-6.708-7.218Z"></path>
|
|
12
|
+
</svg>
|
|
13
|
+
);
|
|
14
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export const Menu: React.FC = () => {
|
|
2
|
+
return (
|
|
3
|
+
<svg width="17" height="5" viewBox="0 0 17 5" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<path
|
|
5
|
+
d="M2.11865 3.5C2.67094 3.5 3.11865 3.05228 3.11865 2.5C3.11865 1.94772 2.67094 1.5 2.11865 1.5C1.56637 1.5 1.11865 1.94772 1.11865 2.5C1.11865 3.05228 1.56637 3.5 2.11865 3.5Z"
|
|
6
|
+
fill="black"
|
|
7
|
+
stroke="black"
|
|
8
|
+
strokeWidth="2"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
d="M8.55933 3.5C9.11161 3.5 9.55933 3.05228 9.55933 2.5C9.55933 1.94772 9.11161 1.5 8.55933 1.5C8.00704 1.5 7.55933 1.94772 7.55933 2.5C7.55933 3.05228 8.00704 3.5 8.55933 3.5Z"
|
|
12
|
+
fill="black"
|
|
13
|
+
stroke="black"
|
|
14
|
+
strokeWidth="2"
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
d="M15 3.5C15.5523 3.5 16 3.05228 16 2.5C16 1.94772 15.5523 1.5 15 1.5C14.4477 1.5 14 1.94772 14 2.5C14 3.05228 14.4477 3.5 15 3.5Z"
|
|
18
|
+
fill="black"
|
|
19
|
+
stroke="black"
|
|
20
|
+
strokeWidth="2"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export const Share: React.FC = () => {
|
|
2
|
+
return (
|
|
3
|
+
<svg
|
|
4
|
+
color="rgb(38, 38, 38)"
|
|
5
|
+
fill="rgb(38, 38, 38)"
|
|
6
|
+
height="24"
|
|
7
|
+
role="img"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
width="24"
|
|
10
|
+
>
|
|
11
|
+
<line
|
|
12
|
+
fill="none"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
strokeWidth="2"
|
|
16
|
+
x1="22"
|
|
17
|
+
x2="9.218"
|
|
18
|
+
y1="3"
|
|
19
|
+
y2="10.083"
|
|
20
|
+
></line>
|
|
21
|
+
<polygon
|
|
22
|
+
fill="none"
|
|
23
|
+
points="11.698 20.334 22 3.001 2 3.001 9.218 10.084 11.698 20.334"
|
|
24
|
+
stroke="currentColor"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
strokeWidth="2"
|
|
27
|
+
></polygon>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
};
|