@m4l/core 0.0.43 → 0.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.
Files changed (76) hide show
  1. package/dist/contexts/EnvironmentContext/index.d.ts +0 -1
  2. package/dist/contexts/EnvironmentContext/types.d.ts +0 -1
  3. package/dist/contexts/FlagsContext/index.d.ts +0 -1
  4. package/dist/contexts/FlagsContext/types.d.ts +0 -1
  5. package/dist/contexts/HostToolsContext/index.d.ts +0 -1
  6. package/dist/contexts/HostToolsContext/types.d.ts +0 -1
  7. package/dist/contexts/ModuleDictionaryContext/index.d.ts +0 -1
  8. package/dist/contexts/ModuleDictionaryContext/types.d.ts +0 -1
  9. package/dist/contexts/ModulePrivilegesContext/index.d.ts +0 -1
  10. package/dist/contexts/ModulePrivilegesContext/types.d.ts +0 -1
  11. package/dist/contexts/ModuleSkeletonContext/index.d.ts +0 -1
  12. package/dist/contexts/ModuleSkeletonContext/types.d.ts +0 -1
  13. package/dist/contexts/NetworkContext/index.d.ts +0 -1
  14. package/dist/contexts/NetworkContext/types.d.ts +0 -1
  15. package/dist/contexts/index.d.ts +0 -1
  16. package/dist/hooks/index.d.ts +0 -1
  17. package/dist/hooks/useEnvironment/index.d.ts +0 -1
  18. package/dist/hooks/useFlags/index.d.ts +0 -1
  19. package/dist/hooks/useHostTools/index.d.ts +0 -1
  20. package/dist/hooks/useLocalStorage/index.d.ts +0 -1
  21. package/dist/hooks/useModuleDictionary/index.d.ts +0 -1
  22. package/dist/hooks/useModulePrivileges/index.d.ts +0 -1
  23. package/dist/hooks/useModuleSkeleton/index.d.ts +0 -1
  24. package/dist/hooks/useNetwork/index.d.ts +0 -1
  25. package/dist/hooks/usePaginate/index.d.ts +0 -1
  26. package/dist/hooks/usePaginate/types.d.ts +0 -1
  27. package/dist/index.d.ts +0 -1
  28. package/dist/jest.d.ts +1 -0
  29. package/dist/types/dictionary.d.ts +0 -1
  30. package/dist/types/index.d.ts +0 -1
  31. package/dist/utils/axiosOperation/index.d.ts +0 -1
  32. package/dist/utils/axiosOperation/types.d.ts +0 -1
  33. package/dist/utils/axiosOperation.js +1 -3
  34. package/dist/utils/getLocalStorage.d.ts +0 -1
  35. package/dist/utils/getPropertyByString.d.ts +0 -1
  36. package/dist/utils/index.d.ts +0 -1
  37. package/dist/utils/setLocalStorage.d.ts +0 -1
  38. package/dist/utils/voidFunction.d.ts +0 -1
  39. package/dist/vite-env.d.ts +1 -0
  40. package/package.json +9 -14
  41. package/dist/contexts/EnvironmentContext/index.d.ts.map +0 -1
  42. package/dist/contexts/EnvironmentContext/types.d.ts.map +0 -1
  43. package/dist/contexts/FlagsContext/index.d.ts.map +0 -1
  44. package/dist/contexts/FlagsContext/types.d.ts.map +0 -1
  45. package/dist/contexts/HostToolsContext/index.d.ts.map +0 -1
  46. package/dist/contexts/HostToolsContext/types.d.ts.map +0 -1
  47. package/dist/contexts/ModuleDictionaryContext/index.d.ts.map +0 -1
  48. package/dist/contexts/ModuleDictionaryContext/types.d.ts.map +0 -1
  49. package/dist/contexts/ModulePrivilegesContext/index.d.ts.map +0 -1
  50. package/dist/contexts/ModulePrivilegesContext/types.d.ts.map +0 -1
  51. package/dist/contexts/ModuleSkeletonContext/index.d.ts.map +0 -1
  52. package/dist/contexts/ModuleSkeletonContext/types.d.ts.map +0 -1
  53. package/dist/contexts/NetworkContext/index.d.ts.map +0 -1
  54. package/dist/contexts/NetworkContext/types.d.ts.map +0 -1
  55. package/dist/contexts/index.d.ts.map +0 -1
  56. package/dist/hooks/index.d.ts.map +0 -1
  57. package/dist/hooks/useEnvironment/index.d.ts.map +0 -1
  58. package/dist/hooks/useFlags/index.d.ts.map +0 -1
  59. package/dist/hooks/useHostTools/index.d.ts.map +0 -1
  60. package/dist/hooks/useLocalStorage/index.d.ts.map +0 -1
  61. package/dist/hooks/useModuleDictionary/index.d.ts.map +0 -1
  62. package/dist/hooks/useModulePrivileges/index.d.ts.map +0 -1
  63. package/dist/hooks/useModuleSkeleton/index.d.ts.map +0 -1
  64. package/dist/hooks/useNetwork/index.d.ts.map +0 -1
  65. package/dist/hooks/usePaginate/index.d.ts.map +0 -1
  66. package/dist/hooks/usePaginate/types.d.ts.map +0 -1
  67. package/dist/index.d.ts.map +0 -1
  68. package/dist/types/dictionary.d.ts.map +0 -1
  69. package/dist/types/index.d.ts.map +0 -1
  70. package/dist/utils/axiosOperation/index.d.ts.map +0 -1
  71. package/dist/utils/axiosOperation/types.d.ts.map +0 -1
  72. package/dist/utils/getLocalStorage.d.ts.map +0 -1
  73. package/dist/utils/getPropertyByString.d.ts.map +0 -1
  74. package/dist/utils/index.d.ts.map +0 -1
  75. package/dist/utils/setLocalStorage.d.ts.map +0 -1
  76. package/dist/utils/voidFunction.d.ts.map +0 -1
@@ -3,4 +3,3 @@ import { EnvironmentProviderProps } from './types';
3
3
  declare const EnvironmentContext: import("react").Context<import("../..").EnvironmentType>;
4
4
  declare function EnvironmentProvider(props: EnvironmentProviderProps): JSX.Element;
5
5
  export { EnvironmentProvider, EnvironmentContext };
6
- //# sourceMappingURL=index.d.ts.map
@@ -4,4 +4,3 @@ export interface EnvironmentProviderProps extends EnvironmentType {
4
4
  children: ReactNode;
5
5
  }
6
6
  export declare type EnvironmentContextType = EnvironmentType;
7
- //# sourceMappingURL=types.d.ts.map
@@ -3,4 +3,3 @@ import { FlagsContextProps, FlagsProviderProps } from './types';
3
3
  declare const FlagsContext: import("react").Context<FlagsContextProps>;
4
4
  declare function FlagsProvider({ children }: FlagsProviderProps): JSX.Element;
5
5
  export { FlagsProvider, FlagsContext };
6
- //# sourceMappingURL=index.d.ts.map
@@ -8,4 +8,3 @@ export interface FlagsContextProps {
8
8
  clearFlags: () => void;
9
9
  addFlag: (flag: Flag) => void;
10
10
  }
11
- //# sourceMappingURL=types.d.ts.map
@@ -4,4 +4,3 @@ import type { HostToolsProviderProps } from './types';
4
4
  declare const HostToolsContext: import("react").Context<HostToolsType>;
5
5
  declare function HostToolsProvider(props: HostToolsProviderProps): JSX.Element;
6
6
  export { HostToolsProvider, HostToolsContext };
7
- //# sourceMappingURL=index.d.ts.map
@@ -4,4 +4,3 @@ export interface HostToolsProviderProps extends HostToolsType {
4
4
  children: ReactNode;
5
5
  }
6
6
  export declare type HostToolsContextType = HostToolsType;
7
- //# sourceMappingURL=types.d.ts.map
@@ -3,4 +3,3 @@ import { ModuleDictionaryContextProps, ModuleDictionaryProviderProps } from './t
3
3
  declare const ModuleDictionaryContext: import("react").Context<ModuleDictionaryContextProps>;
4
4
  declare function ModuleDictionaryProvider(props: ModuleDictionaryProviderProps): JSX.Element;
5
5
  export { ModuleDictionaryProvider, ModuleDictionaryContext };
6
- //# sourceMappingURL=index.d.ts.map
@@ -13,4 +13,3 @@ export interface ModuleDictionaryContextProps {
13
13
  getLabel: GetLabelType;
14
14
  getModuleLabel: () => string;
15
15
  }
16
- //# sourceMappingURL=types.d.ts.map
@@ -3,4 +3,3 @@ import { ModulePrivilegesContextProps, ModulePrivilegesProviderProps } from './t
3
3
  declare const ModulePrivilegesContext: import("react").Context<ModulePrivilegesContextProps>;
4
4
  declare function ModulePrivilegesProvider(props: ModulePrivilegesProviderProps): JSX.Element;
5
5
  export { ModulePrivilegesProvider, ModulePrivilegesContext };
6
- //# sourceMappingURL=index.d.ts.map
@@ -7,4 +7,3 @@ export interface ModulePrivilegesContextProps {
7
7
  privileges: Record<string, boolean>;
8
8
  hasPrivilege: (id: string) => boolean;
9
9
  }
10
- //# sourceMappingURL=types.d.ts.map
@@ -3,4 +3,3 @@ import { ModuleSkeletonContextProps, ModuleSkeletonProviderProps } from './types
3
3
  declare const ModuleSkeletonContext: import("react").Context<ModuleSkeletonContextProps>;
4
4
  declare function ModuleSkeletonProvider(props: ModuleSkeletonProviderProps): JSX.Element;
5
5
  export { ModuleSkeletonProvider, ModuleSkeletonContext };
6
- //# sourceMappingURL=index.d.ts.map
@@ -6,4 +6,3 @@ export interface ModuleSkeletonProviderProps {
6
6
  export interface ModuleSkeletonContextProps {
7
7
  isSkeleton: boolean;
8
8
  }
9
- //# sourceMappingURL=types.d.ts.map
@@ -3,4 +3,3 @@ import type { NetworkProviderProps } from './types';
3
3
  declare const NetworkContext: import("react").Context<import("./types").NetworkType>;
4
4
  declare function NetworkProvider(props: NetworkProviderProps): JSX.Element;
5
5
  export { NetworkProvider, NetworkContext };
6
- //# sourceMappingURL=index.d.ts.map
@@ -9,4 +9,3 @@ export interface NetworkProviderProps {
9
9
  children: ReactNode;
10
10
  }
11
11
  export declare type NetworkContextType = NetworkType;
12
- //# sourceMappingURL=types.d.ts.map
@@ -5,4 +5,3 @@ export { FlagsContext, FlagsProvider } from './FlagsContext';
5
5
  export { ModuleDictionaryContext, ModuleDictionaryProvider } from './ModuleDictionaryContext';
6
6
  export { ModulePrivilegesContext, ModulePrivilegesProvider } from './ModulePrivilegesContext';
7
7
  export { ModuleSkeletonContext, ModuleSkeletonProvider } from './ModuleSkeletonContext';
8
- //# sourceMappingURL=index.d.ts.map
@@ -9,4 +9,3 @@ export { useNetwork } from './useNetwork';
9
9
  export { usePaginate } from './usePaginate';
10
10
  export type { PagerState } from './usePaginate/types';
11
11
  export { initialPagerState } from './usePaginate/types';
12
- //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export declare const useEnvironment: () => import("../..").EnvironmentType;
2
2
  export default useEnvironment;
3
- //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,3 @@
1
1
  import type { Flag, FlagsContextProps } from '../../contexts/FlagsContext/types';
2
2
  export declare const useFlags: () => FlagsContextProps;
3
3
  export declare const useFlagsPresent: (compareFlags: Array<Flag>) => boolean;
4
- //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export declare const useHostTools: () => import("../..").HostToolsType;
2
2
  export default useHostTools;
3
- //# sourceMappingURL=index.d.ts.map
@@ -1,2 +1 @@
1
1
  export declare function useLocalStorage<ValueType>(key: string, initialValue: ValueType): any[];
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,2 +1 @@
1
1
  export declare const useModuleDictionary: () => import("../../contexts/ModuleDictionaryContext/types").ModuleDictionaryContextProps;
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,2 +1 @@
1
1
  export declare const useModulePrivileges: () => import("../../contexts/ModulePrivilegesContext/types").ModulePrivilegesContextProps;
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,2 +1 @@
1
1
  export declare const useModuleSkeleton: () => boolean;
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export declare const useNetwork: () => import("../../contexts/NetworkContext/types").NetworkType;
2
2
  export default useNetwork;
3
- //# sourceMappingURL=index.d.ts.map
@@ -8,4 +8,3 @@ export declare const usePaginate: <TRow>(props: UsePaginateProps) => {
8
8
  clearRows: () => void;
9
9
  Refresh: () => void;
10
10
  };
11
- //# sourceMappingURL=index.d.ts.map
@@ -10,4 +10,3 @@ export interface UsePaginateProps {
10
10
  fireOnChangeParms?: boolean;
11
11
  queryParams?: Record<string, unknown>;
12
12
  }
13
- //# sourceMappingURL=types.d.ts.map
package/dist/index.d.ts CHANGED
@@ -4,4 +4,3 @@ export { EmitEvents } from './types';
4
4
  export type { Maybe, HostToolsType, NetworkProps, EnvironmentType, AxiosOperation, EventFunListener, } from './types';
5
5
  export type { GetLabelType, Dictionary, ModuleDictionary, ComponentDictionary, } from './types/dictionary';
6
6
  export * from './utils';
7
- //# sourceMappingURL=index.d.ts.map
package/dist/jest.d.ts ADDED
@@ -0,0 +1 @@
1
+ /// <reference types="jest" />
@@ -11,4 +11,3 @@ export interface DataDictionary extends ComponentDictionary {
11
11
  export interface ModuleDictionary extends Dictionary {
12
12
  data: DataDictionary;
13
13
  }
14
- //# sourceMappingURL=dictionary.d.ts.map
@@ -47,4 +47,3 @@ export declare enum EmitEvents {
47
47
  EMMIT_EVENT_HOST_THEME_CHANGE = "host_theme_change"
48
48
  }
49
49
  export declare type AxiosOperation = (props: NetworkProps, enviroment: EnvironmentType, hostTools: HostToolsType) => Promise<any>;
50
- //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,2 @@
1
1
  import type { EnvironmentType, HostToolsType, NetworkProps } from '../../types';
2
2
  export declare const axiosOperation: (props: NetworkProps, enviroment: EnvironmentType, hostTools: HostToolsType) => Promise<any>;
3
- //# sourceMappingURL=index.d.ts.map
@@ -3,4 +3,3 @@ export declare type AxiosOperationError = {
3
3
  status: number;
4
4
  code: string | number;
5
5
  };
6
- //# sourceMappingURL=types.d.ts.map
@@ -29,8 +29,7 @@ function getError(error, hostTools, checkUnAuthorized = true) {
29
29
  console.log("getError", error);
30
30
  if (error?.code !== void 0 && err.status !== void 0 && error.message !== void 0) {
31
31
  err = { ...err, ...error };
32
- }
33
- if (error?.response) {
32
+ } else if (error?.response) {
34
33
  if (error.response.data && typeof error.response.data === "object" && error.response.data.error && error.response.data.error?.code && error.response.data.error?.message !== void 0) {
35
34
  err = { ...error.response.data.error, status: error.response.status };
36
35
  } else {
@@ -71,7 +70,6 @@ const axiosOperation = async (props, enviroment, hostTools) => {
71
70
  } else {
72
71
  baseURL = enviroment.host_api_local;
73
72
  }
74
- console.log("Prueba m4l/core,2");
75
73
  hostTools.startProgress();
76
74
  return axios({
77
75
  baseURL,
@@ -1,2 +1 @@
1
1
  export declare function getLocalStorage<ValueType>(key: string, initialValue: ValueType): ValueType;
2
- //# sourceMappingURL=getLocalStorage.d.ts.map
@@ -1,2 +1 @@
1
1
  export declare function getPropertyByString(object: Record<string, unknown>, propString: string): any;
2
- //# sourceMappingURL=getPropertyByString.d.ts.map
@@ -3,4 +3,3 @@ export { getPropertyByString } from './getPropertyByString';
3
3
  export { getLocalStorage } from './getLocalStorage';
4
4
  export { setLocalStorage } from './setLocalStorage';
5
5
  export { axiosOperation } from './axiosOperation';
6
- //# sourceMappingURL=index.d.ts.map
@@ -1,2 +1 @@
1
1
  export declare function setLocalStorage<ValueType>(key: string, value: ValueType): void;
2
- //# sourceMappingURL=setLocalStorage.d.ts.map
@@ -1,2 +1 @@
1
1
  export declare function voidFunction(): void;
2
- //# sourceMappingURL=voidFunction.d.ts.map
@@ -1,3 +1,4 @@
1
1
  /// <reference types="vite/client" />
2
2
  /// <reference types="vitest" />
3
3
  /// <reference types="vitest/importMeta" />
4
+ /// <reference types="vite-plugin-mkcert" />
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@m4l/core",
3
- "private": false,
4
- "version": "0.0.43",
3
+ "version": "0.1.2",
5
4
  "license": "UNLICENSED",
6
5
  "author": "M4L Team",
7
6
  "scripts": {
8
- "dev1": "vite",
7
+ "dev": "vite",
9
8
  "build": "tsc && vite build",
10
9
  "preview": "vite preview",
11
10
  "lint": "npx eslint src",
@@ -24,6 +23,7 @@
24
23
  "react": ">=18"
25
24
  },
26
25
  "devDependencies": {
26
+ "@testing-library/dom": "^8.17.1",
27
27
  "@testing-library/jest-dom": "^5.16.4",
28
28
  "@testing-library/react": "^13.3.0",
29
29
  "@testing-library/user-event": "^14.2.1",
@@ -53,28 +53,23 @@
53
53
  "react": "^18.2.0",
54
54
  "react-dom": "^18.2.0",
55
55
  "react-toastify": "^9.0.5",
56
+ "rollup": "^2.79.0",
56
57
  "rollup-plugin-terser": "^7.0.2",
57
58
  "snakecase-keys": "^5.4.2",
58
59
  "typescript": "^4.6.3",
59
- "vite": "^2.9.9",
60
+ "vite": "2.9.9",
60
61
  "vite-plugin-dts": "^1.2.0",
61
- "vite-plugin-mkcert": "^1.6.4",
62
- "vitest": "^0.15.2",
63
- "m4l_tsconfig": "*"
64
-
62
+ "vite-plugin-mkcert": "^1.9.0",
63
+ "vitest": "^0.17.1"
65
64
  },
66
65
  "files": [
67
66
  "dist"
68
67
  ],
69
- "main": "./src/index.ts",
68
+ "source": "src/index.ts",
69
+ "main": "./dist/index.js",
70
70
  "module": "./dist/index.js",
71
71
  "type": "module",
72
72
  "types": "./dist/index.d.ts",
73
- "exports": {
74
- ".": {
75
- "import": "./src/index.ts"
76
- }
77
- },
78
73
  "sideEffects": false,
79
74
  "publishConfig": {
80
75
  "access": "public"
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":";AAOA,OAAO,EAA0B,wBAAwB,EAAE,MAAM,SAAS,CAAC;AAsB3E,QAAA,MAAM,kBAAkB,0DAAsD,CAAC;AAE/E,iBAAS,mBAAmB,CAAC,KAAK,EAAE,wBAAwB,eAW3D;AAED,OAAO,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClC,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAE9C,MAAM,WAAW,wBAAyB,SAAQ,eAAe;IAC7D,QAAQ,EAAE,SAAS,CAAC;CACvB;AAED,oBAAY,sBAAsB,GAAG,eAAe,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":";AAQA,OAAO,EAAE,iBAAiB,EAAQ,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAUtE,QAAA,MAAM,YAAY,4CAAiD,CAAC;AAEpE,iBAAS,aAAa,CAAC,EAAE,QAAQ,EAAE,EAAE,kBAAkB,eA2BtD;AAED,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGlC,MAAM,WAAW,kBAAkB;IAC/B,QAAQ,EAAE,SAAS,CAAC;CACvB;AAED,oBAAY,IAAI,GAAG,MAAM,CAAC;AAI1B,MAAM,WAAW,iBAAiB;IAC9B,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;IACnB,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,OAAO,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;CACjC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAS5C,OAAO,KAAK,EAAwB,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAc5E,QAAA,MAAM,gBAAgB,wCAAoD,CAAC;AAE3E,iBAAS,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,eAMvD;AAED,OAAO,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE5C,MAAM,WAAW,sBAAuB,SAAQ,aAAa;IACzD,QAAQ,EAAE,SAAS,CAAC;CACvB;AAED,oBAAY,oBAAoB,GAAG,aAAa,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":";AAQA,OAAO,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAWtF,QAAA,MAAM,uBAAuB,uDAA4D,CAAC;AAE1F,iBAAS,wBAAwB,CAAC,KAAK,EAAE,6BAA6B,eAqFrE;AAED,OAAO,EAAE,wBAAwB,EAAE,uBAAuB,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClC,OAAO,KAAK,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAG7E,MAAM,WAAW,6BAA6B;IAC1C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,oBAAoB,EAAE,MAAM,EAAE,CAAC;IAC/B,QAAQ,EAAE,SAAS,CAAC;CACvB;AAED,MAAM,WAAW,4BAA4B;IACzC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,QAAQ,EAAE,YAAY,CAAC;IACvB,cAAc,EAAE,MAAM,MAAM,CAAC;CAChC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":";AAQA,OAAO,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAWtF,QAAA,MAAM,uBAAuB,uDAA4D,CAAC;AAE1F,iBAAS,wBAAwB,CAAC,KAAK,EAAE,6BAA6B,eAgErE;AAED,OAAO,EAAE,wBAAwB,EAAE,uBAAuB,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGlC,MAAM,WAAW,6BAA6B;IAC1C,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,QAAQ,EAAE,SAAS,CAAC;CACvB;AAED,MAAM,WAAW,4BAA4B;IACzC,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACpC,YAAY,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,OAAO,CAAC;CACzC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":";AAQA,OAAO,EAAE,0BAA0B,EAAE,2BAA2B,EAAE,MAAM,SAAS,CAAC;AAUlF,QAAA,MAAM,qBAAqB,qDAA0D,CAAC;AAEtF,iBAAS,sBAAsB,CAAC,KAAK,EAAE,2BAA2B,eAYjE;AAED,OAAO,EAAE,sBAAsB,EAAE,qBAAqB,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAGlC,MAAM,WAAW,2BAA2B;IACxC,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,QAAQ,EAAE,SAAS,CAAC;CACvB;AAED,MAAM,WAAW,0BAA0B;IACvC,UAAU,EAAE,OAAO,CAAC;CACvB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":";AAUA,OAAO,KAAK,EAAsB,oBAAoB,EAAE,MAAM,SAAS,CAAC;AAQxE,QAAA,MAAM,cAAc,wDAAkD,CAAC;AAEvE,iBAAS,eAAe,CAAC,KAAK,EAAE,oBAAoB,eAqBnD;AAED,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAClC,OAAO,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3D,oBAAY,gBAAgB,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;AAExD,MAAM,WAAW,WAAW;IACxB,gBAAgB,EAAE,CAAC,KAAK,EAAE,YAAY,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;CAC3D;AAED,MAAM,WAAW,oBAAoB;IACjC,cAAc,EAAE,cAAc,CAAC;IAC/B,QAAQ,EAAE,SAAS,CAAC;CACvB;AAED,oBAAY,kBAAkB,GAAG,WAAW,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAC/E,OAAO,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AACzE,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAO,EAAE,uBAAuB,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAC;AAC9F,OAAO,EAAE,uBAAuB,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAC;AAC9F,OAAO,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,cAAc,uCAM1B,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,IAAI,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AAGjF,eAAO,MAAM,QAAQ,QAAO,iBAM3B,CAAC;AAWF,eAAO,MAAM,eAAe,iBAAkB,MAAM,IAAI,CAAC,KAAG,OAY3D,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,YAAY,qCAMxB,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,wBAAgB,eAAe,CAAC,SAAS,EAAE,GAAG,EAAE,MAAM,EAAE,YAAY,EAAE,SAAS,SAoB9E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,mBAAmB,2FAM/B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,mBAAmB,2FAM/B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,iBAAiB,eAM7B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,UAAU,iEAMtB,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAqB,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAE9D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAI1C,eAAO,MAAM,WAAW,gBAAiB,gBAAgB;4BA0EtB,MAAM;0CAMQ,MAAM;;;;;CAgBtD,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,WAAW,UAAU;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;CACxB;AAED,eAAO,MAAM,iBAAiB,EAAE,UAI/B,CAAC;AAEF,MAAM,WAAW,gBAAgB;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACzC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AACA,cAAc,YAAY,CAAC;AAG3B,cAAc,SAAS,CAAC;AASxB,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAIrC,YAAY,EACR,KAAK,EACL,aAAa,EACb,YAAY,EACZ,eAAe,EACf,cAAc,EACd,gBAAgB,GACnB,MAAM,SAAS,CAAC;AAEjB,YAAY,EACR,YAAY,EACZ,UAAU,EACV,gBAAgB,EAChB,mBAAmB,GACtB,MAAM,oBAAoB,CAAC;AAG5B,cAAc,SAAS,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"dictionary.d.ts","sourceRoot":"","sources":["dictionary.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY,GAAG,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;AAEnD,MAAM,WAAW,mBAAmB;IAChC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,UAAU;IACvB,CAAC,GAAG,EAAE,MAAM,GAAG,mBAAmB,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,CAAC;CACrE;AAED,MAAM,WAAW,cAAe,SAAQ,mBAAmB;IACvD,WAAW,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,gBAAiB,SAAQ,UAAU;IAChD,IAAI,EAAE,cAAc,CAAC;CACxB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACrE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAE9C,MAAM,CAAC,OAAO,MAAM,KAAK,CAAC,CAAC,IAAI,CAAC,GAAG,SAAS,GAAG,IAAI,CAAC;AACpD,MAAM,CAAC,OAAO,WAAW,SAAS;IAC9B,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,WAAW,eAAe;IACpC,WAAW,EAAE,OAAO,CAAC;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,eAAe,EAAE,MAAM,CAAC;IACxB,cAAc,EAAE,MAAM,CAAC;IACvB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,kBAAkB,EAAE,MAAM,CAAC;IAE3B,UAAU,EAAE,SAAS,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,MAAM,YAAY,GAAG;IAC/B,MAAM,EAAE,GAAG,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC;IACpD,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC5B,CAAC;AAEF,MAAM,CAAC,OAAO,MAAM,aAAa,GAAG,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,CAAC,EAAE,YAAY,KAAK,EAAE,CAAC;AAC1F,MAAM,CAAC,OAAO,MAAM,gBAAgB,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;AAEhE,MAAM,CAAC,OAAO,WAAW,aAAa;IAClC,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB,KAAK,EAAE,aAAa,CAAC;IACrB,aAAa,EAAE,YAAY,CAAC;IAC5B,YAAY,EAAE,YAAY,CAAC;IAC3B,UAAU,EAAE,CAAC,IAAI,EAAE,IAAI,GAAG,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,GAAG,KAAK,MAAM,CAAC;IAE3E,mBAAmB,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAC5E,sBAAsB,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,KAAK,IAAI,CAAC;IACtF,WAAW,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,KAAK,IAAI,CAAC;CACtD;AAGD,oBAAY,UAAU;IAClB,oCAAoC,2BAA2B;IAC/D,6BAA6B,sBAAsB;CACtD;AAED,MAAM,CAAC,OAAO,MAAM,cAAc,GAAG,CACjC,KAAK,EAAE,YAAY,EACnB,UAAU,EAAE,eAAe,EAC3B,SAAS,EAAE,aAAa,KACvB,OAAO,CAAC,GAAG,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,eAAe,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAiGhF,eAAO,MAAM,cAAc,UAChB,YAAY,cACP,eAAe,aAChB,aAAa,KACzB,QAAQ,GAAG,CA6Cb,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB,GAAG;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getLocalStorage.d.ts","sourceRoot":"","sources":["getLocalStorage.ts"],"names":[],"mappings":"AAAA,wBAAgB,eAAe,CAAC,SAAS,EAAE,GAAG,EAAE,MAAM,EAAE,YAAY,EAAE,SAAS,GAAG,SAAS,CAO1F"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getPropertyByString.d.ts","sourceRoot":"","sources":["getPropertyByString.ts"],"names":[],"mappings":"AAAA,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,UAAU,EAAE,MAAM,OAStF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"setLocalStorage.d.ts","sourceRoot":"","sources":["setLocalStorage.ts"],"names":[],"mappings":"AAAA,wBAAgB,eAAe,CAAC,SAAS,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,QAWvE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"voidFunction.d.ts","sourceRoot":"","sources":["voidFunction.ts"],"names":[],"mappings":"AACA,wBAAgB,YAAY,SAAK"}