@egov3/system-design 1.0.41 → 1.0.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/README.md +3 -0
- package/dist/cjs/components/index.d.ts +1 -1
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.js +2 -2
- package/dist/esm/components/index.d.ts +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,3 +12,6 @@ yarn storybook
|
|
|
12
12
|
4.2. SetCharAt добавляет символ в заданный промежуток в строке
|
|
13
13
|
5. InputGroup story, группа из нескольких InputField
|
|
14
14
|
6. InputField props interface расширили стандартным интерфейсом от Реакт
|
|
15
|
+
|
|
16
|
+
### release 1.0.42
|
|
17
|
+
1. Исплавлено название Components в латиницу
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { Button } from "./Button";
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const Components: {
|
|
4
4
|
Button: ({ onClick, children, style, className, isRounded, disabled, variant, size, ariaLabel, }: import("./Button").IButtonProps) => import("react").JSX.Element;
|
|
5
5
|
InputField: import("react").ForwardRefExoticComponent<Omit<import("./InputField").IInputFieldProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
6
|
RadioGroup: ({ RadioGroupItems, invokeCustomOnChange, setSelectedOption, selectedOption, }: import("./RadioGroup").IRadioGroupProps) => import("react").JSX.Element;
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
declare const SystemDesign: {
|
|
3
|
-
|
|
3
|
+
Components: {
|
|
4
4
|
Button: ({ onClick, children, style, className, isRounded, disabled, variant, size, ariaLabel, }: import("./components/Button").IButtonProps) => import("react").JSX.Element;
|
|
5
5
|
InputField: import("react").ForwardRefExoticComponent<Omit<import("./components/InputField").IInputFieldProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
6
|
RadioGroup: ({ RadioGroupItems, invokeCustomOnChange, setSelectedOption, selectedOption, }: import("./components/RadioGroup").IRadioGroupProps) => import("react").JSX.Element;
|
package/dist/cjs/index.js
CHANGED
|
@@ -2973,7 +2973,7 @@ var Typography = function (_a) {
|
|
|
2973
2973
|
return React.createElement(tag, __assign(__assign({}, restProps), { className: CombineClassNames(fontClass ? styles[fontClass] : "", className), style: style }), children);
|
|
2974
2974
|
};
|
|
2975
2975
|
|
|
2976
|
-
var
|
|
2976
|
+
var Components = {
|
|
2977
2977
|
Button: Button,
|
|
2978
2978
|
InputField: InputField,
|
|
2979
2979
|
RadioGroup: RadioGroup,
|
|
@@ -2984,7 +2984,7 @@ var Сomponents = {
|
|
|
2984
2984
|
};
|
|
2985
2985
|
|
|
2986
2986
|
var SystemDesign = {
|
|
2987
|
-
|
|
2987
|
+
Components: Components
|
|
2988
2988
|
};
|
|
2989
2989
|
|
|
2990
2990
|
module.exports = SystemDesign;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { Button } from "./Button";
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const Components: {
|
|
4
4
|
Button: ({ onClick, children, style, className, isRounded, disabled, variant, size, ariaLabel, }: import("./Button").IButtonProps) => import("react").JSX.Element;
|
|
5
5
|
InputField: import("react").ForwardRefExoticComponent<Omit<import("./InputField").IInputFieldProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
6
6
|
RadioGroup: ({ RadioGroupItems, invokeCustomOnChange, setSelectedOption, selectedOption, }: import("./RadioGroup").IRadioGroupProps) => import("react").JSX.Element;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ interface IButtonProps {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
declare const SystemDesign: {
|
|
74
|
-
|
|
74
|
+
Components: {
|
|
75
75
|
Button: ({ onClick, children, style, className, isRounded, disabled, variant, size, ariaLabel, }: IButtonProps) => React.JSX.Element;
|
|
76
76
|
InputField: React.ForwardRefExoticComponent<Omit<IInputFieldProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
77
77
|
RadioGroup: ({ RadioGroupItems, invokeCustomOnChange, setSelectedOption, selectedOption, }: IRadioGroupProps) => React.JSX.Element;
|
package/dist/esm/index.js
CHANGED
|
@@ -2971,7 +2971,7 @@ var Typography = function (_a) {
|
|
|
2971
2971
|
return React.createElement(tag, __assign(__assign({}, restProps), { className: CombineClassNames(fontClass ? styles[fontClass] : "", className), style: style }), children);
|
|
2972
2972
|
};
|
|
2973
2973
|
|
|
2974
|
-
var
|
|
2974
|
+
var Components = {
|
|
2975
2975
|
Button: Button,
|
|
2976
2976
|
InputField: InputField,
|
|
2977
2977
|
RadioGroup: RadioGroup,
|
|
@@ -2982,7 +2982,7 @@ var Сomponents = {
|
|
|
2982
2982
|
};
|
|
2983
2983
|
|
|
2984
2984
|
var SystemDesign = {
|
|
2985
|
-
|
|
2985
|
+
Components: Components
|
|
2986
2986
|
};
|
|
2987
2987
|
|
|
2988
2988
|
export { SystemDesign as default };
|