├── .babelrc ├── .cursor └── rules │ ├── coding-standards.mdc │ └── plugin-environment.mdc ├── .distignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── api_integration_issue.md │ ├── bug_report.md │ └── general_feedback.md ├── codecov.yml ├── dependabot.yml └── workflows │ ├── ai-docs.yml │ ├── deploy.yml │ ├── e2e-tests.yml │ ├── integration-tests.yml │ ├── lint.yml │ ├── pr-build-live-branch.yml │ ├── release.yml │ ├── scripts │ └── generate-playground-blueprint.js │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.json ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── launch.json ├── .wp-env.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bin ├── conf │ └── htaccess ├── release ├── start └── stop ├── blueprint.json ├── blueprint.local.json ├── blueprint.settings.json ├── composer.json ├── composer.lock ├── docker-compose.overrides.yml ├── docs ├── assets │ ├── block-insert-remote-html.gif │ ├── google-console.png │ ├── insert-shopify-block.gif │ ├── patterns-right-panel.png │ └── search-input.png ├── concepts │ ├── block-bindings.md │ ├── helper-blocks.md │ ├── index.md │ └── inline-bindings.md ├── extending │ ├── ai-prompts.md │ ├── block-patterns.md │ ├── block-registration.md │ ├── data-source.md │ ├── hooks.md │ ├── index.md │ ├── overrides.md │ ├── query-input-schema.md │ ├── query-output-schema.md │ └── query.md ├── for-ai.md ├── index.md ├── local-development.md ├── quickstart.md ├── troubleshooting.md └── tutorials │ ├── airtable.md │ ├── google-sheets.md │ ├── http.md │ ├── index.md │ └── shopify.md ├── example ├── .cursor │ └── rules │ │ └── project-scope.mdc ├── README.md ├── assets │ └── blueprint-content.wxr ├── blocks │ ├── art-block │ │ └── art-block.php │ ├── book-block │ │ ├── book-block.php │ │ └── patterns │ │ │ └── book-pattern.html │ ├── github-markdown-block │ │ ├── github-markdown-block.php │ │ └── inc │ │ │ ├── github-query-runner.php │ │ │ ├── markdown-links.php │ │ │ └── patterns │ │ │ └── file-render.html │ ├── shopify-mock-store-block │ │ └── shopify-mock-store-block.php │ ├── weather-block │ │ ├── patterns │ │ │ └── weather-block-pattern.html │ │ └── weather-block.php │ └── zip-code-block │ │ └── zip-code-block.php └── templates │ ├── airtable-block │ └── airtable-block.php │ ├── airtable-map-block │ ├── .gitignore │ ├── README.md │ ├── airtable-map-block.php │ ├── package.json │ └── src │ │ └── leaflet-map │ │ ├── block.json │ │ ├── edit.js │ │ ├── index.js │ │ ├── render.php │ │ └── view.js │ ├── google-sheets-block │ └── google-sheets-block.php │ ├── rest-api-block-from-ui-data-source │ └── rest-api-block-from-ui-data-source.php │ ├── rest-api-block │ └── rest-api-block.php │ ├── shopify-product-block │ └── shopify-product-block.php │ └── theme │ ├── README.md │ ├── functions.php │ ├── screenshot.png │ ├── style-remote-data-blocks.css │ ├── style.css │ └── theme.json ├── functions.php ├── inc ├── Config │ ├── ArraySerializable.php │ ├── ArraySerializableInterface.php │ ├── BlockAttribute │ │ └── RemoteDataBlockAttribute.php │ ├── DataSource │ │ ├── DataSourceInterface.php │ │ ├── HttpDataSource.php │ │ └── HttpDataSourceInterface.php │ ├── Query │ │ ├── GraphqlMutation.php │ │ ├── GraphqlQuery.php │ │ ├── HttpQuery.php │ │ ├── HttpQueryInterface.php │ │ └── QueryInterface.php │ └── QueryRunner │ │ ├── QueryResponseParser.php │ │ ├── QueryRunner.php │ │ └── QueryRunnerInterface.php ├── Editor │ ├── AdminNotices │ │ └── AdminNotices.php │ ├── Assets │ │ └── Assets.php │ ├── BlockManagement │ │ ├── BlockRegistration.php │ │ ├── ConfigRegistry.php │ │ └── ConfigStore.php │ ├── BlockPatterns │ │ ├── BlockPatterns.php │ │ └── templates │ │ │ ├── columns.html │ │ │ ├── empty.html │ │ │ ├── heading.html │ │ │ ├── html.html │ │ │ ├── image.html │ │ │ └── paragraph.html │ ├── DataBinding │ │ ├── BlockBindings.php │ │ ├── InlineBindings.php │ │ └── Pagination.php │ └── PatternEditor │ │ └── PatternEditor.php ├── ExampleApi │ ├── Data │ │ ├── ExampleApiData.php │ │ └── items.json │ ├── ExampleApi.php │ └── Queries │ │ └── ExampleApiQueryRunner.php ├── Formatting │ ├── FieldFormatter.php │ └── StringFormatter.php ├── HttpClient │ ├── HttpClient.php │ ├── RdbCacheMiddleware.php │ ├── RdbCacheStrategy.php │ ├── RdbLogMiddleware.php │ └── WPRemoteRequestHandler.php ├── Integrations │ ├── Airtable │ │ ├── AirtableDataSource.php │ │ ├── AirtableIntegration.php │ │ └── templates │ │ │ └── block_registration.template │ ├── GenericHttp │ │ ├── GenericHttpDataSource.php │ │ ├── GenericHttpIntegration.php │ │ └── templates │ │ │ └── block_registration.template │ ├── GitHub │ │ └── GitHubDataSource.php │ ├── Google │ │ ├── Auth │ │ │ ├── GoogleAuth.php │ │ │ └── GoogleServiceAccountKey.php │ │ └── Sheets │ │ │ ├── GoogleSheetsDataSource.php │ │ │ ├── GoogleSheetsIntegration.php │ │ │ └── templates │ │ │ └── block_registration.template │ ├── Shopify │ │ ├── Patterns │ │ │ └── product-teaser.html │ │ ├── Queries │ │ │ ├── GetProductById.graphql │ │ │ └── SearchProducts.graphql │ │ ├── ShopifyDataSource.php │ │ ├── ShopifyIntegration.php │ │ ├── assets │ │ │ └── shopify_logo_black.png │ │ └── templates │ │ │ └── block_registration.template │ ├── VipBlockDataApi │ │ └── VipBlockDataApi.php │ └── constants.php ├── Logging │ ├── AbstractLogger.php │ ├── LogLevel.php │ ├── Logger.php │ ├── LoggerInterface.php │ └── QueryMonitor │ │ ├── QueryMonitor.php │ │ ├── RdbBlockBindingCollector.php │ │ ├── RdbBlockBindingOutputHtml.php │ │ ├── RdbHttpRequestCollector.php │ │ ├── RdbHttpRequestOutputHtml.php │ │ ├── RdbLogCollector.php │ │ ├── RdbLogOutputHtml.php │ │ ├── RdbLogOutputRaw.php │ │ ├── RdbMainCollector.php │ │ ├── RdbMainOutputHtml.php │ │ ├── RdbValidationCollector.php │ │ └── RdbValidationOutputHtml.php ├── PluginSettings │ └── PluginSettings.php ├── REST │ ├── AuthController.php │ ├── DataSourceController.php │ └── RemoteDataController.php ├── Sanitization │ ├── Sanitizer.php │ └── SanitizerInterface.php ├── Snippet │ └── Snippet.php ├── Store │ └── DataSource │ │ ├── ConstantConfigStore.php │ │ └── DataSourceConfigManager.php ├── Telemetry │ ├── DataSourceTelemetry.php │ └── Telemetry.php ├── Validation │ ├── ConfigSchemas.php │ ├── Types.php │ ├── Validator.php │ └── ValidatorInterface.php └── WpdbStorage │ ├── DataEncryption.php │ └── DataSourceCrud.php ├── package.json ├── phpcs.xml ├── phpunit-integration.xml ├── phpunit.xml ├── playwright.config.ts ├── psalm.xml ├── readme.txt ├── remote-data-blocks.php ├── src ├── block-editor │ ├── binding-sources │ │ └── remote-data-binding.ts │ ├── filters │ │ ├── addUsesContext.ts │ │ ├── index.ts │ │ └── withBlockBinding.tsx │ ├── format-types │ │ └── inline-binding │ │ │ ├── components │ │ │ ├── InlineBinding.scss │ │ │ ├── InlineBindingButton.tsx │ │ │ ├── InlineBindingSelectExisting.tsx │ │ │ ├── InlineBindingSelectFieldPopover.tsx │ │ │ ├── InlineBindingSelectMeta.tsx │ │ │ ├── InlineBindingSelectNew.tsx │ │ │ └── InlineBindingSelection.tsx │ │ │ ├── hooks │ │ │ └── useExistingRemoteData.ts │ │ │ ├── index.ts │ │ │ └── settings.ts │ └── index.ts ├── blocks │ ├── remote-data-container │ │ ├── block.json │ │ ├── components │ │ │ ├── BlockBindingControls.tsx │ │ │ ├── EditErrorBoundary.tsx │ │ │ ├── InnerBlocks.tsx │ │ │ ├── item-list │ │ │ │ ├── ItemList.tsx │ │ │ │ └── ItemListField.tsx │ │ │ ├── modals │ │ │ │ ├── BaseModal.tsx │ │ │ │ ├── DataViewsModal.tsx │ │ │ │ └── InputModal.tsx │ │ │ ├── panels │ │ │ │ ├── DataPanel.tsx │ │ │ │ ├── OverridesPanel.tsx │ │ │ │ └── QueryInputsPanel.tsx │ │ │ ├── pattern-selection │ │ │ │ ├── PatternSelection.tsx │ │ │ │ └── PatternSelectionModal.tsx │ │ │ ├── placeholders │ │ │ │ ├── ItemSelectQueryType.tsx │ │ │ │ ├── Placeholder.tsx │ │ │ │ ├── PlaceholderError.scss │ │ │ │ └── PlaceholderError.tsx │ │ │ └── popovers │ │ │ │ ├── InputPopover.tsx │ │ │ │ └── style.scss │ │ ├── config │ │ │ └── constants.ts │ │ ├── edit.tsx │ │ ├── editor.scss │ │ ├── hooks │ │ │ ├── useModalState.ts │ │ │ ├── usePaginationVariables.ts │ │ │ ├── usePatterns.ts │ │ │ ├── useRemoteData.ts │ │ │ ├── useRemoteDataContext.ts │ │ │ └── useSearchVariables.ts │ │ ├── index.ts │ │ ├── render.php │ │ ├── save.tsx │ │ ├── style.scss │ │ └── utils │ │ │ ├── tracks.spec.ts │ │ │ └── tracks.ts │ ├── remote-data-no-results │ │ ├── block.json │ │ ├── edit.tsx │ │ ├── editor.scss │ │ ├── index.ts │ │ ├── render.php │ │ ├── save.tsx │ │ └── style.scss │ ├── remote-data-pagination │ │ ├── block.json │ │ ├── edit.tsx │ │ ├── editor.scss │ │ ├── index.ts │ │ ├── render.php │ │ ├── save.tsx │ │ └── style.scss │ ├── remote-data-template │ │ ├── block.json │ │ ├── components │ │ │ ├── item-preview │ │ │ │ └── ItemPreview.tsx │ │ │ └── loop-template │ │ │ │ ├── LoopTemplate.tsx │ │ │ │ └── LoopTemplateInnerBlocks.tsx │ │ ├── edit.tsx │ │ ├── editor.scss │ │ ├── hooks │ │ │ └── useGetInnerBlocks.ts │ │ ├── index.ts │ │ ├── render.php │ │ └── save.tsx │ └── remote-html │ │ ├── block.json │ │ ├── edit.tsx │ │ ├── editor.scss │ │ ├── index.ts │ │ ├── render.php │ │ └── save.tsx ├── config │ └── constants.ts ├── data-sources │ ├── DataSourceList.scss │ ├── DataSourceList.tsx │ ├── DataSourceMetaTags.tsx │ ├── DataSourceSettings.scss │ ├── DataSourceSettings.tsx │ ├── airtable │ │ ├── AirtableSettings.tsx │ │ ├── constants.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── api-clients │ │ ├── airtable.ts │ │ ├── auth.ts │ │ ├── google.ts │ │ └── shopify.ts │ ├── components │ │ ├── AddDataSourceDropdown.tsx │ │ ├── CodeSnippet.tsx │ │ ├── CustomFormFieldToken.tsx │ │ ├── DataSourceForm.tsx │ │ ├── DataSourceFormActions.tsx │ │ ├── FieldsSelection.tsx │ │ ├── HttpAuthSettingsInput.tsx │ │ └── PasswordInputControl.tsx │ ├── constants.ts │ ├── google-sheets │ │ └── GoogleSheetsSettings.tsx │ ├── hooks │ │ ├── useAirtable.ts │ │ ├── useDataSources.ts │ │ ├── useGoogleApi.ts │ │ ├── useGoogleAuth.ts │ │ └── useShopify.tsx │ ├── http │ │ ├── HttpSettings.tsx │ │ └── types.ts │ ├── shopify │ │ └── ShopifySettings.tsx │ ├── types.ts │ └── utils.tsx ├── dataviews │ └── index.ts ├── hooks │ ├── useDebouncedState.ts │ ├── useEditedPostAttribute.ts │ ├── useForm.ts │ ├── usePostMeta.ts │ └── useQuery.ts ├── pattern-editor │ ├── components │ │ └── PatternEditorSettingsPanel.tsx │ ├── config │ │ └── constants.ts │ └── index.tsx ├── settings │ ├── Notices.tsx │ ├── SettingsPage.tsx │ ├── hooks │ │ └── useSettingsNav.ts │ ├── icons │ │ ├── AirtableIcon.tsx │ │ ├── CheckIcon.tsx │ │ ├── ErrorIcon.tsx │ │ ├── GoogleSheetsIcon.tsx │ │ ├── HttpIcon.tsx │ │ └── ShopifyIcon.tsx │ ├── index.scss │ └── index.tsx ├── store │ └── index.ts ├── types │ ├── common.ts │ ├── google.ts │ └── input.ts └── utils │ ├── block-binding.ts │ ├── errors.ts │ ├── function.ts │ ├── i18n.ts │ ├── input-validation.ts │ ├── localized-block-data.ts │ ├── object.ts │ ├── remote-data.ts │ └── string.ts ├── tests ├── e2e │ └── settings │ │ └── activation.spec.ts ├── inc │ ├── Config │ │ ├── ArraySerializableTest.php │ │ ├── HttpDataSourceTest.php │ │ ├── QueryResponseParserTest.php │ │ ├── QueryRunnerTest.php │ │ ├── QueryTest.php │ │ └── RemoteDataBlockAttributeTest.php │ ├── Editor │ │ ├── BlockPatternsTest.php │ │ ├── BlockRegistrationTest.php │ │ ├── ConfigStoreTest.php │ │ └── DataBinding │ │ │ ├── BlockBindingsTest.php │ │ │ └── PaginationTest.php │ ├── Functions │ │ └── FunctionsTest.php │ ├── HttpClient │ │ └── HttpClientTest.php │ ├── Integrations │ │ ├── Airtable │ │ │ └── AirtableDataSourceTest.php │ │ ├── GenericHttp │ │ │ └── GenericHttpDataSourceTest.php │ │ ├── Google │ │ │ └── Sheets │ │ │ │ └── GoogleSheetsDataSourceTest.php │ │ └── VipBlockDataApi │ │ │ └── VipBlockDataApiTest.php │ ├── Mocks │ │ ├── MockDataSource.php │ │ ├── MockLogger.php │ │ ├── MockQuery.php │ │ ├── MockQueryRunner.php │ │ ├── MockSerializableClass.php │ │ ├── MockSerializableSubclass.php │ │ ├── MockTelemetry.php │ │ ├── MockValidator.php │ │ └── MockWordPressFunctions.php │ ├── PluginSettings │ │ └── PluginSettingsTest.php │ ├── Sanitization │ │ └── SanitizerTest.php │ ├── Store │ │ └── DataSource │ │ │ ├── ConstantConfigStoreTest.php │ │ │ └── DataSourceConfigManagerTest.php │ ├── Validation │ │ └── ValidatorTest.php │ ├── WpdbStorage │ │ ├── DataEncryptionTest.php │ │ └── DataSourceCrudTest.php │ ├── bootstrap.php │ ├── stubs.php │ └── test-utils.php ├── integration │ ├── RDBTestCase.php │ ├── blocks │ │ ├── BlockConfigTest.php │ │ ├── BlockWithNestedConfigTest.php │ │ ├── RemoteDataTemplateBlockTest.php │ │ ├── RemoteHtmlBlockTest.php │ │ └── ZipCodeBlockTest.php │ ├── bootstrap.php │ └── telemetry │ │ └── TelemetryTest.php └── src │ ├── block-editor │ └── filters │ │ └── withBlockBinding.test.tsx │ ├── blocks │ ├── remote-data-container │ │ ├── components │ │ │ ├── item-list │ │ │ │ └── ItemList.test.tsx │ │ │ ├── modals │ │ │ │ └── InputModal.test.tsx │ │ │ └── panels │ │ │ │ └── QueryInputsPanel.test.tsx │ │ └── hooks │ │ │ ├── useModalState.test.ts │ │ │ └── usePaginationVariables.test.ts │ └── remote-data-template │ │ └── components │ │ └── loop-template │ │ ├── LoopTemplate.test.tsx │ │ └── LoopTemplateInnerBlocks.test.tsx │ ├── utils │ ├── block-binding.test.ts │ ├── errors.test.ts │ ├── function.test.ts │ ├── input-validation.test.ts │ ├── object.test.ts │ ├── remote-data.test.ts │ └── string.test.ts │ └── vitest.setup.ts ├── tsconfig.json ├── types ├── globals.d.ts ├── localized-block-data.d.ts ├── localized-settings.d.ts ├── query-monitor.d.ts ├── remote-data.d.ts ├── tracks.d.ts ├── utils.d.ts ├── wordpress__block-editor │ └── index.d.ts ├── wordpress__blocks │ └── index.d.ts ├── wordpress__data │ └── index.d.ts ├── wordpress__notices │ └── index.d.ts ├── wordpress__rich-text │ └── index.d.ts └── wordpress__server-side-render │ └── index.d.ts ├── vitest.config.mts ├── webpack.config.js └── webpack.utils.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.babelrc -------------------------------------------------------------------------------- /.cursor/rules/coding-standards.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.cursor/rules/coding-standards.mdc -------------------------------------------------------------------------------- /.cursor/rules/plugin-environment.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.cursor/rules/plugin-environment.mdc -------------------------------------------------------------------------------- /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/api_integration_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/ISSUE_TEMPLATE/api_integration_issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/ISSUE_TEMPLATE/general_feedback.md -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ai-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/workflows/ai-docs.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/workflows/e2e-tests.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/workflows/integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pr-build-live-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/workflows/pr-build-live-branch.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/generate-playground-blueprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/workflows/scripts/generate-playground-blueprint.js -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@automattic/eslint-plugin-wpvip/prettierrc" -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/.wp-env.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/conf/htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/bin/conf/htaccess -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/bin/release -------------------------------------------------------------------------------- /bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/bin/start -------------------------------------------------------------------------------- /bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/bin/stop -------------------------------------------------------------------------------- /blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/blueprint.json -------------------------------------------------------------------------------- /blueprint.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/blueprint.local.json -------------------------------------------------------------------------------- /blueprint.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/blueprint.settings.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose.overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docker-compose.overrides.yml -------------------------------------------------------------------------------- /docs/assets/block-insert-remote-html.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/assets/block-insert-remote-html.gif -------------------------------------------------------------------------------- /docs/assets/google-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/assets/google-console.png -------------------------------------------------------------------------------- /docs/assets/insert-shopify-block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/assets/insert-shopify-block.gif -------------------------------------------------------------------------------- /docs/assets/patterns-right-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/assets/patterns-right-panel.png -------------------------------------------------------------------------------- /docs/assets/search-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/assets/search-input.png -------------------------------------------------------------------------------- /docs/concepts/block-bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/concepts/block-bindings.md -------------------------------------------------------------------------------- /docs/concepts/helper-blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/concepts/helper-blocks.md -------------------------------------------------------------------------------- /docs/concepts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/concepts/index.md -------------------------------------------------------------------------------- /docs/concepts/inline-bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/concepts/inline-bindings.md -------------------------------------------------------------------------------- /docs/extending/ai-prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/extending/ai-prompts.md -------------------------------------------------------------------------------- /docs/extending/block-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/extending/block-patterns.md -------------------------------------------------------------------------------- /docs/extending/block-registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/extending/block-registration.md -------------------------------------------------------------------------------- /docs/extending/data-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/extending/data-source.md -------------------------------------------------------------------------------- /docs/extending/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/extending/hooks.md -------------------------------------------------------------------------------- /docs/extending/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/extending/index.md -------------------------------------------------------------------------------- /docs/extending/overrides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/extending/overrides.md -------------------------------------------------------------------------------- /docs/extending/query-input-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/extending/query-input-schema.md -------------------------------------------------------------------------------- /docs/extending/query-output-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/extending/query-output-schema.md -------------------------------------------------------------------------------- /docs/extending/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/extending/query.md -------------------------------------------------------------------------------- /docs/for-ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/for-ai.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/local-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/local-development.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/tutorials/airtable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/tutorials/airtable.md -------------------------------------------------------------------------------- /docs/tutorials/google-sheets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/tutorials/google-sheets.md -------------------------------------------------------------------------------- /docs/tutorials/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/tutorials/http.md -------------------------------------------------------------------------------- /docs/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/tutorials/index.md -------------------------------------------------------------------------------- /docs/tutorials/shopify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/docs/tutorials/shopify.md -------------------------------------------------------------------------------- /example/.cursor/rules/project-scope.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/.cursor/rules/project-scope.mdc -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/README.md -------------------------------------------------------------------------------- /example/assets/blueprint-content.wxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/assets/blueprint-content.wxr -------------------------------------------------------------------------------- /example/blocks/art-block/art-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/art-block/art-block.php -------------------------------------------------------------------------------- /example/blocks/book-block/book-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/book-block/book-block.php -------------------------------------------------------------------------------- /example/blocks/book-block/patterns/book-pattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/book-block/patterns/book-pattern.html -------------------------------------------------------------------------------- /example/blocks/github-markdown-block/github-markdown-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/github-markdown-block/github-markdown-block.php -------------------------------------------------------------------------------- /example/blocks/github-markdown-block/inc/github-query-runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/github-markdown-block/inc/github-query-runner.php -------------------------------------------------------------------------------- /example/blocks/github-markdown-block/inc/markdown-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/github-markdown-block/inc/markdown-links.php -------------------------------------------------------------------------------- /example/blocks/github-markdown-block/inc/patterns/file-render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/github-markdown-block/inc/patterns/file-render.html -------------------------------------------------------------------------------- /example/blocks/shopify-mock-store-block/shopify-mock-store-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/shopify-mock-store-block/shopify-mock-store-block.php -------------------------------------------------------------------------------- /example/blocks/weather-block/patterns/weather-block-pattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/weather-block/patterns/weather-block-pattern.html -------------------------------------------------------------------------------- /example/blocks/weather-block/weather-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/weather-block/weather-block.php -------------------------------------------------------------------------------- /example/blocks/zip-code-block/zip-code-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/blocks/zip-code-block/zip-code-block.php -------------------------------------------------------------------------------- /example/templates/airtable-block/airtable-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/airtable-block/airtable-block.php -------------------------------------------------------------------------------- /example/templates/airtable-map-block/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /node_modules/ 3 | /package-lock.json 4 | -------------------------------------------------------------------------------- /example/templates/airtable-map-block/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/airtable-map-block/README.md -------------------------------------------------------------------------------- /example/templates/airtable-map-block/airtable-map-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/airtable-map-block/airtable-map-block.php -------------------------------------------------------------------------------- /example/templates/airtable-map-block/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/airtable-map-block/package.json -------------------------------------------------------------------------------- /example/templates/airtable-map-block/src/leaflet-map/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/airtable-map-block/src/leaflet-map/block.json -------------------------------------------------------------------------------- /example/templates/airtable-map-block/src/leaflet-map/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/airtable-map-block/src/leaflet-map/edit.js -------------------------------------------------------------------------------- /example/templates/airtable-map-block/src/leaflet-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/airtable-map-block/src/leaflet-map/index.js -------------------------------------------------------------------------------- /example/templates/airtable-map-block/src/leaflet-map/render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/airtable-map-block/src/leaflet-map/render.php -------------------------------------------------------------------------------- /example/templates/airtable-map-block/src/leaflet-map/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/airtable-map-block/src/leaflet-map/view.js -------------------------------------------------------------------------------- /example/templates/google-sheets-block/google-sheets-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/google-sheets-block/google-sheets-block.php -------------------------------------------------------------------------------- /example/templates/rest-api-block-from-ui-data-source/rest-api-block-from-ui-data-source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/rest-api-block-from-ui-data-source/rest-api-block-from-ui-data-source.php -------------------------------------------------------------------------------- /example/templates/rest-api-block/rest-api-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/rest-api-block/rest-api-block.php -------------------------------------------------------------------------------- /example/templates/shopify-product-block/shopify-product-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/shopify-product-block/shopify-product-block.php -------------------------------------------------------------------------------- /example/templates/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/theme/README.md -------------------------------------------------------------------------------- /example/templates/theme/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/theme/functions.php -------------------------------------------------------------------------------- /example/templates/theme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/theme/screenshot.png -------------------------------------------------------------------------------- /example/templates/theme/style-remote-data-blocks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/theme/style-remote-data-blocks.css -------------------------------------------------------------------------------- /example/templates/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/theme/style.css -------------------------------------------------------------------------------- /example/templates/theme/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/example/templates/theme/theme.json -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/functions.php -------------------------------------------------------------------------------- /inc/Config/ArraySerializable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/ArraySerializable.php -------------------------------------------------------------------------------- /inc/Config/ArraySerializableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/ArraySerializableInterface.php -------------------------------------------------------------------------------- /inc/Config/BlockAttribute/RemoteDataBlockAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/BlockAttribute/RemoteDataBlockAttribute.php -------------------------------------------------------------------------------- /inc/Config/DataSource/DataSourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/DataSource/DataSourceInterface.php -------------------------------------------------------------------------------- /inc/Config/DataSource/HttpDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/DataSource/HttpDataSource.php -------------------------------------------------------------------------------- /inc/Config/DataSource/HttpDataSourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/DataSource/HttpDataSourceInterface.php -------------------------------------------------------------------------------- /inc/Config/Query/GraphqlMutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/Query/GraphqlMutation.php -------------------------------------------------------------------------------- /inc/Config/Query/GraphqlQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/Query/GraphqlQuery.php -------------------------------------------------------------------------------- /inc/Config/Query/HttpQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/Query/HttpQuery.php -------------------------------------------------------------------------------- /inc/Config/Query/HttpQueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/Query/HttpQueryInterface.php -------------------------------------------------------------------------------- /inc/Config/Query/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/Query/QueryInterface.php -------------------------------------------------------------------------------- /inc/Config/QueryRunner/QueryResponseParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/QueryRunner/QueryResponseParser.php -------------------------------------------------------------------------------- /inc/Config/QueryRunner/QueryRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/QueryRunner/QueryRunner.php -------------------------------------------------------------------------------- /inc/Config/QueryRunner/QueryRunnerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Config/QueryRunner/QueryRunnerInterface.php -------------------------------------------------------------------------------- /inc/Editor/AdminNotices/AdminNotices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/AdminNotices/AdminNotices.php -------------------------------------------------------------------------------- /inc/Editor/Assets/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/Assets/Assets.php -------------------------------------------------------------------------------- /inc/Editor/BlockManagement/BlockRegistration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/BlockManagement/BlockRegistration.php -------------------------------------------------------------------------------- /inc/Editor/BlockManagement/ConfigRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/BlockManagement/ConfigRegistry.php -------------------------------------------------------------------------------- /inc/Editor/BlockManagement/ConfigStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/BlockManagement/ConfigStore.php -------------------------------------------------------------------------------- /inc/Editor/BlockPatterns/BlockPatterns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/BlockPatterns/BlockPatterns.php -------------------------------------------------------------------------------- /inc/Editor/BlockPatterns/templates/columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/BlockPatterns/templates/columns.html -------------------------------------------------------------------------------- /inc/Editor/BlockPatterns/templates/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/BlockPatterns/templates/empty.html -------------------------------------------------------------------------------- /inc/Editor/BlockPatterns/templates/heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/BlockPatterns/templates/heading.html -------------------------------------------------------------------------------- /inc/Editor/BlockPatterns/templates/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/BlockPatterns/templates/html.html -------------------------------------------------------------------------------- /inc/Editor/BlockPatterns/templates/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/BlockPatterns/templates/image.html -------------------------------------------------------------------------------- /inc/Editor/BlockPatterns/templates/paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/BlockPatterns/templates/paragraph.html -------------------------------------------------------------------------------- /inc/Editor/DataBinding/BlockBindings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/DataBinding/BlockBindings.php -------------------------------------------------------------------------------- /inc/Editor/DataBinding/InlineBindings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/DataBinding/InlineBindings.php -------------------------------------------------------------------------------- /inc/Editor/DataBinding/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/DataBinding/Pagination.php -------------------------------------------------------------------------------- /inc/Editor/PatternEditor/PatternEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Editor/PatternEditor/PatternEditor.php -------------------------------------------------------------------------------- /inc/ExampleApi/Data/ExampleApiData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/ExampleApi/Data/ExampleApiData.php -------------------------------------------------------------------------------- /inc/ExampleApi/Data/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/ExampleApi/Data/items.json -------------------------------------------------------------------------------- /inc/ExampleApi/ExampleApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/ExampleApi/ExampleApi.php -------------------------------------------------------------------------------- /inc/ExampleApi/Queries/ExampleApiQueryRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/ExampleApi/Queries/ExampleApiQueryRunner.php -------------------------------------------------------------------------------- /inc/Formatting/FieldFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Formatting/FieldFormatter.php -------------------------------------------------------------------------------- /inc/Formatting/StringFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Formatting/StringFormatter.php -------------------------------------------------------------------------------- /inc/HttpClient/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/HttpClient/HttpClient.php -------------------------------------------------------------------------------- /inc/HttpClient/RdbCacheMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/HttpClient/RdbCacheMiddleware.php -------------------------------------------------------------------------------- /inc/HttpClient/RdbCacheStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/HttpClient/RdbCacheStrategy.php -------------------------------------------------------------------------------- /inc/HttpClient/RdbLogMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/HttpClient/RdbLogMiddleware.php -------------------------------------------------------------------------------- /inc/HttpClient/WPRemoteRequestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/HttpClient/WPRemoteRequestHandler.php -------------------------------------------------------------------------------- /inc/Integrations/Airtable/AirtableDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Airtable/AirtableDataSource.php -------------------------------------------------------------------------------- /inc/Integrations/Airtable/AirtableIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Airtable/AirtableIntegration.php -------------------------------------------------------------------------------- /inc/Integrations/Airtable/templates/block_registration.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Airtable/templates/block_registration.template -------------------------------------------------------------------------------- /inc/Integrations/GenericHttp/GenericHttpDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/GenericHttp/GenericHttpDataSource.php -------------------------------------------------------------------------------- /inc/Integrations/GenericHttp/GenericHttpIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/GenericHttp/GenericHttpIntegration.php -------------------------------------------------------------------------------- /inc/Integrations/GenericHttp/templates/block_registration.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/GenericHttp/templates/block_registration.template -------------------------------------------------------------------------------- /inc/Integrations/GitHub/GitHubDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/GitHub/GitHubDataSource.php -------------------------------------------------------------------------------- /inc/Integrations/Google/Auth/GoogleAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Google/Auth/GoogleAuth.php -------------------------------------------------------------------------------- /inc/Integrations/Google/Auth/GoogleServiceAccountKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Google/Auth/GoogleServiceAccountKey.php -------------------------------------------------------------------------------- /inc/Integrations/Google/Sheets/GoogleSheetsDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Google/Sheets/GoogleSheetsDataSource.php -------------------------------------------------------------------------------- /inc/Integrations/Google/Sheets/GoogleSheetsIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Google/Sheets/GoogleSheetsIntegration.php -------------------------------------------------------------------------------- /inc/Integrations/Google/Sheets/templates/block_registration.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Google/Sheets/templates/block_registration.template -------------------------------------------------------------------------------- /inc/Integrations/Shopify/Patterns/product-teaser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Shopify/Patterns/product-teaser.html -------------------------------------------------------------------------------- /inc/Integrations/Shopify/Queries/GetProductById.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Shopify/Queries/GetProductById.graphql -------------------------------------------------------------------------------- /inc/Integrations/Shopify/Queries/SearchProducts.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Shopify/Queries/SearchProducts.graphql -------------------------------------------------------------------------------- /inc/Integrations/Shopify/ShopifyDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Shopify/ShopifyDataSource.php -------------------------------------------------------------------------------- /inc/Integrations/Shopify/ShopifyIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Shopify/ShopifyIntegration.php -------------------------------------------------------------------------------- /inc/Integrations/Shopify/assets/shopify_logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Shopify/assets/shopify_logo_black.png -------------------------------------------------------------------------------- /inc/Integrations/Shopify/templates/block_registration.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/Shopify/templates/block_registration.template -------------------------------------------------------------------------------- /inc/Integrations/VipBlockDataApi/VipBlockDataApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/VipBlockDataApi/VipBlockDataApi.php -------------------------------------------------------------------------------- /inc/Integrations/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Integrations/constants.php -------------------------------------------------------------------------------- /inc/Logging/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/AbstractLogger.php -------------------------------------------------------------------------------- /inc/Logging/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/LogLevel.php -------------------------------------------------------------------------------- /inc/Logging/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/Logger.php -------------------------------------------------------------------------------- /inc/Logging/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/LoggerInterface.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/QueryMonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/QueryMonitor.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbBlockBindingCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbBlockBindingCollector.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbBlockBindingOutputHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbBlockBindingOutputHtml.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbHttpRequestCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbHttpRequestCollector.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbHttpRequestOutputHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbHttpRequestOutputHtml.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbLogCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbLogCollector.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbLogOutputHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbLogOutputHtml.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbLogOutputRaw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbLogOutputRaw.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbMainCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbMainCollector.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbMainOutputHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbMainOutputHtml.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbValidationCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbValidationCollector.php -------------------------------------------------------------------------------- /inc/Logging/QueryMonitor/RdbValidationOutputHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Logging/QueryMonitor/RdbValidationOutputHtml.php -------------------------------------------------------------------------------- /inc/PluginSettings/PluginSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/PluginSettings/PluginSettings.php -------------------------------------------------------------------------------- /inc/REST/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/REST/AuthController.php -------------------------------------------------------------------------------- /inc/REST/DataSourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/REST/DataSourceController.php -------------------------------------------------------------------------------- /inc/REST/RemoteDataController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/REST/RemoteDataController.php -------------------------------------------------------------------------------- /inc/Sanitization/Sanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Sanitization/Sanitizer.php -------------------------------------------------------------------------------- /inc/Sanitization/SanitizerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Sanitization/SanitizerInterface.php -------------------------------------------------------------------------------- /inc/Snippet/Snippet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Snippet/Snippet.php -------------------------------------------------------------------------------- /inc/Store/DataSource/ConstantConfigStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Store/DataSource/ConstantConfigStore.php -------------------------------------------------------------------------------- /inc/Store/DataSource/DataSourceConfigManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Store/DataSource/DataSourceConfigManager.php -------------------------------------------------------------------------------- /inc/Telemetry/DataSourceTelemetry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Telemetry/DataSourceTelemetry.php -------------------------------------------------------------------------------- /inc/Telemetry/Telemetry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Telemetry/Telemetry.php -------------------------------------------------------------------------------- /inc/Validation/ConfigSchemas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Validation/ConfigSchemas.php -------------------------------------------------------------------------------- /inc/Validation/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Validation/Types.php -------------------------------------------------------------------------------- /inc/Validation/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Validation/Validator.php -------------------------------------------------------------------------------- /inc/Validation/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/Validation/ValidatorInterface.php -------------------------------------------------------------------------------- /inc/WpdbStorage/DataEncryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/WpdbStorage/DataEncryption.php -------------------------------------------------------------------------------- /inc/WpdbStorage/DataSourceCrud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/inc/WpdbStorage/DataSourceCrud.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/phpunit-integration.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/phpunit.xml -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/psalm.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/readme.txt -------------------------------------------------------------------------------- /remote-data-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/remote-data-blocks.php -------------------------------------------------------------------------------- /src/block-editor/binding-sources/remote-data-binding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/binding-sources/remote-data-binding.ts -------------------------------------------------------------------------------- /src/block-editor/filters/addUsesContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/filters/addUsesContext.ts -------------------------------------------------------------------------------- /src/block-editor/filters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/filters/index.ts -------------------------------------------------------------------------------- /src/block-editor/filters/withBlockBinding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/filters/withBlockBinding.tsx -------------------------------------------------------------------------------- /src/block-editor/format-types/inline-binding/components/InlineBinding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/format-types/inline-binding/components/InlineBinding.scss -------------------------------------------------------------------------------- /src/block-editor/format-types/inline-binding/components/InlineBindingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/format-types/inline-binding/components/InlineBindingButton.tsx -------------------------------------------------------------------------------- /src/block-editor/format-types/inline-binding/components/InlineBindingSelectExisting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/format-types/inline-binding/components/InlineBindingSelectExisting.tsx -------------------------------------------------------------------------------- /src/block-editor/format-types/inline-binding/components/InlineBindingSelectFieldPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/format-types/inline-binding/components/InlineBindingSelectFieldPopover.tsx -------------------------------------------------------------------------------- /src/block-editor/format-types/inline-binding/components/InlineBindingSelectMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/format-types/inline-binding/components/InlineBindingSelectMeta.tsx -------------------------------------------------------------------------------- /src/block-editor/format-types/inline-binding/components/InlineBindingSelectNew.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/format-types/inline-binding/components/InlineBindingSelectNew.tsx -------------------------------------------------------------------------------- /src/block-editor/format-types/inline-binding/components/InlineBindingSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/format-types/inline-binding/components/InlineBindingSelection.tsx -------------------------------------------------------------------------------- /src/block-editor/format-types/inline-binding/hooks/useExistingRemoteData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/format-types/inline-binding/hooks/useExistingRemoteData.ts -------------------------------------------------------------------------------- /src/block-editor/format-types/inline-binding/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/format-types/inline-binding/index.ts -------------------------------------------------------------------------------- /src/block-editor/format-types/inline-binding/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/format-types/inline-binding/settings.ts -------------------------------------------------------------------------------- /src/block-editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/block-editor/index.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-container/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/block.json -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/BlockBindingControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/BlockBindingControls.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/EditErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/EditErrorBoundary.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/InnerBlocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/InnerBlocks.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/item-list/ItemList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/item-list/ItemList.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/item-list/ItemListField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/item-list/ItemListField.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/modals/BaseModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/modals/BaseModal.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/modals/DataViewsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/modals/DataViewsModal.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/modals/InputModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/modals/InputModal.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/panels/DataPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/panels/DataPanel.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/panels/OverridesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/panels/OverridesPanel.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/panels/QueryInputsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/panels/QueryInputsPanel.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/pattern-selection/PatternSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/pattern-selection/PatternSelection.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/pattern-selection/PatternSelectionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/pattern-selection/PatternSelectionModal.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/placeholders/ItemSelectQueryType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/placeholders/ItemSelectQueryType.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/placeholders/Placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/placeholders/Placeholder.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/placeholders/PlaceholderError.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/placeholders/PlaceholderError.scss -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/placeholders/PlaceholderError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/placeholders/PlaceholderError.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/popovers/InputPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/popovers/InputPopover.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/components/popovers/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/components/popovers/style.scss -------------------------------------------------------------------------------- /src/blocks/remote-data-container/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/config/constants.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-container/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/edit.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/editor.scss -------------------------------------------------------------------------------- /src/blocks/remote-data-container/hooks/useModalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/hooks/useModalState.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-container/hooks/usePaginationVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/hooks/usePaginationVariables.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-container/hooks/usePatterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/hooks/usePatterns.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-container/hooks/useRemoteData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/hooks/useRemoteData.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-container/hooks/useRemoteDataContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/hooks/useRemoteDataContext.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-container/hooks/useSearchVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/hooks/useSearchVariables.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/index.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-container/render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/render.php -------------------------------------------------------------------------------- /src/blocks/remote-data-container/save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/save.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-container/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/style.scss -------------------------------------------------------------------------------- /src/blocks/remote-data-container/utils/tracks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/utils/tracks.spec.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-container/utils/tracks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-container/utils/tracks.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-no-results/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-no-results/block.json -------------------------------------------------------------------------------- /src/blocks/remote-data-no-results/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-no-results/edit.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-no-results/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-no-results/editor.scss -------------------------------------------------------------------------------- /src/blocks/remote-data-no-results/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-no-results/index.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-no-results/render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-no-results/render.php -------------------------------------------------------------------------------- /src/blocks/remote-data-no-results/save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-no-results/save.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-no-results/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-no-results/style.scss -------------------------------------------------------------------------------- /src/blocks/remote-data-pagination/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-pagination/block.json -------------------------------------------------------------------------------- /src/blocks/remote-data-pagination/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-pagination/edit.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-pagination/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-pagination/editor.scss -------------------------------------------------------------------------------- /src/blocks/remote-data-pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-pagination/index.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-pagination/render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-pagination/render.php -------------------------------------------------------------------------------- /src/blocks/remote-data-pagination/save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-pagination/save.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-pagination/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-pagination/style.scss -------------------------------------------------------------------------------- /src/blocks/remote-data-template/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-template/block.json -------------------------------------------------------------------------------- /src/blocks/remote-data-template/components/item-preview/ItemPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-template/components/item-preview/ItemPreview.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-template/components/loop-template/LoopTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-template/components/loop-template/LoopTemplate.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-template/components/loop-template/LoopTemplateInnerBlocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-template/components/loop-template/LoopTemplateInnerBlocks.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-template/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-template/edit.tsx -------------------------------------------------------------------------------- /src/blocks/remote-data-template/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-template/editor.scss -------------------------------------------------------------------------------- /src/blocks/remote-data-template/hooks/useGetInnerBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-template/hooks/useGetInnerBlocks.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-template/index.ts -------------------------------------------------------------------------------- /src/blocks/remote-data-template/render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-template/render.php -------------------------------------------------------------------------------- /src/blocks/remote-data-template/save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-data-template/save.tsx -------------------------------------------------------------------------------- /src/blocks/remote-html/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-html/block.json -------------------------------------------------------------------------------- /src/blocks/remote-html/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-html/edit.tsx -------------------------------------------------------------------------------- /src/blocks/remote-html/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-html/editor.scss -------------------------------------------------------------------------------- /src/blocks/remote-html/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-html/index.ts -------------------------------------------------------------------------------- /src/blocks/remote-html/render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-html/render.php -------------------------------------------------------------------------------- /src/blocks/remote-html/save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/blocks/remote-html/save.tsx -------------------------------------------------------------------------------- /src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/config/constants.ts -------------------------------------------------------------------------------- /src/data-sources/DataSourceList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/DataSourceList.scss -------------------------------------------------------------------------------- /src/data-sources/DataSourceList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/DataSourceList.tsx -------------------------------------------------------------------------------- /src/data-sources/DataSourceMetaTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/DataSourceMetaTags.tsx -------------------------------------------------------------------------------- /src/data-sources/DataSourceSettings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/DataSourceSettings.scss -------------------------------------------------------------------------------- /src/data-sources/DataSourceSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/DataSourceSettings.tsx -------------------------------------------------------------------------------- /src/data-sources/airtable/AirtableSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/airtable/AirtableSettings.tsx -------------------------------------------------------------------------------- /src/data-sources/airtable/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/airtable/constants.ts -------------------------------------------------------------------------------- /src/data-sources/airtable/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/airtable/types.ts -------------------------------------------------------------------------------- /src/data-sources/airtable/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/airtable/utils.ts -------------------------------------------------------------------------------- /src/data-sources/api-clients/airtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/api-clients/airtable.ts -------------------------------------------------------------------------------- /src/data-sources/api-clients/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/api-clients/auth.ts -------------------------------------------------------------------------------- /src/data-sources/api-clients/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/api-clients/google.ts -------------------------------------------------------------------------------- /src/data-sources/api-clients/shopify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/api-clients/shopify.ts -------------------------------------------------------------------------------- /src/data-sources/components/AddDataSourceDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/components/AddDataSourceDropdown.tsx -------------------------------------------------------------------------------- /src/data-sources/components/CodeSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/components/CodeSnippet.tsx -------------------------------------------------------------------------------- /src/data-sources/components/CustomFormFieldToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/components/CustomFormFieldToken.tsx -------------------------------------------------------------------------------- /src/data-sources/components/DataSourceForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/components/DataSourceForm.tsx -------------------------------------------------------------------------------- /src/data-sources/components/DataSourceFormActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/components/DataSourceFormActions.tsx -------------------------------------------------------------------------------- /src/data-sources/components/FieldsSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/components/FieldsSelection.tsx -------------------------------------------------------------------------------- /src/data-sources/components/HttpAuthSettingsInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/components/HttpAuthSettingsInput.tsx -------------------------------------------------------------------------------- /src/data-sources/components/PasswordInputControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/components/PasswordInputControl.tsx -------------------------------------------------------------------------------- /src/data-sources/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/constants.ts -------------------------------------------------------------------------------- /src/data-sources/google-sheets/GoogleSheetsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/google-sheets/GoogleSheetsSettings.tsx -------------------------------------------------------------------------------- /src/data-sources/hooks/useAirtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/hooks/useAirtable.ts -------------------------------------------------------------------------------- /src/data-sources/hooks/useDataSources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/hooks/useDataSources.ts -------------------------------------------------------------------------------- /src/data-sources/hooks/useGoogleApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/hooks/useGoogleApi.ts -------------------------------------------------------------------------------- /src/data-sources/hooks/useGoogleAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/hooks/useGoogleAuth.ts -------------------------------------------------------------------------------- /src/data-sources/hooks/useShopify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/hooks/useShopify.tsx -------------------------------------------------------------------------------- /src/data-sources/http/HttpSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/http/HttpSettings.tsx -------------------------------------------------------------------------------- /src/data-sources/http/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/http/types.ts -------------------------------------------------------------------------------- /src/data-sources/shopify/ShopifySettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/shopify/ShopifySettings.tsx -------------------------------------------------------------------------------- /src/data-sources/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/types.ts -------------------------------------------------------------------------------- /src/data-sources/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/data-sources/utils.tsx -------------------------------------------------------------------------------- /src/dataviews/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/dataviews/index.ts -------------------------------------------------------------------------------- /src/hooks/useDebouncedState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/hooks/useDebouncedState.ts -------------------------------------------------------------------------------- /src/hooks/useEditedPostAttribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/hooks/useEditedPostAttribute.ts -------------------------------------------------------------------------------- /src/hooks/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/hooks/useForm.ts -------------------------------------------------------------------------------- /src/hooks/usePostMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/hooks/usePostMeta.ts -------------------------------------------------------------------------------- /src/hooks/useQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/hooks/useQuery.ts -------------------------------------------------------------------------------- /src/pattern-editor/components/PatternEditorSettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/pattern-editor/components/PatternEditorSettingsPanel.tsx -------------------------------------------------------------------------------- /src/pattern-editor/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/pattern-editor/config/constants.ts -------------------------------------------------------------------------------- /src/pattern-editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/pattern-editor/index.tsx -------------------------------------------------------------------------------- /src/settings/Notices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/Notices.tsx -------------------------------------------------------------------------------- /src/settings/SettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/SettingsPage.tsx -------------------------------------------------------------------------------- /src/settings/hooks/useSettingsNav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/hooks/useSettingsNav.ts -------------------------------------------------------------------------------- /src/settings/icons/AirtableIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/icons/AirtableIcon.tsx -------------------------------------------------------------------------------- /src/settings/icons/CheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/icons/CheckIcon.tsx -------------------------------------------------------------------------------- /src/settings/icons/ErrorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/icons/ErrorIcon.tsx -------------------------------------------------------------------------------- /src/settings/icons/GoogleSheetsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/icons/GoogleSheetsIcon.tsx -------------------------------------------------------------------------------- /src/settings/icons/HttpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/icons/HttpIcon.tsx -------------------------------------------------------------------------------- /src/settings/icons/ShopifyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/icons/ShopifyIcon.tsx -------------------------------------------------------------------------------- /src/settings/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/index.scss -------------------------------------------------------------------------------- /src/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/settings/index.tsx -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/types/common.ts -------------------------------------------------------------------------------- /src/types/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/types/google.ts -------------------------------------------------------------------------------- /src/types/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/types/input.ts -------------------------------------------------------------------------------- /src/utils/block-binding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/utils/block-binding.ts -------------------------------------------------------------------------------- /src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/utils/errors.ts -------------------------------------------------------------------------------- /src/utils/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/utils/function.ts -------------------------------------------------------------------------------- /src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/utils/i18n.ts -------------------------------------------------------------------------------- /src/utils/input-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/utils/input-validation.ts -------------------------------------------------------------------------------- /src/utils/localized-block-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/utils/localized-block-data.ts -------------------------------------------------------------------------------- /src/utils/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/utils/object.ts -------------------------------------------------------------------------------- /src/utils/remote-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/utils/remote-data.ts -------------------------------------------------------------------------------- /src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/src/utils/string.ts -------------------------------------------------------------------------------- /tests/e2e/settings/activation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/e2e/settings/activation.spec.ts -------------------------------------------------------------------------------- /tests/inc/Config/ArraySerializableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Config/ArraySerializableTest.php -------------------------------------------------------------------------------- /tests/inc/Config/HttpDataSourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Config/HttpDataSourceTest.php -------------------------------------------------------------------------------- /tests/inc/Config/QueryResponseParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Config/QueryResponseParserTest.php -------------------------------------------------------------------------------- /tests/inc/Config/QueryRunnerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Config/QueryRunnerTest.php -------------------------------------------------------------------------------- /tests/inc/Config/QueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Config/QueryTest.php -------------------------------------------------------------------------------- /tests/inc/Config/RemoteDataBlockAttributeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Config/RemoteDataBlockAttributeTest.php -------------------------------------------------------------------------------- /tests/inc/Editor/BlockPatternsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Editor/BlockPatternsTest.php -------------------------------------------------------------------------------- /tests/inc/Editor/BlockRegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Editor/BlockRegistrationTest.php -------------------------------------------------------------------------------- /tests/inc/Editor/ConfigStoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Editor/ConfigStoreTest.php -------------------------------------------------------------------------------- /tests/inc/Editor/DataBinding/BlockBindingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Editor/DataBinding/BlockBindingsTest.php -------------------------------------------------------------------------------- /tests/inc/Editor/DataBinding/PaginationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Editor/DataBinding/PaginationTest.php -------------------------------------------------------------------------------- /tests/inc/Functions/FunctionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Functions/FunctionsTest.php -------------------------------------------------------------------------------- /tests/inc/HttpClient/HttpClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/HttpClient/HttpClientTest.php -------------------------------------------------------------------------------- /tests/inc/Integrations/Airtable/AirtableDataSourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Integrations/Airtable/AirtableDataSourceTest.php -------------------------------------------------------------------------------- /tests/inc/Integrations/GenericHttp/GenericHttpDataSourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Integrations/GenericHttp/GenericHttpDataSourceTest.php -------------------------------------------------------------------------------- /tests/inc/Integrations/Google/Sheets/GoogleSheetsDataSourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Integrations/Google/Sheets/GoogleSheetsDataSourceTest.php -------------------------------------------------------------------------------- /tests/inc/Integrations/VipBlockDataApi/VipBlockDataApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Integrations/VipBlockDataApi/VipBlockDataApiTest.php -------------------------------------------------------------------------------- /tests/inc/Mocks/MockDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Mocks/MockDataSource.php -------------------------------------------------------------------------------- /tests/inc/Mocks/MockLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Mocks/MockLogger.php -------------------------------------------------------------------------------- /tests/inc/Mocks/MockQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Mocks/MockQuery.php -------------------------------------------------------------------------------- /tests/inc/Mocks/MockQueryRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Mocks/MockQueryRunner.php -------------------------------------------------------------------------------- /tests/inc/Mocks/MockSerializableClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Mocks/MockSerializableClass.php -------------------------------------------------------------------------------- /tests/inc/Mocks/MockSerializableSubclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Mocks/MockSerializableSubclass.php -------------------------------------------------------------------------------- /tests/inc/Mocks/MockTelemetry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Mocks/MockTelemetry.php -------------------------------------------------------------------------------- /tests/inc/Mocks/MockValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Mocks/MockValidator.php -------------------------------------------------------------------------------- /tests/inc/Mocks/MockWordPressFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Mocks/MockWordPressFunctions.php -------------------------------------------------------------------------------- /tests/inc/PluginSettings/PluginSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/PluginSettings/PluginSettingsTest.php -------------------------------------------------------------------------------- /tests/inc/Sanitization/SanitizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Sanitization/SanitizerTest.php -------------------------------------------------------------------------------- /tests/inc/Store/DataSource/ConstantConfigStoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Store/DataSource/ConstantConfigStoreTest.php -------------------------------------------------------------------------------- /tests/inc/Store/DataSource/DataSourceConfigManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Store/DataSource/DataSourceConfigManagerTest.php -------------------------------------------------------------------------------- /tests/inc/Validation/ValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/Validation/ValidatorTest.php -------------------------------------------------------------------------------- /tests/inc/WpdbStorage/DataEncryptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/WpdbStorage/DataEncryptionTest.php -------------------------------------------------------------------------------- /tests/inc/WpdbStorage/DataSourceCrudTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/WpdbStorage/DataSourceCrudTest.php -------------------------------------------------------------------------------- /tests/inc/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/bootstrap.php -------------------------------------------------------------------------------- /tests/inc/stubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/stubs.php -------------------------------------------------------------------------------- /tests/inc/test-utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/inc/test-utils.php -------------------------------------------------------------------------------- /tests/integration/RDBTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/integration/RDBTestCase.php -------------------------------------------------------------------------------- /tests/integration/blocks/BlockConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/integration/blocks/BlockConfigTest.php -------------------------------------------------------------------------------- /tests/integration/blocks/BlockWithNestedConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/integration/blocks/BlockWithNestedConfigTest.php -------------------------------------------------------------------------------- /tests/integration/blocks/RemoteDataTemplateBlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/integration/blocks/RemoteDataTemplateBlockTest.php -------------------------------------------------------------------------------- /tests/integration/blocks/RemoteHtmlBlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/integration/blocks/RemoteHtmlBlockTest.php -------------------------------------------------------------------------------- /tests/integration/blocks/ZipCodeBlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/integration/blocks/ZipCodeBlockTest.php -------------------------------------------------------------------------------- /tests/integration/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/integration/bootstrap.php -------------------------------------------------------------------------------- /tests/integration/telemetry/TelemetryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/integration/telemetry/TelemetryTest.php -------------------------------------------------------------------------------- /tests/src/block-editor/filters/withBlockBinding.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/block-editor/filters/withBlockBinding.test.tsx -------------------------------------------------------------------------------- /tests/src/blocks/remote-data-container/components/item-list/ItemList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/blocks/remote-data-container/components/item-list/ItemList.test.tsx -------------------------------------------------------------------------------- /tests/src/blocks/remote-data-container/components/modals/InputModal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/blocks/remote-data-container/components/modals/InputModal.test.tsx -------------------------------------------------------------------------------- /tests/src/blocks/remote-data-container/components/panels/QueryInputsPanel.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/blocks/remote-data-container/components/panels/QueryInputsPanel.test.tsx -------------------------------------------------------------------------------- /tests/src/blocks/remote-data-container/hooks/useModalState.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/blocks/remote-data-container/hooks/useModalState.test.ts -------------------------------------------------------------------------------- /tests/src/blocks/remote-data-container/hooks/usePaginationVariables.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/blocks/remote-data-container/hooks/usePaginationVariables.test.ts -------------------------------------------------------------------------------- /tests/src/blocks/remote-data-template/components/loop-template/LoopTemplate.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/blocks/remote-data-template/components/loop-template/LoopTemplate.test.tsx -------------------------------------------------------------------------------- /tests/src/blocks/remote-data-template/components/loop-template/LoopTemplateInnerBlocks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/blocks/remote-data-template/components/loop-template/LoopTemplateInnerBlocks.test.tsx -------------------------------------------------------------------------------- /tests/src/utils/block-binding.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/utils/block-binding.test.ts -------------------------------------------------------------------------------- /tests/src/utils/errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/utils/errors.test.ts -------------------------------------------------------------------------------- /tests/src/utils/function.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/utils/function.test.ts -------------------------------------------------------------------------------- /tests/src/utils/input-validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/utils/input-validation.test.ts -------------------------------------------------------------------------------- /tests/src/utils/object.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/utils/object.test.ts -------------------------------------------------------------------------------- /tests/src/utils/remote-data.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/utils/remote-data.test.ts -------------------------------------------------------------------------------- /tests/src/utils/string.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/utils/string.test.ts -------------------------------------------------------------------------------- /tests/src/vitest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tests/src/vitest.setup.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/globals.d.ts -------------------------------------------------------------------------------- /types/localized-block-data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/localized-block-data.d.ts -------------------------------------------------------------------------------- /types/localized-settings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/localized-settings.d.ts -------------------------------------------------------------------------------- /types/query-monitor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/query-monitor.d.ts -------------------------------------------------------------------------------- /types/remote-data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/remote-data.d.ts -------------------------------------------------------------------------------- /types/tracks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/tracks.d.ts -------------------------------------------------------------------------------- /types/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/utils.d.ts -------------------------------------------------------------------------------- /types/wordpress__block-editor/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/wordpress__block-editor/index.d.ts -------------------------------------------------------------------------------- /types/wordpress__blocks/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/wordpress__blocks/index.d.ts -------------------------------------------------------------------------------- /types/wordpress__data/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/wordpress__data/index.d.ts -------------------------------------------------------------------------------- /types/wordpress__notices/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/wordpress__notices/index.d.ts -------------------------------------------------------------------------------- /types/wordpress__rich-text/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/wordpress__rich-text/index.d.ts -------------------------------------------------------------------------------- /types/wordpress__server-side-render/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/types/wordpress__server-side-render/index.d.ts -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/vitest.config.mts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/remote-data-blocks/HEAD/webpack.utils.js --------------------------------------------------------------------------------