@finema/core 1.4.153 → 1.4.154
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/module.json +1 -1
- package/dist/module.mjs +10 -2
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineNuxtModule, createResolver, installModule, addPlugin, addComponentsDir, addImportsDir } from '@nuxt/kit';
|
|
2
2
|
|
|
3
3
|
const name = "@finema/core";
|
|
4
|
-
const version = "1.4.
|
|
4
|
+
const version = "1.4.154";
|
|
5
5
|
|
|
6
6
|
const colors = {
|
|
7
7
|
black: "#20243E",
|
|
@@ -375,7 +375,15 @@ const module = defineNuxtModule({
|
|
|
375
375
|
badge,
|
|
376
376
|
icons: {
|
|
377
377
|
dynamic: true
|
|
378
|
-
}
|
|
378
|
+
},
|
|
379
|
+
colors: [
|
|
380
|
+
...nuxt.options.appConfig.ui.colors || [],
|
|
381
|
+
"secondary",
|
|
382
|
+
"success",
|
|
383
|
+
"info",
|
|
384
|
+
"danger",
|
|
385
|
+
"warning"
|
|
386
|
+
]
|
|
379
387
|
},
|
|
380
388
|
nuxt.options.appConfig.ui
|
|
381
389
|
);
|