@bigbinary/neetoui 4.4.18 → 4.4.20
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/README.md +21 -3
- package/formik.cjs.js +5 -5
- package/formik.js +5 -5
- package/index.cjs.js +5 -5
- package/index.css +1 -1
- package/index.d.ts +4 -0
- package/index.js +5 -5
- package/layouts.cjs.js +14 -4
- package/layouts.js +14 -4
- package/managers.cjs.js +1 -1
- package/managers.js +1 -1
- package/package.json +40 -17
- package/CHANGELOG.md +0 -772
package/index.d.ts
CHANGED
|
@@ -150,6 +150,7 @@ export interface ButtonProps {
|
|
|
150
150
|
size?: "small" | "medium" | "large";
|
|
151
151
|
href?: string;
|
|
152
152
|
tooltipProps?: TooltipProps;
|
|
153
|
+
children?: string;
|
|
153
154
|
[key: string]: any;
|
|
154
155
|
}
|
|
155
156
|
|
|
@@ -169,6 +170,7 @@ export type CheckboxProps = {
|
|
|
169
170
|
required?: false;
|
|
170
171
|
id?: string;
|
|
171
172
|
labelProps?: LabelProps;
|
|
173
|
+
children?: string;
|
|
172
174
|
} & React.DetailedHTMLProps<
|
|
173
175
|
React.InputHTMLAttributes<HTMLInputElement>,
|
|
174
176
|
HTMLInputElement
|
|
@@ -341,6 +343,7 @@ export type SwitchProps = {
|
|
|
341
343
|
checked?: boolean;
|
|
342
344
|
disabled?: boolean;
|
|
343
345
|
labelProps?: LabelProps;
|
|
346
|
+
children?: string;
|
|
344
347
|
} & React.DetailedHTMLProps<
|
|
345
348
|
React.InputHTMLAttributes<HTMLInputElement>,
|
|
346
349
|
HTMLInputElement
|
|
@@ -395,6 +398,7 @@ export interface TagProps {
|
|
|
395
398
|
color?: string;
|
|
396
399
|
/** @deprecated Prop deprecated. Use `indicatorStyle` prop instead*/
|
|
397
400
|
indicatorColor?: string;
|
|
401
|
+
children:string;
|
|
398
402
|
}
|
|
399
403
|
|
|
400
404
|
export type TextareaProps = {
|