demio-ui 1.0.25 → 1.0.27

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.
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ type Props = {
3
+ children: React.ReactNode;
4
+ type?: 'hint' | 'error';
5
+ };
6
+ /**
7
+ * InputHint component documentation.
8
+ **/
9
+ declare function InputHint({ children, type }: Props): React.JSX.Element;
10
+ export default InputHint;
@@ -0,0 +1 @@
1
+ export { default } from './InputHint';
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  type Props = {
3
3
  htmlFor: string;
4
4
  children: React.ReactNode;
5
+ className?: string;
5
6
  };
6
- declare function Label({ htmlFor, children }: Props): React.JSX.Element;
7
+ declare function Label({ htmlFor, children, className }: Props): React.JSX.Element;
7
8
  export default Label;
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ type Props = {
3
+ items: {
4
+ id: string;
5
+ label: string;
6
+ value: string;
7
+ disabled?: boolean;
8
+ }[];
9
+ error?: string;
10
+ defaultValue?: string;
11
+ ariaLabel?: string;
12
+ hint?: string;
13
+ onChange?: (value: string) => void;
14
+ disabled?: boolean;
15
+ };
16
+ declare function RadioGroup({ items, error, defaultValue, ariaLabel, hint, onChange, disabled, ...props }: Props): React.JSX.Element;
17
+ export default RadioGroup;
@@ -0,0 +1 @@
1
+ export { default } from './RadioGroup';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ type Props = {
3
+ children: React.ReactNode;
4
+ };
5
+ declare const ScrollArea: ({ children }: Props) => React.JSX.Element;
6
+ export default ScrollArea;
@@ -0,0 +1 @@
1
+ export { default } from "./ScrollArea";
@@ -1,4 +1,5 @@
1
1
  import AddIcon from './add.svg';
2
+ import ArrowDownIcon from './keyboard_arrow_down.svg';
2
3
  import BlockIcon from './block.svg';
3
4
  import BlurOnIcon from './blur_on.svg';
4
5
  import CachedIcon from './cached.svg';
@@ -7,19 +8,19 @@ import CloseIcon from './close.svg';
7
8
  import DeleteIcon from './delete.svg';
8
9
  import InfoIcon from './info.svg';
9
10
  import InfoSolidIcon from './info-1.svg';
10
- import ArrowDownIcon from './keyboard_arrow_down.svg';
11
- import MicOnSolidIcon from './mic-1.svg';
12
- import MicOnfIcon from './mic.svg';
13
11
  import MicOffIcon from './mic_off-1.svg';
14
12
  import MicOffSolidIcon from './mic_off.svg';
15
- import VideoCamOnSolidIcon from './videocam-1.svg';
16
- import VideoCamOnIcon from './videocam.svg';
17
- import VideoCamOffSolidIcon from './videocam_off-1.svg';
13
+ import MicOnfIcon from './mic.svg';
14
+ import MicOnSolidIcon from './mic-1.svg';
15
+ import PlayIcon from './play.svg';
18
16
  import VideoCamOffIcon from './videocam_off.svg';
17
+ import VideoCamOffSolidIcon from './videocam_off-1.svg';
18
+ import VideoCamOnIcon from './videocam.svg';
19
+ import VideoCamOnSolidIcon from './videocam-1.svg';
19
20
  import VolumeOffIcon from './volume_off-1.svg';
20
21
  import VolumeOffSolidIcon from './volume_off.svg';
21
22
  import VolumeUpIcon from './volume_up-1.svg';
22
23
  import VolumeUpSolidIcon from './volume_up.svg';
23
- import WarningSolidIcon from './warning.svg';
24
24
  import WarningIcon from './warning-1.svg';
25
- export { AddIcon, ArrowDownIcon, BlockIcon, BlurOnIcon, CachedIcon, CheckCircleIcon, CloseIcon, DeleteIcon, InfoIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, InfoSolidIcon, WarningSolidIcon, WarningIcon, };
25
+ import WarningSolidIcon from './warning.svg';
26
+ export { AddIcon, ArrowDownIcon, BlockIcon, BlurOnIcon, CachedIcon, CheckCircleIcon, CloseIcon, DeleteIcon, InfoIcon, InfoSolidIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PlayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };