├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── auto-translate.yml │ ├── brand-plugin-test.yml │ ├── codecoverage-main.yml │ ├── i18n-crowdin-download.yml │ ├── i18n-crowdin-upload.yml │ ├── lint.yml │ ├── newfold-prep-release.yml │ └── satis-update.yml ├── .gitignore ├── .npmrc.example ├── .nvmrc ├── .prettierrc.js ├── LICENSE ├── README.md ├── assets └── build │ ├── utilities.css │ └── utilities.js ├── bootstrap.php ├── composer.json ├── composer.lock ├── crowdin.yml ├── includes ├── Admin │ └── CTA.php ├── Api │ ├── Controllers │ │ ├── CacheController.php │ │ ├── EventsController.php │ │ ├── FavoritesController.php │ │ ├── PatternCategoriesController.php │ │ ├── PatternUsageTagsController.php │ │ ├── PatternsController.php │ │ ├── PluginsController.php │ │ ├── RestApiController.php │ │ ├── TemplateCategoriesController.php │ │ └── TemplatesController.php │ ├── RemoteRequest.php │ └── RestApi.php ├── BlockStyles.php ├── CSSUtilities.php ├── Data │ ├── Brands.php │ ├── PluginRequirements.php │ └── PluginStatus.php ├── Library │ ├── Admin.php │ ├── Categories.php │ ├── Events.php │ ├── Favorites.php │ ├── Items.php │ └── UsageTags.php ├── Patterns.php ├── PatternsFeature.php ├── Permissions.php ├── Services │ └── PluginService.php └── SiteClassification.php ├── languages ├── nfd-wonder-blocks-de_DE-9e786668ee6bbb41d97443960fdb38d7.json ├── nfd-wonder-blocks-de_DE.l10n.php ├── nfd-wonder-blocks-de_DE.po ├── nfd-wonder-blocks-en_AU-9e786668ee6bbb41d97443960fdb38d7.json ├── nfd-wonder-blocks-en_AU.l10n.php ├── nfd-wonder-blocks-en_AU.po ├── nfd-wonder-blocks-en_GB-9e786668ee6bbb41d97443960fdb38d7.json ├── nfd-wonder-blocks-en_GB.l10n.php ├── nfd-wonder-blocks-en_GB.po ├── nfd-wonder-blocks-es_ES-9e786668ee6bbb41d97443960fdb38d7.json ├── nfd-wonder-blocks-es_ES.l10n.php ├── nfd-wonder-blocks-es_ES.po ├── nfd-wonder-blocks-es_MX-9e786668ee6bbb41d97443960fdb38d7.json ├── nfd-wonder-blocks-es_MX.l10n.php ├── nfd-wonder-blocks-es_MX.po ├── nfd-wonder-blocks-fr_FR-9e786668ee6bbb41d97443960fdb38d7.json ├── nfd-wonder-blocks-fr_FR.l10n.php ├── nfd-wonder-blocks-fr_FR.po ├── nfd-wonder-blocks-it_IT-9e786668ee6bbb41d97443960fdb38d7.json ├── nfd-wonder-blocks-it_IT.l10n.php ├── nfd-wonder-blocks-it_IT.po ├── nfd-wonder-blocks-nl_NL-9e786668ee6bbb41d97443960fdb38d7.json ├── nfd-wonder-blocks-nl_NL.l10n.php ├── nfd-wonder-blocks-nl_NL.po ├── nfd-wonder-blocks-pt_BR-9e786668ee6bbb41d97443960fdb38d7.json ├── nfd-wonder-blocks-pt_BR.l10n.php ├── nfd-wonder-blocks-pt_BR.po └── nfd-wonder-blocks.pot ├── phpcs.xml ├── postcss.config.js ├── source ├── css-utilities │ ├── parts │ │ ├── animations │ │ │ └── animations.css │ │ ├── backgrounds │ │ │ └── backgrounds.css │ │ ├── block-preview.css │ │ ├── blog │ │ │ └── blog.css │ │ ├── borders │ │ │ └── separator.css │ │ ├── buttons │ │ │ ├── button-sizes.css │ │ │ ├── buttons.css │ │ │ └── variants.css │ │ ├── colors │ │ │ └── colors.css │ │ ├── container │ │ │ └── container.css │ │ ├── dividers │ │ │ ├── arrow.css │ │ │ ├── base.css │ │ │ ├── clouds.css │ │ │ ├── dividers.css │ │ │ ├── ellipse.css │ │ │ ├── rounded.css │ │ │ ├── slant.css │ │ │ ├── triangle.css │ │ │ └── zigzag.css │ │ ├── form │ │ │ └── form.css │ │ ├── image │ │ │ └── image.css │ │ ├── lists │ │ │ └── lists.css │ │ ├── mask │ │ │ └── mask.css │ │ ├── misc.css │ │ ├── radius │ │ │ └── radius.css │ │ ├── shadows │ │ │ └── shadows.css │ │ ├── slider │ │ │ └── slider.css │ │ ├── spacing │ │ │ ├── gap.css │ │ │ ├── grid.css │ │ │ ├── misc.css │ │ │ ├── padding.css │ │ │ └── spacing.css │ │ ├── typography │ │ │ ├── misc.css │ │ │ └── typography.css │ │ ├── woocommerce │ │ │ └── woocommerce.css │ │ └── yoast │ │ │ └── yoast.css │ ├── postcss.config.js │ ├── tailwind.config.js │ └── utilities.css ├── scripts │ ├── utilities.js │ └── viewportAnimationObserver.js └── styles │ └── utilities.css ├── src ├── blocks │ ├── block.js │ ├── block.json │ ├── inspector-control.js │ ├── register-category.js │ └── variations.js ├── components │ ├── Icons │ │ ├── heart.jsx │ │ ├── heartEmpty.jsx │ │ ├── index.js │ │ ├── plus.jsx │ │ ├── rectangleGroup.jsx │ │ └── trash.jsx │ ├── Logo.jsx │ ├── Modal │ │ ├── Content │ │ │ ├── CategoryButton.jsx │ │ │ ├── Content.jsx │ │ │ ├── DesignList │ │ │ │ ├── DesignItem │ │ │ │ │ ├── DesignItem.jsx │ │ │ │ │ ├── DesignItemControls.jsx │ │ │ │ │ ├── DesignItemFooter.jsx │ │ │ │ │ ├── DesignItemPreview.jsx │ │ │ │ │ └── DesignItemView.jsx │ │ │ │ ├── DesignList.jsx │ │ │ │ ├── Error.jsx │ │ │ │ ├── NoResults.jsx │ │ │ │ └── RequiredPluginNotice.jsx │ │ │ ├── FilterBar.jsx │ │ │ ├── Header │ │ │ │ ├── Header.jsx │ │ │ │ └── TrialNotice.jsx │ │ │ ├── KeywordFilter.jsx │ │ │ ├── LoadingSpinner.jsx │ │ │ ├── PluginInstallationProgress.jsx │ │ │ ├── Skeleton.jsx │ │ │ ├── Spinner.jsx │ │ │ ├── UpdateNotice.jsx │ │ │ └── Views │ │ │ │ ├── About.jsx │ │ │ │ ├── Info.jsx │ │ │ │ └── Library.jsx │ │ ├── Modal.jsx │ │ └── Sidebar │ │ │ ├── Categories.jsx │ │ │ ├── ErrorLoading.jsx │ │ │ ├── ListElement.jsx │ │ │ ├── Sidebar.jsx │ │ │ └── Skeleton.jsx │ ├── PluginLogo.jsx │ ├── PluginProgressBar.jsx │ ├── PremiumBadge.jsx │ ├── TitleWithLogo.jsx │ └── ToolbarButton.jsx ├── constants.js ├── helpers │ ├── analytics.js │ ├── blockInserter.js │ ├── ctbHandler.js │ ├── fetcher.js │ ├── iconMapping.js │ ├── index.js │ ├── optimizePreview.js │ ├── pluginManager.js │ └── utils.js ├── hooks │ ├── index.js │ ├── useBlockProcessor.js │ ├── useCategories.js │ ├── useDesignInsertion.js │ ├── useFavoritesManager.js │ ├── useMonitorBlockOrder.js │ ├── usePatterns.js │ ├── usePluginManager.js │ ├── usePluginRequirements.js │ ├── usePluginRequirementsHandler.js │ ├── usePostTemplates.js │ ├── useReplacePlaceholders.js │ ├── useSearchSuggestions.js │ ├── useSetCurrentView.js │ └── useUpdateThemeClasses.js ├── store │ ├── actions.js │ ├── constants.js │ ├── index.js │ ├── reducer.js │ └── selectors.js ├── styles │ ├── _form.scss │ ├── _mixins.scss │ ├── _toolbar.scss │ ├── _vars.scss │ ├── app.scss │ └── modal │ │ ├── _design-item.scss │ │ ├── _list-element.scss │ │ ├── _loading-bar.scss │ │ ├── _plugin-install.scss │ │ ├── _skeleton.scss │ │ ├── _tabs.scss │ │ └── modal.scss ├── svg │ ├── Error.svg │ ├── JetpackLogo.svg │ ├── NoFavorites.svg │ ├── NoResults.svg │ ├── WooCommerceLogo.svg │ ├── YithLogo.svg │ ├── YoastLogo.svg │ └── wireframes │ │ ├── ContactForm.svg │ │ ├── Products.svg │ │ ├── Products4Col.svg │ │ ├── ProductsGrid.svg │ │ ├── ProductsRow.svg │ │ ├── ProductsSimple.svg │ │ └── ToC.svg └── wonder-blocks.js ├── tailwind.config.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-translate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.github/workflows/auto-translate.yml -------------------------------------------------------------------------------- /.github/workflows/brand-plugin-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.github/workflows/brand-plugin-test.yml -------------------------------------------------------------------------------- /.github/workflows/codecoverage-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.github/workflows/codecoverage-main.yml -------------------------------------------------------------------------------- /.github/workflows/i18n-crowdin-download.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.github/workflows/i18n-crowdin-download.yml -------------------------------------------------------------------------------- /.github/workflows/i18n-crowdin-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.github/workflows/i18n-crowdin-upload.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/newfold-prep-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.github/workflows/newfold-prep-release.yml -------------------------------------------------------------------------------- /.github/workflows/satis-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.github/workflows/satis-update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.npmrc.example -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/README.md -------------------------------------------------------------------------------- /assets/build/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/assets/build/utilities.css -------------------------------------------------------------------------------- /assets/build/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/assets/build/utilities.js -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/composer.lock -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/crowdin.yml -------------------------------------------------------------------------------- /includes/Admin/CTA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Admin/CTA.php -------------------------------------------------------------------------------- /includes/Api/Controllers/CacheController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/Controllers/CacheController.php -------------------------------------------------------------------------------- /includes/Api/Controllers/EventsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/Controllers/EventsController.php -------------------------------------------------------------------------------- /includes/Api/Controllers/FavoritesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/Controllers/FavoritesController.php -------------------------------------------------------------------------------- /includes/Api/Controllers/PatternCategoriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/Controllers/PatternCategoriesController.php -------------------------------------------------------------------------------- /includes/Api/Controllers/PatternUsageTagsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/Controllers/PatternUsageTagsController.php -------------------------------------------------------------------------------- /includes/Api/Controllers/PatternsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/Controllers/PatternsController.php -------------------------------------------------------------------------------- /includes/Api/Controllers/PluginsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/Controllers/PluginsController.php -------------------------------------------------------------------------------- /includes/Api/Controllers/RestApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/Controllers/RestApiController.php -------------------------------------------------------------------------------- /includes/Api/Controllers/TemplateCategoriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/Controllers/TemplateCategoriesController.php -------------------------------------------------------------------------------- /includes/Api/Controllers/TemplatesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/Controllers/TemplatesController.php -------------------------------------------------------------------------------- /includes/Api/RemoteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/RemoteRequest.php -------------------------------------------------------------------------------- /includes/Api/RestApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Api/RestApi.php -------------------------------------------------------------------------------- /includes/BlockStyles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/BlockStyles.php -------------------------------------------------------------------------------- /includes/CSSUtilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/CSSUtilities.php -------------------------------------------------------------------------------- /includes/Data/Brands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Data/Brands.php -------------------------------------------------------------------------------- /includes/Data/PluginRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Data/PluginRequirements.php -------------------------------------------------------------------------------- /includes/Data/PluginStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Data/PluginStatus.php -------------------------------------------------------------------------------- /includes/Library/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Library/Admin.php -------------------------------------------------------------------------------- /includes/Library/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Library/Categories.php -------------------------------------------------------------------------------- /includes/Library/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Library/Events.php -------------------------------------------------------------------------------- /includes/Library/Favorites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Library/Favorites.php -------------------------------------------------------------------------------- /includes/Library/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Library/Items.php -------------------------------------------------------------------------------- /includes/Library/UsageTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Library/UsageTags.php -------------------------------------------------------------------------------- /includes/Patterns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Patterns.php -------------------------------------------------------------------------------- /includes/PatternsFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/PatternsFeature.php -------------------------------------------------------------------------------- /includes/Permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Permissions.php -------------------------------------------------------------------------------- /includes/Services/PluginService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/Services/PluginService.php -------------------------------------------------------------------------------- /includes/SiteClassification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/includes/SiteClassification.php -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-de_DE-9e786668ee6bbb41d97443960fdb38d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-de_DE-9e786668ee6bbb41d97443960fdb38d7.json -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-de_DE.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-de_DE.l10n.php -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-de_DE.po -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-en_AU-9e786668ee6bbb41d97443960fdb38d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-en_AU-9e786668ee6bbb41d97443960fdb38d7.json -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-en_AU.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-en_AU.l10n.php -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-en_AU.po -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-en_GB-9e786668ee6bbb41d97443960fdb38d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-en_GB-9e786668ee6bbb41d97443960fdb38d7.json -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-en_GB.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-en_GB.l10n.php -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-en_GB.po -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-es_ES-9e786668ee6bbb41d97443960fdb38d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-es_ES-9e786668ee6bbb41d97443960fdb38d7.json -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-es_ES.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-es_ES.l10n.php -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-es_ES.po -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-es_MX-9e786668ee6bbb41d97443960fdb38d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-es_MX-9e786668ee6bbb41d97443960fdb38d7.json -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-es_MX.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-es_MX.l10n.php -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-es_MX.po -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-fr_FR-9e786668ee6bbb41d97443960fdb38d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-fr_FR-9e786668ee6bbb41d97443960fdb38d7.json -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-fr_FR.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-fr_FR.l10n.php -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-fr_FR.po -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-it_IT-9e786668ee6bbb41d97443960fdb38d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-it_IT-9e786668ee6bbb41d97443960fdb38d7.json -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-it_IT.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-it_IT.l10n.php -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-it_IT.po -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-nl_NL-9e786668ee6bbb41d97443960fdb38d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-nl_NL-9e786668ee6bbb41d97443960fdb38d7.json -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-nl_NL.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-nl_NL.l10n.php -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-nl_NL.po -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-pt_BR-9e786668ee6bbb41d97443960fdb38d7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-pt_BR-9e786668ee6bbb41d97443960fdb38d7.json -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-pt_BR.l10n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-pt_BR.l10n.php -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks-pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks-pt_BR.po -------------------------------------------------------------------------------- /languages/nfd-wonder-blocks.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/languages/nfd-wonder-blocks.pot -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/phpcs.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/postcss.config.js -------------------------------------------------------------------------------- /source/css-utilities/parts/animations/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/animations/animations.css -------------------------------------------------------------------------------- /source/css-utilities/parts/backgrounds/backgrounds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/backgrounds/backgrounds.css -------------------------------------------------------------------------------- /source/css-utilities/parts/block-preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/block-preview.css -------------------------------------------------------------------------------- /source/css-utilities/parts/blog/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/blog/blog.css -------------------------------------------------------------------------------- /source/css-utilities/parts/borders/separator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/borders/separator.css -------------------------------------------------------------------------------- /source/css-utilities/parts/buttons/button-sizes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/buttons/button-sizes.css -------------------------------------------------------------------------------- /source/css-utilities/parts/buttons/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/buttons/buttons.css -------------------------------------------------------------------------------- /source/css-utilities/parts/buttons/variants.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/buttons/variants.css -------------------------------------------------------------------------------- /source/css-utilities/parts/colors/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/colors/colors.css -------------------------------------------------------------------------------- /source/css-utilities/parts/container/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/container/container.css -------------------------------------------------------------------------------- /source/css-utilities/parts/dividers/arrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/dividers/arrow.css -------------------------------------------------------------------------------- /source/css-utilities/parts/dividers/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/dividers/base.css -------------------------------------------------------------------------------- /source/css-utilities/parts/dividers/clouds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/dividers/clouds.css -------------------------------------------------------------------------------- /source/css-utilities/parts/dividers/dividers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/dividers/dividers.css -------------------------------------------------------------------------------- /source/css-utilities/parts/dividers/ellipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/dividers/ellipse.css -------------------------------------------------------------------------------- /source/css-utilities/parts/dividers/rounded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/dividers/rounded.css -------------------------------------------------------------------------------- /source/css-utilities/parts/dividers/slant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/dividers/slant.css -------------------------------------------------------------------------------- /source/css-utilities/parts/dividers/triangle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/dividers/triangle.css -------------------------------------------------------------------------------- /source/css-utilities/parts/dividers/zigzag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/dividers/zigzag.css -------------------------------------------------------------------------------- /source/css-utilities/parts/form/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/form/form.css -------------------------------------------------------------------------------- /source/css-utilities/parts/image/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/image/image.css -------------------------------------------------------------------------------- /source/css-utilities/parts/lists/lists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/lists/lists.css -------------------------------------------------------------------------------- /source/css-utilities/parts/mask/mask.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/mask/mask.css -------------------------------------------------------------------------------- /source/css-utilities/parts/misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/misc.css -------------------------------------------------------------------------------- /source/css-utilities/parts/radius/radius.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/radius/radius.css -------------------------------------------------------------------------------- /source/css-utilities/parts/shadows/shadows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/shadows/shadows.css -------------------------------------------------------------------------------- /source/css-utilities/parts/slider/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/slider/slider.css -------------------------------------------------------------------------------- /source/css-utilities/parts/spacing/gap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/spacing/gap.css -------------------------------------------------------------------------------- /source/css-utilities/parts/spacing/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/spacing/grid.css -------------------------------------------------------------------------------- /source/css-utilities/parts/spacing/misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/spacing/misc.css -------------------------------------------------------------------------------- /source/css-utilities/parts/spacing/padding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/spacing/padding.css -------------------------------------------------------------------------------- /source/css-utilities/parts/spacing/spacing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/spacing/spacing.css -------------------------------------------------------------------------------- /source/css-utilities/parts/typography/misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/typography/misc.css -------------------------------------------------------------------------------- /source/css-utilities/parts/typography/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/typography/typography.css -------------------------------------------------------------------------------- /source/css-utilities/parts/woocommerce/woocommerce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/woocommerce/woocommerce.css -------------------------------------------------------------------------------- /source/css-utilities/parts/yoast/yoast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/parts/yoast/yoast.css -------------------------------------------------------------------------------- /source/css-utilities/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/postcss.config.js -------------------------------------------------------------------------------- /source/css-utilities/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/tailwind.config.js -------------------------------------------------------------------------------- /source/css-utilities/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/css-utilities/utilities.css -------------------------------------------------------------------------------- /source/scripts/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/scripts/utilities.js -------------------------------------------------------------------------------- /source/scripts/viewportAnimationObserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/scripts/viewportAnimationObserver.js -------------------------------------------------------------------------------- /source/styles/utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/source/styles/utilities.css -------------------------------------------------------------------------------- /src/blocks/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/blocks/block.js -------------------------------------------------------------------------------- /src/blocks/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/blocks/block.json -------------------------------------------------------------------------------- /src/blocks/inspector-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/blocks/inspector-control.js -------------------------------------------------------------------------------- /src/blocks/register-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/blocks/register-category.js -------------------------------------------------------------------------------- /src/blocks/variations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/blocks/variations.js -------------------------------------------------------------------------------- /src/components/Icons/heart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Icons/heart.jsx -------------------------------------------------------------------------------- /src/components/Icons/heartEmpty.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Icons/heartEmpty.jsx -------------------------------------------------------------------------------- /src/components/Icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Icons/index.js -------------------------------------------------------------------------------- /src/components/Icons/plus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Icons/plus.jsx -------------------------------------------------------------------------------- /src/components/Icons/rectangleGroup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Icons/rectangleGroup.jsx -------------------------------------------------------------------------------- /src/components/Icons/trash.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Icons/trash.jsx -------------------------------------------------------------------------------- /src/components/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Logo.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/CategoryButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/CategoryButton.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/Content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/Content.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/DesignList/DesignItem/DesignItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/DesignList/DesignItem/DesignItem.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/DesignList/DesignItem/DesignItemControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/DesignList/DesignItem/DesignItemControls.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/DesignList/DesignItem/DesignItemFooter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/DesignList/DesignItem/DesignItemFooter.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/DesignList/DesignItem/DesignItemPreview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/DesignList/DesignItem/DesignItemPreview.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/DesignList/DesignItem/DesignItemView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/DesignList/DesignItem/DesignItemView.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/DesignList/DesignList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/DesignList/DesignList.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/DesignList/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/DesignList/Error.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/DesignList/NoResults.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/DesignList/NoResults.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/DesignList/RequiredPluginNotice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/DesignList/RequiredPluginNotice.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/FilterBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/FilterBar.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/Header/Header.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/Header/TrialNotice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/Header/TrialNotice.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/KeywordFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/KeywordFilter.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/LoadingSpinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/LoadingSpinner.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/PluginInstallationProgress.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/PluginInstallationProgress.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/Skeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/Skeleton.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/Spinner.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/UpdateNotice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/UpdateNotice.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/Views/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/Views/About.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/Views/Info.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/Views/Info.jsx -------------------------------------------------------------------------------- /src/components/Modal/Content/Views/Library.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Content/Views/Library.jsx -------------------------------------------------------------------------------- /src/components/Modal/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Modal.jsx -------------------------------------------------------------------------------- /src/components/Modal/Sidebar/Categories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Sidebar/Categories.jsx -------------------------------------------------------------------------------- /src/components/Modal/Sidebar/ErrorLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Sidebar/ErrorLoading.jsx -------------------------------------------------------------------------------- /src/components/Modal/Sidebar/ListElement.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Sidebar/ListElement.jsx -------------------------------------------------------------------------------- /src/components/Modal/Sidebar/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Sidebar/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/Modal/Sidebar/Skeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/Modal/Sidebar/Skeleton.jsx -------------------------------------------------------------------------------- /src/components/PluginLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/PluginLogo.jsx -------------------------------------------------------------------------------- /src/components/PluginProgressBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/PluginProgressBar.jsx -------------------------------------------------------------------------------- /src/components/PremiumBadge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/PremiumBadge.jsx -------------------------------------------------------------------------------- /src/components/TitleWithLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/TitleWithLogo.jsx -------------------------------------------------------------------------------- /src/components/ToolbarButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/components/ToolbarButton.jsx -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/helpers/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/helpers/analytics.js -------------------------------------------------------------------------------- /src/helpers/blockInserter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/helpers/blockInserter.js -------------------------------------------------------------------------------- /src/helpers/ctbHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/helpers/ctbHandler.js -------------------------------------------------------------------------------- /src/helpers/fetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/helpers/fetcher.js -------------------------------------------------------------------------------- /src/helpers/iconMapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/helpers/iconMapping.js -------------------------------------------------------------------------------- /src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/helpers/index.js -------------------------------------------------------------------------------- /src/helpers/optimizePreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/helpers/optimizePreview.js -------------------------------------------------------------------------------- /src/helpers/pluginManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/helpers/pluginManager.js -------------------------------------------------------------------------------- /src/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/helpers/utils.js -------------------------------------------------------------------------------- /src/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/index.js -------------------------------------------------------------------------------- /src/hooks/useBlockProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/useBlockProcessor.js -------------------------------------------------------------------------------- /src/hooks/useCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/useCategories.js -------------------------------------------------------------------------------- /src/hooks/useDesignInsertion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/useDesignInsertion.js -------------------------------------------------------------------------------- /src/hooks/useFavoritesManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/useFavoritesManager.js -------------------------------------------------------------------------------- /src/hooks/useMonitorBlockOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/useMonitorBlockOrder.js -------------------------------------------------------------------------------- /src/hooks/usePatterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/usePatterns.js -------------------------------------------------------------------------------- /src/hooks/usePluginManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/usePluginManager.js -------------------------------------------------------------------------------- /src/hooks/usePluginRequirements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/usePluginRequirements.js -------------------------------------------------------------------------------- /src/hooks/usePluginRequirementsHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/usePluginRequirementsHandler.js -------------------------------------------------------------------------------- /src/hooks/usePostTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/usePostTemplates.js -------------------------------------------------------------------------------- /src/hooks/useReplacePlaceholders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/useReplacePlaceholders.js -------------------------------------------------------------------------------- /src/hooks/useSearchSuggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/useSearchSuggestions.js -------------------------------------------------------------------------------- /src/hooks/useSetCurrentView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/useSetCurrentView.js -------------------------------------------------------------------------------- /src/hooks/useUpdateThemeClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/hooks/useUpdateThemeClasses.js -------------------------------------------------------------------------------- /src/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/store/actions.js -------------------------------------------------------------------------------- /src/store/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/store/constants.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/store/reducer.js -------------------------------------------------------------------------------- /src/store/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/store/selectors.js -------------------------------------------------------------------------------- /src/styles/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/_form.scss -------------------------------------------------------------------------------- /src/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/_mixins.scss -------------------------------------------------------------------------------- /src/styles/_toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/_toolbar.scss -------------------------------------------------------------------------------- /src/styles/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/_vars.scss -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/modal/_design-item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/modal/_design-item.scss -------------------------------------------------------------------------------- /src/styles/modal/_list-element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/modal/_list-element.scss -------------------------------------------------------------------------------- /src/styles/modal/_loading-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/modal/_loading-bar.scss -------------------------------------------------------------------------------- /src/styles/modal/_plugin-install.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/modal/_plugin-install.scss -------------------------------------------------------------------------------- /src/styles/modal/_skeleton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/modal/_skeleton.scss -------------------------------------------------------------------------------- /src/styles/modal/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/modal/_tabs.scss -------------------------------------------------------------------------------- /src/styles/modal/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/styles/modal/modal.scss -------------------------------------------------------------------------------- /src/svg/Error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/Error.svg -------------------------------------------------------------------------------- /src/svg/JetpackLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/JetpackLogo.svg -------------------------------------------------------------------------------- /src/svg/NoFavorites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/NoFavorites.svg -------------------------------------------------------------------------------- /src/svg/NoResults.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/NoResults.svg -------------------------------------------------------------------------------- /src/svg/WooCommerceLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/WooCommerceLogo.svg -------------------------------------------------------------------------------- /src/svg/YithLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/YithLogo.svg -------------------------------------------------------------------------------- /src/svg/YoastLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/YoastLogo.svg -------------------------------------------------------------------------------- /src/svg/wireframes/ContactForm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/wireframes/ContactForm.svg -------------------------------------------------------------------------------- /src/svg/wireframes/Products.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/wireframes/Products.svg -------------------------------------------------------------------------------- /src/svg/wireframes/Products4Col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/wireframes/Products4Col.svg -------------------------------------------------------------------------------- /src/svg/wireframes/ProductsGrid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/wireframes/ProductsGrid.svg -------------------------------------------------------------------------------- /src/svg/wireframes/ProductsRow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/wireframes/ProductsRow.svg -------------------------------------------------------------------------------- /src/svg/wireframes/ProductsSimple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/wireframes/ProductsSimple.svg -------------------------------------------------------------------------------- /src/svg/wireframes/ToC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/svg/wireframes/ToC.svg -------------------------------------------------------------------------------- /src/wonder-blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/src/wonder-blocks.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfold-labs/wp-module-patterns/HEAD/webpack.config.js --------------------------------------------------------------------------------