@uniformdev/design-system 19.45.0 → 19.45.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/esm/index.js +239 -142
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +288 -190
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -22287,6 +22287,8 @@ type ParameterImageProps = Omit<CommonParameterInputProps, 'inputIcon' | 'type'>
|
|
|
22287
22287
|
declare const ParameterImage: React__default.ForwardRefExoticComponent<Omit<CommonParameterInputProps, "type" | "inputIcon"> & React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
22288
22288
|
/** Turns off the image preview, if it's not desired or rendered separately with `ParameterImageImage` elsewhere */
|
|
22289
22289
|
disablePreview?: boolean | undefined;
|
|
22290
|
+
} & {
|
|
22291
|
+
children?: React__default.ReactNode;
|
|
22290
22292
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
22291
22293
|
declare const ParameterImageInner: React__default.ForwardRefExoticComponent<React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
22292
22294
|
disablePreview?: boolean | undefined;
|
|
@@ -22294,7 +22296,7 @@ declare const ParameterImageInner: React__default.ForwardRefExoticComponent<Reac
|
|
|
22294
22296
|
|
|
22295
22297
|
declare function ParameterImagePreview({ imageSrc }: {
|
|
22296
22298
|
imageSrc: string;
|
|
22297
|
-
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22299
|
+
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
22298
22300
|
|
|
22299
22301
|
type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement>;
|
|
22300
22302
|
/** @example <ParameterInput label="label value" id="my-input" /> */
|
package/dist/index.d.ts
CHANGED
|
@@ -22287,6 +22287,8 @@ type ParameterImageProps = Omit<CommonParameterInputProps, 'inputIcon' | 'type'>
|
|
|
22287
22287
|
declare const ParameterImage: React__default.ForwardRefExoticComponent<Omit<CommonParameterInputProps, "type" | "inputIcon"> & React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
22288
22288
|
/** Turns off the image preview, if it's not desired or rendered separately with `ParameterImageImage` elsewhere */
|
|
22289
22289
|
disablePreview?: boolean | undefined;
|
|
22290
|
+
} & {
|
|
22291
|
+
children?: React__default.ReactNode;
|
|
22290
22292
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
22291
22293
|
declare const ParameterImageInner: React__default.ForwardRefExoticComponent<React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
22292
22294
|
disablePreview?: boolean | undefined;
|
|
@@ -22294,7 +22296,7 @@ declare const ParameterImageInner: React__default.ForwardRefExoticComponent<Reac
|
|
|
22294
22296
|
|
|
22295
22297
|
declare function ParameterImagePreview({ imageSrc }: {
|
|
22296
22298
|
imageSrc: string;
|
|
22297
|
-
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22299
|
+
}): _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
22298
22300
|
|
|
22299
22301
|
type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement>;
|
|
22300
22302
|
/** @example <ParameterInput label="label value" id="my-input" /> */
|