├── .circleci └── config.yml ├── .distignore ├── .eslintrc ├── .githooks └── pre-commit ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmrc ├── .nvmrc ├── .stylelintrc.json ├── .wp-env.json ├── LICENSE ├── README.md ├── assets ├── images │ ├── admin-menu-icon.svg │ ├── gcb-gen-free-plan-bg-img.jpg │ ├── gcb-gen-free-plan-bg.jpg │ ├── gcb-gen-pro-hero-bg-img.jpg │ ├── gcb-gen-pro-plan-bg.jpg │ └── logo-reversed.svg └── wporg │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── icon.svg │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ └── screenshot-5.png ├── babel.config.js ├── composer.json ├── composer.lock ├── css ├── admin.css ├── admin.edit-block.css ├── admin.onboarding.css ├── admin.upgrade.css └── src │ ├── _color.scss │ ├── edit-block.scss │ └── editor.scss ├── genesis-custom-blocks.php ├── js └── src │ ├── block-editor │ ├── components │ │ ├── edit.js │ │ ├── editor-form.js │ │ ├── fields.js │ │ ├── gcb-inspector.js │ │ ├── index.js │ │ └── repeater-rows.js │ ├── constants │ │ └── index.js │ ├── controls │ │ ├── checkbox.js │ │ ├── color.js │ │ ├── email.js │ │ ├── file.js │ │ ├── image.js │ │ ├── index.js │ │ ├── inner-blocks.js │ │ ├── multiselect.js │ │ ├── number.js │ │ ├── radio.js │ │ ├── range.js │ │ ├── select.js │ │ ├── text.js │ │ ├── textarea.js │ │ ├── toggle.js │ │ └── url.js │ ├── helpers │ │ ├── addControls.js │ │ ├── getGcbBlockAttributes.js │ │ ├── index.js │ │ ├── registerBlocks.js │ │ └── test │ │ │ ├── addControls.js │ │ │ ├── getGcbBlockAttributes.js │ │ │ └── registerBlocks.js │ ├── hooks │ │ ├── index.js │ │ └── useMedia.js │ └── index.js │ ├── common │ ├── classes │ │ ├── GAClient.js │ │ └── index.js │ ├── components │ │ ├── index.js │ │ ├── notice.js │ │ └── svg-container.js │ ├── constants │ │ └── index.js │ ├── helpers │ │ ├── debounce.js │ │ ├── getFieldsAsArray.js │ │ ├── getFieldsAsObject.js │ │ ├── getIconComponent.js │ │ ├── index.js │ │ ├── pascalCaseToSnakeCase.js │ │ ├── snakeCaseToPascalCase.js │ │ └── test │ │ │ ├── getFieldsAsArray.js │ │ │ ├── getFieldsAsObject.js │ │ │ ├── getIconComponent.js │ │ │ ├── pascalCaseToSnakeCase.js │ │ │ └── snakeCaseToPascalCase.js │ └── icons │ │ ├── account-balance.js │ │ ├── account-circle.js │ │ ├── add-a-photo.js │ │ ├── add-circle-outline.js │ │ ├── alarm.js │ │ ├── announcement.js │ │ ├── assessment.js │ │ ├── assignment-ind.js │ │ ├── attach-file.js │ │ ├── attach-money.js │ │ ├── audiotrack.js │ │ ├── battery-charging-full.js │ │ ├── book.js │ │ ├── bookmark-border.js │ │ ├── brightness-2.js │ │ ├── brightness-low.js │ │ ├── brush.js │ │ ├── build.js │ │ ├── camera-alt.js │ │ ├── camera.js │ │ ├── card-giftcard.js │ │ ├── chat-bubble-outline.js │ │ ├── check-box.js │ │ ├── check-circle.js │ │ ├── cloud.js │ │ ├── code.js │ │ ├── color-lens.js │ │ ├── create.js │ │ ├── credit-card.js │ │ ├── dashboard.js │ │ ├── description.js │ │ ├── desktop-mac.js │ │ ├── devices.js │ │ ├── directions-bike.js │ │ ├── directions-boat.js │ │ ├── directions-bus.js │ │ ├── directions-car.js │ │ ├── directions-railway.js │ │ ├── directions-run.js │ │ ├── donut-small.js │ │ ├── email.js │ │ ├── explore.js │ │ ├── extension.js │ │ ├── face.js │ │ ├── fastfood.js │ │ ├── favorite-border.js │ │ ├── fingerprint.js │ │ ├── flight.js │ │ ├── folder.js │ │ ├── font-download.js │ │ ├── format-quote.js │ │ ├── forum.js │ │ ├── gamepad.js │ │ ├── genesis-custom-blocks.js │ │ ├── group.js │ │ ├── help-outline.js │ │ ├── home.js │ │ ├── hotel.js │ │ ├── hourglass-empty.js │ │ ├── inbox.js │ │ ├── index.js │ │ ├── info.js │ │ ├── insert-chart.js │ │ ├── insert-photo.js │ │ ├── label.js │ │ ├── language.js │ │ ├── linear-scale.js │ │ ├── link.js │ │ ├── list.js │ │ ├── local-activity.js │ │ ├── local-bar.js │ │ ├── local-cafe.js │ │ ├── local-dining.js │ │ ├── local-florist.js │ │ ├── location-searching.js │ │ ├── lock.js │ │ ├── map.js │ │ ├── mic-none.js │ │ ├── movie.js │ │ ├── note-add.js │ │ ├── notes.js │ │ ├── notifications.js │ │ ├── panorama-horizontal.js │ │ ├── perm-identity.js │ │ ├── pets.js │ │ ├── pie-chart.js │ │ ├── place.js │ │ ├── play-circle-outline.js │ │ ├── public.js │ │ ├── radio-button-checked.js │ │ ├── save.js │ │ ├── scatter-plot.js │ │ ├── schedule.js │ │ ├── search.js │ │ ├── sentiment-satisfied-alt.js │ │ ├── settings.js │ │ ├── shopping-cart.js │ │ ├── space-bar.js │ │ ├── star-border.js │ │ ├── text-fields.js │ │ ├── theaters.js │ │ ├── title.js │ │ ├── today.js │ │ ├── toggle-on.js │ │ ├── toys.js │ │ ├── translate.js │ │ ├── tv.js │ │ ├── videogame-asset.js │ │ ├── view-carousel.js │ │ ├── view-column.js │ │ ├── view-day.js │ │ ├── view-module.js │ │ ├── view-quilt.js │ │ ├── vpn-key.js │ │ ├── wallpaper.js │ │ ├── watch.js │ │ ├── waves.js │ │ ├── whatshot.js │ │ ├── widgets.js │ │ └── work-outline.js │ └── edit-block │ ├── components │ ├── block-panel.js │ ├── bottom-notice.js │ ├── browser-url.js │ ├── category-section.js │ ├── clipboard-copy.js │ ├── display-modal-section.js │ ├── editor-preview.js │ ├── editor-provider.js │ ├── editor.js │ ├── field-panel.js │ ├── field-settings.js │ ├── field.js │ ├── fields-grid.js │ ├── front-end-preview.js │ ├── header.js │ ├── icon-section.js │ ├── index.js │ ├── input.js │ ├── keywords-section.js │ ├── location-buttons.js │ ├── main.js │ ├── post-title.js │ ├── post-types-section.js │ ├── preview-notice.js │ ├── question-icon.js │ ├── select.js │ ├── settings │ │ ├── checkbox.js │ │ ├── email.js │ │ ├── index.js │ │ ├── location.js │ │ ├── new-line-format.js │ │ ├── number-non-negative.js │ │ ├── number.js │ │ ├── text.js │ │ ├── textarea-array.js │ │ ├── textarea-default.js │ │ ├── textarea.js │ │ └── width.js │ ├── side.js │ ├── slug-section.js │ ├── template-buttons.js │ ├── template-editor.js │ ├── template-file.js │ └── top-notice.js │ ├── constants │ └── index.js │ ├── helpers │ ├── convertSettingsArrayToString.js │ ├── convertSettingsStringToArray.js │ ├── convertToSlug.js │ ├── getBlock.js │ ├── getBlockNameWithNameSpace.js │ ├── getDefaultBlock.js │ ├── getFieldIcon.js │ ├── getNewFieldNumber.js │ ├── getOtherLocation.js │ ├── getSettingsComponent.js │ ├── getSettingsDefaults.js │ ├── getTemplateParts.js │ ├── getWidthClass.js │ ├── hasRepeaterField.js │ ├── index.js │ ├── initializeEditor.js │ ├── setCorrectOrderForFields.js │ └── test │ │ ├── convertToArray.js │ │ ├── convertToSlug.js │ │ ├── convertToString.js │ │ ├── getBlock.js │ │ ├── getBlockNameWithNameSpace.js │ │ ├── getDefaultBlock.js │ │ ├── getFieldIcon.js │ │ ├── getNewFieldNumber.js │ │ ├── getOtherLocation.js │ │ ├── getSettingsDefaults.js │ │ ├── getTemplateParts.js │ │ ├── getWidthClass.js │ │ ├── hasRepeaterField.js │ │ └── setCorrectOrderForFields.js │ ├── hooks │ ├── index.js │ ├── useBlock.js │ ├── useCopyToClipboard.js │ ├── useField.js │ ├── usePostTypes.js │ └── useTemplate.js │ ├── icons │ └── index.js │ └── index.js ├── package.json ├── php ├── Admin │ ├── Admin.php │ ├── Documentation.php │ ├── EditBlock.php │ ├── Import.php │ ├── Onboarding.php │ ├── Settings.php │ └── Upgrade.php ├── BlockApi.php ├── Blocks │ ├── Block.php │ ├── Controls │ │ ├── Checkbox.php │ │ ├── Color.php │ │ ├── ControlAbstract.php │ │ ├── ControlSetting.php │ │ ├── Email.php │ │ ├── File.php │ │ ├── Image.php │ │ ├── InnerBlocks.php │ │ ├── Multiselect.php │ │ ├── Number.php │ │ ├── Radio.php │ │ ├── Range.php │ │ ├── Select.php │ │ ├── Text.php │ │ ├── Textarea.php │ │ ├── Toggle.php │ │ └── Url.php │ ├── Field.php │ ├── Loader.php │ └── TemplateEditor.php ├── ComponentAbstract.php ├── ComponentInterface.php ├── Deprecated.php ├── Helpers.php ├── Plugin.php ├── PluginAbstract.php ├── PluginInterface.php ├── PluginUpdater.php ├── PostTypes │ └── BlockPost.php ├── Util.php └── Views │ ├── EditorHeader.php │ ├── Settings.php │ └── Upgrade.php ├── phpcs.xml ├── phpunit.xml ├── postcss.config.js ├── tailwind.config.js ├── tests ├── bootstrap.php ├── e2e │ ├── assets │ │ ├── example.pdf │ │ └── trombone.jpg │ ├── config │ │ └── setup-test-framework.js │ ├── jest.config.js │ ├── plugins │ │ └── testing-blocks │ │ │ ├── blocks │ │ │ └── block-testing-example.php │ │ │ └── testing-blocks.php │ └── specs │ │ ├── all-fields.js │ │ ├── api-blocks.js │ │ └── template-editor.js ├── install-wp-tests.sh ├── js │ └── jest.config.js ├── patchwork.json ├── php │ ├── Integration │ │ └── TestPostCapabilities.php │ └── Unit │ │ ├── Admin │ │ ├── TestAdmin.php │ │ ├── TestDocumentation.php │ │ ├── TestEditBlock.php │ │ ├── TestImport.php │ │ ├── TestOnboarding.php │ │ ├── TestSettings.php │ │ └── TestUpgrade.php │ │ ├── Blocks │ │ ├── Controls │ │ │ ├── TestCheckbox.php │ │ │ ├── TestColor.php │ │ │ ├── TestControlSetting.php │ │ │ ├── TestEmail.php │ │ │ ├── TestFile.php │ │ │ ├── TestImage.php │ │ │ ├── TestInnerBlocks.php │ │ │ ├── TestMultiselect.php │ │ │ ├── TestNumber.php │ │ │ ├── TestRadio.php │ │ │ ├── TestRange.php │ │ │ ├── TestSelect.php │ │ │ ├── TestText.php │ │ │ ├── TestTextarea.php │ │ │ ├── TestToggle.php │ │ │ └── TestUrl.php │ │ ├── TestBlock.php │ │ ├── TestField.php │ │ ├── TestLoader.php │ │ └── TestTemplateEditor.php │ │ ├── Fixtures │ │ ├── MockImportInvalidFormat.txt │ │ └── MockImportValidFormat.txt │ │ ├── Helpers │ │ ├── AbstractTemplate.php │ │ ├── FilesystemStub.php │ │ └── TestingHelper.php │ │ ├── PostTypes │ │ └── TestBlockPost.php │ │ ├── TestBlockApi.php │ │ ├── TestGenesisCustomBlocks.php │ │ ├── TestHelpers.php │ │ ├── TestPlugin.php │ │ └── TestUtil.php └── wp-tests-config.php ├── tsconfig.json └── webpack.config.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.distignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.eslintrc -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/.wp-env.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/admin-menu-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/images/admin-menu-icon.svg -------------------------------------------------------------------------------- /assets/images/gcb-gen-free-plan-bg-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/images/gcb-gen-free-plan-bg-img.jpg -------------------------------------------------------------------------------- /assets/images/gcb-gen-free-plan-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/images/gcb-gen-free-plan-bg.jpg -------------------------------------------------------------------------------- /assets/images/gcb-gen-pro-hero-bg-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/images/gcb-gen-pro-hero-bg-img.jpg -------------------------------------------------------------------------------- /assets/images/gcb-gen-pro-plan-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/images/gcb-gen-pro-plan-bg.jpg -------------------------------------------------------------------------------- /assets/images/logo-reversed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/images/logo-reversed.svg -------------------------------------------------------------------------------- /assets/wporg/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/wporg/banner-1544x500.png -------------------------------------------------------------------------------- /assets/wporg/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/wporg/banner-772x250.png -------------------------------------------------------------------------------- /assets/wporg/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/wporg/icon-128x128.png -------------------------------------------------------------------------------- /assets/wporg/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/wporg/icon-256x256.png -------------------------------------------------------------------------------- /assets/wporg/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/wporg/icon.svg -------------------------------------------------------------------------------- /assets/wporg/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/wporg/screenshot-1.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/wporg/screenshot-2.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/wporg/screenshot-3.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/wporg/screenshot-4.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/assets/wporg/screenshot-5.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@wordpress/default', 4 | ], 5 | }; 6 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/composer.lock -------------------------------------------------------------------------------- /css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/css/admin.css -------------------------------------------------------------------------------- /css/admin.edit-block.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/css/admin.edit-block.css -------------------------------------------------------------------------------- /css/admin.onboarding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/css/admin.onboarding.css -------------------------------------------------------------------------------- /css/admin.upgrade.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/css/admin.upgrade.css -------------------------------------------------------------------------------- /css/src/_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/css/src/_color.scss -------------------------------------------------------------------------------- /css/src/edit-block.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/css/src/edit-block.scss -------------------------------------------------------------------------------- /css/src/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/css/src/editor.scss -------------------------------------------------------------------------------- /genesis-custom-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/genesis-custom-blocks.php -------------------------------------------------------------------------------- /js/src/block-editor/components/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/components/edit.js -------------------------------------------------------------------------------- /js/src/block-editor/components/editor-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/components/editor-form.js -------------------------------------------------------------------------------- /js/src/block-editor/components/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/components/fields.js -------------------------------------------------------------------------------- /js/src/block-editor/components/gcb-inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/components/gcb-inspector.js -------------------------------------------------------------------------------- /js/src/block-editor/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/components/index.js -------------------------------------------------------------------------------- /js/src/block-editor/components/repeater-rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/components/repeater-rows.js -------------------------------------------------------------------------------- /js/src/block-editor/constants/index.js: -------------------------------------------------------------------------------- 1 | export const MEDIA_LIBRARY_BUTTON_CLASS = 'editor-media-placeholder__button'; 2 | -------------------------------------------------------------------------------- /js/src/block-editor/controls/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/checkbox.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/color.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/email.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/file.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/image.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/index.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/inner-blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/inner-blocks.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/multiselect.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/number.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/radio.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/range.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/select.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/text.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/textarea.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/toggle.js -------------------------------------------------------------------------------- /js/src/block-editor/controls/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/controls/url.js -------------------------------------------------------------------------------- /js/src/block-editor/helpers/addControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/helpers/addControls.js -------------------------------------------------------------------------------- /js/src/block-editor/helpers/getGcbBlockAttributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/helpers/getGcbBlockAttributes.js -------------------------------------------------------------------------------- /js/src/block-editor/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/helpers/index.js -------------------------------------------------------------------------------- /js/src/block-editor/helpers/registerBlocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/helpers/registerBlocks.js -------------------------------------------------------------------------------- /js/src/block-editor/helpers/test/addControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/helpers/test/addControls.js -------------------------------------------------------------------------------- /js/src/block-editor/helpers/test/getGcbBlockAttributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/helpers/test/getGcbBlockAttributes.js -------------------------------------------------------------------------------- /js/src/block-editor/helpers/test/registerBlocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/helpers/test/registerBlocks.js -------------------------------------------------------------------------------- /js/src/block-editor/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/hooks/index.js -------------------------------------------------------------------------------- /js/src/block-editor/hooks/useMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/hooks/useMedia.js -------------------------------------------------------------------------------- /js/src/block-editor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/block-editor/index.js -------------------------------------------------------------------------------- /js/src/common/classes/GAClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/classes/GAClient.js -------------------------------------------------------------------------------- /js/src/common/classes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/classes/index.js -------------------------------------------------------------------------------- /js/src/common/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/components/index.js -------------------------------------------------------------------------------- /js/src/common/components/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/components/notice.js -------------------------------------------------------------------------------- /js/src/common/components/svg-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/components/svg-container.js -------------------------------------------------------------------------------- /js/src/common/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/constants/index.js -------------------------------------------------------------------------------- /js/src/common/helpers/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/debounce.js -------------------------------------------------------------------------------- /js/src/common/helpers/getFieldsAsArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/getFieldsAsArray.js -------------------------------------------------------------------------------- /js/src/common/helpers/getFieldsAsObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/getFieldsAsObject.js -------------------------------------------------------------------------------- /js/src/common/helpers/getIconComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/getIconComponent.js -------------------------------------------------------------------------------- /js/src/common/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/index.js -------------------------------------------------------------------------------- /js/src/common/helpers/pascalCaseToSnakeCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/pascalCaseToSnakeCase.js -------------------------------------------------------------------------------- /js/src/common/helpers/snakeCaseToPascalCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/snakeCaseToPascalCase.js -------------------------------------------------------------------------------- /js/src/common/helpers/test/getFieldsAsArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/test/getFieldsAsArray.js -------------------------------------------------------------------------------- /js/src/common/helpers/test/getFieldsAsObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/test/getFieldsAsObject.js -------------------------------------------------------------------------------- /js/src/common/helpers/test/getIconComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/test/getIconComponent.js -------------------------------------------------------------------------------- /js/src/common/helpers/test/pascalCaseToSnakeCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/test/pascalCaseToSnakeCase.js -------------------------------------------------------------------------------- /js/src/common/helpers/test/snakeCaseToPascalCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/helpers/test/snakeCaseToPascalCase.js -------------------------------------------------------------------------------- /js/src/common/icons/account-balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/account-balance.js -------------------------------------------------------------------------------- /js/src/common/icons/account-circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/account-circle.js -------------------------------------------------------------------------------- /js/src/common/icons/add-a-photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/add-a-photo.js -------------------------------------------------------------------------------- /js/src/common/icons/add-circle-outline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/add-circle-outline.js -------------------------------------------------------------------------------- /js/src/common/icons/alarm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/alarm.js -------------------------------------------------------------------------------- /js/src/common/icons/announcement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/announcement.js -------------------------------------------------------------------------------- /js/src/common/icons/assessment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/assessment.js -------------------------------------------------------------------------------- /js/src/common/icons/assignment-ind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/assignment-ind.js -------------------------------------------------------------------------------- /js/src/common/icons/attach-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/attach-file.js -------------------------------------------------------------------------------- /js/src/common/icons/attach-money.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/attach-money.js -------------------------------------------------------------------------------- /js/src/common/icons/audiotrack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/audiotrack.js -------------------------------------------------------------------------------- /js/src/common/icons/battery-charging-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/battery-charging-full.js -------------------------------------------------------------------------------- /js/src/common/icons/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/book.js -------------------------------------------------------------------------------- /js/src/common/icons/bookmark-border.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/bookmark-border.js -------------------------------------------------------------------------------- /js/src/common/icons/brightness-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/brightness-2.js -------------------------------------------------------------------------------- /js/src/common/icons/brightness-low.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/brightness-low.js -------------------------------------------------------------------------------- /js/src/common/icons/brush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/brush.js -------------------------------------------------------------------------------- /js/src/common/icons/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/build.js -------------------------------------------------------------------------------- /js/src/common/icons/camera-alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/camera-alt.js -------------------------------------------------------------------------------- /js/src/common/icons/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/camera.js -------------------------------------------------------------------------------- /js/src/common/icons/card-giftcard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/card-giftcard.js -------------------------------------------------------------------------------- /js/src/common/icons/chat-bubble-outline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/chat-bubble-outline.js -------------------------------------------------------------------------------- /js/src/common/icons/check-box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/check-box.js -------------------------------------------------------------------------------- /js/src/common/icons/check-circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/check-circle.js -------------------------------------------------------------------------------- /js/src/common/icons/cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/cloud.js -------------------------------------------------------------------------------- /js/src/common/icons/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/code.js -------------------------------------------------------------------------------- /js/src/common/icons/color-lens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/color-lens.js -------------------------------------------------------------------------------- /js/src/common/icons/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/create.js -------------------------------------------------------------------------------- /js/src/common/icons/credit-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/credit-card.js -------------------------------------------------------------------------------- /js/src/common/icons/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/dashboard.js -------------------------------------------------------------------------------- /js/src/common/icons/description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/description.js -------------------------------------------------------------------------------- /js/src/common/icons/desktop-mac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/desktop-mac.js -------------------------------------------------------------------------------- /js/src/common/icons/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/devices.js -------------------------------------------------------------------------------- /js/src/common/icons/directions-bike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/directions-bike.js -------------------------------------------------------------------------------- /js/src/common/icons/directions-boat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/directions-boat.js -------------------------------------------------------------------------------- /js/src/common/icons/directions-bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/directions-bus.js -------------------------------------------------------------------------------- /js/src/common/icons/directions-car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/directions-car.js -------------------------------------------------------------------------------- /js/src/common/icons/directions-railway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/directions-railway.js -------------------------------------------------------------------------------- /js/src/common/icons/directions-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/directions-run.js -------------------------------------------------------------------------------- /js/src/common/icons/donut-small.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/donut-small.js -------------------------------------------------------------------------------- /js/src/common/icons/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/email.js -------------------------------------------------------------------------------- /js/src/common/icons/explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/explore.js -------------------------------------------------------------------------------- /js/src/common/icons/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/extension.js -------------------------------------------------------------------------------- /js/src/common/icons/face.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/face.js -------------------------------------------------------------------------------- /js/src/common/icons/fastfood.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/fastfood.js -------------------------------------------------------------------------------- /js/src/common/icons/favorite-border.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/favorite-border.js -------------------------------------------------------------------------------- /js/src/common/icons/fingerprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/fingerprint.js -------------------------------------------------------------------------------- /js/src/common/icons/flight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/flight.js -------------------------------------------------------------------------------- /js/src/common/icons/folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/folder.js -------------------------------------------------------------------------------- /js/src/common/icons/font-download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/font-download.js -------------------------------------------------------------------------------- /js/src/common/icons/format-quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/format-quote.js -------------------------------------------------------------------------------- /js/src/common/icons/forum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/forum.js -------------------------------------------------------------------------------- /js/src/common/icons/gamepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/gamepad.js -------------------------------------------------------------------------------- /js/src/common/icons/genesis-custom-blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/genesis-custom-blocks.js -------------------------------------------------------------------------------- /js/src/common/icons/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/group.js -------------------------------------------------------------------------------- /js/src/common/icons/help-outline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/help-outline.js -------------------------------------------------------------------------------- /js/src/common/icons/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/home.js -------------------------------------------------------------------------------- /js/src/common/icons/hotel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/hotel.js -------------------------------------------------------------------------------- /js/src/common/icons/hourglass-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/hourglass-empty.js -------------------------------------------------------------------------------- /js/src/common/icons/inbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/inbox.js -------------------------------------------------------------------------------- /js/src/common/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/index.js -------------------------------------------------------------------------------- /js/src/common/icons/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/info.js -------------------------------------------------------------------------------- /js/src/common/icons/insert-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/insert-chart.js -------------------------------------------------------------------------------- /js/src/common/icons/insert-photo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/insert-photo.js -------------------------------------------------------------------------------- /js/src/common/icons/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/label.js -------------------------------------------------------------------------------- /js/src/common/icons/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/language.js -------------------------------------------------------------------------------- /js/src/common/icons/linear-scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/linear-scale.js -------------------------------------------------------------------------------- /js/src/common/icons/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/link.js -------------------------------------------------------------------------------- /js/src/common/icons/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/list.js -------------------------------------------------------------------------------- /js/src/common/icons/local-activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/local-activity.js -------------------------------------------------------------------------------- /js/src/common/icons/local-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/local-bar.js -------------------------------------------------------------------------------- /js/src/common/icons/local-cafe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/local-cafe.js -------------------------------------------------------------------------------- /js/src/common/icons/local-dining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/local-dining.js -------------------------------------------------------------------------------- /js/src/common/icons/local-florist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/local-florist.js -------------------------------------------------------------------------------- /js/src/common/icons/location-searching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/location-searching.js -------------------------------------------------------------------------------- /js/src/common/icons/lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/lock.js -------------------------------------------------------------------------------- /js/src/common/icons/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/map.js -------------------------------------------------------------------------------- /js/src/common/icons/mic-none.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/mic-none.js -------------------------------------------------------------------------------- /js/src/common/icons/movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/movie.js -------------------------------------------------------------------------------- /js/src/common/icons/note-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/note-add.js -------------------------------------------------------------------------------- /js/src/common/icons/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/notes.js -------------------------------------------------------------------------------- /js/src/common/icons/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/notifications.js -------------------------------------------------------------------------------- /js/src/common/icons/panorama-horizontal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/panorama-horizontal.js -------------------------------------------------------------------------------- /js/src/common/icons/perm-identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/perm-identity.js -------------------------------------------------------------------------------- /js/src/common/icons/pets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/pets.js -------------------------------------------------------------------------------- /js/src/common/icons/pie-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/pie-chart.js -------------------------------------------------------------------------------- /js/src/common/icons/place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/place.js -------------------------------------------------------------------------------- /js/src/common/icons/play-circle-outline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/play-circle-outline.js -------------------------------------------------------------------------------- /js/src/common/icons/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/public.js -------------------------------------------------------------------------------- /js/src/common/icons/radio-button-checked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/radio-button-checked.js -------------------------------------------------------------------------------- /js/src/common/icons/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/save.js -------------------------------------------------------------------------------- /js/src/common/icons/scatter-plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/scatter-plot.js -------------------------------------------------------------------------------- /js/src/common/icons/schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/schedule.js -------------------------------------------------------------------------------- /js/src/common/icons/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/search.js -------------------------------------------------------------------------------- /js/src/common/icons/sentiment-satisfied-alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/sentiment-satisfied-alt.js -------------------------------------------------------------------------------- /js/src/common/icons/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/settings.js -------------------------------------------------------------------------------- /js/src/common/icons/shopping-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/shopping-cart.js -------------------------------------------------------------------------------- /js/src/common/icons/space-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/space-bar.js -------------------------------------------------------------------------------- /js/src/common/icons/star-border.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/star-border.js -------------------------------------------------------------------------------- /js/src/common/icons/text-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/text-fields.js -------------------------------------------------------------------------------- /js/src/common/icons/theaters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/theaters.js -------------------------------------------------------------------------------- /js/src/common/icons/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/title.js -------------------------------------------------------------------------------- /js/src/common/icons/today.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/today.js -------------------------------------------------------------------------------- /js/src/common/icons/toggle-on.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/toggle-on.js -------------------------------------------------------------------------------- /js/src/common/icons/toys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/toys.js -------------------------------------------------------------------------------- /js/src/common/icons/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/translate.js -------------------------------------------------------------------------------- /js/src/common/icons/tv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/tv.js -------------------------------------------------------------------------------- /js/src/common/icons/videogame-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/videogame-asset.js -------------------------------------------------------------------------------- /js/src/common/icons/view-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/view-carousel.js -------------------------------------------------------------------------------- /js/src/common/icons/view-column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/view-column.js -------------------------------------------------------------------------------- /js/src/common/icons/view-day.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/view-day.js -------------------------------------------------------------------------------- /js/src/common/icons/view-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/view-module.js -------------------------------------------------------------------------------- /js/src/common/icons/view-quilt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/view-quilt.js -------------------------------------------------------------------------------- /js/src/common/icons/vpn-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/vpn-key.js -------------------------------------------------------------------------------- /js/src/common/icons/wallpaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/wallpaper.js -------------------------------------------------------------------------------- /js/src/common/icons/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/watch.js -------------------------------------------------------------------------------- /js/src/common/icons/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/waves.js -------------------------------------------------------------------------------- /js/src/common/icons/whatshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/whatshot.js -------------------------------------------------------------------------------- /js/src/common/icons/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/widgets.js -------------------------------------------------------------------------------- /js/src/common/icons/work-outline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/common/icons/work-outline.js -------------------------------------------------------------------------------- /js/src/edit-block/components/block-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/block-panel.js -------------------------------------------------------------------------------- /js/src/edit-block/components/bottom-notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/bottom-notice.js -------------------------------------------------------------------------------- /js/src/edit-block/components/browser-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/browser-url.js -------------------------------------------------------------------------------- /js/src/edit-block/components/category-section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/category-section.js -------------------------------------------------------------------------------- /js/src/edit-block/components/clipboard-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/clipboard-copy.js -------------------------------------------------------------------------------- /js/src/edit-block/components/display-modal-section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/display-modal-section.js -------------------------------------------------------------------------------- /js/src/edit-block/components/editor-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/editor-preview.js -------------------------------------------------------------------------------- /js/src/edit-block/components/editor-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/editor-provider.js -------------------------------------------------------------------------------- /js/src/edit-block/components/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/editor.js -------------------------------------------------------------------------------- /js/src/edit-block/components/field-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/field-panel.js -------------------------------------------------------------------------------- /js/src/edit-block/components/field-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/field-settings.js -------------------------------------------------------------------------------- /js/src/edit-block/components/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/field.js -------------------------------------------------------------------------------- /js/src/edit-block/components/fields-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/fields-grid.js -------------------------------------------------------------------------------- /js/src/edit-block/components/front-end-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/front-end-preview.js -------------------------------------------------------------------------------- /js/src/edit-block/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/header.js -------------------------------------------------------------------------------- /js/src/edit-block/components/icon-section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/icon-section.js -------------------------------------------------------------------------------- /js/src/edit-block/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/index.js -------------------------------------------------------------------------------- /js/src/edit-block/components/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/input.js -------------------------------------------------------------------------------- /js/src/edit-block/components/keywords-section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/keywords-section.js -------------------------------------------------------------------------------- /js/src/edit-block/components/location-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/location-buttons.js -------------------------------------------------------------------------------- /js/src/edit-block/components/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/main.js -------------------------------------------------------------------------------- /js/src/edit-block/components/post-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/post-title.js -------------------------------------------------------------------------------- /js/src/edit-block/components/post-types-section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/post-types-section.js -------------------------------------------------------------------------------- /js/src/edit-block/components/preview-notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/preview-notice.js -------------------------------------------------------------------------------- /js/src/edit-block/components/question-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/question-icon.js -------------------------------------------------------------------------------- /js/src/edit-block/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/select.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/checkbox.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/email.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/index.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/location.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/new-line-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/new-line-format.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/number-non-negative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/number-non-negative.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/number.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/text.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/textarea-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/textarea-array.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/textarea-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/textarea-default.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/textarea.js -------------------------------------------------------------------------------- /js/src/edit-block/components/settings/width.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/settings/width.js -------------------------------------------------------------------------------- /js/src/edit-block/components/side.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/side.js -------------------------------------------------------------------------------- /js/src/edit-block/components/slug-section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/slug-section.js -------------------------------------------------------------------------------- /js/src/edit-block/components/template-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/template-buttons.js -------------------------------------------------------------------------------- /js/src/edit-block/components/template-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/template-editor.js -------------------------------------------------------------------------------- /js/src/edit-block/components/template-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/template-file.js -------------------------------------------------------------------------------- /js/src/edit-block/components/top-notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/components/top-notice.js -------------------------------------------------------------------------------- /js/src/edit-block/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/constants/index.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/convertSettingsArrayToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/convertSettingsArrayToString.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/convertSettingsStringToArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/convertSettingsStringToArray.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/convertToSlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/convertToSlug.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/getBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/getBlock.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/getBlockNameWithNameSpace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/getBlockNameWithNameSpace.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/getDefaultBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/getDefaultBlock.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/getFieldIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/getFieldIcon.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/getNewFieldNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/getNewFieldNumber.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/getOtherLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/getOtherLocation.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/getSettingsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/getSettingsComponent.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/getSettingsDefaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/getSettingsDefaults.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/getTemplateParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/getTemplateParts.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/getWidthClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/getWidthClass.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/hasRepeaterField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/hasRepeaterField.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/index.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/initializeEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/initializeEditor.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/setCorrectOrderForFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/setCorrectOrderForFields.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/convertToArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/convertToArray.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/convertToSlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/convertToSlug.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/convertToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/convertToString.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/getBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/getBlock.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/getBlockNameWithNameSpace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/getBlockNameWithNameSpace.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/getDefaultBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/getDefaultBlock.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/getFieldIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/getFieldIcon.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/getNewFieldNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/getNewFieldNumber.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/getOtherLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/getOtherLocation.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/getSettingsDefaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/getSettingsDefaults.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/getTemplateParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/getTemplateParts.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/getWidthClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/getWidthClass.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/hasRepeaterField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/hasRepeaterField.js -------------------------------------------------------------------------------- /js/src/edit-block/helpers/test/setCorrectOrderForFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/helpers/test/setCorrectOrderForFields.js -------------------------------------------------------------------------------- /js/src/edit-block/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/hooks/index.js -------------------------------------------------------------------------------- /js/src/edit-block/hooks/useBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/hooks/useBlock.js -------------------------------------------------------------------------------- /js/src/edit-block/hooks/useCopyToClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/hooks/useCopyToClipboard.js -------------------------------------------------------------------------------- /js/src/edit-block/hooks/useField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/hooks/useField.js -------------------------------------------------------------------------------- /js/src/edit-block/hooks/usePostTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/hooks/usePostTypes.js -------------------------------------------------------------------------------- /js/src/edit-block/hooks/useTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/hooks/useTemplate.js -------------------------------------------------------------------------------- /js/src/edit-block/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/icons/index.js -------------------------------------------------------------------------------- /js/src/edit-block/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/js/src/edit-block/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/package.json -------------------------------------------------------------------------------- /php/Admin/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Admin/Admin.php -------------------------------------------------------------------------------- /php/Admin/Documentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Admin/Documentation.php -------------------------------------------------------------------------------- /php/Admin/EditBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Admin/EditBlock.php -------------------------------------------------------------------------------- /php/Admin/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Admin/Import.php -------------------------------------------------------------------------------- /php/Admin/Onboarding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Admin/Onboarding.php -------------------------------------------------------------------------------- /php/Admin/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Admin/Settings.php -------------------------------------------------------------------------------- /php/Admin/Upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Admin/Upgrade.php -------------------------------------------------------------------------------- /php/BlockApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/BlockApi.php -------------------------------------------------------------------------------- /php/Blocks/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Block.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Checkbox.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Color.php -------------------------------------------------------------------------------- /php/Blocks/Controls/ControlAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/ControlAbstract.php -------------------------------------------------------------------------------- /php/Blocks/Controls/ControlSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/ControlSetting.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Email.php -------------------------------------------------------------------------------- /php/Blocks/Controls/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/File.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Image.php -------------------------------------------------------------------------------- /php/Blocks/Controls/InnerBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/InnerBlocks.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Multiselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Multiselect.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Number.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Radio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Radio.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Range.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Range.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Select.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Text.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Textarea.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Toggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Toggle.php -------------------------------------------------------------------------------- /php/Blocks/Controls/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Controls/Url.php -------------------------------------------------------------------------------- /php/Blocks/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Field.php -------------------------------------------------------------------------------- /php/Blocks/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/Loader.php -------------------------------------------------------------------------------- /php/Blocks/TemplateEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Blocks/TemplateEditor.php -------------------------------------------------------------------------------- /php/ComponentAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/ComponentAbstract.php -------------------------------------------------------------------------------- /php/ComponentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/ComponentInterface.php -------------------------------------------------------------------------------- /php/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Deprecated.php -------------------------------------------------------------------------------- /php/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Helpers.php -------------------------------------------------------------------------------- /php/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Plugin.php -------------------------------------------------------------------------------- /php/PluginAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/PluginAbstract.php -------------------------------------------------------------------------------- /php/PluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/PluginInterface.php -------------------------------------------------------------------------------- /php/PluginUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/PluginUpdater.php -------------------------------------------------------------------------------- /php/PostTypes/BlockPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/PostTypes/BlockPost.php -------------------------------------------------------------------------------- /php/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Util.php -------------------------------------------------------------------------------- /php/Views/EditorHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Views/EditorHeader.php -------------------------------------------------------------------------------- /php/Views/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Views/Settings.php -------------------------------------------------------------------------------- /php/Views/Upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/php/Views/Upgrade.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/postcss.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/e2e/assets/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/e2e/assets/example.pdf -------------------------------------------------------------------------------- /tests/e2e/assets/trombone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/e2e/assets/trombone.jpg -------------------------------------------------------------------------------- /tests/e2e/config/setup-test-framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/e2e/config/setup-test-framework.js -------------------------------------------------------------------------------- /tests/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/e2e/jest.config.js -------------------------------------------------------------------------------- /tests/e2e/plugins/testing-blocks/blocks/block-testing-example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/e2e/plugins/testing-blocks/blocks/block-testing-example.php -------------------------------------------------------------------------------- /tests/e2e/plugins/testing-blocks/testing-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/e2e/plugins/testing-blocks/testing-blocks.php -------------------------------------------------------------------------------- /tests/e2e/specs/all-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/e2e/specs/all-fields.js -------------------------------------------------------------------------------- /tests/e2e/specs/api-blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/e2e/specs/api-blocks.js -------------------------------------------------------------------------------- /tests/e2e/specs/template-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/e2e/specs/template-editor.js -------------------------------------------------------------------------------- /tests/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/install-wp-tests.sh -------------------------------------------------------------------------------- /tests/js/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/js/jest.config.js -------------------------------------------------------------------------------- /tests/patchwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/patchwork.json -------------------------------------------------------------------------------- /tests/php/Integration/TestPostCapabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Integration/TestPostCapabilities.php -------------------------------------------------------------------------------- /tests/php/Unit/Admin/TestAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Admin/TestAdmin.php -------------------------------------------------------------------------------- /tests/php/Unit/Admin/TestDocumentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Admin/TestDocumentation.php -------------------------------------------------------------------------------- /tests/php/Unit/Admin/TestEditBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Admin/TestEditBlock.php -------------------------------------------------------------------------------- /tests/php/Unit/Admin/TestImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Admin/TestImport.php -------------------------------------------------------------------------------- /tests/php/Unit/Admin/TestOnboarding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Admin/TestOnboarding.php -------------------------------------------------------------------------------- /tests/php/Unit/Admin/TestSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Admin/TestSettings.php -------------------------------------------------------------------------------- /tests/php/Unit/Admin/TestUpgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Admin/TestUpgrade.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestCheckbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestCheckbox.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestColor.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestControlSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestControlSetting.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestEmail.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestFile.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestImage.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestInnerBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestInnerBlocks.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestMultiselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestMultiselect.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestNumber.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestRadio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestRadio.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestRange.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestSelect.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestText.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestTextarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestTextarea.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestToggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestToggle.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/Controls/TestUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/Controls/TestUrl.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/TestBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/TestBlock.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/TestField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/TestField.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/TestLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/TestLoader.php -------------------------------------------------------------------------------- /tests/php/Unit/Blocks/TestTemplateEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Blocks/TestTemplateEditor.php -------------------------------------------------------------------------------- /tests/php/Unit/Fixtures/MockImportInvalidFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Fixtures/MockImportInvalidFormat.txt -------------------------------------------------------------------------------- /tests/php/Unit/Fixtures/MockImportValidFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Fixtures/MockImportValidFormat.txt -------------------------------------------------------------------------------- /tests/php/Unit/Helpers/AbstractTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Helpers/AbstractTemplate.php -------------------------------------------------------------------------------- /tests/php/Unit/Helpers/FilesystemStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Helpers/FilesystemStub.php -------------------------------------------------------------------------------- /tests/php/Unit/Helpers/TestingHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/Helpers/TestingHelper.php -------------------------------------------------------------------------------- /tests/php/Unit/PostTypes/TestBlockPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/PostTypes/TestBlockPost.php -------------------------------------------------------------------------------- /tests/php/Unit/TestBlockApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/TestBlockApi.php -------------------------------------------------------------------------------- /tests/php/Unit/TestGenesisCustomBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/TestGenesisCustomBlocks.php -------------------------------------------------------------------------------- /tests/php/Unit/TestHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/TestHelpers.php -------------------------------------------------------------------------------- /tests/php/Unit/TestPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/TestPlugin.php -------------------------------------------------------------------------------- /tests/php/Unit/TestUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/php/Unit/TestUtil.php -------------------------------------------------------------------------------- /tests/wp-tests-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tests/wp-tests-config.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/studiopress/genesis-custom-blocks/HEAD/webpack.config.js --------------------------------------------------------------------------------