@zealicsolutions/web-ui 1.0.49 → 1.0.51

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.
@@ -2,14 +2,13 @@ import React from 'react';
2
2
  import { SliderProps } from '@mui/material';
3
3
  import { ConfigurationItemInfo } from 'containers';
4
4
  export interface SliderMoleculeProps extends Omit<SliderProps, 'onChange'> {
5
- /** If true, the slider is displayed disabled + text showing the value. */
5
+ text?: string;
6
+ name?: string;
6
7
  isDisplayOnly?: boolean;
7
- /** If true, rely on FormControl to show a required asterisk. */
8
8
  required?: boolean;
9
9
  requiredErrorText?: string;
10
10
  validationErrorText?: string;
11
11
  placeholderText?: string;
12
- text?: string;
13
12
  startIcon?: string;
14
13
  endIcon?: string;
15
14
  borderColor?: string;
@@ -28,7 +27,6 @@ export interface SliderMoleculeProps extends Omit<SliderProps, 'onChange'> {
28
27
  minValue?: number;
29
28
  maxValue?: number;
30
29
  step?: number;
31
- /** label's placement relative to the slider+icons */
32
30
  labelPlacement?: 'top' | 'bottom';
33
31
  marginLeft?: string;
34
32
  marginTop?: string;
@@ -39,11 +37,6 @@ export interface SliderMoleculeProps extends Omit<SliderProps, 'onChange'> {
39
37
  paddingRight?: string;
40
38
  paddingBottom?: string;
41
39
  configurationItemInfo?: ConfigurationItemInfo;
42
- /** For hooking up with react-hook-form */
43
- name?: string;
44
40
  sourceDataModelField?: string;
45
41
  }
46
- /**
47
- * SliderMolecule
48
- */
49
42
  export declare const SliderMolecule: React.FC<SliderMoleculeProps>;