@micro-zoe/micro-app 0.7.1 → 0.8.0
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 +4 -0
- package/lib/index.esm.js +434 -218
- 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/lib/index.d.ts
CHANGED
|
@@ -186,6 +186,10 @@ declare module '@micro-zoe/micro-app/libs/utils' {
|
|
|
186
186
|
* @param target app container
|
|
187
187
|
*/
|
|
188
188
|
export function getRootContainer(target: HTMLElement | ShadowRoot): HTMLElement;
|
|
189
|
+
/**
|
|
190
|
+
* trim start & end
|
|
191
|
+
*/
|
|
192
|
+
export function trim(str: string): string;
|
|
189
193
|
}
|
|
190
194
|
|
|
191
195
|
declare module '@micro-zoe/micro-app/interact' {
|