Releases: oveleon/contao-component-style-manager
3.4.0
3.3.0
3.2.0
Addition
- added Contao ^5.1 support #80 @Tastaturberuf
Known Limitation
As of now, template variables do not work within Twig-Templates, please check:
https://github.com/Tastaturberuf/contao-component-style-manager/blob/contao-5/docs/TEMPLATE_VARIABLES.md on how to bypass it.
3.1.2
3.1.1
3.1.0
Additions
Display archive group title above StyleManager widget 5f2815b 6acf49d 950dcb9
Example: Archive group titles
You can disable this feature by excluding via config.yaml:
https://github.com/oveleon/contao-component-style-manager/blob/master/docs/CONFIGURATION.md#hide-group-titles
Added the posibility to exclude specific children from the archive when using the css classes as template variables 450f43a 49e6472
Usage:
// Get
$this->styleManager->exclude(['foo','bar'])->get('archive');
// Prepare
$this->styleManager->prepare('archive')->exclude(['foo','bar'])->format(' %s');
// or
$this->styleManager->exclude(['foo','bar'])->prepare('archive')->format(' %s');
3.0.3
3.0.2
3.0.1
3.0.0
Version 3.0
Before you change to this version, please read the UPGRADE.md file.
New Features
🔹 Bundle-Configurations
The StyleManager can now be fed by other extensions. This saves time for new projects and allows the dynamic growth of a project as well as other benefits. For example, already exported configurations can now be delivered directly by other extensions, so that an import is no longer mandatory.
Learn more about bundle configurations
🔹 Partial import
The import functionality has been extended to import only parts of a configuration.
Learn more about import / export
🔹 Better support for other extensions
By unifying and using constants in the code, support for custom DCAs has been improved. In addition, a boilerplate is available in the documentation.