Skip to content

Commit 70835eb

Browse files
committed
one-slots
1 parent 28406f0 commit 70835eb

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-declarative-mantine",
3-
"version": "0.0.28",
3+
"version": "0.0.29",
44
"description": "The Mantine ui kit bindings for react-declarative",
55
"private": false,
66
"author": {

src/OneSlotFactory/components/Choose.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export const Choose = ({
112112
return (
113113
<TextInput
114114
{...MANTINE_CONFIG}
115-
variant={outlined ? "unstyled" : "filled"}
115+
variant={outlined ? "default" : "filled"}
116116
readOnly
117117
ref={inputRef}
118118
label={title}

src/OneSlotFactory/components/Combo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export const Combo = ({
172172
return (
173173
<Select
174174
{...MANTINE_CONFIG}
175-
variant={outlined ? "unstyled" : "filled"}
175+
variant={outlined ? "default" : "filled"}
176176
disabled
177177
label={title}
178178
error={(dirty && (invalid || incorrect))}
@@ -192,7 +192,7 @@ export const Combo = ({
192192
{...MANTINE_CONFIG}
193193
value={value}
194194
allowDeselect={!noDeselect}
195-
variant={outlined ? "unstyled" : "filled"}
195+
variant={outlined ? "default" : "filled"}
196196
onChange={handleChange}
197197
label={title}
198198
disabled={disabled}

src/OneSlotFactory/components/ComboArray.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export const ComboArray = ({
172172
return (
173173
<Select
174174
{...MANTINE_CONFIG}
175-
variant={outlined ? "unstyled" : "filled"}
175+
variant={outlined ? "default" : "filled"}
176176
disabled
177177
label={title}
178178
error={(dirty && (invalid || incorrect))}
@@ -192,7 +192,7 @@ export const ComboArray = ({
192192
{...MANTINE_CONFIG}
193193
value={value}
194194
allowDeselect={!noDeselect}
195-
variant={outlined ? "unstyled" : "filled"}
195+
variant={outlined ? "default" : "filled"}
196196
onChange={handleChange}
197197
label={title}
198198
disabled={disabled}

src/OneSlotFactory/components/Complete.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ export const Complete = ({
375375
<div ref={anchorElRef}>
376376
<TextInput
377377
{...MANTINE_CONFIG}
378-
variant={outlined ? "unstyled" : "filled"}
378+
variant={outlined ? "default" : "filled"}
379379
ref={inputElementRef}
380380
label={title}
381381
error={(dirty && (invalid || incorrect))}

src/OneSlotFactory/components/Date.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const Date = ({
4141
return (
4242
<DateInput
4343
{...MANTINE_CONFIG}
44-
variant={outlined ? "unstyled" : "filled"}
44+
variant={outlined ? "default" : "filled"}
4545
label={title}
4646
ref={inputRef}
4747
readOnly={readonly}

src/OneSlotFactory/components/Items.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export const Items = ({
177177
return (
178178
<MultiSelect
179179
{...MANTINE_CONFIG}
180-
variant={outlined ? "unstyled" : "filled"}
180+
variant={outlined ? "default" : "filled"}
181181
disabled
182182
label={title}
183183
error={(dirty && (invalid || incorrect))}
@@ -196,7 +196,7 @@ export const Items = ({
196196
<MultiSelect
197197
{...MANTINE_CONFIG}
198198
value={value}
199-
variant={outlined ? "unstyled" : "filled"}
199+
variant={outlined ? "default" : "filled"}
200200
onChange={handleChange}
201201
label={title}
202202
disabled={disabled}

src/OneSlotFactory/components/Text.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ export const Text = ({
347347
return (
348348
<TextInput
349349
{...MANTINE_CONFIG}
350-
variant={outlined ? "unstyled" : "filled"}
350+
variant={outlined ? "default" : "filled"}
351351
ref={(input: HTMLInputElement | null) => {
352352
inputElementRef.current = input;
353353
inputRef && inputRef(input);

src/OneSlotFactory/components/Time.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export const Time = ({
218218
<>
219219
<TextInput
220220
{...MANTINE_CONFIG}
221-
variant={outlined ? "unstyled" : "filled"}
221+
variant={outlined ? "default" : "filled"}
222222
ref={(input: HTMLInputElement | null) => {
223223
inputElementRef.current = input;
224224
inputRef && inputRef(input);

0 commit comments

Comments
 (0)