gitextract_kqenrl0y/ ├── .distignore ├── .editorconfig ├── .github/ │ └── workflows/ │ └── wp.yml ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── app/ │ ├── Admin/ │ │ ├── menu.php │ │ ├── notice.php │ │ ├── override.php │ │ └── views/ │ │ ├── blocks.php │ │ ├── dashboard.php │ │ ├── delete-handler.php │ │ ├── getting-started.php │ │ ├── handler.php │ │ ├── settings.php │ │ ├── template-lists.php │ │ ├── templates/ │ │ │ ├── template-edit.php │ │ │ ├── template-list.php │ │ │ ├── template-new.php │ │ │ └── template-view.php │ │ └── templates.php │ ├── Api/ │ │ ├── Controllers/ │ │ │ ├── ApiController.php │ │ │ ├── BlocksApiController.php │ │ │ ├── MenuApiController.php │ │ │ ├── OptionsApiController.php │ │ │ ├── PageApiController.php │ │ │ └── SectionsApiController.php │ │ └── routes.php │ ├── Application.php │ ├── Assets/ │ │ ├── BlocksScripts.php │ │ ├── BuildModeScripts.php │ │ ├── OnepageScripts.php │ │ ├── OptionsPanelScripts.php │ │ ├── PreviewScripts.php │ │ ├── Traits/ │ │ │ └── FormEngineScripts.php │ │ └── WpConflictResolver.php │ ├── Content/ │ │ ├── OnepageContent.php │ │ ├── OnepageInternalScripts.php │ │ └── OnepageToolbar.php │ ├── Loaders/ │ │ ├── BlocksLoader.php │ │ ├── PresetsLoader.php │ │ └── TemplateLoader.php │ ├── Metabox/ │ │ ├── metabox.php │ │ └── page-meta.php │ ├── Onepager.php │ ├── OptionsPanel/ │ │ └── settings.php │ ├── bootstrap.php │ ├── data/ │ │ └── font-families.php │ ├── inc/ │ │ ├── onepager-settings.php │ │ └── support.php │ └── templates/ │ ├── builder.php │ ├── my-test.php │ ├── onepage.php │ └── onepager-default.php ├── blocks/ │ ├── blogs/ │ │ ├── blog-1/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── blog-2/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── blog-3/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── blog-4/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── blog-5/ │ │ │ └── blog-5/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── blog-6/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── coming-soon/ │ │ ├── coming-soon-1/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── coming-soon-2/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── contacts/ │ │ ├── contact-1/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── contact-2/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── contact-3/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── contact-4/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── cta/ │ │ ├── cta-1/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── cta-2/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── cta-3/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── cta-4/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── features/ │ │ ├── feature-1/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-10/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-11/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-12/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-13/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-14/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-15/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-16/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-17/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-18/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-19/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-2/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-20/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-21/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-22/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-23/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-24/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-25/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-3/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-4/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-5/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-6/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-7/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-8/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── feature-9/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── footers/ │ │ ├── footer-1/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── footer-2/ │ │ │ └── footer-2/ │ │ │ └── footer-2/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── footer-3/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── footer-4/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── maps/ │ │ └── map-1/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── navbars/ │ │ ├── navbar-1/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── navbar-2/ │ │ │ └── navbar-2/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── navbar-3/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── portfolios/ │ │ └── portfolio-1/ │ │ ├── config.php │ │ ├── style.css │ │ ├── style.php │ │ └── view.php │ ├── pricing/ │ │ └── pricing-1/ │ │ ├── config.php │ │ ├── style.css │ │ ├── style.php │ │ └── view.php │ ├── sliders/ │ │ ├── slider-1/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── slider-2/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── slider-3/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── slider-4/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── slider-5/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── teams/ │ │ └── team-1/ │ │ ├── config.php │ │ ├── style.css │ │ ├── style.php │ │ └── view.php │ ├── testimonials/ │ │ └── testimonial-1/ │ │ ├── config.php │ │ ├── style.css │ │ ├── style.php │ │ └── view.php │ └── woocommerce/ │ └── woo-1/ │ ├── config.php │ ├── style.php │ └── view.php ├── bower.json ├── bowerrc.json ├── composer.json ├── constants.php ├── engine/ │ ├── App/ │ │ ├── App.jsx │ │ ├── AppStore.js │ │ ├── AppSyncService.js │ │ ├── Preview.jsx │ │ ├── components/ │ │ │ ├── blocks/ │ │ │ │ ├── Block.jsx │ │ │ │ └── BlockCollection.jsx │ │ │ ├── presets/ │ │ │ │ ├── Preset.jsx │ │ │ │ └── PresetCollections.jsx │ │ │ ├── section-list/ │ │ │ │ ├── Footer.jsx │ │ │ │ ├── Section.jsx │ │ │ │ ├── SectionList.jsx │ │ │ │ ├── SectionTitle.jsx │ │ │ │ └── style.less │ │ │ ├── section-view/ │ │ │ │ ├── SectionView.jsx │ │ │ │ └── SectionViewCollection.jsx │ │ │ ├── sidebar/ │ │ │ │ ├── Menu.jsx │ │ │ │ ├── SectionControls.jsx │ │ │ │ ├── Settings.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ ├── Tab.jsx │ │ │ │ ├── assets/ │ │ │ │ │ └── overlay.less │ │ │ │ └── menu/ │ │ │ │ ├── AddToMenu.jsx │ │ │ │ └── style.less │ │ │ └── templates/ │ │ │ ├── ImportTemplate.jsx │ │ │ ├── SaveTemplate.jsx │ │ │ ├── SavedTemplates.jsx │ │ │ └── Template.jsx │ │ └── flux/ │ │ ├── AppActions.js │ │ ├── AppConstants.js │ │ ├── AppDispatcher.js │ │ └── BaseStore.js │ ├── Generator/ │ │ ├── Generator.jsx │ │ ├── GeneratorActions.js │ │ └── GeneratorStore.js │ ├── Optionspanel/ │ │ ├── Content.jsx │ │ ├── OptionActions.js │ │ ├── OptionStore.js │ │ ├── OptionsPanel.jsx │ │ ├── OptionsPanelSync.js │ │ └── Tabs.jsx │ ├── generator.jsx │ ├── lithium/ │ │ ├── builder/ │ │ │ ├── admin.less │ │ │ ├── bootstrap-override.less │ │ │ ├── bowerfix.less │ │ │ ├── modal.less │ │ │ ├── ui.less │ │ │ └── variables.less │ │ ├── lithium-builder.less │ │ ├── lithium.js │ │ ├── lithium.less │ │ └── site/ │ │ ├── blocks.less │ │ ├── flex.less │ │ └── overlay.less │ ├── meta.js │ ├── onepager-builder.jsx │ ├── onepager-preview.jsx │ ├── optionspanel.jsx │ └── shared/ │ ├── components/ │ │ ├── PopupModal.jsx │ │ ├── Tab.jsx │ │ ├── TabPane.jsx │ │ ├── form/ │ │ │ ├── Divider.jsx │ │ │ ├── Input.jsx │ │ │ ├── Link.jsx │ │ │ ├── Note.jsx │ │ │ ├── RepeatInput.jsx │ │ │ ├── Select.jsx │ │ │ ├── Switch.jsx │ │ │ ├── WpSelect.jsx │ │ │ ├── color/ │ │ │ │ ├── ColorPalette.bk.jsx │ │ │ │ ├── ColorPalette.jsx │ │ │ │ ├── ColorPicker.jsx │ │ │ │ ├── oppositeColor.js │ │ │ │ └── palette/ │ │ │ │ ├── Color.jsx │ │ │ │ ├── Picker.jsx │ │ │ │ ├── Preset.jsx │ │ │ │ ├── Presets.jsx │ │ │ │ └── palette.less │ │ │ ├── date/ │ │ │ │ └── index.jsx │ │ │ ├── editor/ │ │ │ │ ├── TinyMCE.jsx │ │ │ │ └── style.less │ │ │ ├── font/ │ │ │ │ ├── font-family.js │ │ │ │ └── index.jsx │ │ │ ├── input.less │ │ │ ├── media/ │ │ │ │ ├── IconSelector.jsx │ │ │ │ ├── Media.jsx │ │ │ │ └── WpMediaFrame.jsx │ │ │ └── time/ │ │ │ └── index.jsx │ │ └── repeater/ │ │ ├── RepeatGroup.jsx │ │ ├── RepeatGroupHeading.jsx │ │ ├── Repeater.jsx │ │ └── style.less │ ├── lib/ │ │ ├── Activity.js │ │ ├── ShouldSync.js │ │ ├── localState.js │ │ ├── storage.js │ │ ├── toolbelt.js │ │ └── transformer/ │ │ ├── controls/ │ │ │ ├── addRefToControls.js │ │ │ ├── prepareRepeaterControl.js │ │ │ ├── prepareSimpleControl.js │ │ │ ├── serialize-controls.js │ │ │ └── unserialize-controls.js │ │ └── html/ │ │ └── stripClassesFromHTML.js │ ├── mixins/ │ │ ├── ContainedSelectorMixin.js │ │ └── PureMixin.js │ ├── onepager/ │ │ ├── ODataStore.js │ │ ├── lib/ │ │ │ ├── _mixins.js │ │ │ └── replaceSectionStyleInDOM.js │ │ ├── localState.js │ │ ├── sectionTransformer.js │ │ └── transformer/ │ │ ├── block2section.js │ │ ├── controls.js │ │ ├── sectionRefer.js │ │ ├── sectionSerializer.js │ │ └── sectionUnserializer.js │ └── plugins/ │ ├── alert.js │ ├── notify.js │ └── scrollview.js ├── gulpfile.js ├── languages/ │ └── tx-onepager.pot ├── package.json ├── phpcs.xml ├── presets/ │ ├── book.json │ ├── corporate-1.json │ ├── education.json │ ├── law.json │ ├── mobile-app.json │ ├── personal-photography-1.json │ └── software-company.json ├── readme.txt ├── src/ │ ├── Asset/ │ │ ├── AssetsCompiler.php │ │ └── CssRewriteFilter.php │ ├── FileSystem/ │ │ └── FileSystem.php │ ├── Onepager/ │ │ ├── Adapters/ │ │ │ ├── AdapterInterface.php │ │ │ ├── BaseAdapter.php │ │ │ └── WordPress.php │ │ ├── Block/ │ │ │ ├── BlockManager.php │ │ │ ├── Collection.php │ │ │ ├── PresetManager.php │ │ │ └── Transformers/ │ │ │ ├── ConfigTransformer.php │ │ │ ├── FieldsTransformer.php │ │ │ ├── SerializedControlsConfigTransformer.php │ │ │ └── SerializedControlsOptionsTransformer.php │ │ ├── Onepager.php │ │ ├── OnepagerInterface.php │ │ ├── Render/ │ │ │ └── Render.php │ │ └── Templates/ │ │ └── SavedTemplates.php │ ├── Providers/ │ │ ├── Contracts/ │ │ │ ├── ApiInterface.php │ │ │ ├── AssetInterface.php │ │ │ ├── ContentInterface.php │ │ │ ├── NavigationMenuInterface.php │ │ │ ├── Opi18nInterface.php │ │ │ ├── OptionsPanelInterface.php │ │ │ ├── SectionInterface.php │ │ │ ├── SecurityfInterface.php │ │ │ ├── TemplatesInterface.php │ │ │ └── ToolbarInterface.php │ │ └── WordPress/ │ │ ├── Api.php │ │ ├── Asset.php │ │ ├── Content.php │ │ ├── NavigationMenu.php │ │ ├── Opi18n.php │ │ ├── OptionsPanel.php │ │ ├── Section.php │ │ ├── Security.php │ │ ├── TemplateManager.php │ │ └── Toolbar.php │ ├── View/ │ │ ├── Engines/ │ │ │ ├── EngineInterface.php │ │ │ └── PhpEngine.php │ │ └── View.php │ ├── WordPress/ │ │ ├── PageTemplater.php │ │ └── wp_bootstrap_navwalker.php │ ├── functions.php │ └── theme_helpers.php ├── theme.php ├── tx-onepager.php ├── uninstall.php └── webpack.config.js