@inntechcorp/it-design 2.0.193 → 2.0.195
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/form/control/Control.d.ts +2 -1
- package/dist/form/control/styled.d.ts +3 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +2 -2
- package/dist/{output-DCvuWNga.css → output-Co64jyKL.css} +29 -29
- package/dist/{output-DjWTgiS1.css → output-DOIezTPH.css} +55 -55
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChildrenProps } from "types/ChildrenProps";
|
|
2
2
|
export type ControlProps = {
|
|
3
3
|
className?: string;
|
|
4
|
+
position?: "start" | "end";
|
|
4
5
|
children?: ChildrenProps;
|
|
5
6
|
};
|
|
6
|
-
export default function Control({ className, children }: ControlProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default function Control({ position, className, children }: ControlProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").
|
|
2
|
+
declare const Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
3
|
+
$position: string;
|
|
4
|
+
}>> & string;
|
|
3
5
|
export { Wrapper };
|