bge-ui 1.9.2 → 1.9.3

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
@@ -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 && index2 === 0) {
6731
+ if ($el.clientWidth === 0) {
6732
6732
  if (updateRetryCount.value < maxRetryCount) {
6733
6733
  updateRetryCount.value++;
6734
6734
  nextTick(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bge-ui",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -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 && index === 0) {
118
+ if ($el.clientWidth === 0) {
119
119
  if (updateRetryCount.value < maxRetryCount) {
120
120
  updateRetryCount.value++
121
121
  nextTick(() => {