@gitbook/react-openapi 1.2.1 → 1.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.
Files changed (63) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/OpenAPIDisclosure.d.ts +1 -0
  3. package/dist/OpenAPIDisclosure.jsx +6 -3
  4. package/dist/OpenAPIDisclosureGroup.jsx +16 -15
  5. package/dist/OpenAPIResponse.jsx +18 -2
  6. package/dist/OpenAPIResponseExample.jsx +8 -3
  7. package/dist/OpenAPIResponses.jsx +6 -1
  8. package/dist/OpenAPISchema.d.ts +9 -2
  9. package/dist/OpenAPISchema.jsx +93 -59
  10. package/dist/OpenAPISchemaName.d.ts +1 -1
  11. package/dist/OpenAPISchemaName.jsx +1 -1
  12. package/dist/StaticSection.jsx +1 -1
  13. package/dist/code-samples.js +5 -2
  14. package/dist/generateSchemaExample.js +5 -0
  15. package/dist/getDisclosureLabel.d.ts +7 -0
  16. package/dist/getDisclosureLabel.js +18 -0
  17. package/dist/schemas/OpenAPISchemaItem.d.ts +7 -0
  18. package/dist/schemas/OpenAPISchemaItem.jsx +16 -0
  19. package/dist/schemas/OpenAPISchemas.jsx +3 -9
  20. package/dist/translations/de.d.ts +6 -1
  21. package/dist/translations/de.js +9 -4
  22. package/dist/translations/en.d.ts +6 -1
  23. package/dist/translations/en.js +8 -3
  24. package/dist/translations/es.d.ts +6 -1
  25. package/dist/translations/es.js +9 -4
  26. package/dist/translations/fr.d.ts +6 -1
  27. package/dist/translations/fr.js +10 -5
  28. package/dist/translations/index.d.ts +54 -9
  29. package/dist/translations/ja.d.ts +6 -1
  30. package/dist/translations/ja.js +8 -3
  31. package/dist/translations/nl.d.ts +6 -1
  32. package/dist/translations/nl.js +8 -3
  33. package/dist/translations/no.d.ts +6 -1
  34. package/dist/translations/no.js +9 -4
  35. package/dist/translations/pt-br.d.ts +6 -1
  36. package/dist/translations/pt-br.js +9 -4
  37. package/dist/translations/zh.d.ts +6 -1
  38. package/dist/translations/zh.js +9 -4
  39. package/dist/tsconfig.build.tsbuildinfo +1 -1
  40. package/package.json +1 -1
  41. package/src/OpenAPIDisclosure.tsx +7 -3
  42. package/src/OpenAPIDisclosureGroup.tsx +49 -48
  43. package/src/OpenAPIResponse.tsx +34 -2
  44. package/src/OpenAPIResponseExample.tsx +36 -34
  45. package/src/OpenAPIResponses.tsx +4 -4
  46. package/src/OpenAPISchema.tsx +167 -103
  47. package/src/OpenAPISchemaName.tsx +2 -2
  48. package/src/StaticSection.tsx +1 -1
  49. package/src/code-samples.test.ts +2 -1
  50. package/src/code-samples.ts +5 -2
  51. package/src/generateSchemaExample.ts +8 -0
  52. package/src/getDisclosureLabel.ts +25 -0
  53. package/src/schemas/OpenAPISchemaItem.tsx +34 -0
  54. package/src/schemas/OpenAPISchemas.tsx +7 -13
  55. package/src/translations/de.ts +9 -4
  56. package/src/translations/en.ts +8 -3
  57. package/src/translations/es.ts +9 -4
  58. package/src/translations/fr.ts +10 -5
  59. package/src/translations/ja.ts +8 -3
  60. package/src/translations/nl.ts +8 -3
  61. package/src/translations/no.ts +9 -4
  62. package/src/translations/pt-br.ts +9 -4
  63. package/src/translations/zh.ts +9 -4
@@ -18,9 +18,11 @@ export var de = {
18
18
  nullable: 'Nullfähig',
19
19
  body: 'Rumpf',
20
20
  payload: 'Nutzlast',
21
- headers: 'Kopfzeilen',
21
+ headers: 'Header',
22
+ header: 'Header',
22
23
  authorizations: 'Autorisierungen',
23
24
  responses: 'Antworten',
25
+ response: 'Antwort',
24
26
  path_parameters: 'Pfadparameter',
25
27
  query_parameters: 'Abfrageparameter',
26
28
  header_parameters: 'Header-Parameter',
@@ -30,8 +32,11 @@ export var de = {
30
32
  success: 'Erfolg',
31
33
  redirect: 'Umleitung',
32
34
  error: 'Fehler',
33
- show: 'Anzeigen',
34
- hide: 'Verstecken',
35
+ show: 'Zeige ${1}',
36
+ hide: 'Verstecke ${1}',
35
37
  available_items: 'Verfügbare Elemente',
36
- child_attributes: 'Unterattribute',
38
+ properties: 'Eigenschaften',
39
+ or: 'oder',
40
+ and: 'und',
41
+ possible_values: 'Mögliche Werte',
37
42
  };
@@ -19,8 +19,10 @@ export declare const en: {
19
19
  body: string;
20
20
  payload: string;
21
21
  headers: string;
22
+ header: string;
22
23
  authorizations: string;
23
24
  responses: string;
25
+ response: string;
24
26
  path_parameters: string;
25
27
  query_parameters: string;
26
28
  header_parameters: string;
@@ -33,5 +35,8 @@ export declare const en: {
33
35
  show: string;
34
36
  hide: string;
35
37
  available_items: string;
36
- child_attributes: string;
38
+ possible_values: string;
39
+ properties: string;
40
+ or: string;
41
+ and: string;
37
42
  };
@@ -19,8 +19,10 @@ export var en = {
19
19
  body: 'Body',
20
20
  payload: 'Payload',
21
21
  headers: 'Headers',
22
+ header: 'Header',
22
23
  authorizations: 'Authorizations',
23
24
  responses: 'Responses',
25
+ response: 'Response',
24
26
  path_parameters: 'Path parameters',
25
27
  query_parameters: 'Query parameters',
26
28
  header_parameters: 'Header parameters',
@@ -30,8 +32,11 @@ export var en = {
30
32
  success: 'Success',
31
33
  redirect: 'Redirect',
32
34
  error: 'Error',
33
- show: 'Show',
34
- hide: 'Hide',
35
+ show: 'Show ${1}',
36
+ hide: 'Hide ${1}',
35
37
  available_items: 'Available items',
36
- child_attributes: 'Child attributes',
38
+ possible_values: 'Possible values',
39
+ properties: 'Properties',
40
+ or: 'or',
41
+ and: 'and',
37
42
  };
@@ -19,8 +19,10 @@ export declare const es: {
19
19
  body: string;
20
20
  payload: string;
21
21
  headers: string;
22
+ header: string;
22
23
  authorizations: string;
23
24
  responses: string;
25
+ response: string;
24
26
  path_parameters: string;
25
27
  query_parameters: string;
26
28
  header_parameters: string;
@@ -33,5 +35,8 @@ export declare const es: {
33
35
  show: string;
34
36
  hide: string;
35
37
  available_items: string;
36
- child_attributes: string;
38
+ properties: string;
39
+ or: string;
40
+ and: string;
41
+ possible_values: string;
37
42
  };
@@ -18,9 +18,11 @@ export var es = {
18
18
  nullable: 'Nulo',
19
19
  body: 'Cuerpo',
20
20
  payload: 'Caga útil',
21
- headers: 'Encabezados',
21
+ headers: 'Headers',
22
+ header: 'Header',
22
23
  authorizations: 'Autorizaciones',
23
24
  responses: 'Respuestas',
25
+ response: 'Respuesta',
24
26
  path_parameters: 'Parámetros de ruta',
25
27
  query_parameters: 'Parámetros de consulta',
26
28
  header_parameters: 'Parámetros de encabezado',
@@ -30,8 +32,11 @@ export var es = {
30
32
  success: 'Éxito',
31
33
  redirect: 'Redirección',
32
34
  error: 'Error',
33
- show: 'Mostrar',
34
- hide: 'Ocultar',
35
+ show: 'Mostrar ${1}',
36
+ hide: 'Ocultar ${1}',
35
37
  available_items: 'Elementos disponibles',
36
- child_attributes: 'Atributos secundarios',
38
+ properties: 'Propiedades',
39
+ or: 'o',
40
+ and: 'y',
41
+ possible_values: 'Valores posibles',
37
42
  };
@@ -19,8 +19,10 @@ export declare const fr: {
19
19
  body: string;
20
20
  payload: string;
21
21
  headers: string;
22
+ header: string;
22
23
  authorizations: string;
23
24
  responses: string;
25
+ response: string;
24
26
  path_parameters: string;
25
27
  query_parameters: string;
26
28
  header_parameters: string;
@@ -33,5 +35,8 @@ export declare const fr: {
33
35
  show: string;
34
36
  hide: string;
35
37
  available_items: string;
36
- child_attributes: string;
38
+ properties: string;
39
+ or: string;
40
+ and: string;
41
+ possible_values: string;
37
42
  };
@@ -18,20 +18,25 @@ export var fr = {
18
18
  nullable: 'Nullable',
19
19
  body: 'Corps',
20
20
  payload: 'Charge utile',
21
- headers: 'En-têtes',
21
+ headers: 'Headers',
22
+ header: 'Header',
22
23
  authorizations: 'Autorisations',
23
24
  responses: 'Réponses',
25
+ response: 'Réponse',
24
26
  path_parameters: 'Paramètres de chemin',
25
27
  query_parameters: 'Paramètres de requête',
26
- header_parameters: 'Paramètres den-tête',
28
+ header_parameters: "Paramètres d'en-tête",
27
29
  attributes: 'Attributs',
28
30
  test_it: 'Tester',
29
31
  information: 'Information',
30
32
  success: 'Succès',
31
33
  redirect: 'Redirection',
32
34
  error: 'Erreur',
33
- show: 'Afficher',
34
- hide: 'Masquer',
35
+ show: 'Afficher ${1}',
36
+ hide: 'Masquer ${1}',
35
37
  available_items: 'Éléments disponibles',
36
- child_attributes: 'Attributs enfants',
38
+ properties: 'Propriétés',
39
+ or: 'ou',
40
+ and: 'et',
41
+ possible_values: 'Valeurs possibles',
37
42
  };
@@ -21,8 +21,10 @@ export declare const translations: {
21
21
  body: string;
22
22
  payload: string;
23
23
  headers: string;
24
+ header: string;
24
25
  authorizations: string;
25
26
  responses: string;
27
+ response: string;
26
28
  path_parameters: string;
27
29
  query_parameters: string;
28
30
  header_parameters: string;
@@ -35,7 +37,10 @@ export declare const translations: {
35
37
  show: string;
36
38
  hide: string;
37
39
  available_items: string;
38
- child_attributes: string;
40
+ possible_values: string;
41
+ properties: string;
42
+ or: string;
43
+ and: string;
39
44
  };
40
45
  de: {
41
46
  required: string;
@@ -58,8 +63,10 @@ export declare const translations: {
58
63
  body: string;
59
64
  payload: string;
60
65
  headers: string;
66
+ header: string;
61
67
  authorizations: string;
62
68
  responses: string;
69
+ response: string;
63
70
  path_parameters: string;
64
71
  query_parameters: string;
65
72
  header_parameters: string;
@@ -72,7 +79,10 @@ export declare const translations: {
72
79
  show: string;
73
80
  hide: string;
74
81
  available_items: string;
75
- child_attributes: string;
82
+ properties: string;
83
+ or: string;
84
+ and: string;
85
+ possible_values: string;
76
86
  };
77
87
  es: {
78
88
  required: string;
@@ -95,8 +105,10 @@ export declare const translations: {
95
105
  body: string;
96
106
  payload: string;
97
107
  headers: string;
108
+ header: string;
98
109
  authorizations: string;
99
110
  responses: string;
111
+ response: string;
100
112
  path_parameters: string;
101
113
  query_parameters: string;
102
114
  header_parameters: string;
@@ -109,7 +121,10 @@ export declare const translations: {
109
121
  show: string;
110
122
  hide: string;
111
123
  available_items: string;
112
- child_attributes: string;
124
+ properties: string;
125
+ or: string;
126
+ and: string;
127
+ possible_values: string;
113
128
  };
114
129
  fr: {
115
130
  required: string;
@@ -132,8 +147,10 @@ export declare const translations: {
132
147
  body: string;
133
148
  payload: string;
134
149
  headers: string;
150
+ header: string;
135
151
  authorizations: string;
136
152
  responses: string;
153
+ response: string;
137
154
  path_parameters: string;
138
155
  query_parameters: string;
139
156
  header_parameters: string;
@@ -146,7 +163,10 @@ export declare const translations: {
146
163
  show: string;
147
164
  hide: string;
148
165
  available_items: string;
149
- child_attributes: string;
166
+ properties: string;
167
+ or: string;
168
+ and: string;
169
+ possible_values: string;
150
170
  };
151
171
  ja: {
152
172
  required: string;
@@ -169,8 +189,10 @@ export declare const translations: {
169
189
  body: string;
170
190
  payload: string;
171
191
  headers: string;
192
+ header: string;
172
193
  authorizations: string;
173
194
  responses: string;
195
+ response: string;
174
196
  path_parameters: string;
175
197
  query_parameters: string;
176
198
  header_parameters: string;
@@ -183,7 +205,10 @@ export declare const translations: {
183
205
  show: string;
184
206
  hide: string;
185
207
  available_items: string;
186
- child_attributes: string;
208
+ properties: string;
209
+ or: string;
210
+ and: string;
211
+ possible_values: string;
187
212
  };
188
213
  nl: {
189
214
  required: string;
@@ -206,8 +231,10 @@ export declare const translations: {
206
231
  body: string;
207
232
  payload: string;
208
233
  headers: string;
234
+ header: string;
209
235
  authorizations: string;
210
236
  responses: string;
237
+ response: string;
211
238
  path_parameters: string;
212
239
  query_parameters: string;
213
240
  header_parameters: string;
@@ -220,7 +247,10 @@ export declare const translations: {
220
247
  show: string;
221
248
  hide: string;
222
249
  available_items: string;
223
- child_attributes: string;
250
+ properties: string;
251
+ or: string;
252
+ and: string;
253
+ possible_values: string;
224
254
  };
225
255
  no: {
226
256
  required: string;
@@ -243,8 +273,10 @@ export declare const translations: {
243
273
  body: string;
244
274
  payload: string;
245
275
  headers: string;
276
+ header: string;
246
277
  authorizations: string;
247
278
  responses: string;
279
+ response: string;
248
280
  path_parameters: string;
249
281
  query_parameters: string;
250
282
  header_parameters: string;
@@ -257,7 +289,10 @@ export declare const translations: {
257
289
  show: string;
258
290
  hide: string;
259
291
  available_items: string;
260
- child_attributes: string;
292
+ properties: string;
293
+ or: string;
294
+ and: string;
295
+ possible_values: string;
261
296
  };
262
297
  'pt-br': {
263
298
  required: string;
@@ -280,8 +315,10 @@ export declare const translations: {
280
315
  body: string;
281
316
  payload: string;
282
317
  headers: string;
318
+ header: string;
283
319
  authorizations: string;
284
320
  responses: string;
321
+ response: string;
285
322
  path_parameters: string;
286
323
  query_parameters: string;
287
324
  header_parameters: string;
@@ -294,7 +331,10 @@ export declare const translations: {
294
331
  show: string;
295
332
  hide: string;
296
333
  available_items: string;
297
- child_attributes: string;
334
+ properties: string;
335
+ or: string;
336
+ and: string;
337
+ possible_values: string;
298
338
  };
299
339
  zh: {
300
340
  required: string;
@@ -317,8 +357,10 @@ export declare const translations: {
317
357
  body: string;
318
358
  payload: string;
319
359
  headers: string;
360
+ header: string;
320
361
  authorizations: string;
321
362
  responses: string;
363
+ response: string;
322
364
  path_parameters: string;
323
365
  query_parameters: string;
324
366
  header_parameters: string;
@@ -331,7 +373,10 @@ export declare const translations: {
331
373
  show: string;
332
374
  hide: string;
333
375
  available_items: string;
334
- child_attributes: string;
376
+ properties: string;
377
+ or: string;
378
+ and: string;
379
+ possible_values: string;
335
380
  };
336
381
  };
337
382
  export type TranslationLocale = keyof typeof translations;
@@ -19,8 +19,10 @@ export declare const ja: {
19
19
  body: string;
20
20
  payload: string;
21
21
  headers: string;
22
+ header: string;
22
23
  authorizations: string;
23
24
  responses: string;
25
+ response: string;
24
26
  path_parameters: string;
25
27
  query_parameters: string;
26
28
  header_parameters: string;
@@ -33,5 +35,8 @@ export declare const ja: {
33
35
  show: string;
34
36
  hide: string;
35
37
  available_items: string;
36
- child_attributes: string;
38
+ properties: string;
39
+ or: string;
40
+ and: string;
41
+ possible_values: string;
37
42
  };
@@ -19,8 +19,10 @@ export var ja = {
19
19
  body: '本文',
20
20
  payload: 'ペイロード',
21
21
  headers: 'ヘッダー',
22
+ header: 'ヘッダー',
22
23
  authorizations: '認可',
23
24
  responses: 'レスポンス',
25
+ response: 'レスポンス',
24
26
  path_parameters: 'パスパラメータ',
25
27
  query_parameters: 'クエリパラメータ',
26
28
  header_parameters: 'ヘッダーパラメータ',
@@ -30,8 +32,11 @@ export var ja = {
30
32
  success: '成功',
31
33
  redirect: 'リダイレクト',
32
34
  error: 'エラー',
33
- show: '表示',
34
- hide: '非表示',
35
+ show: '${1}を表示',
36
+ hide: '${1}を非表示',
35
37
  available_items: '利用可能なアイテム',
36
- child_attributes: '子属性',
38
+ properties: 'プロパティ',
39
+ or: 'または',
40
+ and: 'かつ',
41
+ possible_values: '可能な値',
37
42
  };
@@ -19,8 +19,10 @@ export declare const nl: {
19
19
  body: string;
20
20
  payload: string;
21
21
  headers: string;
22
+ header: string;
22
23
  authorizations: string;
23
24
  responses: string;
25
+ response: string;
24
26
  path_parameters: string;
25
27
  query_parameters: string;
26
28
  header_parameters: string;
@@ -33,5 +35,8 @@ export declare const nl: {
33
35
  show: string;
34
36
  hide: string;
35
37
  available_items: string;
36
- child_attributes: string;
38
+ properties: string;
39
+ or: string;
40
+ and: string;
41
+ possible_values: string;
37
42
  };
@@ -19,8 +19,10 @@ export var nl = {
19
19
  body: 'Body',
20
20
  payload: 'Payload',
21
21
  headers: 'Headers',
22
+ header: 'Header',
22
23
  authorizations: 'Autorisaties',
23
24
  responses: 'Reacties',
25
+ response: 'Reactie',
24
26
  path_parameters: 'Padparameters',
25
27
  query_parameters: 'Queryparameters',
26
28
  header_parameters: 'Headerparameters',
@@ -30,8 +32,11 @@ export var nl = {
30
32
  success: 'Succes',
31
33
  redirect: 'Omleiding',
32
34
  error: 'Fout',
33
- show: 'Toon',
34
- hide: 'Verbergen',
35
+ show: 'Toon ${1}',
36
+ hide: 'Verberg ${1}',
35
37
  available_items: 'Beschikbare items',
36
- child_attributes: 'Kindattributen',
38
+ properties: 'Eigenschappen',
39
+ or: 'of',
40
+ and: 'en',
41
+ possible_values: 'Mogelijke waarden',
37
42
  };
@@ -19,8 +19,10 @@ export declare const no: {
19
19
  body: string;
20
20
  payload: string;
21
21
  headers: string;
22
+ header: string;
22
23
  authorizations: string;
23
24
  responses: string;
25
+ response: string;
24
26
  path_parameters: string;
25
27
  query_parameters: string;
26
28
  header_parameters: string;
@@ -33,5 +35,8 @@ export declare const no: {
33
35
  show: string;
34
36
  hide: string;
35
37
  available_items: string;
36
- child_attributes: string;
38
+ properties: string;
39
+ or: string;
40
+ and: string;
41
+ possible_values: string;
37
42
  };
@@ -18,9 +18,11 @@ export var no = {
18
18
  nullable: 'Kan være null',
19
19
  body: 'Brødtekst',
20
20
  payload: 'Nyttelast',
21
- headers: 'Overskrifter',
21
+ headers: 'Headers',
22
+ header: 'Header',
22
23
  authorizations: 'Autorisasjoner',
23
24
  responses: 'Responser',
25
+ response: 'Respons',
24
26
  path_parameters: 'Sti-parametere',
25
27
  query_parameters: 'Forespørselsparametere',
26
28
  header_parameters: 'Header-parametere',
@@ -30,8 +32,11 @@ export var no = {
30
32
  success: 'Suksess',
31
33
  redirect: 'Viderekobling',
32
34
  error: 'Feil',
33
- show: 'Vis',
34
- hide: 'Skjul',
35
+ show: 'Vis ${1}',
36
+ hide: 'Skjul ${1}',
35
37
  available_items: 'Tilgjengelige elementer',
36
- child_attributes: 'Barneattributter',
38
+ properties: 'Egenskaper',
39
+ or: 'eller',
40
+ and: 'og',
41
+ possible_values: 'Mulige verdier',
37
42
  };
@@ -19,8 +19,10 @@ export declare const pt_br: {
19
19
  body: string;
20
20
  payload: string;
21
21
  headers: string;
22
+ header: string;
22
23
  authorizations: string;
23
24
  responses: string;
25
+ response: string;
24
26
  path_parameters: string;
25
27
  query_parameters: string;
26
28
  header_parameters: string;
@@ -33,5 +35,8 @@ export declare const pt_br: {
33
35
  show: string;
34
36
  hide: string;
35
37
  available_items: string;
36
- child_attributes: string;
38
+ properties: string;
39
+ or: string;
40
+ and: string;
41
+ possible_values: string;
37
42
  };
@@ -18,9 +18,11 @@ export var pt_br = {
18
18
  nullable: 'Nulo',
19
19
  body: 'Corpo',
20
20
  payload: 'Carga útil',
21
- headers: 'Cabeçalhos',
21
+ headers: 'Headers',
22
+ header: 'Header',
22
23
  authorizations: 'Autorizações',
23
24
  responses: 'Respostas',
25
+ response: 'Resposta',
24
26
  path_parameters: 'Parâmetros de rota',
25
27
  query_parameters: 'Parâmetros de consulta',
26
28
  header_parameters: 'Parâmetros de cabeçalho',
@@ -30,8 +32,11 @@ export var pt_br = {
30
32
  success: 'Sucesso',
31
33
  redirect: 'Redirecionamento',
32
34
  error: 'Erro',
33
- show: 'Mostrar',
34
- hide: 'Ocultar',
35
+ show: 'Mostrar ${1}',
36
+ hide: 'Ocultar ${1}',
35
37
  available_items: 'Itens disponíveis',
36
- child_attributes: 'Atributos filhos',
38
+ properties: 'Propriedades',
39
+ or: 'ou',
40
+ and: 'e',
41
+ possible_values: 'Valores possíveis',
37
42
  };
@@ -19,8 +19,10 @@ export declare const zh: {
19
19
  body: string;
20
20
  payload: string;
21
21
  headers: string;
22
+ header: string;
22
23
  authorizations: string;
23
24
  responses: string;
25
+ response: string;
24
26
  path_parameters: string;
25
27
  query_parameters: string;
26
28
  header_parameters: string;
@@ -33,5 +35,8 @@ export declare const zh: {
33
35
  show: string;
34
36
  hide: string;
35
37
  available_items: string;
36
- child_attributes: string;
38
+ properties: string;
39
+ or: string;
40
+ and: string;
41
+ possible_values: string;
37
42
  };
@@ -18,9 +18,11 @@ export var zh = {
18
18
  nullable: '可为 null',
19
19
  body: '请求体',
20
20
  payload: '有效载荷',
21
- headers: '头部信息',
21
+ headers: '头字段',
22
+ header: '头部',
22
23
  authorizations: '授权',
23
24
  responses: '响应',
25
+ response: '响应',
24
26
  path_parameters: '路径参数',
25
27
  query_parameters: '查询参数',
26
28
  header_parameters: '头参数',
@@ -30,8 +32,11 @@ export var zh = {
30
32
  success: '成功',
31
33
  redirect: '重定向',
32
34
  error: '错误',
33
- show: '显示',
34
- hide: '隐藏',
35
+ show: '显示${1}',
36
+ hide: '隐藏${1}',
35
37
  available_items: '可用项',
36
- child_attributes: '子属性',
38
+ properties: '属性',
39
+ or: '或',
40
+ and: '和',
41
+ possible_values: '可能的值',
37
42
  };