@polymarbot/nuxt-layer-shadcn-ui 0.7.2 → 0.7.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.
@@ -208,22 +208,22 @@ onMounted(() => {
208
208
  <slot name="footer">
209
209
  <div class="gap-2 text-xs flex items-center justify-between">
210
210
  <div class="gap-2 flex items-center">
211
- <Tooltip :text="T('scrollToTop')">
211
+ <Tooltip :text="T('refresh')">
212
212
  <Button
213
213
  variant="ghost"
214
214
  size="icon-sm"
215
- icon="arrow-up-to-line"
216
- :disabled="loading || internalData.length === 0"
217
- @click="scrollToTop"
215
+ icon="rotate-cw"
216
+ :disabled="loading"
217
+ @click="refresh"
218
218
  />
219
219
  </Tooltip>
220
- <Tooltip :text="T('refresh')">
220
+ <Tooltip :text="T('scrollToTop')">
221
221
  <Button
222
222
  variant="ghost"
223
223
  size="icon-sm"
224
- icon="rotate-cw"
225
- :disabled="loading"
226
- @click="refresh"
224
+ icon="arrow-up-to-line"
225
+ :disabled="loading || internalData.length === 0"
226
+ @click="scrollToTop"
227
227
  />
228
228
  </Tooltip>
229
229
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polymarbot/nuxt-layer-shadcn-ui",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "Nuxt layer providing shadcn-vue based UI components",
5
5
  "type": "module",
6
6
  "main": "./nuxt.config.ts",
@@ -42,5 +42,5 @@
42
42
  "vue-i18n": "^11",
43
43
  "vue-router": "^4 || ^5"
44
44
  },
45
- "gitHead": "8d49adcf52aef39f5c2d412efb2cd03915d876d0"
45
+ "gitHead": "1cf78baf22c9e3479a08b872135040bc3d9a94d5"
46
46
  }