beca-ui 2.0.20-beta.34 → 2.0.20-beta.36
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/assets/locales/en.json.d.ts +5 -1
- package/dist/assets/locales/vi.json.d.ts +5 -1
- package/dist/beca-ui.js +2563 -2555
- package/dist/components/Form/Form.types.d.ts +2 -6
- package/dist/components/Form/index.d.ts +1 -2
- package/dist/components/MainLayout/Header/Header.types.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { FormProps as AntFormProps, FormItemProps as AntFormItemProps, FormInstance, FormListFieldData } from "antd";
|
|
1
|
+
import { FormProps as AntFormProps, FormItemProps, FormInstance, FormListFieldData } from "antd";
|
|
3
2
|
export interface FormProps extends AntFormProps {
|
|
4
3
|
children?: React.ReactNode;
|
|
5
4
|
}
|
|
6
|
-
export
|
|
7
|
-
naked?: boolean;
|
|
8
|
-
}
|
|
9
|
-
export type { FormInstance, FormListFieldData };
|
|
5
|
+
export type { FormInstance, FormListFieldData, FormItemProps };
|
|
@@ -35,10 +35,10 @@ export interface HeaderProps extends ApplicationsCardProps {
|
|
|
35
35
|
config?: MainLayoutConfig;
|
|
36
36
|
}
|
|
37
37
|
export type ThemeModel = {
|
|
38
|
-
getApi
|
|
39
|
-
updateApi
|
|
38
|
+
getApi?: string;
|
|
39
|
+
updateApi?: string;
|
|
40
40
|
params?: any;
|
|
41
|
-
mode
|
|
41
|
+
mode?: Theme;
|
|
42
42
|
};
|
|
43
43
|
export interface NotificationType {
|
|
44
44
|
title?: string;
|