@exakt/ui 0.0.10 → 0.0.12

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.10"
4
+ "version": "0.0.12"
5
5
  }
@@ -23,7 +23,7 @@
23
23
  );
24
24
 
25
25
  </script>
26
- <style scoped>
26
+ <style scoped lang="css">
27
27
  svg {
28
28
  fill: currentColor;
29
29
  }
@@ -10,17 +10,19 @@ $root-blue-rgb: red($root-blue), green($root-blue), blue($root-blue);
10
10
  .rounded {
11
11
  border-radius: var(--e-rounded-border-radius);
12
12
  }
13
- .rounded-top{
13
+ .rounded-top {
14
14
  border-top-left-radius: var(--e-rounded-border-radius);
15
15
  border-top-right-radius: var(--e-rounded-border-radius);
16
16
  }
17
17
 
18
- .rounded-bottom{
18
+ .rounded-bottom {
19
19
  border-bottom-left-radius: var(--e-rounded-border-radius);
20
20
  border-bottom-right-radius: var(--e-rounded-border-radius);
21
21
  }
22
22
 
23
-
23
+ body {
24
+ margin: 0px;
25
+ }
24
26
 
25
27
  $color-map: (
26
28
  "red": $root-red,
@@ -157,11 +157,11 @@ body {
157
157
  }
158
158
 
159
159
  @supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
160
- .e-blur {
161
- backdrop-filter: blur(12px);
162
- background-color: rgba(255, 255, 255, 0.7);
163
- }
160
+ .e-blur {
161
+ backdrop-filter: blur(12px);
162
+ background-color: rgba(255, 255, 255, 0.7);
164
163
  }
164
+ }
165
165
 
166
166
  .e-disabled {
167
167
  opacity: 0.7;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exakt/ui",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "description": "A UI library for Nuxt.js",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -42,6 +42,7 @@
42
42
  "@types/node": "^20.2.4",
43
43
  "changelogen": "^0.5.1",
44
44
  "eslint": "^8.35.0",
45
+ "mkdist": "^1.2.0",
45
46
  "nuxt": "^3.4.3",
46
47
  "vitest": "^0.29.2"
47
48
  },
@@ -63,6 +64,9 @@
63
64
  "bugs": {
64
65
  "url": "https://github.com/wd-4000/exakt/issues"
65
66
  },
67
+ "resolutions": {
68
+ "mkdist": "npm:@wd4000/mkdist-no-scss@1.2.0"
69
+ },
66
70
  "homepage": "https://github.com/wd-4000/exakt#readme",
67
71
  "packageManager": "yarn@3.5.1"
68
72
  }