@uniformdev/design-system 19.42.0 → 19.42.1-alpha.6
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/esm/index.js +234 -141
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +282 -189
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -21611,6 +21611,8 @@ type ParameterImageProps = Omit<CommonParameterInputProps, 'inputIcon' | 'type'>
|
|
|
21611
21611
|
declare const ParameterImage: React__default.ForwardRefExoticComponent<Omit<CommonParameterInputProps, "type" | "inputIcon"> & React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
21612
21612
|
/** Turns off the image preview, if it's not desired or rendered separately with `ParameterImageImage` elsewhere */
|
|
21613
21613
|
disablePreview?: boolean | undefined;
|
|
21614
|
+
} & {
|
|
21615
|
+
children?: React__default.ReactNode;
|
|
21614
21616
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
21615
21617
|
declare const ParameterImageInner: React__default.ForwardRefExoticComponent<React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
21616
21618
|
disablePreview?: boolean | undefined;
|
|
@@ -21618,7 +21620,7 @@ declare const ParameterImageInner: React__default.ForwardRefExoticComponent<Reac
|
|
|
21618
21620
|
|
|
21619
21621
|
declare function ParameterImagePreview({ imageSrc }: {
|
|
21620
21622
|
imageSrc: string;
|
|
21621
|
-
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21623
|
+
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21622
21624
|
|
|
21623
21625
|
type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement>;
|
|
21624
21626
|
/** @example <ParameterInput label="label value" id="my-input" /> */
|
package/dist/index.d.ts
CHANGED
|
@@ -21611,6 +21611,8 @@ type ParameterImageProps = Omit<CommonParameterInputProps, 'inputIcon' | 'type'>
|
|
|
21611
21611
|
declare const ParameterImage: React__default.ForwardRefExoticComponent<Omit<CommonParameterInputProps, "type" | "inputIcon"> & React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
21612
21612
|
/** Turns off the image preview, if it's not desired or rendered separately with `ParameterImageImage` elsewhere */
|
|
21613
21613
|
disablePreview?: boolean | undefined;
|
|
21614
|
+
} & {
|
|
21615
|
+
children?: React__default.ReactNode;
|
|
21614
21616
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
21615
21617
|
declare const ParameterImageInner: React__default.ForwardRefExoticComponent<React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
21616
21618
|
disablePreview?: boolean | undefined;
|
|
@@ -21618,7 +21620,7 @@ declare const ParameterImageInner: React__default.ForwardRefExoticComponent<Reac
|
|
|
21618
21620
|
|
|
21619
21621
|
declare function ParameterImagePreview({ imageSrc }: {
|
|
21620
21622
|
imageSrc: string;
|
|
21621
|
-
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21623
|
+
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
21622
21624
|
|
|
21623
21625
|
type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement>;
|
|
21624
21626
|
/** @example <ParameterInput label="label value" id="my-input" /> */
|