File tree Expand file tree Collapse file tree 12 files changed +18
-18
lines changed
src/OneSlotFactory/components Expand file tree Collapse file tree 12 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-declarative-mantine" ,
3
- "version" : " 0.0.28 " ,
3
+ "version" : " 0.0.29 " ,
4
4
"description" : " The Mantine ui kit bindings for react-declarative" ,
5
5
"private" : false ,
6
6
"author" : {
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export const Choose = ({
112
112
return (
113
113
< TextInput
114
114
{ ...MANTINE_CONFIG }
115
- variant = { outlined ? "unstyled " : "filled" }
115
+ variant = { outlined ? "default " : "filled" }
116
116
readOnly
117
117
ref = { inputRef }
118
118
label = { title }
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export const Combo = ({
172
172
return (
173
173
< Select
174
174
{ ...MANTINE_CONFIG }
175
- variant = { outlined ? "unstyled " : "filled" }
175
+ variant = { outlined ? "default " : "filled" }
176
176
disabled
177
177
label = { title }
178
178
error = { ( dirty && ( invalid || incorrect ) ) }
@@ -192,7 +192,7 @@ export const Combo = ({
192
192
{ ...MANTINE_CONFIG }
193
193
value = { value }
194
194
allowDeselect = { ! noDeselect }
195
- variant = { outlined ? "unstyled " : "filled" }
195
+ variant = { outlined ? "default " : "filled" }
196
196
onChange = { handleChange }
197
197
label = { title }
198
198
disabled = { disabled }
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export const ComboArray = ({
172
172
return (
173
173
< Select
174
174
{ ...MANTINE_CONFIG }
175
- variant = { outlined ? "unstyled " : "filled" }
175
+ variant = { outlined ? "default " : "filled" }
176
176
disabled
177
177
label = { title }
178
178
error = { ( dirty && ( invalid || incorrect ) ) }
@@ -192,7 +192,7 @@ export const ComboArray = ({
192
192
{ ...MANTINE_CONFIG }
193
193
value = { value }
194
194
allowDeselect = { ! noDeselect }
195
- variant = { outlined ? "unstyled " : "filled" }
195
+ variant = { outlined ? "default " : "filled" }
196
196
onChange = { handleChange }
197
197
label = { title }
198
198
disabled = { disabled }
Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ export const Complete = ({
375
375
< div ref = { anchorElRef } >
376
376
< TextInput
377
377
{ ...MANTINE_CONFIG }
378
- variant = { outlined ? "unstyled " : "filled" }
378
+ variant = { outlined ? "default " : "filled" }
379
379
ref = { inputElementRef }
380
380
label = { title }
381
381
error = { ( dirty && ( invalid || incorrect ) ) }
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export const Date = ({
41
41
return (
42
42
< DateInput
43
43
{ ...MANTINE_CONFIG }
44
- variant = { outlined ? "unstyled " : "filled" }
44
+ variant = { outlined ? "default " : "filled" }
45
45
label = { title }
46
46
ref = { inputRef }
47
47
readOnly = { readonly }
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ export const Items = ({
177
177
return (
178
178
< MultiSelect
179
179
{ ...MANTINE_CONFIG }
180
- variant = { outlined ? "unstyled " : "filled" }
180
+ variant = { outlined ? "default " : "filled" }
181
181
disabled
182
182
label = { title }
183
183
error = { ( dirty && ( invalid || incorrect ) ) }
@@ -196,7 +196,7 @@ export const Items = ({
196
196
< MultiSelect
197
197
{ ...MANTINE_CONFIG }
198
198
value = { value }
199
- variant = { outlined ? "unstyled " : "filled" }
199
+ variant = { outlined ? "default " : "filled" }
200
200
onChange = { handleChange }
201
201
label = { title }
202
202
disabled = { disabled }
Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ export const Text = ({
347
347
return (
348
348
< TextInput
349
349
{ ...MANTINE_CONFIG }
350
- variant = { outlined ? "unstyled " : "filled" }
350
+ variant = { outlined ? "default " : "filled" }
351
351
ref = { ( input : HTMLInputElement | null ) => {
352
352
inputElementRef . current = input ;
353
353
inputRef && inputRef ( input ) ;
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ export const Time = ({
218
218
< >
219
219
< TextInput
220
220
{ ...MANTINE_CONFIG }
221
- variant = { outlined ? "unstyled " : "filled" }
221
+ variant = { outlined ? "default " : "filled" }
222
222
ref = { ( input : HTMLInputElement | null ) => {
223
223
inputElementRef . current = input ;
224
224
inputRef && inputRef ( input ) ;
You can’t perform that action at this time.
0 commit comments