j20 0.0.28 → 0.0.29
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/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4703,7 +4703,7 @@ declare function ref<T>(init: T): RefObject<T>;
|
|
|
4703
4703
|
declare function ref<T>(): RefObject<T>;
|
|
4704
4704
|
|
|
4705
4705
|
declare const wc: () => {
|
|
4706
|
-
host: Document | WebComponentClass
|
|
4706
|
+
host: Document | WebComponentClass;
|
|
4707
4707
|
emit: (name: string, detail: any) => void;
|
|
4708
4708
|
onConnectedCallback: (callback: () => void) => void;
|
|
4709
4709
|
onDisconnectedCallback: (callback: () => void) => void;
|
|
@@ -4801,7 +4801,7 @@ interface Instance {
|
|
|
4801
4801
|
parent?: Instance;
|
|
4802
4802
|
id: string;
|
|
4803
4803
|
range: Text[];
|
|
4804
|
-
host: WebComponentClass | Document
|
|
4804
|
+
host: WebComponentClass | Document;
|
|
4805
4805
|
disposes?: (() => void)[];
|
|
4806
4806
|
children?: Instance[];
|
|
4807
4807
|
mounts?: (() => void)[];
|
|
@@ -4825,6 +4825,6 @@ declare const Fragment: (props: {
|
|
|
4825
4825
|
}) => any;
|
|
4826
4826
|
declare const template: (template: string) => (isSvg: boolean) => any;
|
|
4827
4827
|
|
|
4828
|
-
export { $, $useContext, Case, Default, For, Fragment, If, Replace, Some, Switch, createComponent, createContext, createCssModule, createDom, createElement, createLogicComponent, createRoot, cssHash, effect, getCurrentInstance, h2, id, instanceCreate, instanceCreateElement, instanceDestroy, instanceGetElements, instanceInit, jsx, jsxs, mounts, onDestroy, onMount, ref, registerWebComponent, securityGetCurrentInstance, styleSheet, template, wc };
|
|
4828
|
+
export { $, $useContext, Case, Default, For, Fragment, If, Replace, Some, Switch, WebComponentClass, createComponent, createContext, createCssModule, createDom, createElement, createLogicComponent, createRoot, cssHash, effect, getCurrentInstance, h2, id, instanceCreate, instanceCreateElement, instanceDestroy, instanceGetElements, instanceInit, jsx, jsxs, mounts, onDestroy, onMount, ref, registerWebComponent, securityGetCurrentInstance, styleSheet, template, wc };
|
|
4829
4829
|
export type { AttrValueType, CaseProps, CustomElement, DOMElement, DefaultProps, ExtractClasses, FC, IfProps, Instance, ListProps, RefObject, ReplaceProps, ReplacePropsInner, SomeProps, SwitchProps, WC };
|
|
4830
4830
|
//# sourceMappingURL=index.d.ts.map
|