zebpay-ui 0.0.110 → 0.0.112

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.
@@ -1,8 +1,8 @@
1
1
  export declare const checkboxContainer: import("@emotion/utils").SerializedStyles;
2
- export declare const labelContainer: (isLight: boolean) => import("@emotion/utils").SerializedStyles;
2
+ export declare const labelContainer: (isLight: boolean, alignTop?: boolean | undefined) => import("@emotion/utils").SerializedStyles;
3
3
  export declare const disabledLabel: import("@emotion/utils").SerializedStyles;
4
4
  export declare const input: import("@emotion/utils").SerializedStyles;
5
5
  export declare const checkCheckmark: (isLight: boolean, indeterminate?: boolean | undefined) => import("@emotion/utils").SerializedStyles;
6
6
  export declare const checkLabel: import("@emotion/utils").SerializedStyles;
7
7
  export declare const checkComponent: import("@emotion/utils").SerializedStyles;
8
- export declare const checkmark: (isLight: boolean, indeterminate?: boolean | undefined) => import("@emotion/utils").SerializedStyles;
8
+ export declare const checkmark: (isLight: boolean, indeterminate?: boolean | undefined, alignTop?: boolean | undefined) => import("@emotion/utils").SerializedStyles;
@@ -13,4 +13,5 @@ export interface CheckboxProps {
13
13
  style?: SerializedStyles;
14
14
  indeterminate?: boolean;
15
15
  mode?: Mode;
16
+ alignTop?: boolean;
16
17
  }
@@ -9,6 +9,8 @@ interface SidePanelProps {
9
9
  onBack?: () => void;
10
10
  onClose?: () => void;
11
11
  style?: SerializedStyles;
12
+ sidePanelStyle?: SerializedStyles;
13
+ contentStyle?: SerializedStyles;
12
14
  overlayStyle?: SerializedStyles;
13
15
  hideClose?: boolean;
14
16
  children?: React.ReactNode;