Extension package for the Metronic WEB theme.
npm install metronic-extensionsh
npm i metronic-extension
`
How to start the demo with Docker
See here.
Release Notes
All changes can be found here.
- [3.0.16] - 2025/2/9
- Added CSS to reduce container padding on tablet and smaller screens, increasing content width on the login page.
- [3.0.15] - 2025/1/31
- Changes to Tagify Component Styling (see demo here):
- Removed unnecessary margin below the input field in single select mode.
- Increased the opacity of the toggle button in single select mode for better visibility.
- Made the background of the remove button for selected tags transparent in single select mode.
- Darkened the color of the tag removal button for better visibility.
- [3.0.14] - 2025/1/7
- Added setDisabled method and a reference to the Tagify instance to the Tagify component.
`js
// Disable input.
tagify.setDisabled(true);
// Reset the whitelist using the Tagify instance API.
tagify.api.whitelist = null;
`
- [3.0.13] - 2024/12/31
- Fixed a bug where the data table loading indicator was not displayed when the locale option was set to Japanese.
- [3.0.12] - 2024/12/31
- Fixed a bug where the data table loading indicator was not displayed.
- [3.0.11] - 2024/12/27
- Added responsive support for subtables. You can check the updated subtable here.
- Added an example to the subtable demo where the expand button is not displayed for rows without subtable data.
Testing
With npm do:
`sh
npm test
``