mage-os/module-theme-uikit
最新稳定版本:1.6.0
Composer 安装命令:
composer require mage-os/module-theme-uikit
包简介
Utilities for the Mage-OS/Magento UIkit theme
README 文档
README
Set of utilities for the Mage-OS/Magento UIkit theme
See also mage-os-lab/theme-frontend-uikit
Overview
The UIkit Theme module allows svg assets compilation inside static contents, removes unused css UIkit3 classes ( "uk-" prefixed classes) and preload fonts.
How it works
Fonts preload
Use "head.asset.preload" layout block to preload fonts and assets inside default_head_blocks.xml files
...
<body>
<referenceBlock name="head.asset.preload">
<arguments>
<argument name="assets" xsi:type="array">
<item name="uikit-icons" xsi:type="array">
<item name="path" xsi:type="string">js/uikit/uikit-icons.min.js</item>
<item name="type" xsi:type="array">
<item name="name" xsi:type="string">type</item>
<item name="value" xsi:type="string">script</item>
</item>
<item name="crossorigin" xsi:type="array">
<item name="name" xsi:type="string">crossorigin</item>
<item name="value" xsi:type="string">false</item>
</item>
</item>
<item name="montserrat-light" xsi:type="array">
<item name="path" xsi:type="string">fonts/Montserrat/Montserrat-Light.woff2</item>
<item name="type" xsi:type="array">
<item name="name" xsi:type="string">type</item>
<item name="value" xsi:type="string">font/woff2</item>
</item>
<item name="crossorigin" xsi:type="array">
<item name="name" xsi:type="string">crossorigin</item>
<item name="value" xsi:type="string">false</item>
</item>
</item>
...
</argument>
</arguments>
</referenceBlock>
</body>
UIkit CSS classes safelist
To compile UIkit css classes inside the css files you need to specify file paths to scan into uikit_whitelist.xml files:
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:MageOS_UIkitTheme:etc/uikit_whitelist.xsd">
<paths>
<path name="mage-os_app" xsi:type="string" >app/design/frontend/Mage-OS/UIkit</path>
<path name="mage-os_vendor" xsi:type="string" >vendor/mage-os/theme-frontend-uikit</path>
</paths>
</config>
Or compile a safelist of classes if any phtml/html/xml file expose them
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:MageOS_UIkitTheme:etc/uikit_whitelist.xsd">
<terms>
<term name="button" xsi:type="string" >uk-button</term>
<term name="button-primary" xsi:type="string" >uk-button-primary</term>
</terms>
</config>
Installation
- Install it into your Mage-OS/Magento 2 project with composer:
composer require mage-os/module-theme-uikit
- Enable module
bin/magento setup:upgrade
Make sure to also install mage-os-lab/theme-frontend-uikit
Changelog
Please see CHANGELOG for more information on what has changed recently.
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 50
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-08-22