@pnkx-lib/ui 1.9.470 → 1.9.471

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pnkx-lib/ui",
3
3
  "private": false,
4
- "version": "1.9.470",
4
+ "version": "1.9.471",
5
5
  "type": "module",
6
6
  "main": "./es/index.js",
7
7
  "module": "./es/index.js",
@@ -21,6 +21,8 @@ export interface InputProps extends InputPropsAntd {
21
21
  toUpperCaseValue?: boolean;
22
22
  classNameLabel?: string;
23
23
  inputPassword?: boolean;
24
+ subLabel?: string;
25
+ classNameSubLabel?: string;
24
26
  }
25
27
  export declare const Input: (props: InputProps) => import("react/jsx-runtime").JSX.Element;
26
28
  export interface PropsNumberFormat extends Omit<InputProps, "onChange" | "afterOnChange" | "value" | "defaultValue" | "iconStartInput" | "iconEndInput"> {
@@ -2,5 +2,6 @@ export interface LabelProps {
2
2
  label: string;
3
3
  required?: boolean;
4
4
  classNameLabel?: string;
5
+ isSubLabel?: boolean;
5
6
  }
6
- export declare const Label: ({ label, required, classNameLabel }: LabelProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const Label: ({ label, required, classNameLabel, isSubLabel }: LabelProps) => import("react/jsx-runtime").JSX.Element;