@htmlplus/element 3.4.3 → 3.4.4
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/jsx-runtime.d.ts +9 -11
- package/package.json +1 -1
package/dist/jsx-runtime.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { JSX as JSXReact } from '
|
|
1
|
+
import type { JSX as JSXReact } from 'react/jsx-runtime';
|
|
2
2
|
|
|
3
3
|
type WithPart<T> = T & {
|
|
4
4
|
part?: string;
|
|
@@ -8,15 +8,13 @@ type IntrinsicElementsWithPart = {
|
|
|
8
8
|
[K in keyof JSXReact.IntrinsicElements]: WithPart<Omit<JSXReact.IntrinsicElements[K], 'ref'>>;
|
|
9
9
|
};
|
|
10
10
|
|
|
11
|
-
declare
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
};
|
|
20
|
-
}
|
|
11
|
+
declare namespace JSX {
|
|
12
|
+
interface IntrinsicElements extends IntrinsicElementsWithPart {
|
|
13
|
+
host: WithPart<JSXReact.IntrinsicElements['div']> & {
|
|
14
|
+
[key: string]: unknown;
|
|
15
|
+
};
|
|
16
|
+
slot: WithPart<JSXReact.IntrinsicElements['slot']> & {
|
|
17
|
+
onSlotChange?: (event: Event) => void;
|
|
18
|
+
};
|
|
21
19
|
}
|
|
22
20
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlplus/element",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.4",
|
|
4
4
|
"description": "A powerful library for building scalable, reusable, fast, tastable and lightweight design system for any web technologies. Powered by Web Component.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"components",
|