nuance-ui 0.1.12 → 0.1.13

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/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^4.0.0"
6
6
  },
7
- "version": "0.1.12",
7
+ "version": "0.1.13",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
@@ -64,12 +64,12 @@ function handleBlur() {
64
64
  @blur='handleBlur()'
65
65
  @wheel.prevent='handleWheel'
66
66
  >
67
- <template v-if='$slots?.leftSection' #leftSection>
67
+ <template v-if='$slots.leftSection' #leftSection>
68
68
  <slot name='leftSection' />
69
69
  </template>
70
- <template #rightSection>
70
+ <template v-if='$slots.rightSection || !hideControls' #rightSection>
71
71
  <slot name='rightSection'>
72
- <div v-if='!hideControls' :class='$style.controls'>
72
+ <div :class='$style.controls'>
73
73
  <UnstyledButton
74
74
  :class='$style.control'
75
75
  :disabled='disabled || typeof value === "number" && !Number.isNaN(max) && value >= max'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuance-ui",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "A UI Library for Modern Web Apps, powered by Vue.",
5
5
  "repository": {
6
6
  "type": "git",