@julseb-lib/react 0.1.41 → 0.1.42
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/index.cjs +53 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +53 -20
- package/dist/index.js.map +1 -1
- package/dist/types/components-props.d.cts +3 -1
- package/dist/types/components-props.d.ts +3 -1
- package/package.json +1 -1
|
@@ -260,6 +260,7 @@ interface ILibInputBase {
|
|
|
260
260
|
value?: any;
|
|
261
261
|
inputVariant?: LibInputVariant;
|
|
262
262
|
inputBackground?: LibInputBackground;
|
|
263
|
+
containerClassName?: ClassNames;
|
|
263
264
|
}
|
|
264
265
|
interface InputWithLabel extends ILibInputBase {
|
|
265
266
|
label?: ReactChildren;
|
|
@@ -296,8 +297,9 @@ interface ILibInputWithSuffix {
|
|
|
296
297
|
suffix?: string;
|
|
297
298
|
}
|
|
298
299
|
|
|
299
|
-
type ILibInputContainer = LibComponentBase<HTMLDivElement> & Omit<ILibInputWithList, "inputBackground" | "inputVariant"> & ILibInputWithValidation & {
|
|
300
|
+
type ILibInputContainer = Omit<LibComponentBase<HTMLDivElement>, "className"> & Omit<ILibInputWithList, "inputBackground" | "inputVariant" | "className" | "containerClassName"> & ILibInputWithValidation & {
|
|
300
301
|
hasListOpen?: boolean;
|
|
302
|
+
className?: ClassNames;
|
|
301
303
|
};
|
|
302
304
|
|
|
303
305
|
type ILibColorInput = Omit<InputHTMLAttributes<HTMLInputElement>, "prefix"> & ILibInputCommon & ILibInputWithValidation & {
|
|
@@ -260,6 +260,7 @@ interface ILibInputBase {
|
|
|
260
260
|
value?: any;
|
|
261
261
|
inputVariant?: LibInputVariant;
|
|
262
262
|
inputBackground?: LibInputBackground;
|
|
263
|
+
containerClassName?: ClassNames;
|
|
263
264
|
}
|
|
264
265
|
interface InputWithLabel extends ILibInputBase {
|
|
265
266
|
label?: ReactChildren;
|
|
@@ -296,8 +297,9 @@ interface ILibInputWithSuffix {
|
|
|
296
297
|
suffix?: string;
|
|
297
298
|
}
|
|
298
299
|
|
|
299
|
-
type ILibInputContainer = LibComponentBase<HTMLDivElement> & Omit<ILibInputWithList, "inputBackground" | "inputVariant"> & ILibInputWithValidation & {
|
|
300
|
+
type ILibInputContainer = Omit<LibComponentBase<HTMLDivElement>, "className"> & Omit<ILibInputWithList, "inputBackground" | "inputVariant" | "className" | "containerClassName"> & ILibInputWithValidation & {
|
|
300
301
|
hasListOpen?: boolean;
|
|
302
|
+
className?: ClassNames;
|
|
301
303
|
};
|
|
302
304
|
|
|
303
305
|
type ILibColorInput = Omit<InputHTMLAttributes<HTMLInputElement>, "prefix"> & ILibInputCommon & ILibInputWithValidation & {
|