bge-ui 1.5.4 → 1.5.6

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/index.js CHANGED
@@ -8820,7 +8820,9 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
8820
8820
  ref_key: "DialogBody",
8821
8821
  ref: DialogBody
8822
8822
  }, [
8823
- renderSlot(_ctx.$slots, "default")
8823
+ createElementVNode("div", null, [
8824
+ renderSlot(_ctx.$slots, "default")
8825
+ ])
8824
8826
  ], 2)
8825
8827
  ])
8826
8828
  ], 4)
package/dist/style.css CHANGED
@@ -1308,7 +1308,7 @@ to {
1308
1308
  }.bge-checkbox {
1309
1309
  display: inline-flex;
1310
1310
  justify-content: flex-start;
1311
- align-items: center;
1311
+ align-items: flex-start;
1312
1312
  margin-right: 8px;
1313
1313
  }
1314
1314
  .bge-checkbox_large .bge-checkbox__label {
@@ -1318,6 +1318,7 @@ to {
1318
1318
  }
1319
1319
  .bge-checkbox_large .bge-checkbox__inner,
1320
1320
  .bge-checkbox_large .bge-checkbox__original {
1321
+ margin-top: 2px;
1321
1322
  width: 24px;
1322
1323
  height: 24px;
1323
1324
  }
@@ -1328,6 +1329,7 @@ to {
1328
1329
  }
1329
1330
  .bge-checkbox_mini .bge-checkbox__inner,
1330
1331
  .bge-checkbox_mini .bge-checkbox__original {
1332
+ margin-top: 2px;
1331
1333
  width: 16px;
1332
1334
  height: 16px;
1333
1335
  }
@@ -1372,6 +1374,7 @@ to {
1372
1374
  opacity: 0;
1373
1375
  outline: none;
1374
1376
  z-index: 0;
1377
+ margin-top: 2px;
1375
1378
  }
1376
1379
  .bge-checkbox__inner {
1377
1380
  display: inline-block;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bge-ui",
3
- "version": "1.5.4",
3
+ "version": "1.5.6",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -145,7 +145,7 @@ function handleChange (e: Event) {
145
145
  .bge-checkbox {
146
146
  display: inline-flex;
147
147
  justify-content: flex-start;
148
- align-items: center;
148
+ align-items: flex-start;
149
149
  margin-right: 8px;
150
150
  }
151
151
 
@@ -158,6 +158,7 @@ function handleChange (e: Event) {
158
158
 
159
159
  .bge-checkbox__inner,
160
160
  .bge-checkbox__original {
161
+ margin-top: 2px;
161
162
  width: 24px;
162
163
  height: 24px;
163
164
  }
@@ -172,6 +173,7 @@ function handleChange (e: Event) {
172
173
 
173
174
  .bge-checkbox__inner,
174
175
  .bge-checkbox__original {
176
+ margin-top: 2px;
175
177
  width: 16px;
176
178
  height: 16px;
177
179
  }
@@ -230,6 +232,7 @@ function handleChange (e: Event) {
230
232
  opacity: 0;
231
233
  outline: none;
232
234
  z-index: 0;
235
+ margin-top: 2px;
233
236
  }
234
237
 
235
238
  .bge-checkbox__inner {
@@ -13,7 +13,7 @@
13
13
  </span>
14
14
  </div>
15
15
  <div class="bge-dialog__body" :class="{full: fullBody}" ref="DialogBody">
16
- <slot></slot>
16
+ <div><slot></slot></div>
17
17
  </div>
18
18
  </div>
19
19
  </div>