@mixd-id/web-scaffold 0.1.230406356 → 0.1.230406357

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mixd-id/web-scaffold",
3
3
  "private": false,
4
- "version": "0.1.230406356",
4
+ "version": "0.1.230406357",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -1,8 +1,6 @@
1
1
  <template>
2
2
  <div :class="$style.virtualGrid" @click="resize">
3
3
 
4
- <slot name="start"></slot>
5
-
6
4
  <div ref="container" class="flex-1 overflow-y-auto">
7
5
  <div ref="scroller" :class="$style.scroller" :style="scrollerStyle">
8
6
  <div :class="spacerClass" ref="spacer" :style="spacerStyle">
@@ -17,8 +15,6 @@
17
15
  </div>
18
16
  </div>
19
17
 
20
- <slot name="end"></slot>
21
-
22
18
  <div :class="$style.calc" v-if="items && items.length > 0" ref="calc">
23
19
  <slot name="item" :item="items[0]" :index="0">
24
20
  {{ items[0] }}
@@ -104,8 +104,6 @@
104
104
  </div>
105
105
  </div>
106
106
 
107
- <pre class="text-xs break-all">{{ value.props }}</pre>
108
-
109
107
  </div>
110
108
  </template>
111
109