quasar-ui-danx 0.4.48 → 0.4.49
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 +15 -27
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +3 -3
- package/dist/danx.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Utility/Buttons/ActionButton.vue +2 -2
package/package.json
CHANGED
@@ -145,7 +145,7 @@ const colorClass = computed(() => {
|
|
145
145
|
case "green":
|
146
146
|
return "text-green-900 bg-green-300 hover:bg-green-400";
|
147
147
|
case "green-invert":
|
148
|
-
return "text-
|
148
|
+
return "text-green-300 bg-green-900 hover:bg-green-800";
|
149
149
|
case "blue":
|
150
150
|
return "text-blue-900 bg-blue-300 hover:bg-blue-400";
|
151
151
|
case "sky":
|
@@ -155,7 +155,7 @@ const colorClass = computed(() => {
|
|
155
155
|
case "gray":
|
156
156
|
return "text-slate-200 bg-slate-800 hover:bg-slate-900";
|
157
157
|
default:
|
158
|
-
return "
|
158
|
+
return "";
|
159
159
|
}
|
160
160
|
});
|
161
161
|
const typeOptions = computed(() => {
|