aberdeen 1.3.0 → 1.3.1
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/README.md +4 -0
- package/dist/aberdeen.d.ts +1 -1
- package/dist/aberdeen.js.map +2 -2
- package/dist-min/aberdeen.js.map +2 -2
- package/package.json +1 -1
- package/src/aberdeen.ts +1 -10
package/package.json
CHANGED
package/src/aberdeen.ts
CHANGED
|
@@ -1943,16 +1943,7 @@ const SPECIAL_PROPS: { [key: string]: (el: Element, value: any) => void } = {
|
|
|
1943
1943
|
* ```
|
|
1944
1944
|
*/
|
|
1945
1945
|
|
|
1946
|
-
export function $(
|
|
1947
|
-
...args: (
|
|
1948
|
-
| string
|
|
1949
|
-
| null
|
|
1950
|
-
| undefined
|
|
1951
|
-
| false
|
|
1952
|
-
| (() => void)
|
|
1953
|
-
| Record<string, any>
|
|
1954
|
-
)[]
|
|
1955
|
-
): undefined | Element {
|
|
1946
|
+
export function $(...args: any[]): undefined | Element {
|
|
1956
1947
|
let el: undefined | Element = currentScope.el;
|
|
1957
1948
|
let svg: boolean = currentScope.svg
|
|
1958
1949
|
|