@jobber/components-native 0.33.0 → 0.33.1
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/dist/src/Flex/Flex.js +1 -1
- package/dist/src/InputSearch/InputSearch.js +1 -1
- package/dist/src/InputText/InputText.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -5
- package/src/Flex/Flex.tsx +1 -1
- package/src/InputSearch/InputSearch.tsx +1 -1
- package/src/InputText/InputText.tsx +1 -1
package/dist/src/Flex/Flex.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { Children } from "react";
|
|
2
2
|
import { View } from "react-native";
|
|
3
|
-
import chunk from "lodash
|
|
3
|
+
import chunk from "lodash/chunk";
|
|
4
4
|
import { columnStyles, gapStyles, styles } from "./Flex.styles";
|
|
5
5
|
import { Content } from "../Content";
|
|
6
6
|
export function Flex({ template = [], align = "center", gap = "base", children, }) {
|
|
@@ -11,7 +11,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
11
11
|
};
|
|
12
12
|
import React, { forwardRef, useEffect } from "react";
|
|
13
13
|
import { View } from "react-native";
|
|
14
|
-
import debounce from "lodash
|
|
14
|
+
import debounce from "lodash/debounce";
|
|
15
15
|
import { styles } from "./InputSearch.style";
|
|
16
16
|
import { InputText } from "../InputText";
|
|
17
17
|
export const InputSearch = forwardRef(SearchInputInternal);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { forwardRef, useEffect, useImperativeHandle, useMemo, useRef, useState, } from "react";
|
|
2
2
|
import { Platform, TextInput, } from "react-native";
|
|
3
|
-
import identity from "lodash
|
|
3
|
+
import identity from "lodash/identity";
|
|
4
4
|
import { styles } from "./InputText.style";
|
|
5
5
|
import { useInputAccessoriesContext } from "./context";
|
|
6
6
|
import { useFormController } from "../hooks";
|