sixseconds-modules 1.2.1 → 1.2.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 (44) hide show
  1. package/dist/api/index.d.ts +4 -0
  2. package/dist/api/transforms/user.d.ts +14 -0
  3. package/dist/api/types/base.d.ts +18 -0
  4. package/dist/api/user.d.ts +8 -0
  5. package/dist/assets/images/index.d.ts +4 -0
  6. package/dist/assets/svg/index.d.ts +741 -0
  7. package/dist/components/dialogs/dangerDialog.d.ts +11 -0
  8. package/dist/components/dialogs/index.d.ts +1 -0
  9. package/dist/components/elements/backArrow.d.ts +7 -0
  10. package/dist/components/elements/index.d.ts +2 -0
  11. package/dist/components/elements/logo.d.ts +6 -0
  12. package/dist/components/elements/warning.d.ts +6 -0
  13. package/dist/components/header/appMenus.d.ts +9 -0
  14. package/dist/components/header/dropDownMenu.d.ts +9 -0
  15. package/dist/components/header/index.d.ts +23 -0
  16. package/dist/components/header/language.d.ts +12 -0
  17. package/dist/components/header/notification.d.ts +9 -0
  18. package/dist/components/header/subheaderStyled.d.ts +2 -0
  19. package/dist/components/header/type.d.ts +20 -0
  20. package/dist/components/header/userProfile.d.ts +10 -0
  21. package/dist/components/index.d.ts +2 -0
  22. package/dist/constants/apis.d.ts +4 -0
  23. package/dist/constants/common.d.ts +77 -0
  24. package/dist/constants/dates.d.ts +3 -0
  25. package/dist/constants/env.d.ts +9 -0
  26. package/dist/constants/index.d.ts +6 -0
  27. package/dist/constants/routes.d.ts +19 -0
  28. package/dist/constants/validation.d.ts +4 -0
  29. package/dist/index.cjs.js +5673 -0
  30. package/dist/index.cjs.js.map +1 -0
  31. package/dist/index.d.ts +3 -0
  32. package/dist/index.es.js +5657 -0
  33. package/dist/index.es.js.map +1 -0
  34. package/dist/main.d.ts +0 -0
  35. package/dist/types/custom.d.ts +24 -0
  36. package/dist/types/htmlElements.d.ts +6 -0
  37. package/dist/types/index.d.ts +4 -0
  38. package/dist/types/reactTypes.d.ts +4 -0
  39. package/dist/utils/common.d.ts +13 -0
  40. package/dist/utils/date.d.ts +3 -0
  41. package/dist/utils/index.d.ts +2 -0
  42. package/dist/vite-env.d.ts +2 -0
  43. package/dist/vite.svg +1 -0
  44. package/package.json +1 -1
package/dist/main.d.ts ADDED
File without changes
@@ -0,0 +1,24 @@
1
+ import { ReactNode } from 'react';
2
+ export type ToolsRoles = "Master" | "Distributor" | "Coach" | "Referent";
3
+
4
+ // interfaces definition
5
+ export interface IChildrenProps {
6
+ children: ReactNode;
7
+ }
8
+ export interface ISelectWithSearch {
9
+ id: number;
10
+ value: string;
11
+ label: string;
12
+ }
13
+
14
+ export type t = (e: string) => string;
15
+
16
+ export type Filters = {
17
+ type?: string;
18
+ page?: number;
19
+ search?: string;
20
+ pagePerItm?: number;
21
+ to?: string;
22
+ from?: string;
23
+ limit?: number;
24
+ };
@@ -0,0 +1,6 @@
1
+ import { default as React, ChangeEvent } from 'react';
2
+ export type OnClick = MouseEvent<HTMLInputElement>
3
+
4
+ export type OnChange = ChangeEvent<HTMLInputElement>
5
+
6
+ export type onChangeWithSynthetic = React.SyntheticEvent
@@ -0,0 +1,4 @@
1
+ // export types
2
+ export * from './custom';
3
+ export * from './htmlElements';
4
+ export * from './reactTypes';
@@ -0,0 +1,4 @@
1
+ import { Dispatch as ReactDispatch, SetStateAction as ReactSetStateAction } from 'react';
2
+ export type Dispatch<A> = (action: A) => void
3
+ export type SetStateAction<T> = ReactDispatch<ReactSetStateAction<T>>
4
+ export type UpdateStateFunction<T> = (data: any, prev?: any, setState?: SetStateAction<any>) => T
@@ -0,0 +1,13 @@
1
+ import { OnClick } from '../types';
2
+ export declare const truncateValUtil: (val: string, maxTruncateVal?: number) => string;
3
+ export declare function formatTwoValues(val1?: string, val2?: any, symbol?: string): string;
4
+ export declare const url: (url: string) => void;
5
+ export declare const handleCloseUtil: (setState: any) => void;
6
+ export declare const handleOpenUtil: (e: OnClick, setState: any) => void;
7
+ export declare const getIcons: (val: string, defaultIcon: string) => string | import('react').FunctionComponentElement<import('react').SVGProps<SVGSVGElement> & {
8
+ title?: string;
9
+ titleId?: string;
10
+ desc?: string;
11
+ descId?: string;
12
+ }>;
13
+ export declare const handleRedirection: (type: string, source: string) => void;
@@ -0,0 +1,3 @@
1
+ import { Moment } from 'moment';
2
+ export declare function formatDateUtil(dateString: string | Date | Moment | null, flag?: string, formatDate?: string): string;
3
+ export declare const getTimeZone: () => string;
@@ -0,0 +1,2 @@
1
+ export * from './common';
2
+ export * from './date';
@@ -0,0 +1,2 @@
1
+ /// <reference types="vite/client" />
2
+ /// <reference types="vite-plugin-svgr/client" />
package/dist/vite.svg ADDED
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sixseconds-modules",
3
3
  "private": false,
4
- "version": "1.2.1",
4
+ "version": "1.2.2",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
7
7
  "types": "dist/index.d.ts",