nexa-ui-kit 0.7.10 → 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexa-ui-kit",
3
- "version": "0.7.10",
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.10",
26
- "nexa-mobile": "0.7.10"
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.10"
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