bge-ui 1.9.2 → 1.9.4
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 +1 -1
- package/dist/style.css +3 -0
- package/package.json +1 -1
- package/src/tabs/index.vue +5 -1
package/dist/index.js
CHANGED
|
@@ -6728,7 +6728,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
6728
6728
|
const $el = tab.ref;
|
|
6729
6729
|
if (!$el)
|
|
6730
6730
|
return false;
|
|
6731
|
-
if ($el.clientWidth === 0
|
|
6731
|
+
if ($el.clientWidth === 0) {
|
|
6732
6732
|
if (updateRetryCount.value < maxRetryCount) {
|
|
6733
6733
|
updateRetryCount.value++;
|
|
6734
6734
|
nextTick(() => {
|
package/dist/style.css
CHANGED
|
@@ -987,6 +987,9 @@ to {
|
|
|
987
987
|
font-weight: 500;
|
|
988
988
|
line-height: 24px;
|
|
989
989
|
}
|
|
990
|
+
.bge-tabs.bge-tabs__pills-elevated .bge-tabs__active-bar {
|
|
991
|
+
display: none;
|
|
992
|
+
}
|
|
990
993
|
.bge-tabs.bge-tabs__mini .bge-tabs__panes .bge-tab__pane {
|
|
991
994
|
padding: 2px 12px;
|
|
992
995
|
font-size: 12px;
|
package/package.json
CHANGED
package/src/tabs/index.vue
CHANGED
|
@@ -115,7 +115,7 @@ const getBarStyle = (): { width: string; transform: string } => {
|
|
|
115
115
|
panes.value.forEach((tab: TabPane, index: number) => {
|
|
116
116
|
const $el = tab.ref
|
|
117
117
|
if (!$el) return false
|
|
118
|
-
if ($el.clientWidth === 0
|
|
118
|
+
if ($el.clientWidth === 0) {
|
|
119
119
|
if (updateRetryCount.value < maxRetryCount) {
|
|
120
120
|
updateRetryCount.value++
|
|
121
121
|
nextTick(() => {
|
|
@@ -317,6 +317,10 @@ onMounted(() => {
|
|
|
317
317
|
line-height: 24px;
|
|
318
318
|
}
|
|
319
319
|
}
|
|
320
|
+
|
|
321
|
+
.bge-tabs__active-bar {
|
|
322
|
+
display: none;
|
|
323
|
+
}
|
|
320
324
|
}
|
|
321
325
|
|
|
322
326
|
|