gantri-components 2.142.10 → 2.143.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.
@@ -0,0 +1 @@
1
+ export { Positioned } from './positioned';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { PositionedProps } from './positioned.types';
3
+ export declare const Positioned: React.ForwardRefExoticComponent<PositionedProps & React.RefAttributes<PositionedProps>>;
@@ -0,0 +1,2 @@
1
+ import { PositionedProps } from './positioned.types';
2
+ export declare const PositionedPresets: PositionedProps;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { PositionedProps } from './positioned.types';
3
+ export declare const StyledPositionedContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Omit<import("../box/box.types").BoxProps & import("react").RefAttributes<import("../box/box.types").BoxProps>, "ref"> & {
4
+ ref?: ((instance: import("../box/box.types").BoxProps | null) => void) | import("react").RefObject<import("../box/box.types").BoxProps> | null | undefined;
5
+ }, PositionedProps>> & string & Omit<import("react").ForwardRefExoticComponent<import("../box/box.types").BoxProps & import("react").RefAttributes<import("../box/box.types").BoxProps>>, keyof import("react").Component<any, {}, any>>;
@@ -0,0 +1,11 @@
1
+ import { Property } from 'csstype';
2
+ import { BoxProps } from '../box/box.types';
3
+ import { ResolutionAwareProp } from '../../types';
4
+ export interface PositionedProps extends BoxProps {
5
+ bottom?: ResolutionAwareProp<Property.Bottom>;
6
+ height?: ResolutionAwareProp<string>;
7
+ left?: ResolutionAwareProp<Property.Left>;
8
+ right?: ResolutionAwareProp<Property.Right>;
9
+ top?: ResolutionAwareProp<Property.Top>;
10
+ width?: ResolutionAwareProp<string>;
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantri-components",
3
- "version": "2.142.10",
3
+ "version": "2.143.0",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "umd": "dist/index.umd.js",