mediacube-ui-v2 0.0.90 → 0.0.92
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/types/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
|
-
export * from './types';
|
|
3
|
-
export * from './enums';
|
|
4
|
-
export * from './components';
|
|
5
|
-
export * from './composables';
|
|
6
|
-
export * from './consts';
|
|
7
|
-
export * from './utils';
|
|
8
|
-
export * from './assets/tokens/json';
|
|
2
|
+
export * as types from './types';
|
|
3
|
+
export * as enums from './enums';
|
|
4
|
+
export * as components from './components';
|
|
5
|
+
export * as composables from './composables';
|
|
6
|
+
export * as consts from './consts';
|
|
7
|
+
export * as utils from './utils';
|
|
8
|
+
export * as tokens from './assets/tokens/json';
|
|
9
9
|
declare const _default: {
|
|
10
10
|
install(app: App, options?: {}): void;
|
|
11
11
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { MediaQueries } from '../enums/ui/MediaQueries';
|
|
2
|
+
export declare const adaptivePropsParams: string[];
|
|
3
|
+
export declare const adaptivePropsSizes: MediaQueries[];
|
|
4
|
+
interface ComponentPropType {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
}
|
|
7
|
+
export declare const adaptiveAdditionalProps: {
|
|
8
|
+
[key: string]: ComponentPropType;
|
|
9
|
+
};
|
|
10
|
+
export {};
|