@exakt/ui 0.0.67 → 0.0.68

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "exakt-ui",
3
3
  "configKey": "exakt",
4
- "version": "0.0.67"
4
+ "version": "0.0.68"
5
5
  }
@@ -1,11 +1,12 @@
1
1
  <template>
2
2
  <div
3
- class="flex-center"
3
+ class="flex-align-center"
4
4
  :class="{ [severityMatrix[severity].class]: true }"
5
5
  >
6
6
  <e-icon
7
7
  size="19"
8
8
  class="mr-2"
9
+ :fill="false"
9
10
  >
10
11
  {{ severityMatrix[severity].icon }}
11
12
  </e-icon><small>
@@ -14,7 +15,13 @@
14
15
  </div>
15
16
  </template>
16
17
  <script setup lang="ts">
17
- withDefaults(defineProps<{ severity?: 0 | 1 | 2 }>(), { severity: 2 })
18
+ withDefaults(defineProps<{ severity?: 0 | 1 | 2 }>(), {
19
+ severity: 2,
20
+ });
18
21
 
19
- const severityMatrix = { 0: { icon: "info", class: "" }, 1: { icon: "warning", class: "color-yellow" }, 2: { icon: "warning", class: "color-red" } }
22
+ const severityMatrix = {
23
+ 0: { icon: "info", class: "" },
24
+ 1: { icon: "warning", class: "color-yellow" },
25
+ 2: { icon: "dangerous", class: "color-red" },
26
+ };
20
27
  </script>
@@ -131,7 +131,7 @@ const props = withDefaults(
131
131
  }>(),
132
132
  {
133
133
  icon: undefined,
134
- label: "",
134
+ label: undefined,
135
135
  solid: true,
136
136
  type: "text",
137
137
  modelValue: "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exakt/ui",
3
- "version": "0.0.67",
3
+ "version": "0.0.68",
4
4
  "description": "A UI library for Nuxt.js",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -34,9 +34,9 @@
34
34
  },
35
35
  "devDependencies": {
36
36
  "@nuxt/eslint-config": "^0.1.1",
37
- "@nuxt/kit": "^4.1.3",
37
+ "@nuxt/kit": "^4.3.1",
38
38
  "@nuxt/module-builder": "^0.2.1",
39
- "@nuxt/schema": "^4.1.3",
39
+ "@nuxt/schema": "^4.3.1",
40
40
  "@nuxt/test-utils": "^3.2.3",
41
41
  "@types/lodash": "^4.14.191",
42
42
  "@types/lodash-es": "^4.17.9",
@@ -45,7 +45,7 @@
45
45
  "eslint": "^8.35.0",
46
46
  "eslint-plugin-unused-imports": "^3.0.0",
47
47
  "mkdist": "^1.2.0",
48
- "nuxt": "^4.1.3",
48
+ "nuxt": "^4.3.1",
49
49
  "vitest": "^0.29.2"
50
50
  },
51
51
  "directories": {