@agilekit/ui 0.0.367-alpha.0 → 0.0.372-alpha.0
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.
|
@@ -10,7 +10,7 @@ export interface ICheckboxProps {
|
|
|
10
10
|
name?: string;
|
|
11
11
|
value?: string;
|
|
12
12
|
error?: Error | boolean;
|
|
13
|
-
onChange?(newChecked: boolean, id: string): void;
|
|
13
|
+
onChange?(newChecked: boolean, id: string, value?: string | number): void;
|
|
14
14
|
onFocus?(): void;
|
|
15
15
|
onBlur?(): void;
|
|
16
16
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"
|
|
1
|
+
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"choice" | "control">;
|
|
2
2
|
export default useStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"container" | "
|
|
1
|
+
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"container" | "rootFull" | "rootViewPort" | "drawer" | "paper" | "drawerTitle" | "drawerCloseIcon" | "drawerHeader" | "drawerBody" | "drawerBodyNoFooter" | "drawerFooter">;
|
|
2
2
|
export default useStyles;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"container" | "
|
|
1
|
+
declare const useStyles: (props?: any) => import("@material-ui/styles").ClassNameMap<"container" | "paper" | "modal" | "modalTitle" | "modalCloseIcon" | "modalHeader" | "modalBody" | "modalFooter">;
|
|
2
2
|
export default useStyles;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agilekit/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.372-alpha.0",
|
|
4
4
|
"description": "Agile's product component library",
|
|
5
5
|
"author": "Michael de Lima Alves <michaelalves@outlook.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"react-calendar": "^3.4.0",
|
|
56
56
|
"react-color": "^2.17.3",
|
|
57
57
|
"react-dom": "16.13.1",
|
|
58
|
+
"react-multi-select-component": "^4.1.13",
|
|
58
59
|
"react-router-dom": "^5.1.2",
|
|
59
60
|
"react-scripts": "^3.4.3",
|
|
60
61
|
"react-select": "^5.1.0",
|
|
@@ -142,5 +143,5 @@
|
|
|
142
143
|
"react-spring": "*"
|
|
143
144
|
},
|
|
144
145
|
"bugs": {},
|
|
145
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "c9df06a2eef3b47fb14fbc3a2ec617278c616bec"
|
|
146
147
|
}
|