revosystems / mojito
该软件包最新版本(10.1.3)没有可用的许可信息。
库存管理系统
10.1.3
2024-09-18 10:12 UTC
Requires
- php: ^8.1
- illuminate/database: ^8.0|^9.0|^10.0
- revosystems/grog: ^9.0|^10.0|^11.0
- dev-master
- 10.1.3
- 10.1.2
- 10.1.1
- 10.1.0
- 10.0.1
- 10.0.0
- 9.2.0
- 9.1.2
- 9.1.0
- 9.0.5
- 9.0.4
- 9.0.3
- 9.0.2
- 9.0.1
- 9.0.0
- 8.45
- 8.44.2
- 8.44.1
- 8.44
- 8.43
- 8.1
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0
- 1.8.6
- 1.8.5
- 1.8.4
- 1.8.3
- 1.8.2
- 1.8.1
- 1.8
- 1.7.2
- 1.7.1
- 1.7
- 1.6.7
- 1.6.6
- 1.6.5
- 1.6.4
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6
- 1.5.16
- 1.5.15
- 1.5.14
- 1.5.13
- 1.5.12
- 1.5.11
- 1.5.10
- 1.5.9
- 1.5.8
- 1.5.7
- 1.5.6
- 1.5.5
- 1.5.4
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4
- 1.2.1
- 1.2
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1
- 1.0.24
- 1.0.23
- 1.0.22
- 1.0.21
- 1.0.20
- 1.0.19
- 1.0.18
- 1.0.17
- 1.0.16
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0
- dev-hotfix/laravel-10-support
- dev-feature/rev-16283
- dev-readme-tailwind-basic-usage
- dev-feature/purchase-order-status-enum
- dev-laravel-10
- dev-feature/rev-13207-purchaseOrderContent-item-hasOneThrough-relationship
- dev-feature/rev-12430
- dev-hotfix/create-stock-movements-from-config
- dev-hotfix/automatic-po-with-packs
- dev-feature/automatic-po-for-warehouse
- dev-master-no-grog
- dev-master-php7
- dev-hotfix/php7-dont-require-grog
- dev-feature/refactor-warehouse-stocks
- dev-feature/eagerLoading
This package is auto-updated.
Last update: 2024-09-18 10:14:33 UTC
README
基本用法
Tailwind CSS
要在您的项目中设置Mojito软件包,您需要将指定的Tailwind CSS颜色添加到tailwind.config.js文件中的safelist。
以下是如何在tailwind.config.js文件中添加safelist的方法
// All the colors are used for the PurchaseOrderStatus enum. safelist: [ 'bg-blue-400', 'bg-yellow-400', 'bg-red-400', 'bg-gray-600', 'bg-gray-300' ],
通过将这些颜色添加到safelist,您指示Tailwind CSS保留使用这些颜色的类,并在最终的CSS输出中保持它们。这确保了Mojito软件包的颜色可供您的项目使用。
此外,请确保编译资产(npm run prod
),以便更改生效。