File tree 5 files changed +11
-7
lines changed
5 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @programmer_network/yail" ,
3
- "version" : " 1.0.218 " ,
3
+ "version" : " 1.0.219 " ,
4
4
"description" : " Programmer Network's official UI library for React" ,
5
5
"author" : " Aleksandar Grbic - (https://programmer.network)" ,
6
6
"publishConfig" : {
Original file line number Diff line number Diff line change @@ -6,12 +6,7 @@ import Dialog from "Components/Dialog";
6
6
import Icon from "Components/Icon" ;
7
7
import { Paragraph } from "Components/Typography" ;
8
8
9
- export interface IFormActionsProps {
10
- onSave : ( ) => void ;
11
- onCancel : ( ) => void ;
12
- onDelete ?: ( ) => void ;
13
- dialogDeleteText ?: string ;
14
- }
9
+ import { IFormActionsProps } from "./types" ;
15
10
16
11
const FormActions = ( {
17
12
onSave,
Original file line number Diff line number Diff line change
1
+ export interface IFormActionsProps {
2
+ onSave : ( ) => void ;
3
+ onCancel : ( ) => void ;
4
+ onDelete ?: ( ) => void ;
5
+ dialogDeleteText ?: string ;
6
+ }
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export { default as DraggableList } from "Components/DraggableList";
19
19
export { default as Dropdown } from "Components/Dropdown" ;
20
20
export { default as ElevatedCard } from "Components/ElevatedCard" ;
21
21
export { default as Error } from "Components/Error" ;
22
+ export { default as FormActions } from "Components/FormActions" ;
22
23
export { default as Icon } from "Components/Icon" ;
23
24
export { default as ImageCrop } from "Components/ImageCrop" ;
24
25
export { default as ImageDialog } from "Components/ImageDialog" ;
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import * as DraggableListTypes from "./Components/DraggableList/types";
17
17
import * as DropdownTypes from "./Components/Dropdown/types" ;
18
18
import * as ElevatedCardTypes from "./Components/ElevatedCard/types" ;
19
19
import * as ErrorTypes from "./Components/Error/types" ;
20
+ import * as FormActionsTypes from "./Components/FormActions/types" ;
20
21
import * as IconTypes from "./Components/Icon/types" ;
21
22
import * as ImageCropTypes from "./Components/ImageCrop/types" ;
22
23
import * as ImageDialogTypes from "./Components/ImageDialog/types" ;
@@ -55,6 +56,7 @@ export {
55
56
DropdownTypes ,
56
57
ElevatedCardTypes ,
57
58
ErrorTypes ,
59
+ FormActionsTypes ,
58
60
IconTypes ,
59
61
ImageCropTypes ,
60
62
ImageDialogTypes ,
You can’t perform that action at this time.
0 commit comments