├── .cache └── .gitkeep ├── .distignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml ├── setup-node │ └── action.yml └── workflows │ ├── push-asset-readme-update.yml │ ├── push-deploy.yml │ ├── tests-e2e.yml │ └── tests.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .phpunit.result.cache ├── .prettierignore ├── .prettierrc.js ├── .stylelintignore ├── .stylelintrc.js ├── .vscode ├── extensions.json └── settings.json ├── .wordpress-org ├── banner-1544x500.png ├── banner-772x250.png ├── icon-128x128.png ├── icon-256x256.png ├── screenshot-1.png ├── screenshot-10.png ├── screenshot-11.png ├── screenshot-12.png ├── screenshot-13.png ├── screenshot-14.png ├── screenshot-15.png ├── screenshot-16.png ├── screenshot-17.png ├── screenshot-18.png ├── screenshot-19.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── screenshot-6.png ├── screenshot-7.png ├── screenshot-8.png └── screenshot-9.png ├── .wp-env.json ├── AGENTS.md ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── assets ├── admin │ ├── css │ │ ├── admin.scss │ │ └── style.scss │ └── js │ │ ├── ask-review-notice.js │ │ └── reusable-widget.js ├── css │ └── fallback-classic-theme.css ├── images │ └── admin-icon.svg ├── js │ ├── event-fallbacks.js │ ├── helper.js │ ├── main.js │ └── utils │ │ ├── get-jquery.js │ │ ├── instance.js │ │ └── transition-callback.js └── vendor │ ├── gist-simple │ └── dist │ │ ├── gist-simple.css │ │ ├── gist-simple.min.js │ │ └── gist-simple.min.js.map │ ├── gmaps │ ├── gmaps.min.js │ └── gmaps.min.js.map │ ├── ivent │ └── dist │ │ ├── ivent.min.js │ │ └── ivent.min.js.map │ ├── jarallax │ └── dist │ │ ├── jarallax-video.min.js │ │ ├── jarallax-video.min.js.map │ │ ├── jarallax.css │ │ ├── jarallax.min.js │ │ └── jarallax.min.js.map │ ├── lottie-player │ └── dist │ │ ├── lottie-player.js │ │ └── lottie-player.js.map │ ├── luxon │ └── build │ │ └── global │ │ ├── luxon.min.js │ │ └── luxon.min.js.map │ ├── motion │ └── dist │ │ └── motion.min.js │ ├── readme.md │ ├── swiper-5-4-5 │ ├── swiper.min.css │ ├── swiper.min.js │ └── swiper.min.js.map │ └── swiper │ ├── swiper-bundle.min.css │ ├── swiper-bundle.min.js │ └── swiper-bundle.min.js.map ├── class-ghost-kit.php ├── classes ├── 3rd │ ├── class-astra.php │ ├── class-blocksy.php │ ├── class-page-builder-framework.php │ └── class-rank-math.php ├── class-ask-review.php ├── class-assets.php ├── class-breakpoints-background.php ├── class-breakpoints.php ├── class-deactivate-duplicate-plugin.php ├── class-fonts.php ├── class-icons.php ├── class-migration.php ├── class-parse-blocks.php ├── class-rest.php ├── class-reusable-widget.php ├── class-scss-compiler.php ├── class-scss-replace-modules.php ├── class-shapes.php ├── class-templates.php ├── class-typography.php └── google-fonts │ └── webfonts.json ├── composer-libraries ├── composer.json ├── composer.lock └── vendor │ ├── autoload.php │ ├── bin │ └── pscss │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ ├── deliciousbrains │ └── wp-background-processing │ │ ├── .circleci │ │ └── config.yml │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── bin │ │ └── install-wp-tests.sh │ │ ├── classes │ │ ├── wp-async-request.php │ │ └── wp-background-process.php │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── license.txt │ │ ├── phpunit.xml │ │ ├── tests │ │ ├── Test_Setup.php │ │ ├── Test_WP_Background_Process.php │ │ └── bootstrap.php │ │ └── wp-background-processing.php │ ├── moodlehq │ └── rtlcss-php │ │ ├── .github │ │ └── workflows │ │ │ └── ci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── phpunit.xml │ │ ├── src │ │ └── MoodleHQ │ │ │ └── RTLCSS │ │ │ └── RTLCSS.php │ │ └── tests │ │ ├── MoodleHQ │ │ └── RTLCSS │ │ │ └── RTLCSSTest.php │ │ └── bootstrap.php │ ├── sabberworm │ └── php-css-parser │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Doxyfile │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── lib │ │ └── Sabberworm │ │ │ └── CSS │ │ │ ├── CSSList │ │ │ ├── AtRuleBlockList.php │ │ │ ├── CSSBlockList.php │ │ │ ├── CSSList.php │ │ │ ├── Document.php │ │ │ └── KeyFrame.php │ │ │ ├── Comment │ │ │ ├── Comment.php │ │ │ └── Commentable.php │ │ │ ├── OutputFormat.php │ │ │ ├── Parser.php │ │ │ ├── Parsing │ │ │ ├── OutputException.php │ │ │ ├── SourceException.php │ │ │ └── UnexpectedTokenException.php │ │ │ ├── Property │ │ │ ├── AtRule.php │ │ │ ├── CSSNamespace.php │ │ │ ├── Charset.php │ │ │ ├── Import.php │ │ │ └── Selector.php │ │ │ ├── Renderable.php │ │ │ ├── Rule │ │ │ └── Rule.php │ │ │ ├── RuleSet │ │ │ ├── AtRuleSet.php │ │ │ ├── DeclarationBlock.php │ │ │ └── RuleSet.php │ │ │ ├── Settings.php │ │ │ └── Value │ │ │ ├── CSSFunction.php │ │ │ ├── CSSString.php │ │ │ ├── Color.php │ │ │ ├── PrimitiveValue.php │ │ │ ├── RuleValueList.php │ │ │ ├── Size.php │ │ │ ├── URL.php │ │ │ ├── Value.php │ │ │ └── ValueList.php │ │ ├── phpunit.xml │ │ └── tests │ │ ├── Sabberworm │ │ └── CSS │ │ │ ├── CSSList │ │ │ ├── AtRuleBlockListTest.php │ │ │ └── DocumentTest.php │ │ │ ├── OutputFormatTest.php │ │ │ ├── ParserTest.php │ │ │ └── RuleSet │ │ │ ├── DeclarationBlockTest.php │ │ │ └── LenientParsingTest.php │ │ ├── bootstrap.php │ │ ├── files │ │ ├── -charset-after-rule.css │ │ ├── -charset-in-block.css │ │ ├── -empty.css │ │ ├── -end-token-2.css │ │ ├── -end-token.css │ │ ├── -fault-tolerance.css │ │ ├── -tobedone.css │ │ ├── 1readme.css │ │ ├── 2readme.css │ │ ├── atrules.css │ │ ├── case-insensitivity.css │ │ ├── colortest.css │ │ ├── comments.css │ │ ├── create-shorthands.css │ │ ├── docuwiki.css │ │ ├── expand-shorthands.css │ │ ├── functions.css │ │ ├── ie-hacks.css │ │ ├── ie.css │ │ ├── important.css │ │ ├── inner-color.css │ │ ├── line-numbers.css │ │ ├── namespaces.css │ │ ├── nested.css │ │ ├── slashed.css │ │ ├── specificity.css │ │ ├── unicode.css │ │ ├── url.css │ │ ├── values.css │ │ ├── webkit.css │ │ └── whitespace.css │ │ ├── phpunit.xml │ │ └── quickdump.php │ └── scssphp │ └── scssphp │ ├── LICENSE.md │ ├── README.md │ ├── bin │ └── pscss │ ├── composer.json │ ├── scss.inc.php │ └── src │ ├── Base │ └── Range.php │ ├── Block.php │ ├── Block │ ├── AtRootBlock.php │ ├── CallableBlock.php │ ├── ContentBlock.php │ ├── DirectiveBlock.php │ ├── EachBlock.php │ ├── ElseBlock.php │ ├── ElseifBlock.php │ ├── ForBlock.php │ ├── IfBlock.php │ ├── MediaBlock.php │ ├── NestedPropertyBlock.php │ └── WhileBlock.php │ ├── Cache.php │ ├── Colors.php │ ├── CompilationResult.php │ ├── Compiler.php │ ├── Compiler │ ├── CachedResult.php │ └── Environment.php │ ├── Exception │ ├── CompilerException.php │ ├── ParserException.php │ ├── RangeException.php │ ├── SassException.php │ ├── SassScriptException.php │ └── ServerException.php │ ├── Formatter.php │ ├── Formatter │ ├── Compact.php │ ├── Compressed.php │ ├── Crunched.php │ ├── Debug.php │ ├── Expanded.php │ ├── Nested.php │ └── OutputBlock.php │ ├── Logger │ ├── LoggerInterface.php │ ├── QuietLogger.php │ └── StreamLogger.php │ ├── Node.php │ ├── Node │ └── Number.php │ ├── OutputStyle.php │ ├── Parser.php │ ├── SourceMap │ ├── Base64.php │ ├── Base64VLQ.php │ └── SourceMapGenerator.php │ ├── Type.php │ ├── Util.php │ ├── Util │ └── Path.php │ ├── ValueConverter.php │ ├── Version.php │ └── Warn.php ├── composer.json ├── composer.lock ├── gulpfile.js ├── gutenberg ├── _css-variables.scss ├── _variables.scss ├── blocks │ ├── accordion-item │ │ ├── block.json │ │ ├── deprecated.js │ │ ├── edit.js │ │ ├── index.js │ │ └── save.js │ ├── accordion │ │ ├── block.json │ │ ├── edit.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ ├── alert │ │ ├── block.json │ │ ├── edit.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ ├── button-single │ │ ├── block.json │ │ ├── deprecated.js │ │ ├── edit.js │ │ ├── index.js │ │ └── save.js │ ├── button │ │ ├── block.json │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ ├── carousel-slide │ │ ├── block.json │ │ ├── edit.js │ │ ├── index.js │ │ └── save.js │ ├── carousel │ │ ├── block.json │ │ ├── edit.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── changelog │ │ ├── block.json │ │ ├── edit.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── countdown │ │ ├── api.js │ │ ├── block.json │ │ ├── constants.js │ │ ├── edit.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── counter-box │ │ ├── block.json │ │ ├── deprecated.js │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ ├── divider │ │ ├── block.json │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ ├── form │ │ ├── block.json │ │ ├── block.php │ │ ├── edit.js │ │ ├── field-attributes │ │ │ ├── index.js │ │ │ └── index.php │ │ ├── field-description │ │ │ ├── index.js │ │ │ └── index.php │ │ ├── field-label │ │ │ ├── index.js │ │ │ └── index.php │ │ ├── field-options │ │ │ └── index.js │ │ ├── fields │ │ │ ├── checkbox │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── date │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── email │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── hidden │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── name │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── number │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── phone │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── radio │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── select │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── submit │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── text │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ ├── textarea │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ │ └── url │ │ │ │ ├── block.json │ │ │ │ ├── block.php │ │ │ │ ├── edit.js │ │ │ │ ├── index.js │ │ │ │ └── save.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── mail-template │ │ │ └── index.php │ │ ├── recaptcha │ │ │ └── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── gif │ │ ├── block.json │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ └── style.scss │ ├── gist │ │ ├── block.json │ │ ├── edit.js │ │ ├── file-select.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ ├── google-maps │ │ ├── block.json │ │ ├── edit.js │ │ ├── frontend.js │ │ ├── gmaps-api.js │ │ ├── icons │ │ │ ├── deprecated-marker-2.svg │ │ │ ├── deprecated-marker.svg │ │ │ ├── fullheight-white.svg │ │ │ ├── fullheight.svg │ │ │ └── marker.svg │ │ ├── index.js │ │ ├── map-block.js │ │ ├── map-styles │ │ │ ├── index.js │ │ │ ├── style-bright.png │ │ │ ├── style-custom.png │ │ │ ├── style-dark.png │ │ │ ├── style-default.png │ │ │ ├── style-light.png │ │ │ └── style-pale-dawn.png │ │ ├── save.js │ │ ├── search-box.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── grid-column │ │ ├── block.json │ │ ├── edit.js │ │ ├── get-col-class.js │ │ ├── index.js │ │ └── save.js │ ├── grid │ │ ├── awb-fallback.js │ │ ├── block.json │ │ ├── edit.js │ │ ├── get-background-styles.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ ├── icon-box │ │ ├── block.json │ │ ├── deprecated.js │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ ├── icon │ │ ├── block.json │ │ ├── block.php │ │ ├── edit.js │ │ ├── edit │ │ │ ├── block-controls.js │ │ │ ├── color-controls.js │ │ │ ├── inspector-controls.js │ │ │ └── url-picker.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── image-compare │ │ ├── block.json │ │ ├── edit.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── _base.scss │ │ │ ├── _divider.scss │ │ │ ├── _labels.scss │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── index.js │ ├── instagram │ │ ├── block.json │ │ ├── block.php │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── lottie │ │ ├── block.json │ │ ├── edit.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── preview-lottie.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── markdown │ │ ├── block.json │ │ ├── edit.js │ │ ├── index.js │ │ ├── render.js │ │ └── save.js │ ├── pricing-table-item │ │ ├── block.json │ │ ├── edit.js │ │ ├── index.js │ │ └── save.js │ ├── pricing-table │ │ ├── block.json │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── progress │ │ ├── block.json │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── shape-divider │ │ ├── block.json │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── table-of-contents │ │ ├── block.json │ │ ├── block.php │ │ ├── edit.js │ │ ├── frontend.js │ │ ├── get-all-headings.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── tabs-tab │ │ ├── block.json │ │ ├── deprecated.js │ │ ├── edit.js │ │ ├── index.js │ │ └── save.js │ ├── tabs │ │ ├── block.json │ │ ├── deprecated.js │ │ ├── edit.js │ │ ├── edit │ │ │ ├── block-controls.js │ │ │ └── inspector-controls.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── pills.scss │ │ │ ├── radio.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ ├── testimonial │ │ ├── block.json │ │ ├── deprecated.js │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ ├── twitter │ │ ├── block.json │ │ ├── block.php │ │ ├── edit.js │ │ ├── index.js │ │ ├── save.js │ │ └── styles │ │ │ ├── editor.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ ├── video │ │ ├── block.json │ │ ├── edit.js │ │ ├── edit │ │ │ ├── background-color.js │ │ │ └── inspector-controls.js │ │ ├── frontend.js │ │ ├── index.js │ │ ├── save.js │ │ ├── styles │ │ │ ├── editor.scss │ │ │ ├── icon-only.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ └── transforms.js │ └── widgetized-area │ │ ├── block.json │ │ ├── block.php │ │ ├── edit.js │ │ ├── index.js │ │ └── save.js ├── bootstrap │ ├── breakpoints.scss │ ├── functions.scss │ ├── grid.scss │ └── variables.scss ├── components │ ├── active-indicator │ │ ├── editor.scss │ │ └── index.js │ ├── apply-filters │ │ └── index.js │ ├── button-clear-media │ │ └── index.js │ ├── code-editor │ │ ├── editor.scss │ │ └── index.js │ ├── color-indicator │ │ ├── editor.scss │ │ └── index.js │ ├── color-palette │ │ └── index.js │ ├── color-picker │ │ ├── editor.scss │ │ └── index.js │ ├── date-time-picker │ │ ├── editor.scss │ │ └── index.js │ ├── dropdown-picker │ │ ├── editor.scss │ │ └── index.js │ ├── editor-styles │ │ └── index.js │ ├── element-state-toggle │ │ ├── editor.scss │ │ └── index.js │ ├── focal-point-picker │ │ └── index.js │ ├── gap-settings │ │ ├── editor.scss │ │ └── index.js │ ├── google-fonts │ │ ├── index.js │ │ └── style.scss │ ├── icon-picker │ │ ├── editor.scss │ │ └── index.js │ ├── image-picker │ │ ├── editor.scss │ │ └── index.js │ ├── important-toggle │ │ ├── editor.scss │ │ └── index.js │ ├── input-drag │ │ ├── editor.scss │ │ └── index.js │ ├── input-group │ │ ├── editor.scss │ │ └── index.js │ ├── media-size-selector │ │ └── index.js │ ├── modal │ │ ├── editor.scss │ │ └── index.js │ ├── notice │ │ ├── editor.scss │ │ └── index.js │ ├── pro-note │ │ ├── editor.scss │ │ └── index.js │ ├── range-control │ │ ├── editor.scss │ │ └── index.js │ ├── remove-button │ │ ├── editor.scss │ │ └── index.js │ ├── responsive-tab-panel │ │ ├── editor.scss │ │ └── index.js │ ├── responsive-toggle │ │ ├── editor.scss │ │ └── index.js │ ├── select │ │ ├── editor.scss │ │ └── index.js │ ├── toggle-group │ │ ├── editor.scss │ │ └── index.js │ ├── transition-easing-controls │ │ ├── default.js │ │ ├── index.js │ │ └── presets.js │ ├── transition-presets-control │ │ ├── index.js │ │ └── presets.js │ ├── transition-preview │ │ ├── editor.scss │ │ └── index.js │ ├── transition-selector │ │ ├── editor.scss │ │ └── index.js │ ├── transition-spring-controls │ │ ├── default.js │ │ ├── index.js │ │ └── presets.js │ ├── typography │ │ ├── editor.scss │ │ └── index.js │ └── url-picker │ │ ├── editor.scss │ │ └── index.js ├── disable-blocks │ └── index.js ├── editor.scss ├── extend │ ├── attributes │ │ ├── index.js │ │ └── index.php │ ├── block-actions-copy-paste │ │ ├── editor.scss │ │ ├── index.js │ │ └── use-paste-extensions.js │ ├── constants.js │ ├── custom-css │ │ ├── clipPath │ │ │ ├── index.js │ │ │ └── presets.js │ │ ├── cursor │ │ │ └── index.js │ │ ├── custom │ │ │ └── index.js │ │ ├── editor.scss │ │ ├── index.js │ │ ├── index.php │ │ ├── opacity │ │ │ └── index.js │ │ ├── overflow │ │ │ └── index.js │ │ ├── pro-transition │ │ │ └── index.js │ │ └── userSelect │ │ │ └── index.js │ ├── deprecated │ │ ├── custom-css │ │ │ └── index.php │ │ ├── editor.scss │ │ ├── index.js │ │ ├── index.php │ │ ├── scroll-reveal │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ ├── index.php │ │ │ └── parse-sr-config.js │ │ └── styles │ │ │ ├── index.js │ │ │ └── index.php │ ├── display │ │ ├── editor.scss │ │ ├── index.js │ │ ├── index.php │ │ ├── screenSize │ │ │ └── index.js │ │ └── style.scss │ ├── effects │ │ ├── editor.scss │ │ ├── frontend.js │ │ ├── index.js │ │ ├── index.php │ │ ├── pro-effects │ │ │ └── index.js │ │ └── reveal │ │ │ ├── defaults.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ └── presets.js │ ├── frame │ │ ├── border │ │ │ └── index.js │ │ ├── borderRadius │ │ │ └── index.js │ │ ├── editor.scss │ │ ├── index.js │ │ ├── index.php │ │ └── shadow │ │ │ └── index.js │ ├── index.js │ ├── index.php │ ├── position │ │ ├── distance │ │ │ └── index.js │ │ ├── editor.scss │ │ ├── height │ │ │ └── index.js │ │ ├── index.js │ │ ├── index.php │ │ ├── minMaxHeight │ │ │ └── index.js │ │ ├── minMaxWidth │ │ │ └── index.js │ │ ├── position │ │ │ └── index.js │ │ ├── width │ │ │ └── index.js │ │ └── zIndex │ │ │ └── index.js │ ├── spacings │ │ ├── editor.scss │ │ ├── index.js │ │ ├── index.php │ │ ├── margin │ │ │ └── index.js │ │ └── padding │ │ │ └── index.js │ ├── styles │ │ ├── get-styles.js │ │ ├── index.js │ │ └── index.php │ ├── toc-headings │ │ └── index.js │ ├── toolbar-templates │ │ ├── editor.scss │ │ └── index.js │ └── transform │ │ ├── editor.scss │ │ ├── index.js │ │ ├── index.php │ │ ├── pro-transforms │ │ └── index.js │ │ └── style.scss ├── formats │ ├── badge │ │ ├── badge-popover.js │ │ ├── editor.scss │ │ ├── index.js │ │ ├── style.scss │ │ └── variables.scss │ ├── deprecated-mark │ │ └── index.js │ ├── index.js │ ├── lorem-ipsum │ │ ├── get-lorem.js │ │ ├── index.js │ │ └── latin.json │ └── uppercase │ │ ├── index.js │ │ └── style.scss ├── hooks │ ├── use-responsive.js │ └── use-styles.js ├── icons │ ├── block-accordion-collapse.svg │ ├── block-accordion-item.svg │ ├── block-accordion.svg │ ├── block-alert.svg │ ├── block-button.svg │ ├── block-buttons.svg │ ├── block-carousel-slide.svg │ ├── block-carousel.svg │ ├── block-changelog.svg │ ├── block-countdown.svg │ ├── block-counter-box.svg │ ├── block-divider.svg │ ├── block-form-field-checkbox.svg │ ├── block-form-field-date.svg │ ├── block-form-field-email.svg │ ├── block-form-field-hidden.svg │ ├── block-form-field-name.svg │ ├── block-form-field-number.svg │ ├── block-form-field-phone.svg │ ├── block-form-field-radio.svg │ ├── block-form-field-select.svg │ ├── block-form-field-text.svg │ ├── block-form-field-textarea.svg │ ├── block-form-field-url.svg │ ├── block-form.svg │ ├── block-gif.svg │ ├── block-gist.svg │ ├── block-google-maps.svg │ ├── block-grid-column.svg │ ├── block-grid.svg │ ├── block-icon-box.svg │ ├── block-icon.svg │ ├── block-image-compare.svg │ ├── block-instagram.svg │ ├── block-lottie.svg │ ├── block-markdown.svg │ ├── block-pricing.svg │ ├── block-progress.svg │ ├── block-shape-divider.svg │ ├── block-tab.svg │ ├── block-table-of-contents.svg │ ├── block-tabs.svg │ ├── block-testimonial.svg │ ├── block-twitter.svg │ ├── block-video.svg │ ├── block-widgetized-area.svg │ ├── border-dashed.svg │ ├── border-dotted.svg │ ├── border-double.svg │ ├── border-solid.svg │ ├── extension-custom-css.svg │ ├── extension-display.svg │ ├── extension-frame.svg │ ├── extension-position.svg │ ├── extension-spacings.svg │ ├── extension-sr.svg │ ├── extension-transform.svg │ ├── ghostkit-logo.svg │ ├── ghostkit-text-logo.svg │ ├── icon-arrow-down.svg │ ├── icon-arrow-left.svg │ ├── icon-arrow-right.svg │ ├── icon-arrow-up.svg │ ├── icon-badge.svg │ ├── icon-box.svg │ ├── icon-circle.svg │ ├── icon-felt-pen.svg │ ├── icon-flip-horizontal.svg │ ├── icon-flip-vertical.svg │ ├── icon-fullheight.svg │ ├── icon-horizontal-around.svg │ ├── icon-horizontal-between.svg │ ├── icon-horizontal-center.svg │ ├── icon-horizontal-end.svg │ ├── icon-horizontal-start.svg │ ├── icon-horizontal-stretch.svg │ ├── icon-kebab-menu.svg │ ├── icon-map.svg │ ├── icon-marker.svg │ ├── icon-pointer.svg │ ├── icon-text-uppercase.svg │ ├── icon-trash.svg │ ├── icon-typography-adobe-fonts.svg │ ├── icon-typography-custom-fonts.svg │ ├── icon-typography-font-size.svg │ ├── icon-typography-google-fonts.svg │ ├── icon-typography-letter-spacing.svg │ ├── icon-typography-line-height.svg │ ├── icon-vertical-between.svg │ ├── icon-vertical-bottom.svg │ ├── icon-vertical-center.svg │ ├── icon-vertical-stretch.svg │ ├── icon-vertical-top.svg │ ├── index.js │ ├── plugin-color-palette.svg │ ├── plugin-custom-code.svg │ ├── plugin-customizer.svg │ ├── plugin-templates.svg │ ├── plugin-typography.svg │ ├── sr-fade.svg │ ├── sr-zoom-from-bottom.svg │ ├── sr-zoom-from-left.svg │ ├── sr-zoom-from-right.svg │ ├── sr-zoom.svg │ ├── tabs-desktop.svg │ ├── tabs-laptop.svg │ ├── tabs-mobile.svg │ ├── tabs-tablet.svg │ └── tabs-tv.svg ├── index.js ├── index.php ├── plugins.js ├── plugins │ ├── color-palette │ │ ├── editor.scss │ │ ├── index.js │ │ └── index.php │ ├── custom-code │ │ ├── editor.scss │ │ ├── index.js │ │ └── index.php │ ├── customizer │ │ ├── editor.scss │ │ ├── index.js │ │ └── index.php │ ├── editor-iframe-resize │ │ ├── editor.scss │ │ └── index.js │ ├── ghostkit │ │ ├── editor.scss │ │ └── index.js │ ├── templates │ │ ├── editor.scss │ │ └── index.js │ └── typography │ │ ├── editor.scss │ │ ├── index.js │ │ └── index.php ├── shapes │ ├── arrow-curve.svg │ ├── arrow.svg │ ├── ellipse.svg │ ├── ellipses.svg │ ├── tilt.svg │ ├── tilts.svg │ ├── triangle-asymmetrical.svg │ ├── triangle.svg │ ├── triangles-asymmetrical.svg │ ├── triangles.svg │ ├── wave.svg │ └── waves.svg ├── store │ ├── base │ │ ├── components │ │ │ ├── index.js │ │ │ └── selectors.js │ │ ├── hooks │ │ │ ├── index.js │ │ │ └── selectors.js │ │ ├── images │ │ │ ├── actions.js │ │ │ ├── controls.js │ │ │ ├── index.js │ │ │ ├── prepare-query.js │ │ │ ├── reducer.js │ │ │ ├── resolvers.js │ │ │ └── selectors.js │ │ └── utils │ │ │ ├── index.js │ │ │ └── selectors.js │ ├── blocks │ │ ├── instagram │ │ │ ├── actions.js │ │ │ ├── controls.js │ │ │ ├── index.js │ │ │ ├── prepare-query.js │ │ │ ├── reducer.js │ │ │ ├── resolvers.js │ │ │ └── selectors.js │ │ ├── table-of-contents │ │ │ ├── actions.js │ │ │ ├── controls.js │ │ │ ├── index.js │ │ │ ├── prepare-query.js │ │ │ ├── reducer.js │ │ │ ├── resolvers.js │ │ │ └── selectors.js │ │ └── twitter │ │ │ ├── actions.js │ │ │ ├── controls.js │ │ │ ├── index.js │ │ │ ├── prepare-query.js │ │ │ ├── reducer.js │ │ │ ├── resolvers.js │ │ │ └── selectors.js │ ├── index.js │ ├── plugins │ │ ├── custom-code │ │ │ ├── actions.js │ │ │ ├── controls.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── resolvers.js │ │ │ └── selectors.js │ │ ├── customizer │ │ │ ├── actions.js │ │ │ ├── controls.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── resolvers.js │ │ │ └── selectors.js │ │ ├── fonts │ │ │ ├── actions.js │ │ │ ├── controls.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── resolvers.js │ │ │ └── selectors.js │ │ ├── templates │ │ │ ├── actions.js │ │ │ ├── controls.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── resolvers.js │ │ │ └── selectors.js │ │ └── typography │ │ │ ├── actions.js │ │ │ ├── controls.js │ │ │ ├── index.js │ │ │ ├── reducer.js │ │ │ ├── resolvers.js │ │ │ └── selectors.js │ └── responsive │ │ ├── actions.js │ │ ├── index.js │ │ ├── reducer.js │ │ └── selectors.js ├── style-variants │ ├── core-heading │ │ ├── editor.scss │ │ ├── index.js │ │ ├── style.scss │ │ └── variables.scss │ ├── core-list │ │ ├── editor.scss │ │ ├── frontend.js │ │ ├── index.js │ │ ├── style.scss │ │ └── variables.scss │ ├── core-paragraph │ │ ├── editor.scss │ │ ├── index.js │ │ └── style.scss │ └── index.js ├── style.scss ├── svg-icons │ └── style.scss ├── utils │ ├── array-move │ │ └── index.js │ ├── block-editor-asset-loader.js │ ├── camel-case-to-dash │ │ └── index.js │ ├── classes-replacer │ │ └── index.js │ ├── clean-img-tag │ │ └── index.js │ ├── compact-object │ │ └── index.js │ ├── dash-case-to-title │ │ └── index.js │ ├── encode-decode │ │ ├── index.js │ │ └── index.php │ ├── get-icon │ │ └── index.js │ ├── get-parents │ │ └── index.js │ ├── get-siblings │ │ └── index.js │ ├── get-unique-slug │ │ └── index.js │ ├── merge │ │ └── index.js │ ├── round │ │ └── index.js │ ├── sort-object │ │ └── index.js │ └── styles │ │ └── index.js └── wordpress │ └── base-styles │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── _animations.scss │ ├── _breakpoints.scss │ ├── _colors.native.scss │ ├── _colors.scss │ ├── _default-custom-properties.scss │ ├── _mixins.scss │ ├── _variables.scss │ ├── _z-index.scss │ └── package.json ├── index.php ├── languages ├── ghostkit.json ├── ghostkit.pot └── readme.md ├── lint-staged.config.js ├── package.json ├── phpcs.xml.dist ├── phpunit.xml.dist ├── readme.txt ├── settings ├── components │ ├── info.js │ └── info.scss ├── containers │ ├── container.js │ └── container.scss ├── index.js ├── index.php ├── pages │ ├── blocks.js │ ├── blocks.scss │ ├── breakpoints.js │ ├── css-js.js │ ├── css-js.scss │ ├── fonts.js │ ├── fonts.scss │ ├── icons.js │ ├── icons.scss │ ├── index.js │ ├── typography.js │ └── typography.scss └── style.scss ├── tests ├── e2e │ ├── config │ │ ├── flaky-tests-reporter.js │ │ └── global-setup.js │ ├── playwright.config.js │ └── specs │ │ ├── dependencies.spec.js │ │ ├── extensions.spec.js │ │ ├── initial-loading.spec.js │ │ └── typography.spec.js ├── phpunit │ ├── README.md │ ├── bootstrap.php │ └── unit │ │ ├── test-ghostkit-class.php │ │ └── test-sample.php ├── plugins │ └── gutenberg-test-plugin-disables-the-css-animations │ │ └── gutenberg-test-plugin-disables-the-css-animations.php └── themes │ ├── empty-theme-php │ ├── footer.php │ ├── functions.php │ ├── header.php │ ├── index.php │ ├── sidebar.php │ └── style.css │ └── empty-theme │ ├── functions.php │ ├── index.php │ ├── parts │ └── header.html │ ├── style.css │ ├── templates │ ├── category.html │ ├── index.html │ ├── singular.html │ └── tag.html │ └── theme.json ├── webpack.config.js └── wpml-config.xml /.cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | assets/vendor/** 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: [https://www.ghostkit.io/pricing/] 2 | -------------------------------------------------------------------------------- /.github/setup-node/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.github/setup-node/action.yml -------------------------------------------------------------------------------- /.github/workflows/push-asset-readme-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.github/workflows/push-asset-readme-update.yml -------------------------------------------------------------------------------- /.github/workflows/push-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.github/workflows/push-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/tests-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.github/workflows/tests-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.phpunit.result.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.phpunit.result.cache -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@wordpress/prettier-config'); 2 | -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.wordpress-org/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/banner-1544x500.png -------------------------------------------------------------------------------- /.wordpress-org/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/banner-772x250.png -------------------------------------------------------------------------------- /.wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /.wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-1.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-10.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-11.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-12.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-13.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-14.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-15.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-16.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-17.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-18.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-19.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-2.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-3.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-4.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-5.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-6.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-7.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-8.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wordpress-org/screenshot-9.png -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/.wp-env.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/README.md -------------------------------------------------------------------------------- /assets/admin/css/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/admin/css/admin.scss -------------------------------------------------------------------------------- /assets/admin/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/admin/css/style.scss -------------------------------------------------------------------------------- /assets/admin/js/ask-review-notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/admin/js/ask-review-notice.js -------------------------------------------------------------------------------- /assets/admin/js/reusable-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/admin/js/reusable-widget.js -------------------------------------------------------------------------------- /assets/css/fallback-classic-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/css/fallback-classic-theme.css -------------------------------------------------------------------------------- /assets/images/admin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/images/admin-icon.svg -------------------------------------------------------------------------------- /assets/js/event-fallbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/js/event-fallbacks.js -------------------------------------------------------------------------------- /assets/js/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/js/helper.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/utils/get-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/js/utils/get-jquery.js -------------------------------------------------------------------------------- /assets/js/utils/instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/js/utils/instance.js -------------------------------------------------------------------------------- /assets/js/utils/transition-callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/js/utils/transition-callback.js -------------------------------------------------------------------------------- /assets/vendor/gist-simple/dist/gist-simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/gist-simple/dist/gist-simple.css -------------------------------------------------------------------------------- /assets/vendor/gmaps/gmaps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/gmaps/gmaps.min.js -------------------------------------------------------------------------------- /assets/vendor/gmaps/gmaps.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/gmaps/gmaps.min.js.map -------------------------------------------------------------------------------- /assets/vendor/ivent/dist/ivent.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/ivent/dist/ivent.min.js -------------------------------------------------------------------------------- /assets/vendor/ivent/dist/ivent.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/ivent/dist/ivent.min.js.map -------------------------------------------------------------------------------- /assets/vendor/jarallax/dist/jarallax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/jarallax/dist/jarallax.css -------------------------------------------------------------------------------- /assets/vendor/jarallax/dist/jarallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/jarallax/dist/jarallax.min.js -------------------------------------------------------------------------------- /assets/vendor/jarallax/dist/jarallax.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/jarallax/dist/jarallax.min.js.map -------------------------------------------------------------------------------- /assets/vendor/luxon/build/global/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/luxon/build/global/luxon.min.js -------------------------------------------------------------------------------- /assets/vendor/motion/dist/motion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/motion/dist/motion.min.js -------------------------------------------------------------------------------- /assets/vendor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/readme.md -------------------------------------------------------------------------------- /assets/vendor/swiper-5-4-5/swiper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/swiper-5-4-5/swiper.min.css -------------------------------------------------------------------------------- /assets/vendor/swiper-5-4-5/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/swiper-5-4-5/swiper.min.js -------------------------------------------------------------------------------- /assets/vendor/swiper-5-4-5/swiper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/swiper-5-4-5/swiper.min.js.map -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/swiper/swiper-bundle.min.css -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/swiper/swiper-bundle.min.js -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/assets/vendor/swiper/swiper-bundle.min.js.map -------------------------------------------------------------------------------- /class-ghost-kit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/class-ghost-kit.php -------------------------------------------------------------------------------- /classes/3rd/class-astra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/3rd/class-astra.php -------------------------------------------------------------------------------- /classes/3rd/class-blocksy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/3rd/class-blocksy.php -------------------------------------------------------------------------------- /classes/3rd/class-page-builder-framework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/3rd/class-page-builder-framework.php -------------------------------------------------------------------------------- /classes/3rd/class-rank-math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/3rd/class-rank-math.php -------------------------------------------------------------------------------- /classes/class-ask-review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-ask-review.php -------------------------------------------------------------------------------- /classes/class-assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-assets.php -------------------------------------------------------------------------------- /classes/class-breakpoints-background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-breakpoints-background.php -------------------------------------------------------------------------------- /classes/class-breakpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-breakpoints.php -------------------------------------------------------------------------------- /classes/class-deactivate-duplicate-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-deactivate-duplicate-plugin.php -------------------------------------------------------------------------------- /classes/class-fonts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-fonts.php -------------------------------------------------------------------------------- /classes/class-icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-icons.php -------------------------------------------------------------------------------- /classes/class-migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-migration.php -------------------------------------------------------------------------------- /classes/class-parse-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-parse-blocks.php -------------------------------------------------------------------------------- /classes/class-rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-rest.php -------------------------------------------------------------------------------- /classes/class-reusable-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-reusable-widget.php -------------------------------------------------------------------------------- /classes/class-scss-compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-scss-compiler.php -------------------------------------------------------------------------------- /classes/class-scss-replace-modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-scss-replace-modules.php -------------------------------------------------------------------------------- /classes/class-shapes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-shapes.php -------------------------------------------------------------------------------- /classes/class-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-templates.php -------------------------------------------------------------------------------- /classes/class-typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/class-typography.php -------------------------------------------------------------------------------- /classes/google-fonts/webfonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/classes/google-fonts/webfonts.json -------------------------------------------------------------------------------- /composer-libraries/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/composer-libraries/composer.json -------------------------------------------------------------------------------- /composer-libraries/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/composer-libraries/composer.lock -------------------------------------------------------------------------------- /composer-libraries/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/composer-libraries/vendor/autoload.php -------------------------------------------------------------------------------- /composer-libraries/vendor/bin/pscss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/composer-libraries/vendor/bin/pscss -------------------------------------------------------------------------------- /composer-libraries/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/composer-libraries/vendor/composer/LICENSE -------------------------------------------------------------------------------- /composer-libraries/vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/composer-libraries/vendor/composer/installed.php -------------------------------------------------------------------------------- /composer-libraries/vendor/deliciousbrains/wp-background-processing/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.idea 3 | *.cache 4 | -------------------------------------------------------------------------------- /composer-libraries/vendor/moodlehq/rtlcss-php/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/themes/empty-theme/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/tests/themes/empty-theme/templates/index.html -------------------------------------------------------------------------------- /tests/themes/empty-theme/templates/tag.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/themes/empty-theme/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/tests/themes/empty-theme/theme.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/webpack.config.js -------------------------------------------------------------------------------- /wpml-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nk-crew/ghostkit/HEAD/wpml-config.xml --------------------------------------------------------------------------------