labsense-ui-kit 1.0.6 → 1.0.8

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.
@@ -19,6 +19,7 @@ interface ButtonProps {
19
19
  gap?: string;
20
20
  iconPosition?: iconPosition;
21
21
  iconWeight?: string;
22
+ iconSize?: number;
22
23
  disabled?: boolean;
23
24
  variant?: buttonVariant;
24
25
  }
@@ -1,2 +1,6 @@
1
- declare const GlobalStyle: import("react").NamedExoticComponent<import("styled-components").ExecutionProps & object>;
2
- export default GlobalStyle;
1
+ export declare const fontFaces: import("styled-components").RuleSet<object>;
2
+ export declare const GlobalFonts: {
3
+ bold: string;
4
+ regular: string;
5
+ light: string;
6
+ };
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Add: React.FC<SVGProps>;
4
+ export default Add;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const CCTV_1: React.FC<SVGProps>;
4
+ export default CCTV_1;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const CCTV_2: React.FC<SVGProps>;
4
+ export default CCTV_2;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const CircularPause: React.FC<SVGProps>;
4
+ export default CircularPause;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const CircularPlay: React.FC<SVGProps>;
4
+ export default CircularPlay;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const ExitFullScreen: React.FC<SVGProps>;
4
+ export default ExitFullScreen;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const FilledCircle: React.FC<SVGProps>;
4
+ export default FilledCircle;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Forward_10_Sec: React.FC<SVGProps>;
4
+ export default Forward_10_Sec;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const FullScreen: React.FC<SVGProps>;
4
+ export default FullScreen;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Grid_2x2: React.FC<SVGProps>;
4
+ export default Grid_2x2;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Grid_2x2_Hollow: React.FC<SVGProps>;
4
+ export default Grid_2x2_Hollow;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Grid_3x3: React.FC<SVGProps>;
4
+ export default Grid_3x3;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Grid_4x4: React.FC<SVGProps>;
4
+ export default Grid_4x4;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Grid_5x5: React.FC<SVGProps>;
4
+ export default Grid_5x5;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Key: React.FC<SVGProps>;
4
+ export default Key;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Live: React.FC<SVGProps>;
4
+ export default Live;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const NoCam: React.FC<SVGProps>;
4
+ export default NoCam;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Recording: React.FC<SVGProps>;
4
+ export default Recording;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Rewind_10_Sec: React.FC<SVGProps>;
4
+ export default Rewind_10_Sec;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const ThreeDots: React.FC<SVGProps>;
4
+ export default ThreeDots;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Video: React.FC<SVGProps>;
4
+ export default Video;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { SVGProps } from "..";
3
+ declare const Volume: React.FC<SVGProps>;
4
+ export default Volume;
@@ -14,7 +14,19 @@ export { default as Shield } from './Shield';
14
14
  export { default as Lock } from './Lock';
15
15
  export { default as DownArrow } from './/DownArrow';
16
16
  export { default as Email } from './Email';
17
+ export { default as Live } from './Live';
18
+ export { default as CCTV_1 } from './CCTV_1';
19
+ export { default as CCTV_2 } from './CCTV_2';
20
+ export { default as Video } from './Video';
17
21
  export { default as FilesBox } from './FilesBox';
22
+ export { default as Grid_2x2 } from './Grid_2x2';
23
+ export { default as Grid_3x3 } from './Grid_3x3';
24
+ export { default as Grid_4x4 } from './Grid_4x4';
25
+ export { default as Grid_5x5 } from './Grid_5x5';
26
+ export { default as Add } from './Add';
27
+ export { default as Key } from './Key';
28
+ export { default as NoCam } from './NoCam';
29
+ export { default as Grid_2x2_Hollow } from './Grid_2x2_Hollow';
18
30
  export { default as Filter } from './Filter';
19
31
  export { default as Team } from './Team';
20
32
  export { default as History } from './History';
@@ -37,3 +49,12 @@ export { default as ThumbsUp } from './ThumbsUp';
37
49
  export { default as Tick } from './Tick';
38
50
  export { default as SandTimer } from './SandTimer';
39
51
  export { default as Zapper } from './Zapper';
52
+ export { default as CircularPlay } from './CircularPlay';
53
+ export { default as CircularPause } from './CircularPause';
54
+ export { default as Volume } from './Volume';
55
+ export { default as Rewind_10_Sec } from './Rewind_10_Sec';
56
+ export { default as Forward_10_Sec } from './Forward_10_Sec';
57
+ export { default as FullScreen } from './FullScreen';
58
+ export { default as FilledCircle } from './FilledCircle';
59
+ export { default as Recording } from './Recording';
60
+ export { default as ThreeDots } from './ThreeDots';
@@ -7,7 +7,7 @@ export interface SVGProps {
7
7
  color: string;
8
8
  weight: string;
9
9
  }
10
- export declare type IconNames = 'Forward' | 'RunAway' | 'Back' | 'Download' | 'Wallet' | 'Bin' | 'Business' | 'Client' | 'Close' | 'Copy' | 'CloseCircle' | 'Cyber' | 'Shield' | 'Lock' | 'DownArrow' | 'Email' | 'FilesBox' | 'Filter' | 'Team' | 'History' | 'Information' | 'Letter' | 'Logout' | 'Mute' | 'Notifications' | 'Circle' | 'Phone' | 'Play' | 'Settings' | 'Profile_1' | 'Profile_2' | 'Search' | 'Edit' | 'RightArrow' | 'LeftArrow' | 'ThumbsUp' | 'Tick' | 'SandTimer' | 'Zapper';
10
+ export declare type IconNames = 'Add' | 'Back' | 'Bin' | 'Business' | 'CCTV_1' | 'CCTV_2' | 'Circle' | 'CircularPause' | 'CircularPlay' | 'Client' | 'Close' | 'CloseCircle' | 'Copy' | 'Cyber' | 'DownArrow' | 'Download' | 'Edit' | 'Email' | 'ExitFullScreen' | 'FilesBox' | 'FilledCircle' | 'Filter' | 'Forward_10_Sec' | 'Forward' | 'FullScreen' | 'Grid_2x2_Hollow' | 'Grid_2x2' | 'Grid_3x3' | 'Grid_4x4' | 'Grid_5x5' | 'History' | 'Information' | 'Key' | 'LeftArrow' | 'Letter' | 'Live' | 'Lock' | 'Logout' | 'Mute' | 'NoCam' | 'Notifications' | 'Phone' | 'Play' | 'Profile_1' | 'Profile_2' | 'Recording' | 'Rewind_10_Sec' | 'RightArrow' | 'RunAway' | 'SandTimer' | 'Search' | 'Settings' | 'Shield' | 'Team' | 'ThreeDots' | 'ThumbsUp' | 'Tick' | 'Video' | 'Wallet' | 'Zapper';
11
11
  declare const IconSVGs: {
12
12
  [key: string]: React.FC<SVGProps>;
13
13
  };
@@ -1,10 +1,10 @@
1
- import React from "react";
1
+ import React, { ReactNode } from "react";
2
2
  interface CircularSpinnerProps {
3
3
  size?: "small" | "medium" | "large";
4
4
  color?: string;
5
5
  speed?: number;
6
6
  dotSize?: number;
7
- text?: React.ReactNode;
7
+ text?: ReactNode;
8
8
  }
9
- declare const _default: React.NamedExoticComponent<CircularSpinnerProps>;
10
- export default _default;
9
+ declare const CircularLoader: React.FC<CircularSpinnerProps>;
10
+ export default CircularLoader;
@@ -1,19 +1,17 @@
1
1
  export declare const colorVariables: {
2
2
  brand: {
3
- 'brand-1': string;
4
- 'brand-2': string;
5
- 'brand-3': string;
6
- };
7
- grays: {
8
- 'gray-1': string;
9
- 'gray-2': string;
10
- 'gray-3': string;
11
- 'gray-4': string;
3
+ primary: string;
4
+ secondary: string;
5
+ light: string;
12
6
  };
13
7
  accent: {
14
- 'accent-1': string;
15
- 'accent-2': string;
16
- 'accent-3': string;
8
+ light: string;
9
+ extraLight: string;
10
+ softBlue: string;
11
+ extraSoftBlue: string;
12
+ boldTransparent: string;
13
+ transparent: string;
14
+ lightTransparent: string;
17
15
  };
18
16
  default: {
19
17
  primary: string;
@@ -24,6 +22,14 @@ export declare const colorVariables: {
24
22
  warning: string;
25
23
  info: string;
26
24
  };
25
+ disabled: {
26
+ primary: string;
27
+ secondary: string;
28
+ error: string;
29
+ success: string;
30
+ warning: string;
31
+ info: string;
32
+ };
27
33
  hover: {
28
34
  primary: string;
29
35
  secondary: string;
@@ -33,4 +39,21 @@ export declare const colorVariables: {
33
39
  warning: string;
34
40
  info: string;
35
41
  };
42
+ border: {
43
+ extraBold: string;
44
+ bold: string;
45
+ medium: string;
46
+ light: string;
47
+ extraLight: string;
48
+ };
49
+ text: {
50
+ dark: string;
51
+ medium: string;
52
+ light: string;
53
+ white: string;
54
+ success: string;
55
+ error: string;
56
+ info: string;
57
+ warning: string;
58
+ };
36
59
  };
package/dist/index.d.ts CHANGED
@@ -5,7 +5,6 @@ import { Tabs } from './Tabs';
5
5
  import { ProgressBar } from './ProgressBar';
6
6
  import { colorVariables } from "./Themes/Colors";
7
7
  import { CircularLoader } from './Loader';
8
- import GlobalFonts from './Fonts/Font';
9
- export { Button, Input, Icon, Tabs, ProgressBar, colorVariables, GlobalFonts };
8
+ export { Button, Input, Icon, Tabs, ProgressBar, colorVariables };
10
9
  export { CircularLoader };
11
10
  export { IconNames };