j20 0.0.25 → 0.0.26
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 +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +50 -33
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4683,7 +4683,7 @@ declare const onMount: (callback: () => (() => void) | void) => void;
|
|
|
4683
4683
|
|
|
4684
4684
|
declare const onDestroy: (callback: () => void) => _j20org_signal.Effect;
|
|
4685
4685
|
|
|
4686
|
-
declare const
|
|
4686
|
+
declare const createCssModule: <T extends string>(css: T) => () => { [K in ExtractClasses<T>]: string; };
|
|
4687
4687
|
declare const styleSheet: (css: string, id?: string) => void;
|
|
4688
4688
|
|
|
4689
4689
|
interface ListProps<T> {
|
|
@@ -4769,6 +4769,6 @@ declare const Fragment: (props: {
|
|
|
4769
4769
|
}) => any;
|
|
4770
4770
|
declare const template: (template: string) => (isSvg: boolean) => any;
|
|
4771
4771
|
|
|
4772
|
-
export { $, $useContext, Case, Default, For, Fragment, If, Replace, Some, Switch, createComponent, createContext,
|
|
4772
|
+
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 };
|
|
4773
4773
|
export type { AttrValueType, CaseProps, CustomElement, DOMElement, DefaultProps, ExtractClasses, FC, IfProps, Instance, ListProps, RefObject, ReplaceProps, ReplacePropsInner, SomeProps, SwitchProps, WC };
|
|
4774
4774
|
//# sourceMappingURL=index.d.ts.map
|