@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
|
@@ -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 = '
|
|
95
|
-
clearIconName,
|
|
96
|
+
arrowIconName = 'chevrons-up-down',
|
|
97
|
+
clearIconName = 'x',
|
|
96
98
|
clearable = false,
|
|
97
|
-
selectedIcon = '
|
|
99
|
+
selectedIcon = 'check',
|
|
98
100
|
inputProps = {},
|
|
99
101
|
hideInput = false,
|
|
100
102
|
itemProps = {},
|