@nmorph/nmorph-ui-kit 1.0.42 → 1.0.45
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.es.js +636 -638
- package/dist/index.umd.js +2 -2
- package/dist/src/hooks/use-nmorph-translation.d.ts +1 -1
- package/dist/src/main.d.ts +4 -4
- package/dist/src/outside-utils/index.d.ts +0 -3
- package/dist/src/utils/common.d.ts +3 -0
- package/dist/src/utils/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/src/main.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ObjectPlugin } from 'vue';
|
|
2
|
-
export * from './types/index.ts';
|
|
3
|
-
export * from './outside-hooks';
|
|
4
|
-
export * from './outside-utils';
|
|
5
|
-
export * from './components';
|
|
6
2
|
export { default as ru } from './locales/ru.js';
|
|
7
3
|
export { default as zh } from './locales/zh.js';
|
|
4
|
+
export { nmorphLog } from './outside-utils';
|
|
5
|
+
export { useNmorphTheme, useNmorphBrowser, useNmorphNotification, useNmorph } from './outside-hooks';
|
|
6
|
+
export * from './types/index.ts';
|
|
7
|
+
export * from './components';
|
|
8
8
|
export declare const NmorphLibrary: ObjectPlugin<any[]>;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
export declare const capitalizeFirstChar: (str: string) => string;
|
|
2
|
-
export declare const deepClone: <T>(obj: T) => T;
|
|
3
|
-
export declare const generateUUID: () => string;
|
|
4
1
|
type ConsoleType = 'error' | 'success' | 'warn' | 'info';
|
|
5
2
|
export declare const nmorphLog: (type: ConsoleType, message: string) => void;
|
|
6
3
|
export {};
|