@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
package/dist/index.d.ts
CHANGED
|
@@ -409,9 +409,10 @@ declare function Group({ gap, horizontal, className, children }: GroupProps): re
|
|
|
409
409
|
|
|
410
410
|
type ControlProps = {
|
|
411
411
|
className?: string;
|
|
412
|
+
position?: "start" | "end";
|
|
412
413
|
children?: ChildrenProps$1;
|
|
413
414
|
};
|
|
414
|
-
declare function Control({ className, children }: ControlProps): react_jsx_runtime.JSX.Element;
|
|
415
|
+
declare function Control({ position, className, children }: ControlProps): react_jsx_runtime.JSX.Element;
|
|
415
416
|
|
|
416
417
|
type ItemProps = {
|
|
417
418
|
name: string;
|