nexa-ui-kit 0.7.9 → 0.7.11

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.
@@ -19,7 +19,6 @@ const _sfc_main = defineComponent({
19
19
  const ripple = signal([])
20
20
  const handleClick = (e) => {
21
21
  if (props.disabled || props.loading) return
22
- props.onClick?.(e)
23
22
  emit('click', e)
24
23
  const rect = e.currentTarget.getBoundingClientRect()
25
24
  const x = e.clientX - rect.left
@@ -18,7 +18,6 @@ const ripple = signal([])
18
18
 
19
19
  const handleClick = (e) => {
20
20
  if (props.disabled || props.loading) return
21
- props.onClick?.(e)
22
21
  emit('click', e)
23
22
  const rect = e.currentTarget.getBoundingClientRect()
24
23
  const x = e.clientX - rect.left
@@ -213,6 +213,7 @@ const __style = `.n-modal-root[data-v-655f39d1]{
213
213
  padding: var(--n-space-8);
214
214
  color: var(--n-color-text-secondary);
215
215
  overflow-y: auto;
216
+ overflow-x: hidden;
216
217
  flex: 1;
217
218
  }
218
219
 
@@ -210,6 +210,7 @@ onUnmounted(() => {
210
210
  padding: var(--n-space-8);
211
211
  color: var(--n-color-text-secondary);
212
212
  overflow-y: auto;
213
+ overflow-x: hidden;
213
214
  flex: 1;
214
215
  }
215
216
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexa-ui-kit",
3
- "version": "0.7.9",
3
+ "version": "0.7.11",
4
4
  "description": "Premium component library for Nexa Framework",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -22,12 +22,12 @@
22
22
  "src"
23
23
  ],
24
24
  "dependencies": {
25
- "nexa-framework": "0.7.9",
26
- "nexa-mobile": "0.7.9"
25
+ "nexa-framework": "0.7.11",
26
+ "nexa-mobile": "0.7.11"
27
27
  },
28
28
  "devDependencies": {
29
29
  "cpx": "^1.5.0",
30
- "nexa-compiler": "0.7.9"
30
+ "nexa-compiler": "0.7.11"
31
31
  },
32
32
  "scripts": {
33
33
  "build": "tsc && node scripts/compile-nexa.js && node scripts/patch-imports.js && cpx \"src/**/*.nexa\" dist && cpx \"src/styles/*.css\" dist/styles",
@@ -18,7 +18,6 @@ const ripple = signal([])
18
18
 
19
19
  const handleClick = (e) => {
20
20
  if (props.disabled || props.loading) return
21
- props.onClick?.(e)
22
21
  emit('click', e)
23
22
  const rect = e.currentTarget.getBoundingClientRect()
24
23
  const x = e.clientX - rect.left
@@ -210,6 +210,7 @@ onUnmounted(() => {
210
210
  padding: var(--n-space-8);
211
211
  color: var(--n-color-text-secondary);
212
212
  overflow-y: auto;
213
+ overflow-x: hidden;
213
214
  flex: 1;
214
215
  }
215
216