├── README.md ├── composer.json └── src ├── module-elasticsuite-autocomplete ├── Controller │ └── Index │ │ └── Index.php ├── Model │ ├── Indexer │ │ ├── Category │ │ │ ├── Breadcrumbs.php │ │ │ └── Fulltext │ │ │ │ └── Datasource │ │ │ │ ├── Breadcrumbs.php │ │ │ │ └── Url.php │ │ └── Product │ │ │ └── Fulltext │ │ │ └── Datasource │ │ │ ├── AdditionalAttributes.php │ │ │ ├── ConfigurablePrice.php │ │ │ └── Url.php │ ├── Query.php │ ├── Query │ │ ├── Category.php │ │ └── Product.php │ └── Render │ │ ├── Category.php │ │ └── Product.php ├── Plugin │ └── ImproveSearch.php ├── Provider │ └── Config.php ├── ViewModel │ └── Form.php ├── composer.json ├── etc │ ├── adminhtml │ │ └── system.xml │ ├── config.xml │ ├── di.xml │ ├── frontend │ │ └── routes.xml │ └── module.xml ├── registration.php └── view │ └── frontend │ └── layout │ └── default.xml └── pub └── search.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/composer.json -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Controller/Index/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Controller/Index/Index.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Indexer/Category/Breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Indexer/Category/Breadcrumbs.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Indexer/Category/Fulltext/Datasource/Breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Indexer/Category/Fulltext/Datasource/Breadcrumbs.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Indexer/Category/Fulltext/Datasource/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Indexer/Category/Fulltext/Datasource/Url.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Indexer/Product/Fulltext/Datasource/AdditionalAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Indexer/Product/Fulltext/Datasource/AdditionalAttributes.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Indexer/Product/Fulltext/Datasource/ConfigurablePrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Indexer/Product/Fulltext/Datasource/ConfigurablePrice.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Indexer/Product/Fulltext/Datasource/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Indexer/Product/Fulltext/Datasource/Url.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Query.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Query/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Query/Category.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Query/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Query/Product.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Render/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Render/Category.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Model/Render/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Model/Render/Product.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Plugin/ImproveSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Plugin/ImproveSearch.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/Provider/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/Provider/Config.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/ViewModel/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/ViewModel/Form.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/composer.json -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/etc/config.xml -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/etc/di.xml -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/etc/frontend/routes.xml -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/etc/module.xml -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/registration.php -------------------------------------------------------------------------------- /src/module-elasticsuite-autocomplete/view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/module-elasticsuite-autocomplete/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /src/pub/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Web200/magento-elasticsuite-autocomplete/HEAD/src/pub/search.php --------------------------------------------------------------------------------