@evlop/commons 1.0.205 → 1.0.207

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,19 +1,18 @@
1
1
  import React, { PropsWithChildren, PropsWithoutRef, RefAttributes } from 'react';
2
- import { Action } from '../../hooks';
3
- declare type SettingProp = {
2
+ declare type ModalProps = {
4
3
  model?: string;
5
4
  dataModel?: string;
6
5
  configModel?: string;
7
- action?: Action;
8
6
  };
9
- export declare type ComponentWithSettings<P extends Object> = React.ForwardRefExoticComponent<PropsWithoutRef<PropsWithChildren<P & SettingProp>> & RefAttributes<any>>;
10
- export declare const withSettings: ({ valueOptions, configurationOptions }: {
11
- valueOptions?: any[];
12
- configurationOptions?: any[];
13
- }) => <P extends Object>(BaseComponent: React.ComponentType<P>) => React.ForwardRefExoticComponent<React.PropsWithoutRef<React.PropsWithChildren<P & SettingProp>> & React.RefAttributes<any>>;
14
- export declare const withToolbar: ({ valueOptions, configurationOptions }: {
15
- valueOptions?: any[];
16
- configurationOptions?: any[];
17
- }) => <P extends Object>(BaseComponent: React.ComponentType<P>) => React.ForwardRefExoticComponent<React.PropsWithoutRef<React.PropsWithChildren<P & SettingProp>> & React.RefAttributes<any>>;
7
+ export declare type ComponentWithSettings<P extends Object> = React.ForwardRefExoticComponent<PropsWithoutRef<PropsWithChildren<P & ModalProps>> & RefAttributes<any>>;
8
+ export declare type SettingOptions = {
9
+ valueOptions: any[];
10
+ configurationOptions: any[];
11
+ };
12
+ export declare const withSettings: (settingOptions: SettingOptions) => <P extends Object>(BaseComponent: React.ComponentType<P>) => React.ForwardRefExoticComponent<React.PropsWithoutRef<React.PropsWithChildren<P & ModalProps>> & React.RefAttributes<any>>;
13
+ export declare const withModelPropsLoader: (settingOptions: SettingOptions) => <P extends Object>(BaseComponent: React.ComponentType<P>) => (props: P & ModalProps & {
14
+ _innerRef: any;
15
+ }) => JSX.Element;
16
+ export declare const withToolbar: (settingOptions: SettingOptions) => <P extends Object>(BaseComponent: React.ComponentType<P>) => React.ForwardRefExoticComponent<React.PropsWithoutRef<React.PropsWithChildren<P & ModalProps>> & React.RefAttributes<any>>;
18
17
  export default withSettings;
19
18
  //# sourceMappingURL=withSettings.native.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"withSettings.native.d.ts","sourceRoot":"","sources":["../../../../src/components/hoc/withSettings.native.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAc,iBAAiB,EAAE,eAAe,EAAE,aAAa,EAAW,MAAM,OAAO,CAAC;AACtG,OAAO,EAAE,MAAM,EAA+B,MAAM,aAAa,CAAC;AAElE,aAAK,WAAW,GAAG;IAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,CAAA;AAE/F,oBAAY,qBAAqB,CAAC,CAAC,SAAS,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC,GAAG,WAAW,CAAC,CAAC,GAAG,aAAa,CAAC,GAAG,CAAC,CAAC,CAAA;AAE/J,eAAO,MAAM,YAAY;;;8LAsCvB,CAAC;AAGH,eAAO,MAAM,WAAW;;;8LAAe,CAAC;AACxC,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"withSettings.native.d.ts","sourceRoot":"","sources":["../../../../src/components/hoc/withSettings.native.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAc,iBAAiB,EAAE,eAAe,EAAE,aAAa,EAAW,MAAM,OAAO,CAAC;AAGtG,aAAK,UAAU,GAAG;IAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAA;CAAE,CAAA;AAE7E,oBAAY,qBAAqB,CAAC,CAAC,SAAS,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC,GAAG,UAAU,CAAC,CAAC,GAAG,aAAa,CAAC,GAAG,CAAC,CAAC,CAAA;AAE9J,oBAAY,cAAc,GAAG;IAAC,YAAY,EAAE,GAAG,EAAE,CAAC;IAAC,oBAAoB,EAAE,GAAG,EAAE,CAAA;CAAC,CAAC;AAEhF,eAAO,MAAM,YAAY,mBAAoB,cAAc,4LAkB1D,CAAA;AAGD,eAAO,MAAM,oBAAoB,mBAAkB,cAAc;eAAwG,GAAG;iBAiB3K,CAAC;AAGF,eAAO,MAAM,WAAW,mBAzCqB,cAAc,4LAyCpB,CAAC;AACxC,eAAe,YAAY,CAAC"}
@@ -30,36 +30,33 @@ var __rest = (this && this.__rest) || function (s, e) {
30
30
  return t;
31
31
  };
32
32
  Object.defineProperty(exports, "__esModule", { value: true });
33
- exports.withToolbar = exports.withSettings = void 0;
33
+ exports.withToolbar = exports.withModelPropsLoader = exports.withSettings = void 0;
34
34
  const lodash_1 = require("lodash");
35
35
  const react_1 = __importStar(require("react"));
36
36
  const hooks_1 = require("../../hooks");
37
- const withSettings = ({ valueOptions = [], configurationOptions = [] }) => (BaseComponent) => react_1.forwardRef((props, forwardedRef) => {
38
- const { model, dataModel = model, configModel = dataModel && `${dataModel}_config`, action: actionProp, onPress } = props, remainingProps = __rest(props, ["model", "dataModel", "configModel", "action", "onPress"]);
37
+ const withSettings = (settingOptions) => (BaseComponent) => {
38
+ const ComponentWithModalPropsLoader = exports.withModelPropsLoader(settingOptions)(BaseComponent);
39
+ return react_1.forwardRef((props, forwardedRef) => {
40
+ const { model, dataModel = model, configModel = dataModel && `${dataModel}_config` } = props, remainingProps = __rest(props, ["model", "dataModel", "configModel"]);
41
+ if (dataModel || configModel) {
42
+ return react_1.default.createElement(ComponentWithModalPropsLoader, Object.assign({ _innerRef: forwardedRef, dataModel: dataModel, configModel: configModel }, remainingProps));
43
+ }
44
+ else {
45
+ return react_1.default.createElement(BaseComponent, Object.assign({ ref: forwardedRef }, props));
46
+ }
47
+ });
48
+ };
49
+ exports.withSettings = withSettings;
50
+ const withModelPropsLoader = (settingOptions) => (BaseComponent) => (props) => {
51
+ const { model, _innerRef, dataModel = model, configModel = dataModel && `${dataModel}_config` } = props, remainingProps = __rest(props, ["model", "_innerRef", "dataModel", "configModel"]);
39
52
  const { data } = hooks_1.useComponentData();
40
- // Extract values from component data
41
- const values = react_1.useMemo(() => {
42
- if (!dataModel || !valueOptions)
43
- return {};
44
- // merge configuration option from props and configuration option values from model
45
- const valuePropNames = lodash_1.map(valueOptions, 'name');
46
- const propsForValue = lodash_1.pick(props, valuePropNames);
47
- return lodash_1.assign(propsForValue, lodash_1.get(data, dataModel));
53
+ // Extract values from component data,
54
+ const propsFromModel = react_1.useMemo(() => {
55
+ return lodash_1.assign({}, lodash_1.get(data, configModel), lodash_1.get(data, dataModel));
48
56
  }, [dataModel, props, data]);
49
- // Extract configs from component data
50
- const configs = react_1.useMemo(() => {
51
- if (!configModel || !configurationOptions)
52
- return {};
53
- // merge configuration option from props and configuration option values from model
54
- const configOptionPropNames = lodash_1.map(configurationOptions, 'name');
55
- const propsForConfigOptions = lodash_1.pick(props, configOptionPropNames);
56
- return lodash_1.assign(propsForConfigOptions, lodash_1.get(data, configModel));
57
- }, [configModel, props, data]);
58
- const action = values.action || actionProp || onPress;
59
- const actionHandeller = hooks_1.useAction(action);
60
- return (react_1.default.createElement(BaseComponent, Object.assign({ ref: forwardedRef }, remainingProps, configs, values, { onPress: actionHandeller, action: action })));
61
- });
62
- exports.withSettings = withSettings;
57
+ return (react_1.default.createElement(BaseComponent, Object.assign({ ref: _innerRef }, remainingProps, propsFromModel)));
58
+ };
59
+ exports.withModelPropsLoader = withModelPropsLoader;
63
60
  exports.withToolbar = exports.withSettings;
64
61
  exports.default = exports.withSettings;
65
62
  //# sourceMappingURL=withSettings.native.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"withSettings.native.js","sourceRoot":"","sources":["../../../../src/components/hoc/withSettings.native.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mCAAgD;AAChD,+CAAsG;AACtG,uCAAkE;AAM3D,MAAM,YAAY,GAAC,CAAC,EAAE,YAAY,GAAG,EAAE,EAAE,oBAAoB,GAAG,EAAE,EAAC,EAAE,EAAE,CAAC,CAAmB,aAAqC,EAAE,EAAE,CAAC,kBAAU,CAA0C,CAAC,KAAU,EAAE,YAAY,EAAE,EAAE;IAEzN,MAAM,EAAE,KAAK,EAAE,SAAS,GAAG,KAAK,EAAG,WAAW,GAAG,SAAS,IAAI,GAAG,SAAS,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,KAAuB,KAAK,EAAvB,cAAc,UAAI,KAAK,EAAtI,0DAA8H,CAAQ,CAAC;IAC7I,MAAM,EAAC,IAAI,EAAC,GAAG,wBAAgB,EAAE,CAAC;IAElC,qCAAqC;IACrC,MAAM,MAAM,GAAQ,eAAO,CAAC,GAAE,EAAE;QAC5B,IAAG,CAAC,SAAS,IAAI,CAAC,YAAY;YAAE,OAAO,EAAE,CAAC;QAE1C,mFAAmF;QACnF,MAAM,cAAc,GAAG,YAAG,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;QACjD,MAAM,aAAa,GAAG,aAAI,CAAC,KAAK,EAAE,cAAc,CAAC,CAAC;QAClD,OAAQ,eAAM,CAAC,aAAa,EAAE,YAAG,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC,CAAC;IACxD,CAAC,EAAE,CAAC,SAAS,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;IAE7B,sCAAsC;IACtC,MAAM,OAAO,GAAQ,eAAO,CAAC,GAAE,EAAE;QAC7B,IAAG,CAAC,WAAW,IAAI,CAAC,oBAAoB;YAAE,OAAO,EAAE,CAAC;QACpD,mFAAmF;QACnF,MAAM,qBAAqB,GAAG,YAAG,CAAC,oBAAoB,EAAE,MAAM,CAAC,CAAC;QAChE,MAAM,qBAAqB,GAAG,aAAI,CAAC,KAAK,EAAE,qBAAqB,CAAC,CAAC;QACjE,OAAQ,eAAM,CAAC,qBAAqB,EAAE,YAAG,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC;IAClE,CAAC,EAAE,CAAC,WAAW,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;IAE/B,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,IAAI,UAAU,IAAI,OAAO,CAAC;IAEtD,MAAM,eAAe,GAAG,iBAAS,CAAC,MAAM,CAAC,CAAC;IAE1C,OAAO,CACH,8BAAC,aAAa,kBACV,GAAG,EAAE,YAAY,IACb,cAAc,EACd,OAAO,EACP,MAAM,IACV,OAAO,EAAE,eAAe,EACxB,MAAM,EAAE,MAAM,IAChB,CACL,CAAC;AACN,CAAC,CAAC,CAAC;AAtCU,QAAA,YAAY,gBAsCtB;AAGU,QAAA,WAAW,GAAG,oBAAY,CAAC;AACxC,kBAAe,oBAAY,CAAC"}
1
+ {"version":3,"file":"withSettings.native.js","sourceRoot":"","sources":["../../../../src/components/hoc/withSettings.native.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mCAAgD;AAChD,+CAAsG;AACtG,uCAA+C;AAQxC,MAAM,YAAY,GAAG,CAAC,cAA8B,EAAE,EAAE,CAAC,CAAmB,aAAqC,EAAE,EAAE;IAExH,MAAM,6BAA6B,GAAG,4BAAoB,CAAC,cAAc,CAAC,CAAC,aAAa,CAAC,CAAC;IAE1F,OAAO,kBAAU,CAAyC,CAAC,KAAU,EAAE,YAAY,EAAE,EAAE;QACnF,MAAM,EAAE,KAAK,EAAE,SAAS,GAAG,KAAK,EAAG,WAAW,GAAG,SAAS,IAAI,GAAG,SAAS,SAAS,KAAuB,KAAK,EAAvB,cAAc,UAAI,KAAK,EAAzG,qCAAiG,CAAQ,CAAC;QAEhH,IAAG,SAAS,IAAI,WAAW,EAAE;YACzB,OAAO,8BAAC,6BAA6B,kBACzB,SAAS,EAAE,YAAY,EACvB,SAAS,EAAE,SAAS,EACpB,WAAW,EAAE,WAAW,IACpB,cAAc,EACpB,CAAA;SACb;aAAM;YACH,OAAO,8BAAC,aAAa,kBAAC,GAAG,EAAE,YAAY,IAAM,KAAK,EAAI,CAAA;SACzD;IACL,CAAC,CAAC,CAAC;AACP,CAAC,CAAA;AAlBY,QAAA,YAAY,gBAkBxB;AAGM,MAAM,oBAAoB,GAAC,CAAC,cAA8B,EAAE,EAAE,CAAC,CAAmB,aAAqC,EAAE,EAAE,CAAC,CAAC,KAA0C,EAAE,EAAE;IAE9K,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,GAAG,KAAK,EAAG,WAAW,GAAG,SAAS,IAAI,GAAG,SAAS,SAAS,KAAuB,KAAK,EAAvB,cAAc,UAAI,KAAK,EAApH,kDAA4G,CAAQ,CAAC;IAC3H,MAAM,EAAC,IAAI,EAAC,GAAG,wBAAgB,EAAE,CAAC;IAElC,sCAAsC;IACtC,MAAM,cAAc,GAAQ,eAAO,CAAC,GAAE,EAAE;QACpC,OAAQ,eAAM,CAAC,EAAE,EAAE,YAAG,CAAC,IAAI,EAAE,WAAW,CAAC,EAAE,YAAG,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC,CAAC;IACrE,CAAC,EAAE,CAAC,SAAS,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC;IAE7B,OAAO,CACH,8BAAC,aAAa,kBACV,GAAG,EAAE,SAAS,IACV,cAAc,EACd,cAAc,EACpB,CACL,CAAC;AACN,CAAC,CAAC;AAjBW,QAAA,oBAAoB,wBAiB/B;AAGW,QAAA,WAAW,GAAG,oBAAY,CAAC;AACxC,kBAAe,oBAAY,CAAC"}
@@ -6,6 +6,13 @@ declare const reactNativeVectorIcons: {
6
6
  name: string;
7
7
  variant: string;
8
8
  character: any;
9
+ } | {
10
+ id: string;
11
+ type: string;
12
+ isDirected: any;
13
+ name: string;
14
+ variant: string;
15
+ character: any;
9
16
  } | {
10
17
  id: string;
11
18
  type: string;
@@ -1 +1 @@
1
- {"version":3,"file":"reactNativeVectorIcons.d.ts","sourceRoot":"","sources":["../../../../src/constants/iconInfo/reactNativeVectorIcons.ts"],"names":[],"mappings":"AAwDA,QAAA,MAAO,sBAAsB;;;;;;;;;;;;;;;CAAgC,CAAC;AAE9D,eAAe,sBAAsB,CAAA"}
1
+ {"version":3,"file":"reactNativeVectorIcons.d.ts","sourceRoot":"","sources":["../../../../src/constants/iconInfo/reactNativeVectorIcons.ts"],"names":[],"mappings":"AAyEA,QAAA,MAAO,sBAAsB;;;;;;;;;;;;;;;;;;;;;;CAA6C,CAAC;AAE3E,eAAe,sBAAsB,CAAA"}
@@ -10,6 +10,8 @@ const Feather_json_1 = __importDefault(require("react-native-vector-icons/glyphm
10
10
  const FontAwesome_json_1 = __importDefault(require("react-native-vector-icons/glyphmaps/FontAwesome.json"));
11
11
  const FontAwesome5Free_meta_json_1 = __importDefault(require("react-native-vector-icons/glyphmaps/FontAwesome5Free_meta.json"));
12
12
  const FontAwesome5Free_json_1 = __importDefault(require("react-native-vector-icons/glyphmaps/FontAwesome5Free.json"));
13
+ const FontAwesome6Free_meta_json_1 = __importDefault(require("react-native-vector-icons/glyphmaps/FontAwesome6Free_meta.json"));
14
+ const FontAwesome6Free_json_1 = __importDefault(require("react-native-vector-icons/glyphmaps/FontAwesome6Free.json"));
13
15
  const Fontisto_json_1 = __importDefault(require("react-native-vector-icons/glyphmaps/Fontisto.json"));
14
16
  const Foundation_json_1 = __importDefault(require("react-native-vector-icons/glyphmaps/Foundation.json"));
15
17
  const Ionicons_json_1 = __importDefault(require("react-native-vector-icons/glyphmaps/Ionicons.json"));
@@ -33,6 +35,17 @@ const fa5Icons = lodash_1.chain(FontAwesome5Free_meta_json_1.default)
33
35
  })))
34
36
  .keyBy('id')
35
37
  .value();
38
+ const fa6Icons = lodash_1.chain(FontAwesome6Free_meta_json_1.default)
39
+ .flatMap((iconNames, variant) => lodash_1.map(iconNames, iconName => ({
40
+ id: `font-awesome-6:${variant}:${iconName}`,
41
+ type: 'font-awesome-6',
42
+ isDirected: lodash_1.get(directed_icons_1.default, ['font-awesome-6', iconName]),
43
+ name: iconName,
44
+ variant,
45
+ character: FontAwesome6Free_json_1.default[iconName],
46
+ })))
47
+ .keyBy('id')
48
+ .value();
36
49
  const vectorIcons = lodash_1.chain(iconLibraries)
37
50
  .mapValues((libraryIcons) => lodash_1.map(libraryIcons, (character, name) => ({ character, name })))
38
51
  .flatMap((iconsOfCurrentType, iconLibrary) => lodash_1.map(iconsOfCurrentType, ({ name: iconName, character }) => ({
@@ -44,6 +57,6 @@ const vectorIcons = lodash_1.chain(iconLibraries)
44
57
  })))
45
58
  .keyBy('id')
46
59
  .value();
47
- const reactNativeVectorIcons = Object.assign(Object.assign({}, fa5Icons), vectorIcons);
60
+ const reactNativeVectorIcons = Object.assign(Object.assign(Object.assign({}, fa5Icons), fa6Icons), vectorIcons);
48
61
  exports.default = reactNativeVectorIcons;
49
62
  //# sourceMappingURL=reactNativeVectorIcons.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"reactNativeVectorIcons.js","sourceRoot":"","sources":["../../../../src/constants/iconInfo/reactNativeVectorIcons.ts"],"names":[],"mappings":";;;;;AAAA,wGAA2E;AAC3E,kGAAqE;AACrE,wGAA2E;AAC3E,oGAAuE;AACvE,4GAA+E;AAC/E,gIAA+F;AAC/F,sHAAqF;AACrF,sGAAyE;AACzE,0GAA6E;AAC7E,sGAAyE;AACzE,kIAAqG;AACrG,gHAAmF;AACnF,sGAAwE;AACxE,oHAAuF;AACvF,kGAAqE;AACrE,6CAAwC;AACxC,mCAAyC;AACzC,sEAA6C;AAE7C,MAAM,aAAa,GAAG,EAAC,SAAS,EAAT,wBAAS,EAAE,MAAM,EAAN,qBAAM,EAAE,SAAS,EAAT,wBAAS,EAAE,OAAO,EAAP,sBAAO,EAAE,WAAW,EAAX,0BAAW,EAAC,QAAQ,EAAR,uBAAQ,EAAE,UAAU,EAAV,yBAAU,EAAE,QAAQ,EAAR,uBAAQ,EAAE,sBAAsB,EAAtB,qCAAsB,EAAE,aAAa,EAAb,4BAAa,EAAE,OAAO,EAAP,uBAAO,EAAE,eAAe,EAAf,8BAAe,EAAE,MAAM,EAAN,qBAAM,EAAC,CAAC;AAEnL,MAAM,QAAQ,GAAG,cAAK,CAAC,oCAAiB,CAAC;KACpB,OAAO,CACJ,CAAC,SAAS,EAAE,OAAO,EAAE,EAAE,CAAC,YAAG,CACvB,SAAS,EACT,QAAQ,CAAC,EAAE,CAAC,CAAC;IACT,EAAE,EAAE,kBAAkB,OAAO,IAAI,QAAQ,EAAE;IAC3C,IAAI,EAAE,gBAAgB;IACtB,UAAU,EAAE,YAAG,CAAC,wBAAa,EAAE,CAAC,gBAAgB,EAAE,QAAQ,CAAC,CAAC;IAC5D,IAAI,EAAE,QAAQ;IACd,OAAO;IACP,SAAS,EAAE,+BAAY,CAAC,QAAQ,CAAC;CACpC,CAAC,CACL,CACJ;KACA,KAAK,CAAC,IAAI,CAAC;KACX,KAAK,EAAE,CAAC;AAI7B,MAAM,WAAW,GAAG,cAAK,CAAC,aAAa,CAAC;KAC3B,SAAS,CAAC,CAAC,YAAY,EAAC,EAAE,CAAA,YAAG,CAAC,YAAY,EAAE,CAAC,SAAS,EAAE,IAAI,EAAC,EAAE,CAAA,CAAC,EAAC,SAAS,EAAE,IAAI,EAAC,CAAC,CAAC,CAAC;KACpF,OAAO,CACJ,CAAC,kBAAkB,EAAE,WAAW,EAAC,EAAE,CAAC,YAAG,CAAC,kBAAkB,EACtD,CAAC,EAAC,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAC,EAAE,EAAE,CAAC,CAAC;IAC9B,EAAE,EAAE,GAAG,uBAAS,CAAC,WAAW,CAAC,IAAI,QAAQ,EAAE;IAC3C,IAAI,EAAE,uBAAS,CAAC,WAAW,CAAC;IAC5B,UAAU,EAAE,YAAG,CAAC,wBAAa,EAAE,CAAC,uBAAS,CAAC,WAAW,CAAC,EAAE,QAAQ,CAAC,CAAC;IAClE,IAAI,EAAE,QAAQ;IACd,SAAS;CACZ,CAAC,CACL,CACJ;KACA,KAAK,CAAC,IAAI,CAAC;KACX,KAAK,EAAE,CAAC;AAErB,MAAO,sBAAsB,mCAAO,QAAQ,GAAK,WAAW,CAAC,CAAC;AAE9D,kBAAe,sBAAsB,CAAA"}
1
+ {"version":3,"file":"reactNativeVectorIcons.js","sourceRoot":"","sources":["../../../../src/constants/iconInfo/reactNativeVectorIcons.ts"],"names":[],"mappings":"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"}