gantri-components 2.187.0 → 2.187.2-beta.1
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/helpers/layout.helpers.d.ts +1 -2
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { AppSize, ResolutionAwareProp, ResolutionAwarePropBase } from '../types
|
|
2
|
-
import { ExtractStyleFromResolutionAwarePropEntry } from '../types/layout';
|
|
1
|
+
import { AppSize, ResolutionAwareProp, ResolutionAwarePropBase, ExtractStyleFromResolutionAwarePropEntry } from '../types';
|
|
3
2
|
export declare const isResolutionAwarePropBase: (prop: unknown) => prop is any;
|
|
4
3
|
export declare function extractValuesFromResolutionAwareProp<T = unknown>(prop: unknown): Required<ResolutionAwarePropBase<T>>;
|
|
5
4
|
export declare const extractValueFromResolutionAwareProp: (prop: unknown, size: AppSize) => any;
|