@codeleap/mobile 3.0.2 → 3.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codeleap/mobile",
3
- "version": "3.0.2",
3
+ "version": "3.1.2",
4
4
  "main": "src/index.ts",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {
@@ -69,7 +69,7 @@ const DefaultHeader:React.FC<ModalHeaderProps> = (props) => {
69
69
  showClose = false,
70
70
  description = null,
71
71
  closable, debugName,
72
- closeIconName = 'close',
72
+ closeIconName = 'x',
73
73
  toggle,
74
74
  } = props
75
75
  return <>
@@ -19,6 +19,8 @@ import { ModalManager } from '../../utils'
19
19
  import { Button } from '../Button'
20
20
  export * from './styles'
21
21
 
22
+ export * from './styles'
23
+
22
24
  const defaultFilterFunction = (search: string, options: FormTypes.Options<any>) => {
23
25
  return options.filter((option) => {
24
26
  if (TypeGuards.isString(option.label)) {
@@ -91,10 +93,10 @@ export const Select = <T extends string|number = string, Multi extends boolean =
91
93
  listProps,
92
94
  debugName,
93
95
  placeholder = 'Select',
94
- arrowIconName = 'selectArrow',
95
- clearIconName,
96
+ arrowIconName = 'chevrons-up-down',
97
+ clearIconName = 'x',
96
98
  clearable = false,
97
- selectedIcon = 'selectMarker',
99
+ selectedIcon = 'check',
98
100
  inputProps = {},
99
101
  hideInput = false,
100
102
  itemProps = {},