aport-tools 4.2.11 → 4.2.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,16 @@
1
+ import React from "react";
2
+ interface InputCheckProps {
3
+ name: string;
4
+ options: {
5
+ id: string;
6
+ label: string;
7
+ icon?: string;
8
+ }[];
9
+ multi?: boolean;
10
+ max?: number;
11
+ rowAmount?: number;
12
+ iconPosition?: "row" | "column";
13
+ disabled?: boolean;
14
+ }
15
+ declare const InputCheck: React.FC<InputCheckProps>;
16
+ export default InputCheck;
package/dist/index.esm.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! aport-tools v4.2.11 | ISC */
1
+ /*! aport-tools v4.2.12 | ISC */
2
2
  import React, { useContext, useState, createContext, useCallback, useMemo } from 'react';
3
3
  import { StyleSheet, Text as Text$1, View, TextInput, TouchableOpacity, Modal, Pressable, FlatList, Keyboard, Image, Alert, ActivityIndicator, Platform } from 'react-native';
4
4
  import { ThemeContext } from 'aport-themes';
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! aport-tools v4.2.11 | ISC */
1
+ /*! aport-tools v4.2.12 | ISC */
2
2
  'use strict';
3
3
 
4
4
  var React = require('react');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aport-tools",
3
- "version": "4.2.11",
3
+ "version": "4.2.12",
4
4
  "description": "Aport mobile Tools with modern and minimalistic design",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",