@micro-zoe/micro-app 1.0.0-beta.1 → 1.0.0-beta.3
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/lib/index.d.ts +1 -1
- package/lib/index.esm.js +1647 -1523
- package/lib/index.esm.js.map +1 -1
- package/lib/index.min.js +1 -1
- package/lib/index.min.js.map +1 -1
- package/lib/index.umd.js +1 -1
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/typings/global.d.ts +10 -16
package/lib/index.d.ts
CHANGED
|
@@ -243,7 +243,7 @@ declare module '@micro-zoe/micro-app/libs/utils' {
|
|
|
243
243
|
* @param target Accept cloned elements
|
|
244
244
|
* @param deep deep clone or transfer dom
|
|
245
245
|
*/
|
|
246
|
-
export function cloneContainer<T extends Element | ShadowRoot, Q extends Element | ShadowRoot>(
|
|
246
|
+
export function cloneContainer<T extends Element | ShadowRoot, Q extends Element | ShadowRoot>(target: Q, origin: T, deep: boolean): Q;
|
|
247
247
|
export function isInvalidQuerySelectorKey(key: string): boolean;
|
|
248
248
|
export function isUniqueElement(key: string): boolean;
|
|
249
249
|
/**
|