@povio/ui 3.3.0-rc.4 → 3.3.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.
- package/README.md +15 -1
- package/dist/components/Breadcrumbs/Breadcrumbs.js +55 -206
- package/dist/components/buttons/InlineIconButton/InlineIconButton.js +9 -34
- package/dist/components/buttons/shared/ButtonContent.js +22 -80
- package/dist/components/inputs/Checkbox/CheckboxCheckmark.js +10 -24
- package/dist/components/inputs/DateTime/DatePicker/DatePicker.js +93 -227
- package/dist/components/inputs/DateTime/DateRangePicker/DateRangePicker.js +84 -202
- package/dist/components/inputs/DateTime/DateTimePicker/DateTimePicker.js +60 -132
- package/dist/components/inputs/DateTime/shared/Calendar.js +139 -339
- package/dist/components/inputs/DateTime/shared/CalendarCell.js +114 -308
- package/dist/components/inputs/DateTime/shared/CalendarGrid.js +35 -150
- package/dist/components/inputs/DateTime/shared/CalendarHeader.js +95 -229
- package/dist/components/inputs/DateTime/shared/CalendarSelectHeader.js +115 -296
- package/dist/components/inputs/DateTime/shared/DateField.js +135 -306
- package/dist/components/inputs/DateTime/shared/DatePickerInput.js +140 -338
- package/dist/components/inputs/DateTime/shared/DateTimeDialogFooter.js +10 -59
- package/dist/components/inputs/File/FileUpload.js +1 -1
- package/dist/components/inputs/File/InputUpload.js +65 -261
- package/dist/components/inputs/File/shared/FileUploadContentEmpty.js +48 -180
- package/dist/components/inputs/File/shared/FileUploadContentError.js +95 -265
- package/dist/components/inputs/File/shared/FileUploadContentFilled.js +99 -261
- package/dist/components/inputs/File/shared/FileUploadContentLoading.js +56 -234
- package/dist/components/inputs/File/shared/ProgressBar.js +15 -102
- package/dist/components/inputs/FormField/FormField.js +34 -47
- package/dist/components/inputs/Input/NumberRangeInput/NumberRangeInput.js +75 -313
- package/dist/components/inputs/Selection/Autocomplete/Autocomplete.js +23 -83
- package/dist/components/inputs/Selection/Select/QuerySelect.js +30 -96
- package/dist/components/inputs/Selection/Select/Select.js +3 -3
- package/dist/components/inputs/Selection/shared/SelectInput.js +1 -0
- package/dist/components/inputs/Selection/shared/SelectListBox.js +51 -163
- package/dist/components/inputs/Selection/shared/useSelectItems.js +48 -108
- package/dist/components/inputs/Skeleton/InputFrame.js +177 -552
- package/dist/components/inputs/TextEditor/TextEditor.js +87 -389
- package/dist/components/inputs/shared/InputClear.js +24 -40
- package/dist/components/navigation/Accordion/Accordion.js +22 -69
- package/dist/components/navigation/Accordion/AccordionItem.js +41 -86
- package/dist/components/navigation/Stepper/Stepper.js +22 -67
- package/dist/components/overlays/ActionModal/ActionModal.js +35 -169
- package/dist/components/overlays/ResponsivePopover/ResponsivePopover.js +29 -110
- package/dist/components/shared/pagination/Pagination.js +22 -108
- package/dist/components/status/Alert/Alert.js +30 -97
- package/dist/components/table/InfiniteTable.js +16 -67
- package/dist/components/table/Table.d.ts +2 -8
- package/dist/components/table/Table.js +33 -55
- package/dist/components/text/Typography/Typography.js +8 -23
- package/dist/config/confirmation.context.js +1 -1
- package/dist/config/theme.context.js +45 -98
- package/dist/config/uiConfig.context.js +8 -39
- package/dist/config/uiOverrides.context.d.ts +0 -1
- package/dist/hooks/useDebounceCallback.js +17 -51
- package/dist/hooks/useFormAutosave.js +33 -120
- package/dist/hooks/useLongPressRepeat.js +20 -55
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1 -2
- package/package.json +2 -2
- package/dist/components/inputs/FormField/formField.cva.d.ts +0 -11
- package/dist/components/inputs/FormField/formField.cva.js +0 -16
- package/dist/components/table/TableColumnFilterInput.d.ts +0 -9
- package/dist/components/table/TableColumnFilterInput.js +0 -108
- package/dist/components/table/TableColumnFilterPlaceholder.d.ts +0 -5
- package/dist/components/table/TableColumnFilterPlaceholder.js +0 -41
- package/dist/components/table/TableColumnFilterRow.d.ts +0 -16
- package/dist/components/table/TableColumnFilterRow.js +0 -68
|
@@ -6,275 +6,113 @@ import "../../../../config/i18n.js";
|
|
|
6
6
|
import { TextButton } from "../../../buttons/TextButton/TextButton.js";
|
|
7
7
|
import { FileUtils } from "../../../../utils/file.utils.js";
|
|
8
8
|
import { CheckCircleIcon } from "../../../../assets/icons/CheckCircle.js";
|
|
9
|
-
import { c } from "react/compiler-runtime";
|
|
10
9
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
11
10
|
import { clsx } from "clsx";
|
|
12
11
|
import { FileTrigger } from "react-aria-components";
|
|
13
12
|
import { useTranslation } from "react-i18next";
|
|
14
13
|
//#region src/components/inputs/File/shared/FileUploadContentFilled.tsx
|
|
15
|
-
var FileUploadContentFilled = (
|
|
16
|
-
const $ = c(61);
|
|
17
|
-
const { variant, as, isDisabled, state, browseText, fileTriggerProps, removeWithIcon: t1, singleFile, onRemove, browseButtonProps } = t0;
|
|
18
|
-
const removeWithIcon = t1 === void 0 ? false : t1;
|
|
14
|
+
var FileUploadContentFilled = ({ variant, as, isDisabled, state, browseText, fileTriggerProps, removeWithIcon = false, singleFile, onRemove, browseButtonProps }) => {
|
|
19
15
|
const { t } = useTranslation("ui");
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
t22 = FileUtils.getFileDisplaySize(state);
|
|
117
|
-
$[23] = state;
|
|
118
|
-
$[24] = t22;
|
|
119
|
-
} else t22 = $[24];
|
|
120
|
-
let t23;
|
|
121
|
-
if ($[25] !== t21 || $[26] !== t22) {
|
|
122
|
-
t23 = /* @__PURE__ */ jsx(Typography, {
|
|
123
|
-
variant: "default",
|
|
124
|
-
size: t21,
|
|
125
|
-
as: "span",
|
|
126
|
-
className: "text-text-default-2",
|
|
127
|
-
children: t22
|
|
128
|
-
});
|
|
129
|
-
$[25] = t21;
|
|
130
|
-
$[26] = t22;
|
|
131
|
-
$[27] = t23;
|
|
132
|
-
} else t23 = $[27];
|
|
133
|
-
let t24;
|
|
134
|
-
if ($[28] !== t18 || $[29] !== t20 || $[30] !== t23) {
|
|
135
|
-
t24 = /* @__PURE__ */ jsxs("div", {
|
|
136
|
-
className: t18,
|
|
137
|
-
children: [t20, t23]
|
|
138
|
-
});
|
|
139
|
-
$[28] = t18;
|
|
140
|
-
$[29] = t20;
|
|
141
|
-
$[30] = t23;
|
|
142
|
-
$[31] = t24;
|
|
143
|
-
} else t24 = $[31];
|
|
144
|
-
let t25;
|
|
145
|
-
if ($[32] !== t14 || $[33] !== t24) {
|
|
146
|
-
t25 = /* @__PURE__ */ jsxs("div", {
|
|
147
|
-
className: t14,
|
|
148
|
-
children: [t15, t24]
|
|
149
|
-
});
|
|
150
|
-
$[32] = t14;
|
|
151
|
-
$[33] = t24;
|
|
152
|
-
$[34] = t25;
|
|
153
|
-
} else t25 = $[34];
|
|
154
|
-
const t26 = variant === "vertical" && as === "button";
|
|
155
|
-
const t27 = as === "link" && variant === "vertical";
|
|
156
|
-
const t28 = as === "button" && variant === "vertical";
|
|
157
|
-
const t29 = variant === "horizontal";
|
|
158
|
-
let t30;
|
|
159
|
-
if ($[35] !== t26 || $[36] !== t27 || $[37] !== t28 || $[38] !== t29) {
|
|
160
|
-
t30 = clsx("flex flex-none items-center justify-end", {
|
|
161
|
-
"flex-col": t26,
|
|
162
|
-
"gap-file-upload-content-gap-text-to-text": t27,
|
|
163
|
-
"gap-file-upload-content-gap-content-to-button": t28,
|
|
164
|
-
"gap-file-upload-content-gap-button-to-button": t29
|
|
165
|
-
});
|
|
166
|
-
$[35] = t26;
|
|
167
|
-
$[36] = t27;
|
|
168
|
-
$[37] = t28;
|
|
169
|
-
$[38] = t29;
|
|
170
|
-
$[39] = t30;
|
|
171
|
-
} else t30 = $[39];
|
|
172
|
-
let t31;
|
|
173
|
-
if ($[40] !== as || $[41] !== browseButtonRestProps || $[42] !== browseButtonSize || $[43] !== browseButtonVariant || $[44] !== browseButtonWidth || $[45] !== browseText || $[46] !== fileTriggerProps || $[47] !== isDisabled || $[48] !== onRemove || $[49] !== removeWithIcon || $[50] !== state.id || $[51] !== t || $[52] !== variant) {
|
|
174
|
-
t31 = as === "link" ? /* @__PURE__ */ jsxs(Fragment, { children: [fileTriggerProps && /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx(FileTrigger, {
|
|
175
|
-
...fileTriggerProps,
|
|
176
|
-
children: /* @__PURE__ */ jsx(TextButton, {
|
|
177
|
-
className: clsx("text-interactive-text-primary-idle", { "[&>span>span]:font-medium!": variant === "vertical" }),
|
|
178
|
-
children: browseText ?? ""
|
|
179
|
-
})
|
|
180
|
-
}), variant === "vertical" && /* @__PURE__ */ jsx(Typography, {
|
|
181
|
-
variant: "default",
|
|
182
|
-
size: "label-2",
|
|
183
|
-
as: "span",
|
|
184
|
-
className: "text-text-default-2",
|
|
185
|
-
children: t(_temp)
|
|
186
|
-
})] }), removeWithIcon ? /* @__PURE__ */ jsx(InlineIconButton, {
|
|
187
|
-
label: "Cancel",
|
|
188
|
-
color: "secondary",
|
|
189
|
-
onPress: () => {
|
|
190
|
-
onRemove(state.id ?? "");
|
|
191
|
-
},
|
|
192
|
-
icon: CloseIcon
|
|
193
|
-
}) : /* @__PURE__ */ jsx(TextButton, {
|
|
194
|
-
className: clsx(variant === "vertical" && "text-interactive-text-primary-idle lowercase [&>span>span]:font-medium!"),
|
|
195
|
-
color: variant === "horizontal" ? "secondary" : "primary",
|
|
196
|
-
onPress: () => {
|
|
197
|
-
onRemove(state.id ?? "");
|
|
198
|
-
},
|
|
199
|
-
children: t(_temp2)
|
|
200
|
-
})] }) : /* @__PURE__ */ jsxs("div", {
|
|
201
|
-
className: "flex items-center justify-center gap-file-upload-content-gap-button-to-button self-stretch",
|
|
202
|
-
children: [fileTriggerProps && /* @__PURE__ */ jsx(FileTrigger, {
|
|
203
|
-
...fileTriggerProps,
|
|
204
|
-
children: /* @__PURE__ */ jsx(Button$1, {
|
|
205
|
-
variant: browseButtonVariant,
|
|
206
|
-
size: browseButtonSize,
|
|
207
|
-
width: browseButtonWidth,
|
|
208
|
-
...browseButtonRestProps,
|
|
209
|
-
isDisabled,
|
|
210
|
-
children: browseText ?? ""
|
|
16
|
+
const { size: browseButtonSize = "xs", variant: browseButtonVariant = "outlined", width: browseButtonWidth = "hug", ...browseButtonRestProps } = browseButtonProps ?? {};
|
|
17
|
+
return /* @__PURE__ */ jsx("div", {
|
|
18
|
+
className: clsx("flex w-full flex-fill flex-col items-start"),
|
|
19
|
+
children: /* @__PURE__ */ jsxs("div", {
|
|
20
|
+
className: clsx("flex w-full items-center", {
|
|
21
|
+
"flex-row gap-file-upload-content-gap-left-to-right-content": variant === "horizontal",
|
|
22
|
+
"flex-col": variant === "vertical",
|
|
23
|
+
"gap-file-upload-content-gap-content-to-button": variant === "vertical" && as === "button",
|
|
24
|
+
"gap-file-upload-content-gap-text-to-text": variant === "vertical" && as === "link"
|
|
25
|
+
}),
|
|
26
|
+
children: [/* @__PURE__ */ jsxs("div", {
|
|
27
|
+
className: clsx("flex min-w-0 max-w-full grow items-center gap-file-upload-content-gap-icon-to-content", {
|
|
28
|
+
"flex-col": variant === "vertical",
|
|
29
|
+
"flex-row": variant === "horizontal",
|
|
30
|
+
"opacity-50": isDisabled
|
|
31
|
+
}),
|
|
32
|
+
children: [/* @__PURE__ */ jsx(CheckCircleIcon, { className: "h-6 w-6 text-text-default-1" }), /* @__PURE__ */ jsxs("div", {
|
|
33
|
+
className: clsx("flex flex-col gap-file-upload-content-gap-text-to-text", {
|
|
34
|
+
"max-w-full items-center": variant === "vertical",
|
|
35
|
+
"max-w-[calc(100%-32px)]": variant === "horizontal"
|
|
36
|
+
}),
|
|
37
|
+
children: [/* @__PURE__ */ jsx(Typography, {
|
|
38
|
+
variant: "prominent-1",
|
|
39
|
+
size: "label-1",
|
|
40
|
+
as: "span",
|
|
41
|
+
className: "self-stretch truncate text-center text-text-default-1",
|
|
42
|
+
children: state.file?.name ?? state.displayName ?? ""
|
|
43
|
+
}), /* @__PURE__ */ jsx(Typography, {
|
|
44
|
+
variant: "default",
|
|
45
|
+
size: singleFile ? "label-2" : "label-3",
|
|
46
|
+
as: "span",
|
|
47
|
+
className: "text-text-default-2",
|
|
48
|
+
children: FileUtils.getFileDisplaySize(state)
|
|
49
|
+
})]
|
|
50
|
+
})]
|
|
51
|
+
}), /* @__PURE__ */ jsx("div", {
|
|
52
|
+
className: clsx("flex flex-none items-center justify-end", {
|
|
53
|
+
"flex-col": variant === "vertical" && as === "button",
|
|
54
|
+
"gap-file-upload-content-gap-text-to-text": as === "link" && variant === "vertical",
|
|
55
|
+
"gap-file-upload-content-gap-content-to-button": as === "button" && variant === "vertical",
|
|
56
|
+
"gap-file-upload-content-gap-button-to-button": variant === "horizontal"
|
|
57
|
+
}),
|
|
58
|
+
children: as === "link" ? /* @__PURE__ */ jsxs(Fragment, { children: [fileTriggerProps && /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx(FileTrigger, {
|
|
59
|
+
...fileTriggerProps,
|
|
60
|
+
children: /* @__PURE__ */ jsx(TextButton, {
|
|
61
|
+
className: clsx("text-interactive-text-primary-idle", { "[&>span>span]:font-medium!": variant === "vertical" }),
|
|
62
|
+
children: browseText ?? ""
|
|
63
|
+
})
|
|
64
|
+
}), variant === "vertical" && /* @__PURE__ */ jsx(Typography, {
|
|
65
|
+
variant: "default",
|
|
66
|
+
size: "label-2",
|
|
67
|
+
as: "span",
|
|
68
|
+
className: "text-text-default-2",
|
|
69
|
+
children: t(($) => $.ui.fileUpload.or)
|
|
70
|
+
})] }), removeWithIcon ? /* @__PURE__ */ jsx(InlineIconButton, {
|
|
71
|
+
label: "Cancel",
|
|
72
|
+
color: "secondary",
|
|
73
|
+
onPress: () => {
|
|
74
|
+
onRemove(state.id ?? "");
|
|
75
|
+
},
|
|
76
|
+
icon: CloseIcon
|
|
77
|
+
}) : /* @__PURE__ */ jsx(TextButton, {
|
|
78
|
+
className: clsx(variant === "vertical" && "text-interactive-text-primary-idle lowercase [&>span>span]:font-medium!"),
|
|
79
|
+
color: variant === "horizontal" ? "secondary" : "primary",
|
|
80
|
+
onPress: () => {
|
|
81
|
+
onRemove(state.id ?? "");
|
|
82
|
+
},
|
|
83
|
+
children: t(($_0) => $_0.ui.fileUpload.removeFile)
|
|
84
|
+
})] }) : /* @__PURE__ */ jsxs("div", {
|
|
85
|
+
className: "flex items-center justify-center gap-file-upload-content-gap-button-to-button self-stretch",
|
|
86
|
+
children: [fileTriggerProps && /* @__PURE__ */ jsx(FileTrigger, {
|
|
87
|
+
...fileTriggerProps,
|
|
88
|
+
children: /* @__PURE__ */ jsx(Button$1, {
|
|
89
|
+
variant: browseButtonVariant,
|
|
90
|
+
size: browseButtonSize,
|
|
91
|
+
width: browseButtonWidth,
|
|
92
|
+
...browseButtonRestProps,
|
|
93
|
+
isDisabled,
|
|
94
|
+
children: browseText ?? ""
|
|
95
|
+
})
|
|
96
|
+
}), removeWithIcon ? /* @__PURE__ */ jsx(InlineIconButton, {
|
|
97
|
+
label: "Cancel",
|
|
98
|
+
color: "secondary",
|
|
99
|
+
onPress: () => {
|
|
100
|
+
onRemove(state.id ?? "");
|
|
101
|
+
},
|
|
102
|
+
icon: CloseIcon,
|
|
103
|
+
isDisabled
|
|
104
|
+
}) : /* @__PURE__ */ jsx(TextButton, {
|
|
105
|
+
color: "secondary",
|
|
106
|
+
onPress: () => {
|
|
107
|
+
onRemove(state.id ?? "");
|
|
108
|
+
},
|
|
109
|
+
isDisabled,
|
|
110
|
+
children: t(($_1) => $_1.ui.fileUpload.removeFile)
|
|
111
|
+
})]
|
|
211
112
|
})
|
|
212
|
-
}), removeWithIcon ? /* @__PURE__ */ jsx(InlineIconButton, {
|
|
213
|
-
label: "Cancel",
|
|
214
|
-
color: "secondary",
|
|
215
|
-
onPress: () => {
|
|
216
|
-
onRemove(state.id ?? "");
|
|
217
|
-
},
|
|
218
|
-
icon: CloseIcon,
|
|
219
|
-
isDisabled
|
|
220
|
-
}) : /* @__PURE__ */ jsx(TextButton, {
|
|
221
|
-
color: "secondary",
|
|
222
|
-
onPress: () => {
|
|
223
|
-
onRemove(state.id ?? "");
|
|
224
|
-
},
|
|
225
|
-
isDisabled,
|
|
226
|
-
children: t(_temp3)
|
|
227
113
|
})]
|
|
228
|
-
})
|
|
229
|
-
|
|
230
|
-
$[41] = browseButtonRestProps;
|
|
231
|
-
$[42] = browseButtonSize;
|
|
232
|
-
$[43] = browseButtonVariant;
|
|
233
|
-
$[44] = browseButtonWidth;
|
|
234
|
-
$[45] = browseText;
|
|
235
|
-
$[46] = fileTriggerProps;
|
|
236
|
-
$[47] = isDisabled;
|
|
237
|
-
$[48] = onRemove;
|
|
238
|
-
$[49] = removeWithIcon;
|
|
239
|
-
$[50] = state.id;
|
|
240
|
-
$[51] = t;
|
|
241
|
-
$[52] = variant;
|
|
242
|
-
$[53] = t31;
|
|
243
|
-
} else t31 = $[53];
|
|
244
|
-
let t32;
|
|
245
|
-
if ($[54] !== t30 || $[55] !== t31) {
|
|
246
|
-
t32 = /* @__PURE__ */ jsx("div", {
|
|
247
|
-
className: t30,
|
|
248
|
-
children: t31
|
|
249
|
-
});
|
|
250
|
-
$[54] = t30;
|
|
251
|
-
$[55] = t31;
|
|
252
|
-
$[56] = t32;
|
|
253
|
-
} else t32 = $[56];
|
|
254
|
-
let t33;
|
|
255
|
-
if ($[57] !== t11 || $[58] !== t25 || $[59] !== t32) {
|
|
256
|
-
t33 = /* @__PURE__ */ jsx("div", {
|
|
257
|
-
className: t6,
|
|
258
|
-
children: /* @__PURE__ */ jsxs("div", {
|
|
259
|
-
className: t11,
|
|
260
|
-
children: [t25, t32]
|
|
261
|
-
})
|
|
262
|
-
});
|
|
263
|
-
$[57] = t11;
|
|
264
|
-
$[58] = t25;
|
|
265
|
-
$[59] = t32;
|
|
266
|
-
$[60] = t33;
|
|
267
|
-
} else t33 = $[60];
|
|
268
|
-
return t33;
|
|
114
|
+
})
|
|
115
|
+
});
|
|
269
116
|
};
|
|
270
|
-
function _temp($) {
|
|
271
|
-
return $.ui.fileUpload.or;
|
|
272
|
-
}
|
|
273
|
-
function _temp2($_0) {
|
|
274
|
-
return $_0.ui.fileUpload.removeFile;
|
|
275
|
-
}
|
|
276
|
-
function _temp3($_1) {
|
|
277
|
-
return $_1.ui.fileUpload.removeFile;
|
|
278
|
-
}
|
|
279
117
|
//#endregion
|
|
280
118
|
export { FileUploadContentFilled };
|