@box/metadata-view 0.33.0 → 0.35.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/dist/chunks/predefined-filter-options-factory.js +25 -0
- package/dist/chunks/table-row.js +52 -52
- package/dist/esm/lib/components/filter-row/filter-row.js +2 -2
- package/dist/esm/lib/components/filter-row/messages.js +6 -2
- package/dist/esm/lib/components/filter-row/predefinedFilters/predefined-filter-options-factory.js +5 -0
- package/dist/esm/lib/components/filter-row/predefinedFilters/use-predefined-filter.js +71 -0
- package/dist/esm/lib/components/filter-sidepanel/filter-sidepanel.js +29 -28
- package/dist/esm/lib/components/filter-sidepanel/filter.js +37 -11
- package/dist/esm/lib/components/metadata-table/metadata-table.js +42 -40
- package/dist/esm/lib/components/metadata-table/table-body/inline-editing-cell/index.js +4 -0
- package/dist/esm/lib/components/metadata-table/table-body/inline-editing-cell/inline-editing-cell.js +37 -0
- package/dist/esm/lib/components/metadata-table/table-body/table-body-with-data.js +89 -95
- package/dist/esm/lib/components/metadata-table/table-renderer.js +17 -15
- package/dist/esm/lib/components/metadata-value/messages.js +4 -0
- package/dist/esm/lib/components/metadata-value/metadata-location-field.js +44 -0
- package/dist/esm/lib/components/metadata-value/metadata-search-field.js +8 -8
- package/dist/i18n/bn-IN.js +2 -0
- package/dist/i18n/da-DK.js +2 -0
- package/dist/i18n/de-DE.js +2 -0
- package/dist/i18n/en-AU.js +2 -0
- package/dist/i18n/en-CA.js +2 -0
- package/dist/i18n/en-GB.js +2 -0
- package/dist/i18n/en-US.js +2 -0
- package/dist/i18n/en-US.properties +4 -0
- package/dist/i18n/en-x-pseudo.js +2 -0
- package/dist/i18n/es-419.js +2 -0
- package/dist/i18n/es-ES.js +2 -0
- package/dist/i18n/fi-FI.js +2 -0
- package/dist/i18n/fr-CA.js +2 -0
- package/dist/i18n/fr-FR.js +2 -0
- package/dist/i18n/hi-IN.js +2 -0
- package/dist/i18n/it-IT.js +2 -0
- package/dist/i18n/ja-JP.js +2 -0
- package/dist/i18n/json/src/lib/components/filter-row/messages.json +1 -1
- package/dist/i18n/json/src/lib/components/metadata-value/messages.json +1 -1
- package/dist/i18n/ko-KR.js +2 -0
- package/dist/i18n/nb-NO.js +2 -0
- package/dist/i18n/nl-NL.js +2 -0
- package/dist/i18n/pl-PL.js +2 -0
- package/dist/i18n/pt-BR.js +2 -0
- package/dist/i18n/ru-RU.js +2 -0
- package/dist/i18n/sv-SE.js +2 -0
- package/dist/i18n/tr-TR.js +2 -0
- package/dist/i18n/zh-CN.js +2 -0
- package/dist/i18n/zh-TW.js +2 -0
- package/dist/styles/inline-editing-cell.css +1 -0
- package/dist/styles/metadata-location-field.css +1 -0
- package/dist/styles/table-row.css +1 -1
- package/dist/types/lib/components/action-bar/action-bar.d.ts +1 -1
- package/dist/types/lib/components/filter-row/filter-row.d.ts +4 -3
- package/dist/types/lib/components/filter-row/messages.d.ts +5 -0
- package/dist/types/lib/components/filter-row/predefinedFilters/predefined-filter-options-factory.d.ts +2 -0
- package/dist/types/lib/components/filter-row/predefinedFilters/types.d.ts +20 -0
- package/dist/types/lib/components/filter-row/predefinedFilters/use-predefined-filter.d.ts +3 -0
- package/dist/types/lib/components/filter-row/types.d.ts +3 -1
- package/dist/types/lib/components/filter-sidepanel/filter-sidepanel.d.ts +1 -1
- package/dist/types/lib/components/metadata-table/metadata-table.d.ts +3 -1
- package/dist/types/lib/components/metadata-table/table-body/inline-editing-cell/index.d.ts +1 -0
- package/dist/types/lib/components/metadata-table/table-body/inline-editing-cell/inline-editing-cell.d.ts +9 -0
- package/dist/types/lib/components/metadata-table/table-body/table-body-with-data.d.ts +12 -1
- package/dist/types/lib/components/metadata-table/table-renderer.d.ts +4 -2
- package/dist/types/lib/components/metadata-value/messages.d.ts +5 -0
- package/dist/types/lib/components/metadata-value/metadata-location-field.d.ts +14 -0
- package/dist/types/lib/components/metadata-value/metadata-search-field.d.ts +2 -2
- package/dist/types/lib/types.d.ts +4 -3
- package/package.json +1 -1
- package/dist/esm/lib/components/filter-row/use-predefined-filter.js +0 -44
- package/dist/types/lib/components/filter-row/use-predefined-filter.d.ts +0 -2
|
@@ -1,182 +1,176 @@
|
|
|
1
|
-
import { TableBody as y, Row as
|
|
2
|
-
import { ItemTypeIcon as
|
|
1
|
+
import { TableBody as y, Row as L, Cell as c, ActionCell as b, Text as N } from "@box/blueprint-web";
|
|
2
|
+
import { ItemTypeIcon as $ } from "@box/item-icon";
|
|
3
3
|
import x from "clsx";
|
|
4
4
|
import T from "lodash/get";
|
|
5
|
-
import
|
|
5
|
+
import i from "react";
|
|
6
6
|
import { I as h } from "../../../../../chunks/types.js";
|
|
7
|
-
import { THUMBNAIL_LIST_VIEW_HEIGHTS as
|
|
8
|
-
import
|
|
9
|
-
import { s as f, T as
|
|
10
|
-
import { jsx as r, jsxs as
|
|
11
|
-
import
|
|
12
|
-
|
|
7
|
+
import { THUMBNAIL_LIST_VIEW_HEIGHTS as R } from "../../constants.js";
|
|
8
|
+
import S from "./ghost-row/ghost-row.js";
|
|
9
|
+
import { s as f, T as g } from "../../../../../chunks/table-row.js";
|
|
10
|
+
import { jsx as r, jsxs as u } from "react/jsx-runtime";
|
|
11
|
+
import w from "./inline-editing-cell/inline-editing-cell.js";
|
|
12
|
+
import { ItemActionMenu as B } from "../../item-action-menu/item-action-menu.js";
|
|
13
|
+
const _ = /* @__PURE__ */ i.memo(({
|
|
13
14
|
item: t,
|
|
14
15
|
column: e,
|
|
15
16
|
iconColumnVariant: n
|
|
16
17
|
}) => {
|
|
17
18
|
const {
|
|
18
|
-
id:
|
|
19
|
-
|
|
20
|
-
} = e,
|
|
21
|
-
return /* @__PURE__ */ r(
|
|
22
|
-
children: /* @__PURE__ */
|
|
19
|
+
id: o,
|
|
20
|
+
subtitle: d
|
|
21
|
+
} = e, a = `${e.textValue}-${t.id}`;
|
|
22
|
+
return /* @__PURE__ */ r(c, {
|
|
23
|
+
children: /* @__PURE__ */ u("div", {
|
|
23
24
|
className: f.tableNameCell,
|
|
24
|
-
children: [/* @__PURE__ */ r(
|
|
25
|
+
children: [/* @__PURE__ */ r($, {
|
|
25
26
|
item: t
|
|
26
|
-
}), /* @__PURE__ */
|
|
27
|
+
}), /* @__PURE__ */ u("div", {
|
|
27
28
|
className: x({
|
|
28
|
-
[f.
|
|
29
|
+
[f.tableNameCellSubtitle]: n === h.INLINE_SUBTITLE
|
|
29
30
|
}),
|
|
30
|
-
children: [/* @__PURE__ */ r(
|
|
31
|
+
children: [/* @__PURE__ */ r(N, {
|
|
31
32
|
as: "span",
|
|
32
|
-
children: T(t,
|
|
33
|
-
}), n === h.INLINE_SUBTITLE && /* @__PURE__ */ r(
|
|
33
|
+
children: T(t, o)
|
|
34
|
+
}), n === h.INLINE_SUBTITLE && /* @__PURE__ */ r(N, {
|
|
34
35
|
as: "span",
|
|
35
36
|
color: "textOnLightSecondary",
|
|
36
|
-
children:
|
|
37
|
+
children: d
|
|
37
38
|
})]
|
|
38
39
|
})]
|
|
39
40
|
})
|
|
40
|
-
},
|
|
41
|
-
}), k = /* @__PURE__ */
|
|
41
|
+
}, a);
|
|
42
|
+
}), k = /* @__PURE__ */ i.memo(({
|
|
42
43
|
item: t,
|
|
43
44
|
column: e
|
|
44
45
|
}) => {
|
|
45
|
-
var
|
|
46
|
+
var o;
|
|
46
47
|
const n = `${e.textValue}-${t.id}`;
|
|
47
|
-
return /* @__PURE__ */ r(
|
|
48
|
-
children: (
|
|
48
|
+
return /* @__PURE__ */ r(c, {
|
|
49
|
+
children: (o = e.cellRenderer) == null ? void 0 : o.call(e, t, e)
|
|
49
50
|
}, n);
|
|
50
|
-
}),
|
|
51
|
+
}), U = /* @__PURE__ */ i.memo(({
|
|
51
52
|
item: t,
|
|
52
53
|
column: e
|
|
53
54
|
}) => {
|
|
54
|
-
const n = `${e.textValue}-${t.id}`,
|
|
55
|
-
return
|
|
56
|
-
children:
|
|
57
|
-
}, n) : /* @__PURE__ */ r(
|
|
58
|
-
}),
|
|
55
|
+
const n = `${e.textValue}-${t.id}`, o = T(t, e.id);
|
|
56
|
+
return o ? /* @__PURE__ */ r(c, {
|
|
57
|
+
children: o.join(" ")
|
|
58
|
+
}, n) : /* @__PURE__ */ r(c, {}, n);
|
|
59
|
+
}), W = /* @__PURE__ */ i.memo(({
|
|
59
60
|
item: t,
|
|
60
61
|
column: e
|
|
61
62
|
}) => {
|
|
62
63
|
const n = `${e.textValue}-${t.id}`;
|
|
63
|
-
return /* @__PURE__ */ r(
|
|
64
|
-
children: /* @__PURE__ */ r(
|
|
64
|
+
return /* @__PURE__ */ r(c, {
|
|
65
|
+
children: /* @__PURE__ */ r(N, {
|
|
65
66
|
as: "span",
|
|
66
67
|
children: T(t, e.id)
|
|
67
68
|
})
|
|
68
69
|
}, n);
|
|
69
|
-
}),
|
|
70
|
-
item: t,
|
|
71
|
-
column: e
|
|
72
|
-
}) => {
|
|
73
|
-
const n = `${e.textValue}-${t.id}`;
|
|
74
|
-
return /* @__PURE__ */ r(d, {
|
|
75
|
-
children: /* @__PURE__ */ N(p, {
|
|
76
|
-
as: "span",
|
|
77
|
-
children: [T(t, e.id), " withInlineEditing"]
|
|
78
|
-
})
|
|
79
|
-
}, n);
|
|
80
|
-
}), W = /* @__PURE__ */ s.memo(({
|
|
70
|
+
}), j = /* @__PURE__ */ i.memo(({
|
|
81
71
|
item: t,
|
|
82
72
|
column: e,
|
|
83
|
-
iconColumnVariant: n
|
|
73
|
+
iconColumnVariant: n,
|
|
74
|
+
onInlineEditChange: o
|
|
84
75
|
}) => {
|
|
85
76
|
const {
|
|
86
|
-
cellRenderer:
|
|
77
|
+
cellRenderer: d,
|
|
87
78
|
id: a,
|
|
88
|
-
isInlineEditingEnabled:
|
|
79
|
+
isInlineEditingEnabled: p,
|
|
89
80
|
type: I
|
|
90
81
|
} = e;
|
|
91
|
-
return a === "name" && (n === h.INLINE || n === h.INLINE_SUBTITLE) ? /* @__PURE__ */ r(
|
|
82
|
+
return a === "name" && (n === h.INLINE || n === h.INLINE_SUBTITLE) ? /* @__PURE__ */ r(_, {
|
|
92
83
|
column: e,
|
|
93
84
|
iconColumnVariant: n,
|
|
94
85
|
item: t
|
|
95
|
-
}) :
|
|
86
|
+
}) : d ? /* @__PURE__ */ r(k, {
|
|
96
87
|
column: e,
|
|
97
88
|
item: t
|
|
98
|
-
}) : I === "multiSelect" ? /* @__PURE__ */ r(
|
|
89
|
+
}) : I === "multiSelect" ? /* @__PURE__ */ r(U, {
|
|
99
90
|
column: e,
|
|
100
91
|
item: t
|
|
101
|
-
}) :
|
|
92
|
+
}) : p && I === "enum" ? /* @__PURE__ */ r(w, {
|
|
102
93
|
column: e,
|
|
103
|
-
item: t
|
|
104
|
-
|
|
94
|
+
item: t,
|
|
95
|
+
onInlineEditChange: o
|
|
96
|
+
}) : /* @__PURE__ */ r(W, {
|
|
105
97
|
column: e,
|
|
106
98
|
item: t
|
|
107
99
|
});
|
|
108
|
-
}),
|
|
100
|
+
}), D = /* @__PURE__ */ i.memo(({
|
|
109
101
|
item: t,
|
|
110
102
|
zoomLevel: e
|
|
111
|
-
}) => /* @__PURE__ */ r(
|
|
103
|
+
}) => /* @__PURE__ */ r(c, {
|
|
112
104
|
style: {
|
|
113
|
-
height:
|
|
105
|
+
height: R[e]
|
|
114
106
|
},
|
|
115
|
-
children: /* @__PURE__ */ r(
|
|
107
|
+
children: /* @__PURE__ */ r($, {
|
|
116
108
|
className: f.iconCell,
|
|
117
109
|
item: t
|
|
118
110
|
})
|
|
119
|
-
}, `item-type-icon-${t.id}`)),
|
|
111
|
+
}, `item-type-icon-${t.id}`)), G = /* @__PURE__ */ i.memo(({
|
|
120
112
|
item: t,
|
|
121
113
|
itemActionMenuProps: e
|
|
122
|
-
}) => /* @__PURE__ */ r(
|
|
123
|
-
children: (n) => e ? /* @__PURE__ */ r(
|
|
114
|
+
}) => /* @__PURE__ */ r(b, {
|
|
115
|
+
children: (n) => e ? /* @__PURE__ */ r(B, {
|
|
124
116
|
...e,
|
|
125
117
|
item: t,
|
|
126
118
|
onOpenChange: n
|
|
127
119
|
}) : null
|
|
128
|
-
})),
|
|
120
|
+
})), Y = ({
|
|
129
121
|
columns: t,
|
|
130
122
|
iconColumnVariant: e,
|
|
131
123
|
isSelectAllEnabled: n,
|
|
132
|
-
items:
|
|
133
|
-
itemActionMenuProps:
|
|
134
|
-
virtualItems:
|
|
135
|
-
columnCount:
|
|
136
|
-
zoomLevel:
|
|
124
|
+
items: o,
|
|
125
|
+
itemActionMenuProps: d,
|
|
126
|
+
virtualItems: a,
|
|
127
|
+
columnCount: p,
|
|
128
|
+
zoomLevel: I,
|
|
129
|
+
onInlineEditChange: C
|
|
137
130
|
}) => {
|
|
138
|
-
const
|
|
139
|
-
if (
|
|
140
|
-
const
|
|
141
|
-
columnLength:
|
|
142
|
-
rowKey: `ghost-${
|
|
143
|
-
}), m = (
|
|
131
|
+
const E = e === h.COLUMN;
|
|
132
|
+
if (a) {
|
|
133
|
+
const l = (s) => /* @__PURE__ */ r(S, {
|
|
134
|
+
columnLength: p || 0,
|
|
135
|
+
rowKey: `ghost-${s}`
|
|
136
|
+
}), m = (s) => /* @__PURE__ */ r(g, {
|
|
144
137
|
columns: t,
|
|
145
138
|
iconColumnVariant: e,
|
|
146
139
|
isSelectAllEnabled: n,
|
|
147
|
-
item:
|
|
148
|
-
itemActionMenuProps:
|
|
149
|
-
zoomLevel:
|
|
140
|
+
item: s,
|
|
141
|
+
itemActionMenuProps: d,
|
|
142
|
+
zoomLevel: I
|
|
150
143
|
});
|
|
151
144
|
return /* @__PURE__ */ r(y, {
|
|
152
|
-
items:
|
|
145
|
+
items: a,
|
|
153
146
|
children: ({
|
|
154
|
-
index:
|
|
155
|
-
}) =>
|
|
147
|
+
index: s
|
|
148
|
+
}) => s >= o.length ? l(s) : m(o[s])
|
|
156
149
|
});
|
|
157
150
|
}
|
|
158
151
|
return /* @__PURE__ */ r(y, {
|
|
159
|
-
items:
|
|
160
|
-
key:
|
|
161
|
-
...
|
|
152
|
+
items: o.map((l) => ({
|
|
153
|
+
key: l.id,
|
|
154
|
+
...l
|
|
162
155
|
})),
|
|
163
|
-
children: (
|
|
156
|
+
children: (l) => /* @__PURE__ */ u(L, {
|
|
164
157
|
className: f.tableRow,
|
|
165
|
-
id:
|
|
166
|
-
children: [
|
|
167
|
-
item:
|
|
168
|
-
zoomLevel:
|
|
169
|
-
}), t.map((m) => /* @__PURE__ */ r(
|
|
158
|
+
id: l.id,
|
|
159
|
+
children: [E && /* @__PURE__ */ r(D, {
|
|
160
|
+
item: l,
|
|
161
|
+
zoomLevel: I
|
|
162
|
+
}), t.map((m) => /* @__PURE__ */ r(j, {
|
|
170
163
|
column: m,
|
|
171
164
|
iconColumnVariant: e,
|
|
172
|
-
item:
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
165
|
+
item: l,
|
|
166
|
+
onInlineEditChange: C
|
|
167
|
+
}, `${m.textValue}-${l.id}`)), n && /* @__PURE__ */ r(G, {
|
|
168
|
+
item: l,
|
|
169
|
+
itemActionMenuProps: d
|
|
176
170
|
})]
|
|
177
|
-
},
|
|
171
|
+
}, l.id)
|
|
178
172
|
});
|
|
179
173
|
};
|
|
180
174
|
export {
|
|
181
|
-
|
|
175
|
+
Y as default
|
|
182
176
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { Table as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import { I as
|
|
5
|
-
import
|
|
6
|
-
import { jsxs as
|
|
7
|
-
const
|
|
1
|
+
import { Table as T } from "@box/blueprint-web";
|
|
2
|
+
import d from "./table-body/ghost-table-body.js";
|
|
3
|
+
import x from "./table-body/table-body-with-data.js";
|
|
4
|
+
import { I as B } from "../../../../chunks/types.js";
|
|
5
|
+
import j from "./messages.js";
|
|
6
|
+
import { jsxs as y, jsx as i } from "react/jsx-runtime";
|
|
7
|
+
const O = ({
|
|
8
8
|
tableHeader: s,
|
|
9
9
|
columns: t,
|
|
10
10
|
iconColumnVariant: n,
|
|
@@ -17,21 +17,22 @@ const N = ({
|
|
|
17
17
|
virtualItems: o,
|
|
18
18
|
style: h,
|
|
19
19
|
columnCount: p,
|
|
20
|
-
zoomLevel: C
|
|
20
|
+
zoomLevel: C,
|
|
21
|
+
onInlineEditChange: g
|
|
21
22
|
}) => {
|
|
22
23
|
const m = p || (() => {
|
|
23
24
|
let e = t.length;
|
|
24
|
-
return n ===
|
|
25
|
-
})(),
|
|
26
|
-
return /* @__PURE__ */
|
|
27
|
-
"aria-label": u(
|
|
25
|
+
return n === B.COLUMN && (e += 1), r && (e += 1), e;
|
|
26
|
+
})(), b = l && !(o != null && o.length);
|
|
27
|
+
return /* @__PURE__ */ y(T, {
|
|
28
|
+
"aria-label": u(j.listView),
|
|
28
29
|
selectionBehavior: "toggle",
|
|
29
30
|
selectionMode: "multiple",
|
|
30
31
|
style: h,
|
|
31
32
|
...a,
|
|
32
|
-
children: [s,
|
|
33
|
+
children: [s, b ? /* @__PURE__ */ i(d, {
|
|
33
34
|
columnLength: m
|
|
34
|
-
}) : /* @__PURE__ */ i(
|
|
35
|
+
}) : /* @__PURE__ */ i(x, {
|
|
35
36
|
columnCount: m,
|
|
36
37
|
columns: t,
|
|
37
38
|
iconColumnVariant: n,
|
|
@@ -39,11 +40,12 @@ const N = ({
|
|
|
39
40
|
isSelectAllEnabled: r,
|
|
40
41
|
itemActionMenuProps: c,
|
|
41
42
|
items: f,
|
|
43
|
+
onInlineEditChange: g,
|
|
42
44
|
virtualItems: o,
|
|
43
45
|
zoomLevel: C
|
|
44
46
|
})]
|
|
45
47
|
});
|
|
46
48
|
};
|
|
47
49
|
export {
|
|
48
|
-
|
|
50
|
+
O as default
|
|
49
51
|
};
|
|
@@ -7,6 +7,10 @@ const t = a({
|
|
|
7
7
|
searchInputClearAriaLabel: {
|
|
8
8
|
id: "groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel",
|
|
9
9
|
defaultMessage: "Clear"
|
|
10
|
+
},
|
|
11
|
+
selectFolderHint: {
|
|
12
|
+
id: "groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint",
|
|
13
|
+
defaultMessage: "Select a folder"
|
|
10
14
|
}
|
|
11
15
|
});
|
|
12
16
|
export {
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { ContentField as f } from "@box/blueprint-web";
|
|
2
|
+
import { useFormikContext as u } from "formik";
|
|
3
|
+
import p from "lodash/noop";
|
|
4
|
+
import { useIntl as h } from "react-intl";
|
|
5
|
+
import C from "./messages.js";
|
|
6
|
+
import { jsx as i } from "react/jsx-runtime";
|
|
7
|
+
import '../../../../styles/metadata-location-field.css';const v = "_metadataLocationFieldTrigger_1d3ch_1", L = {
|
|
8
|
+
metadataLocationFieldTrigger: v
|
|
9
|
+
}, S = ({
|
|
10
|
+
id: t,
|
|
11
|
+
triggerSetValueCallback: n = p,
|
|
12
|
+
renderer: s = (a) => a
|
|
13
|
+
}) => {
|
|
14
|
+
var r;
|
|
15
|
+
const {
|
|
16
|
+
formatMessage: a
|
|
17
|
+
} = h(), {
|
|
18
|
+
values: l,
|
|
19
|
+
setFieldValue: o
|
|
20
|
+
} = u(), e = (r = l.metadata.fields[t].value.enum) == null ? void 0 : r[0], m = () => {
|
|
21
|
+
o(`metadata.fields.${t}.value.enum`, []);
|
|
22
|
+
}, d = () => {
|
|
23
|
+
n((c, F, g = !1) => {
|
|
24
|
+
o(`metadata.fields.${t}.value.enum[0]`, {
|
|
25
|
+
folderId: c,
|
|
26
|
+
folderName: F,
|
|
27
|
+
isFolderShared: g
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
return s(/* @__PURE__ */ i("div", {
|
|
32
|
+
className: L.metadataLocationFieldTrigger,
|
|
33
|
+
children: /* @__PURE__ */ i(f, {
|
|
34
|
+
hintText: a(C.selectFolderHint),
|
|
35
|
+
isSharedFolder: e == null ? void 0 : e.isFolderShared,
|
|
36
|
+
onClick: d,
|
|
37
|
+
onClickClearButton: m,
|
|
38
|
+
title: e == null ? void 0 : e.folderName
|
|
39
|
+
})
|
|
40
|
+
}));
|
|
41
|
+
};
|
|
42
|
+
export {
|
|
43
|
+
S as MetadataLocationField
|
|
44
|
+
};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { SearchInput as u } from "@box/blueprint-web";
|
|
2
2
|
import { useFormikContext as p } from "formik";
|
|
3
|
-
import { useIntl as
|
|
3
|
+
import { useIntl as i } from "react-intl";
|
|
4
4
|
import o from "./messages.js";
|
|
5
|
-
import { jsx as
|
|
5
|
+
import { jsx as c } from "react/jsx-runtime";
|
|
6
6
|
const C = ({
|
|
7
7
|
id: e,
|
|
8
|
-
name:
|
|
9
|
-
placeholder:
|
|
8
|
+
name: s,
|
|
9
|
+
placeholder: l
|
|
10
10
|
}) => {
|
|
11
11
|
const {
|
|
12
12
|
formatMessage: t
|
|
13
|
-
} =
|
|
13
|
+
} = i(), {
|
|
14
14
|
values: n,
|
|
15
15
|
setFieldValue: r
|
|
16
16
|
} = p(), a = n.metadata.fields[e].value.enum;
|
|
17
|
-
return /* @__PURE__ */
|
|
17
|
+
return /* @__PURE__ */ c(u.Controlled, {
|
|
18
18
|
id: e,
|
|
19
|
-
name:
|
|
19
|
+
name: s,
|
|
20
20
|
onChange: (m) => r(`metadata.fields.${e}.value.enum[0]`, m.target.value),
|
|
21
21
|
onClearInput: () => r(`metadata.fields.${e}.value.enum`, []),
|
|
22
|
-
placeholder:
|
|
22
|
+
placeholder: l,
|
|
23
23
|
searchInputAriaLabel: t(o.searchInputAriaLabel),
|
|
24
24
|
searchInputClearAriaLabel: t(o.searchInputClearAriaLabel),
|
|
25
25
|
value: (a == null ? void 0 : a[0]) || ""
|
package/dist/i18n/bn-IN.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "পরিষ্কার করুন",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "ফাইলের ধরন",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "কিওয়ার্ড লিখুন",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "মূল্য সেট করুন",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "সমস্ত মুছুন",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "বন্ধ করুন",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "তালিকা ভিউ",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "রিফ্রেশ করুন",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "সমস্ত নির্বাচন করুন",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "অনুসন্ধান করুন",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "পরিষ্কার করুন",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "পরবর্তী",
|
package/dist/i18n/da-DK.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Ryd",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "Filtype",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Indtast nøgleord",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Indstil værdi",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Ryd alt",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "Luk",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "Listevisning",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Opdater",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Vælg alt/alle",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Søg",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Ryd",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Næste",
|
package/dist/i18n/de-DE.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Leeren",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "Dateityp",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Schlüsselwörter eingeben",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Wert festlegen",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Alles löschen",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "Schließen",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "Listenansicht",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Aktualisieren",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Alle auswählen",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Suchen",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Leeren",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Weiter",
|
package/dist/i18n/en-AU.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Clear",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "File Type",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Enter keywords",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Set Value",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Clear All",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "Close",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "List view",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Refresh",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Select all",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Search",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Clear",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Next",
|
package/dist/i18n/en-CA.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Clear",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "File Type",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Enter keywords",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Set Value",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Clear All",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "Close",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "List view",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Refresh",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Select all",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Search",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Clear",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Next",
|
package/dist/i18n/en-GB.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Clear",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "File Type",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Enter keywords",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Set Value",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Clear All",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "Close",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "List view",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Refresh",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Select all",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Search",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Clear",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Next",
|
package/dist/i18n/en-US.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Clear",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "File Type",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Enter keywords",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Set Value",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Clear All",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "Close",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "List view",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Refresh",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Select all",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Search",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Clear",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Next",
|
|
@@ -24,6 +24,8 @@ groupSharedFeatures.metadataView.filterRow.clearButton = Clear
|
|
|
24
24
|
groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle = File Type
|
|
25
25
|
# Placeholder text for the keyword search filter
|
|
26
26
|
groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder = Enter keywords
|
|
27
|
+
# Title for the location filter group
|
|
28
|
+
groupSharedFeatures.metadataView.filterRow.locationFilterTitle = Location
|
|
27
29
|
# Placeholder text for the input field in the filter row
|
|
28
30
|
groupSharedFeatures.metadataView.filterRow.textInputPlaceholder = Set Value
|
|
29
31
|
# Button label to clear all filters in the sidepanel
|
|
@@ -46,6 +48,8 @@ groupSharedFeatures.metadataView.itemList.listView = List view
|
|
|
46
48
|
groupSharedFeatures.metadataView.itemList.refreshButton = Refresh
|
|
47
49
|
# Label for the select all checkbox in the metadata table
|
|
48
50
|
groupSharedFeatures.metadataView.itemList.selectAll = Select all
|
|
51
|
+
# Placeholder for select folder trigger
|
|
52
|
+
groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint = Select a folder
|
|
49
53
|
# Aria label for the search input
|
|
50
54
|
groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel = Search
|
|
51
55
|
# Aria label for the clear button in the search input
|
package/dist/i18n/en-x-pseudo.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "⟦萬 Ċļėàґ 國⟧",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "⟦萬萬 ₣ïľė ΤỳΡè 國國⟧",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "⟦萬萬萬萬 Еňτĕґ кęУшŏŕďś 國國國國⟧",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "⟦萬萬 Ŝěŧ Vαľũе 國國⟧",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "⟦萬萬 Ćĺėāř Āļĺ 國國⟧",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "⟦萬 Ċľοŝĕ 國⟧",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "⟦萬萬 Ŀīѕτ νīёẃ 國國⟧",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "⟦萬萬 Яεƒŗėśн 國國⟧",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "⟦萬萬 Śèĺë¢ţ äĺļ 國國⟧",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "⟦萬 Ѕěāŗ¢ħ 國⟧",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "⟦萬 Čľέāг 國⟧",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "⟦萬 Ńέхŧ 國⟧",
|
package/dist/i18n/es-419.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Eliminar",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "Tipo de archivo",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Introducir palabras clave",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Definir valor",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Borrar todos",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "Cerrar",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "Vista de lista",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Actualizar",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Seleccionar todos",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Buscar",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Eliminar",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Siguiente",
|
package/dist/i18n/es-ES.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Eliminar",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "Tipo de archivo",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Introducir palabras clave",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Definir valor",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Borrar todos",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "Cerrar",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "Vista de lista",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Actualizar",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Seleccionar todos",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Buscar",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Eliminar",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Siguiente",
|
package/dist/i18n/fi-FI.js
CHANGED
|
@@ -12,6 +12,7 @@ export default {
|
|
|
12
12
|
"groupSharedFeatures.metadataView.filterRow.clearButton": "Tyhjennä",
|
|
13
13
|
"groupSharedFeatures.metadataView.filterRow.fileTypeFilterTitle": "Tiedostotyyppi",
|
|
14
14
|
"groupSharedFeatures.metadataView.filterRow.keywordSearchFilterPlaceholder": "Kirjoita hakusanat",
|
|
15
|
+
"groupSharedFeatures.metadataView.filterRow.locationFilterTitle": "Location",
|
|
15
16
|
"groupSharedFeatures.metadataView.filterRow.textInputPlaceholder": "Aseta arvo",
|
|
16
17
|
"groupSharedFeatures.metadataView.filterSidepanel.clearAllButton": "Tyhjennä kaikki",
|
|
17
18
|
"groupSharedFeatures.metadataView.filterSidepanel.closeAriaLabel": "Sulje",
|
|
@@ -23,6 +24,7 @@ export default {
|
|
|
23
24
|
"groupSharedFeatures.metadataView.itemList.listView": "Luettelonäkymä",
|
|
24
25
|
"groupSharedFeatures.metadataView.itemList.refreshButton": "Päivitä",
|
|
25
26
|
"groupSharedFeatures.metadataView.itemList.selectAll": "Valitse kaikki",
|
|
27
|
+
"groupSharedFeatures.metadataView.metadataValue.metadataLocation.locationTriggerHint": "Select a folder",
|
|
26
28
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputAriaLabel": "Hae",
|
|
27
29
|
"groupSharedFeatures.metadataView.metadataValue.metadataSearch.searchInputClearAriaLabel": "Tyhjennä",
|
|
28
30
|
"groupSharedFeatures.metadataView.pagination.nextPageButton": "Seuraava",
|