@exakt/ui 0.0.29 → 0.0.30

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.29"
4
+ "version": "0.0.30"
5
5
  }
@@ -9,6 +9,7 @@
9
9
  <e-icon
10
10
  v-if="icon"
11
11
  :icon="icon"
12
+ class="mr-2"
12
13
  size="21"
13
14
  />
14
15
  <textarea
@@ -31,6 +31,8 @@ const state = reactive({
31
31
  --expansion-amount: calc(
32
32
  var(--expanded-sidebar-width) - var(--collapsed-sidebar-width)
33
33
  );
34
+
35
+
34
36
  }
35
37
  .e-sidebar {
36
38
 
@@ -61,6 +63,9 @@ const state = reactive({
61
63
  transition: transform 0.25s ease-in-out;
62
64
  background-color: var(--e-color-light);
63
65
  width: 100%;
66
+ width: -moz-available; /* WebKit-based browsers will ignore this. */
67
+ width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
68
+ width: fill-available;
64
69
  height: 100%;
65
70
  left: 3.5rem;
66
71
  top: 0rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exakt/ui",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "description": "A UI library for Nuxt.js",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -66,9 +66,6 @@
66
66
  "bugs": {
67
67
  "url": "https://github.com/wd-4000/exakt/issues"
68
68
  },
69
- "resolutions": {
70
- "mkdist": "npm:@wd4000/mkdist-no-scss@1.4.1"
71
- },
72
69
  "homepage": "https://github.com/wd-4000/exakt#readme",
73
70
  "packageManager": "yarn@3.5.1"
74
71
  }