labsense-ui-kit 1.0.2 → 1.0.3

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 (62) hide show
  1. package/dist/Icons/SVGs/AwayIConSVG.d.ts +4 -0
  2. package/dist/Icons/SVGs/BillingSVG.d.ts +4 -0
  3. package/dist/Icons/SVGs/BusinessIconSVG.d.ts +4 -0
  4. package/dist/Icons/SVGs/ClientIconSVG.d.ts +4 -0
  5. package/dist/Icons/SVGs/ClientSVG.d.ts +4 -0
  6. package/dist/Icons/SVGs/ClientSmallIconSVG.d.ts +4 -0
  7. package/dist/Icons/SVGs/CloseSVG.d.ts +4 -0
  8. package/dist/Icons/SVGs/CompleteProfileSVG.d.ts +4 -0
  9. package/dist/Icons/SVGs/CopyIconSVG.d.ts +4 -0
  10. package/dist/Icons/SVGs/CyberIconSVG.d.ts +4 -0
  11. package/dist/Icons/SVGs/DefensiveIconSVG.d.ts +4 -0
  12. package/dist/Icons/SVGs/DeleteIconSVG.d.ts +4 -0
  13. package/dist/Icons/SVGs/DropdownSVG.d.ts +4 -0
  14. package/dist/Icons/SVGs/EmailIconSVG.d.ts +4 -0
  15. package/dist/Icons/SVGs/FilingHistorySVG.d.ts +4 -0
  16. package/dist/Icons/SVGs/FilterSVG.d.ts +4 -0
  17. package/dist/Icons/SVGs/InvitesSVG.d.ts +4 -0
  18. package/dist/Icons/SVGs/LogoutIconSVG.d.ts +4 -0
  19. package/dist/Icons/SVGs/LunchIconSVG.d.ts +4 -0
  20. package/dist/Icons/SVGs/NotificatioNumberSVG.d.ts +4 -0
  21. package/dist/Icons/SVGs/NotificationsSVG.d.ts +4 -0
  22. package/dist/Icons/SVGs/OfflineSVG.d.ts +4 -0
  23. package/dist/Icons/SVGs/PauseNotificationIConSVG.d.ts +4 -0
  24. package/dist/Icons/SVGs/PhoneIconSVG.d.ts +4 -0
  25. package/dist/Icons/SVGs/PlayIconSVG.d.ts +4 -0
  26. package/dist/Icons/SVGs/PreferencesSVG.d.ts +4 -0
  27. package/dist/Icons/SVGs/ProfileBigIconSVG.d.ts +4 -0
  28. package/dist/Icons/SVGs/ProfileInNavSVG.d.ts +4 -0
  29. package/dist/Icons/SVGs/ProfileSVG.d.ts +4 -0
  30. package/dist/Icons/SVGs/SearchBigSVG.d.ts +4 -0
  31. package/dist/Icons/SVGs/SearchSVG.d.ts +4 -0
  32. package/dist/Icons/SVGs/StatusIconSVG.d.ts +4 -0
  33. package/dist/Icons/SVGs/TeamIconSVG.d.ts +4 -0
  34. package/dist/Icons/SVGs/TeamSVG.d.ts +4 -0
  35. package/dist/Icons/SVGs/ThumbsUpSVG.d.ts +4 -0
  36. package/dist/Icons/SVGs/TimerIconSVG.d.ts +4 -0
  37. package/dist/Icons/SVGs/arrowNextSVG.d.ts +4 -0
  38. package/dist/Icons/SVGs/backButtonSVG.d.ts +4 -0
  39. package/dist/Icons/SVGs/bigExportSVG.d.ts +4 -0
  40. package/dist/Icons/SVGs/binSVG.d.ts +4 -0
  41. package/dist/Icons/SVGs/crossInCircleSVG.d.ts +4 -0
  42. package/dist/Icons/SVGs/crossSVG.d.ts +4 -0
  43. package/dist/Icons/SVGs/disableIconSVG.d.ts +4 -0
  44. package/dist/Icons/SVGs/exportSVG.d.ts +4 -0
  45. package/dist/Icons/SVGs/fixedLeftPageSVG.d.ts +4 -0
  46. package/dist/Icons/SVGs/headIconSVG.d.ts +4 -0
  47. package/dist/Icons/SVGs/historySVG.d.ts +4 -0
  48. package/dist/Icons/SVGs/index.d.ts +54 -0
  49. package/dist/Icons/SVGs/informationSVG.d.ts +4 -0
  50. package/dist/Icons/SVGs/muteIconSVG.d.ts +4 -0
  51. package/dist/Icons/SVGs/tablePaginationNextNavSVG.d.ts +4 -0
  52. package/dist/Icons/SVGs/tablePaginationPrevNavSVG.d.ts +4 -0
  53. package/dist/Icons/SVGs/tickSVG.d.ts +4 -0
  54. package/dist/Icons/SVGs/verticalLineSVG.d.ts +4 -0
  55. package/dist/Icons/SVGs/zapperSVG.d.ts +4 -0
  56. package/dist/Icons/index.d.ts +20 -0
  57. package/dist/index.d.ts +2 -1
  58. package/dist/index.js +1550 -7
  59. package/dist/index.js.map +1 -1
  60. package/dist/index.modern.js +1543 -2
  61. package/dist/index.modern.js.map +1 -1
  62. package/package.json +1 -1
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const AwayIConSVG: React.FC<SVGProps>;
4
+ export default AwayIConSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const BillingSVG: React.FC<SVGProps>;
4
+ export default BillingSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const BusinessIconSVG: React.FC<SVGProps>;
4
+ export default BusinessIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const ClientIconSVG: React.FC<SVGProps>;
4
+ export default ClientIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const ClientSVG: React.FC<SVGProps>;
4
+ export default ClientSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const ClientSmallIconSVG: React.FC<SVGProps>;
4
+ export default ClientSmallIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const CloseSVG: React.FC<SVGProps>;
4
+ export default CloseSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const CompleteProfileSVG: React.FC<SVGProps>;
4
+ export default CompleteProfileSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const CopyIconSVG: React.FC<SVGProps>;
4
+ export default CopyIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const CyberIconSVG: React.FC<SVGProps>;
4
+ export default CyberIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const DefensiveIconSVG: React.FC<SVGProps>;
4
+ export default DefensiveIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const DeleteIconSVG: React.FC<SVGProps>;
4
+ export default DeleteIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const DropdownSVG: React.FC<SVGProps>;
4
+ export default DropdownSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const EmailIconSVG: React.FC<SVGProps>;
4
+ export default EmailIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const FilingHistorySVG: React.FC<SVGProps>;
4
+ export default FilingHistorySVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const FilterSVG: React.FC<SVGProps>;
4
+ export default FilterSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const InvitesSVG: React.FC<SVGProps>;
4
+ export default InvitesSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const LogoutIconSVG: React.FC<SVGProps>;
4
+ export default LogoutIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const LunchIconSVG: React.FC<SVGProps>;
4
+ export default LunchIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const NotificatioNumberSVG: React.FC<SVGProps>;
4
+ export default NotificatioNumberSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const NotificationsSVG: React.FC<SVGProps>;
4
+ export default NotificationsSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const OfflineSVG: React.FC<SVGProps>;
4
+ export default OfflineSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const PauseNotificationIConSVG: React.FC<SVGProps>;
4
+ export default PauseNotificationIConSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const PhoneIconSVG: React.FC<SVGProps>;
4
+ export default PhoneIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const PlayIconSVG: React.FC<SVGProps>;
4
+ export default PlayIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const PreferencesSVG: React.FC<SVGProps>;
4
+ export default PreferencesSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const ProfileBigIconSVG: React.FC<SVGProps>;
4
+ export default ProfileBigIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const ProfileInNavSVG: React.FC<SVGProps>;
4
+ export default ProfileInNavSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const ProfileSVG: React.FC<SVGProps>;
4
+ export default ProfileSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const SearchBigSVG: React.FC<SVGProps>;
4
+ export default SearchBigSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const SearchSVG: React.FC<SVGProps>;
4
+ export default SearchSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const StatusIconSVG: React.FC<SVGProps>;
4
+ export default StatusIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const TeamIconSVG: React.FC<SVGProps>;
4
+ export default TeamIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const TeamSVG: React.FC<SVGProps>;
4
+ export default TeamSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const ThumbsUpSVG: React.FC<SVGProps>;
4
+ export default ThumbsUpSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const TimerIconSVG: React.FC<SVGProps>;
4
+ export default TimerIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const arrowNextSVG: React.FC<SVGProps>;
4
+ export default arrowNextSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const backButtonSVG: React.FC<SVGProps>;
4
+ export default backButtonSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const bigExportSVG: React.FC<SVGProps>;
4
+ export default bigExportSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const binSVG: React.FC<SVGProps>;
4
+ export default binSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const crossInCircleSVG: React.FC<SVGProps>;
4
+ export default crossInCircleSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const crossSVG: React.FC<SVGProps>;
4
+ export default crossSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const disableIconSVG: React.FC<SVGProps>;
4
+ export default disableIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const exportSVG: React.FC<SVGProps>;
4
+ export default exportSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const fixedLeftPageSVG: React.FC<SVGProps>;
4
+ export default fixedLeftPageSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const HeadIconSVG: React.FC<SVGProps>;
4
+ export default HeadIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const historySVG: React.FC<SVGProps>;
4
+ export default historySVG;
@@ -0,0 +1,54 @@
1
+ export { default as arrowNextSVG } from './arrowNextSVG';
2
+ export { default as AwayIConSVG } from './AwayIConSVG';
3
+ export { default as backButtonSVG } from './backButtonSVG';
4
+ export { default as bigExportSVG } from './bigExportSVG';
5
+ export { default as BillingSVG } from './BillingSVG';
6
+ export { default as binSVG } from './binSVG';
7
+ export { default as BusinessIconSVG } from './BusinessIconSVG';
8
+ export { default as ClientIconSVG } from './ClientIconSVG';
9
+ export { default as ClientSmallIconSVG } from './ClientSmallIconSVG';
10
+ export { default as ClientSVG } from './ClientSVG';
11
+ export { default as CloseSVG } from './CloseSVG';
12
+ export { default as CompleteProfileSVG } from './CompleteProfileSVG';
13
+ export { default as CopyIconSVG } from './CopyIconSVG';
14
+ export { default as crossInCircleSVG } from './crossInCircleSVG';
15
+ export { default as crossSVG } from './crossSVG';
16
+ export { default as CyberIconSVG } from './CyberIconSVG';
17
+ export { default as DefensiveIconSVG } from './DefensiveIconSVG';
18
+ export { default as DeleteIconSVG } from './DeleteIconSVG';
19
+ export { default as disableIconSVG } from './disableIconSVG';
20
+ export { default as DropdownSVG } from './DropdownSVG';
21
+ export { default as EmailIconSVG } from './EmailIconSVG';
22
+ export { default as exportSVG } from './exportSVG';
23
+ export { default as FilingHistorySVG } from './FilingHistorySVG';
24
+ export { default as FilterSVG } from './FilterSVG';
25
+ export { default as fixedLeftPageSVG } from './fixedLeftPageSVG';
26
+ export { default as headIconSVG } from './headIconSVG';
27
+ export { default as historySVG } from './historySVG';
28
+ export { default as informationSVG } from './informationSVG';
29
+ export { default as InvitesSVG } from './InvitesSVG';
30
+ export { default as LogoutIconSVG } from './LogoutIconSVG';
31
+ export { default as LunchIconSVG } from './LunchIconSVG';
32
+ export { default as muteIconSVG } from './muteIconSVG';
33
+ export { default as NotificationsSVG } from './NotificationsSVG';
34
+ export { default as NotificatioNumberSVG } from './NotificatioNumberSVG';
35
+ export { default as OfflineSVG } from './OfflineSVG';
36
+ export { default as PauseNotificationIConSVG } from './PauseNotificationIConSVG';
37
+ export { default as PhoneIconSVG } from './PhoneIconSVG';
38
+ export { default as PlayIconSVG } from './PlayIconSVG';
39
+ export { default as PreferencesSVG } from './PreferencesSVG';
40
+ export { default as ProfileBigIconSVG } from './ProfileBigIconSVG';
41
+ export { default as ProfileInNavSVG } from './ProfileInNavSVG';
42
+ export { default as ProfileSVG } from './ProfileSVG';
43
+ export { default as SearchBigSVG } from './SearchBigSVG';
44
+ export { default as SearchSVG } from './SearchSVG';
45
+ export { default as StatusIconSVG } from './StatusIconSVG';
46
+ export { default as tablePaginationNextNavSVG } from './tablePaginationNextNavSVG';
47
+ export { default as tablePaginationPrevNavSVG } from './tablePaginationPrevNavSVG';
48
+ export { default as TeamIconSVG } from './TeamIconSVG';
49
+ export { default as TeamSVG } from './TeamSVG';
50
+ export { default as ThumbsUpSVG } from './ThumbsUpSVG';
51
+ export { default as tickSVG } from './tickSVG';
52
+ export { default as TimerIconSVG } from './TimerIconSVG';
53
+ export { default as verticalLineSVG } from './verticalLineSVG';
54
+ export { default as zapperSVG } from './zapperSVG';
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const informationSVG: React.FC<SVGProps>;
4
+ export default informationSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const muteIconSVG: React.FC<SVGProps>;
4
+ export default muteIconSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const tablePaginationNextNavSVG: React.FC<SVGProps>;
4
+ export default tablePaginationNextNavSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const tablePaginationPrevNavSVG: React.FC<SVGProps>;
4
+ export default tablePaginationPrevNavSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const tickSVG: React.FC<SVGProps>;
4
+ export default tickSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const verticalLineSVG: React.FC<SVGProps>;
4
+ export default verticalLineSVG;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "../";
3
+ declare const zapperSVG: React.FC<SVGProps>;
4
+ export default zapperSVG;
@@ -0,0 +1,20 @@
1
+ import React from "react";
2
+ declare const IconWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ declare const IconWrapperForSVG: import("styled-components").StyledComponent<"g", any, {}, never>;
4
+ export { IconWrapper, IconWrapperForSVG };
5
+ export interface SVGProps {
6
+ size: number;
7
+ color: string;
8
+ weight: string;
9
+ }
10
+ declare const IconSVGs: {
11
+ [key: string]: React.FC<SVGProps>;
12
+ };
13
+ export interface IconProps {
14
+ icon: keyof typeof IconSVGs;
15
+ size?: number;
16
+ color?: string;
17
+ weight?: string;
18
+ }
19
+ declare const Icon: React.FC<IconProps>;
20
+ export { Icon };
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  import { Button } from "./Buttons";
2
2
  import { Input } from "./Inputs";
3
- export { Button, Input };
3
+ import { Icon } from './Icons';
4
+ export { Button, Input, Icon };