@semantic-ui/templating
Advanced tools
Comparing version 0.0.31 to 0.0.32
@@ -8,9 +8,9 @@ { | ||
"dependencies": { | ||
"@semantic-ui/component": "^0.0.31", | ||
"@semantic-ui/query": "^0.0.31", | ||
"@semantic-ui/reactivity": "^0.0.31", | ||
"@semantic-ui/templating": "^0.0.31", | ||
"@semantic-ui/utils": "^0.0.31" | ||
"@semantic-ui/component": "^0.0.32", | ||
"@semantic-ui/query": "^0.0.32", | ||
"@semantic-ui/reactivity": "^0.0.32", | ||
"@semantic-ui/templating": "^0.0.32", | ||
"@semantic-ui/utils": "^0.0.32" | ||
}, | ||
"version": "0.0.31" | ||
"version": "0.0.32" | ||
} |
@@ -30,4 +30,4 @@ import { Reaction } from '@semantic-ui/reactivity'; | ||
}, | ||
concat(a, b) { | ||
return a + b; | ||
concat(...args) { | ||
return args.join(''); | ||
}, | ||
@@ -102,17 +102,11 @@ both(a, b) { | ||
is(a, b) { | ||
if(b == undefined) { | ||
return a == true; | ||
} | ||
return a == b; | ||
}, | ||
not(a, b) { | ||
if(b == undefined) { | ||
return a == false; | ||
} | ||
return a != b; | ||
}, | ||
isEqual(a, b) { | ||
isExactly(a, b) { | ||
return a === b; | ||
}, | ||
isNotEqual(a, b) { | ||
isNotExactly(a, b) { | ||
return a !== b; | ||
@@ -119,0 +113,0 @@ }, |
@@ -361,4 +361,5 @@ import { $ } from '@semantic-ui/query'; | ||
const elData = targetElement.dataset; | ||
const elValue = targetElement.value; | ||
template.call(boundEvent, { | ||
additionalData: { event: event, data: { ...elData, ...eventData } }, | ||
additionalData: { event: event, value: elValue, data: { ...elData, ...eventData } }, | ||
}); | ||
@@ -365,0 +366,0 @@ }, |
78787
2255
+ Added@semantic-ui/component@0.0.32(transitive)
+ Added@semantic-ui/query@0.0.32(transitive)
+ Added@semantic-ui/reactivity@0.0.32(transitive)
+ Added@semantic-ui/utils@0.0.32(transitive)
- Removed@semantic-ui/component@0.0.31(transitive)
- Removed@semantic-ui/query@0.0.31(transitive)
- Removed@semantic-ui/reactivity@0.0.31(transitive)
- Removed@semantic-ui/utils@0.0.31(transitive)
Updated@semantic-ui/query@^0.0.32
Updated@semantic-ui/utils@^0.0.32