@vertigis/react-ui 11.30.0 → 11.31.0
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.
|
@@ -128,13 +128,13 @@ const SymbolInput = props => {
|
|
|
128
128
|
LineStyleProps?.onChange?.(event);
|
|
129
129
|
}, disabled: !isSupportedSymbol || LineStyleProps?.disabled, children: getSimpleLineStyles(text).map(ls => (_jsx("option", { value: ls.id, children: ls.label }, ls.id))) })), _jsx(FormNumberInput, { fullWidth: true, ...LineWidthProps, SliderProps: {
|
|
130
130
|
step: 0.5,
|
|
131
|
-
min:
|
|
131
|
+
min: 0,
|
|
132
132
|
max: 25,
|
|
133
133
|
...LineWidthProps?.SliderProps,
|
|
134
134
|
disabled: !isSupportedSymbol || LineWidthProps?.SliderProps?.disabled,
|
|
135
135
|
}, InputProps: {
|
|
136
136
|
onBlur: handleLineWidthBlur,
|
|
137
|
-
min:
|
|
137
|
+
min: 0,
|
|
138
138
|
max: 25,
|
|
139
139
|
...LineWidthProps?.InputProps,
|
|
140
140
|
disabled: !isSupportedSymbol || LineWidthProps?.InputProps?.disabled,
|
|
@@ -162,13 +162,13 @@ const SymbolInput = props => {
|
|
|
162
162
|
MarkerSizeProps?.onChange?.(value);
|
|
163
163
|
}, SliderProps: {
|
|
164
164
|
step: 1,
|
|
165
|
-
min:
|
|
165
|
+
min: 0,
|
|
166
166
|
max: 25,
|
|
167
167
|
...MarkerSizeProps?.SliderProps,
|
|
168
168
|
disabled: !isSupportedSymbol ||
|
|
169
169
|
MarkerSizeProps?.SliderProps?.disabled,
|
|
170
170
|
}, InputProps: {
|
|
171
|
-
min:
|
|
171
|
+
min: 0,
|
|
172
172
|
max: 25,
|
|
173
173
|
...MarkerSizeProps?.InputProps,
|
|
174
174
|
onBlur: handleMarkerSizeBlur,
|