quasar-ui-danx 0.2.20 → 0.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/danx.es.js +2043 -2035
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +5 -5
- package/dist/danx.umd.js.map +1 -1
- package/package.json +1 -1
- package/tailwind.config.js +3 -1
package/package.json
CHANGED
package/tailwind.config.js
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
/** @type {import("tailwindcss").Config} */
|
2
2
|
import twColors from "tailwindcss/colors";
|
3
3
|
|
4
|
+
const ignore = ["lightBlue", "warmGray", "trueGray", "coolGray", "blueGray"];
|
5
|
+
|
4
6
|
// Convert all TW colors to CSS Variables
|
5
|
-
const colorKeys = Object.keys(twColors).filter(c => twColors[c].hasOwnProperty("500"));
|
7
|
+
const colorKeys = Object.keys(twColors).filter(c => !ignore.includes(c) && twColors[c].hasOwnProperty("500"));
|
6
8
|
const colors = {};
|
7
9
|
|
8
10
|
for (const name of colorKeys) {
|