@onereach/ui-components 2.70.0-beta.2175.0 → 2.70.0-beta.2180.0

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.
@@ -33,12 +33,12 @@ var __vue_render__ = function () {
33
33
  return _c('div', {
34
34
  class: _vm.contentStyles
35
35
  }, [_vm._l(_vm.items, function (item) {
36
- return [_vm._t("item", function () {
37
- return [_vm._v("\n " + _vm._s(item.key) + "\n ")];
36
+ return _vm._t("item", function () {
37
+ return [_vm._v("\n " + _vm._s(item.key) + "\n ")];
38
38
  }, null, {
39
39
  item: item,
40
40
  mode: _vm.mode
41
- })];
41
+ });
42
42
  })], 2);
43
43
  };
44
44
  var __vue_staticRenderFns__ = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/ui-components",
3
- "version": "2.70.0-beta.2175.0",
3
+ "version": "2.70.0-beta.2180.0",
4
4
  "description": "Vue components library for v2/3",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/auto/index.js",
@@ -1,16 +1,15 @@
1
1
  <template>
2
2
  <div :class="contentStyles">
3
- <template v-for="(item) in items">
4
- <slot
5
- name="item"
6
- v-bind="{
7
- item,
8
- mode,
9
- }"
10
- >
11
- {{ item.key }}
12
- </slot>
13
- </template>
3
+ <slot
4
+ v-for="(item) in items"
5
+ name="item"
6
+ v-bind="{
7
+ item,
8
+ mode,
9
+ }"
10
+ >
11
+ {{ item.key }}
12
+ </slot>
14
13
  </div>
15
14
  </template>
16
15
  <script lang="ts">