@cloudscape-design/components 3.0.472 → 3.0.474

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 (57) hide show
  1. package/i18n/dynamic.js +2 -0
  2. package/i18n/messages/all.all.js +5225 -442
  3. package/i18n/messages/all.all.json +5230 -470
  4. package/i18n/messages/all.de.js +334 -23
  5. package/i18n/messages/all.de.json +338 -27
  6. package/i18n/messages/all.en-GB.js +334 -23
  7. package/i18n/messages/all.en-GB.json +338 -27
  8. package/i18n/messages/all.en.js +334 -23
  9. package/i18n/messages/all.en.json +338 -27
  10. package/i18n/messages/all.es.js +339 -19
  11. package/i18n/messages/all.es.json +340 -23
  12. package/i18n/messages/all.fr.js +334 -23
  13. package/i18n/messages/all.fr.json +338 -27
  14. package/i18n/messages/all.id.js +318 -19
  15. package/i18n/messages/all.id.json +319 -23
  16. package/i18n/messages/all.it.js +297 -19
  17. package/i18n/messages/all.it.json +298 -23
  18. package/i18n/messages/all.ja.js +339 -19
  19. package/i18n/messages/all.ja.json +340 -23
  20. package/i18n/messages/all.ko.js +339 -17
  21. package/i18n/messages/all.ko.json +340 -21
  22. package/i18n/messages/all.pt-BR.js +334 -23
  23. package/i18n/messages/all.pt-BR.json +338 -27
  24. package/i18n/messages/all.th.d.ts +3 -0
  25. package/i18n/messages/all.th.js +733 -0
  26. package/i18n/messages/all.th.json +734 -0
  27. package/i18n/messages/all.tr.js +339 -19
  28. package/i18n/messages/all.tr.json +340 -23
  29. package/i18n/messages/all.zh-CN.js +339 -19
  30. package/i18n/messages/all.zh-CN.json +340 -23
  31. package/i18n/messages/all.zh-TW.js +339 -19
  32. package/i18n/messages/all.zh-TW.json +340 -23
  33. package/i18n/messages-types.d.ts +5 -2
  34. package/i18n/messages-types.d.ts.map +1 -1
  35. package/i18n/messages-types.js.map +1 -1
  36. package/internal/environment.js +1 -1
  37. package/internal/environment.json +1 -1
  38. package/internal/manifest.json +1 -1
  39. package/mixed-line-bar-chart/chart-container.d.ts +2 -3
  40. package/mixed-line-bar-chart/chart-container.d.ts.map +1 -1
  41. package/mixed-line-bar-chart/chart-container.js +2 -6
  42. package/mixed-line-bar-chart/chart-container.js.map +1 -1
  43. package/mixed-line-bar-chart/internal.d.ts.map +1 -1
  44. package/mixed-line-bar-chart/internal.js +1 -1
  45. package/mixed-line-bar-chart/internal.js.map +1 -1
  46. package/package.json +1 -1
  47. package/table/table-role/grid-navigation.d.ts +1 -4
  48. package/table/table-role/grid-navigation.d.ts.map +1 -1
  49. package/table/table-role/grid-navigation.js +52 -62
  50. package/table/table-role/grid-navigation.js.map +1 -1
  51. package/table/table-role/table-role-helper.d.ts.map +1 -1
  52. package/table/table-role/table-role-helper.js +2 -0
  53. package/table/table-role/table-role-helper.js.map +1 -1
  54. package/table/table-role/utils.d.ts +5 -5
  55. package/table/table-role/utils.d.ts.map +1 -1
  56. package/table/table-role/utils.js +16 -28
  57. package/table/table-role/utils.js.map +1 -1
@@ -193,6 +193,7 @@
193
193
  }
194
194
  ]
195
195
  },
196
+ "copy-to-clipboard": { "i18nStrings.copyButtonText": [{ "type": 0, "value": "Copy" }] },
196
197
  "date-range-picker": {
197
198
  "i18nStrings.relativeModeTitle": [{ "type": 0, "value": "Relative mode" }],
198
199
  "i18nStrings.absoluteModeTitle": [{ "type": 0, "value": "Absolute mode" }],
@@ -223,46 +224,356 @@
223
224
  ],
224
225
  "i18nStrings.formatRelativeRange": [
225
226
  {
226
- "type": 6,
227
- "value": "amount",
227
+ "type": 5,
228
+ "value": "unit",
228
229
  "options": {
229
- "one": {
230
+ "second": {
230
231
  "value": [
231
- { "type": 0, "value": "Last " },
232
- { "type": 1, "value": "amount" },
233
- { "type": 0, "value": " " },
234
- { "type": 1, "value": "unit" }
232
+ {
233
+ "type": 6,
234
+ "value": "amount",
235
+ "options": {
236
+ "zero": {
237
+ "value": [
238
+ { "type": 0, "value": "Last " },
239
+ { "type": 1, "value": "amount" },
240
+ { "type": 0, "value": " seconds" }
241
+ ]
242
+ },
243
+ "one": {
244
+ "value": [
245
+ { "type": 0, "value": "Last " },
246
+ { "type": 1, "value": "amount" },
247
+ { "type": 0, "value": " second" }
248
+ ]
249
+ },
250
+ "other": {
251
+ "value": [
252
+ { "type": 0, "value": "Last " },
253
+ { "type": 1, "value": "amount" },
254
+ { "type": 0, "value": " seconds" }
255
+ ]
256
+ }
257
+ },
258
+ "offset": 0,
259
+ "pluralType": "cardinal"
260
+ }
235
261
  ]
236
262
  },
237
- "other": {
263
+ "minute": {
238
264
  "value": [
239
- { "type": 0, "value": "Last " },
240
- { "type": 1, "value": "amount" },
241
- { "type": 0, "value": " " },
242
- { "type": 1, "value": "unit" },
243
- { "type": 0, "value": "s" }
265
+ {
266
+ "type": 6,
267
+ "value": "amount",
268
+ "options": {
269
+ "zero": {
270
+ "value": [
271
+ { "type": 0, "value": "Last " },
272
+ { "type": 1, "value": "amount" },
273
+ { "type": 0, "value": " minutes" }
274
+ ]
275
+ },
276
+ "one": {
277
+ "value": [
278
+ { "type": 0, "value": "Last " },
279
+ { "type": 1, "value": "amount" },
280
+ { "type": 0, "value": " minute" }
281
+ ]
282
+ },
283
+ "other": {
284
+ "value": [
285
+ { "type": 0, "value": "Last " },
286
+ { "type": 1, "value": "amount" },
287
+ { "type": 0, "value": " minutes" }
288
+ ]
289
+ }
290
+ },
291
+ "offset": 0,
292
+ "pluralType": "cardinal"
293
+ }
244
294
  ]
245
- }
246
- },
247
- "offset": 0,
248
- "pluralType": "cardinal"
295
+ },
296
+ "hour": {
297
+ "value": [
298
+ {
299
+ "type": 6,
300
+ "value": "amount",
301
+ "options": {
302
+ "zero": {
303
+ "value": [
304
+ { "type": 0, "value": "Last " },
305
+ { "type": 1, "value": "amount" },
306
+ { "type": 0, "value": " hours" }
307
+ ]
308
+ },
309
+ "one": {
310
+ "value": [
311
+ { "type": 0, "value": "Last " },
312
+ { "type": 1, "value": "amount" },
313
+ { "type": 0, "value": " hour" }
314
+ ]
315
+ },
316
+ "other": {
317
+ "value": [
318
+ { "type": 0, "value": "Last " },
319
+ { "type": 1, "value": "amount" },
320
+ { "type": 0, "value": " hours" }
321
+ ]
322
+ }
323
+ },
324
+ "offset": 0,
325
+ "pluralType": "cardinal"
326
+ }
327
+ ]
328
+ },
329
+ "day": {
330
+ "value": [
331
+ {
332
+ "type": 6,
333
+ "value": "amount",
334
+ "options": {
335
+ "zero": {
336
+ "value": [
337
+ { "type": 0, "value": "Last " },
338
+ { "type": 1, "value": "amount" },
339
+ { "type": 0, "value": " days" }
340
+ ]
341
+ },
342
+ "one": {
343
+ "value": [
344
+ { "type": 0, "value": "Last " },
345
+ { "type": 1, "value": "amount" },
346
+ { "type": 0, "value": " day" }
347
+ ]
348
+ },
349
+ "other": {
350
+ "value": [
351
+ { "type": 0, "value": "Last " },
352
+ { "type": 1, "value": "amount" },
353
+ { "type": 0, "value": " days" }
354
+ ]
355
+ }
356
+ },
357
+ "offset": 0,
358
+ "pluralType": "cardinal"
359
+ }
360
+ ]
361
+ },
362
+ "week": {
363
+ "value": [
364
+ {
365
+ "type": 6,
366
+ "value": "amount",
367
+ "options": {
368
+ "zero": {
369
+ "value": [
370
+ { "type": 0, "value": "Last " },
371
+ { "type": 1, "value": "amount" },
372
+ { "type": 0, "value": " weeks" }
373
+ ]
374
+ },
375
+ "one": {
376
+ "value": [
377
+ { "type": 0, "value": "Last " },
378
+ { "type": 1, "value": "amount" },
379
+ { "type": 0, "value": " week" }
380
+ ]
381
+ },
382
+ "other": {
383
+ "value": [
384
+ { "type": 0, "value": "Last " },
385
+ { "type": 1, "value": "amount" },
386
+ { "type": 0, "value": " weeks" }
387
+ ]
388
+ }
389
+ },
390
+ "offset": 0,
391
+ "pluralType": "cardinal"
392
+ }
393
+ ]
394
+ },
395
+ "month": {
396
+ "value": [
397
+ {
398
+ "type": 6,
399
+ "value": "amount",
400
+ "options": {
401
+ "zero": {
402
+ "value": [
403
+ { "type": 0, "value": "Last " },
404
+ { "type": 1, "value": "amount" },
405
+ { "type": 0, "value": " months" }
406
+ ]
407
+ },
408
+ "one": {
409
+ "value": [
410
+ { "type": 0, "value": "Last " },
411
+ { "type": 1, "value": "amount" },
412
+ { "type": 0, "value": " month" }
413
+ ]
414
+ },
415
+ "other": {
416
+ "value": [
417
+ { "type": 0, "value": "Last " },
418
+ { "type": 1, "value": "amount" },
419
+ { "type": 0, "value": " months" }
420
+ ]
421
+ }
422
+ },
423
+ "offset": 0,
424
+ "pluralType": "cardinal"
425
+ }
426
+ ]
427
+ },
428
+ "year": {
429
+ "value": [
430
+ {
431
+ "type": 6,
432
+ "value": "amount",
433
+ "options": {
434
+ "zero": {
435
+ "value": [
436
+ { "type": 0, "value": "Last " },
437
+ { "type": 1, "value": "amount" },
438
+ { "type": 0, "value": " years" }
439
+ ]
440
+ },
441
+ "one": {
442
+ "value": [
443
+ { "type": 0, "value": "Last " },
444
+ { "type": 1, "value": "amount" },
445
+ { "type": 0, "value": " year" }
446
+ ]
447
+ },
448
+ "other": {
449
+ "value": [
450
+ { "type": 0, "value": "Last " },
451
+ { "type": 1, "value": "amount" },
452
+ { "type": 0, "value": " years" }
453
+ ]
454
+ }
455
+ },
456
+ "offset": 0,
457
+ "pluralType": "cardinal"
458
+ }
459
+ ]
460
+ },
461
+ "other": { "value": [] }
462
+ }
249
463
  }
250
464
  ],
251
465
  "i18nStrings.formatUnit": [
252
466
  {
253
- "type": 6,
254
- "value": "amount",
467
+ "type": 5,
468
+ "value": "unit",
255
469
  "options": {
256
- "one": { "value": [{ "type": 1, "value": "unit" }] },
257
- "other": {
470
+ "second": {
258
471
  "value": [
259
- { "type": 1, "value": "unit" },
260
- { "type": 0, "value": "s" }
472
+ {
473
+ "type": 6,
474
+ "value": "amount",
475
+ "options": {
476
+ "zero": { "value": [{ "type": 0, "value": "seconds" }] },
477
+ "one": { "value": [{ "type": 0, "value": "second" }] },
478
+ "other": { "value": [{ "type": 0, "value": "seconds" }] }
479
+ },
480
+ "offset": 0,
481
+ "pluralType": "cardinal"
482
+ }
261
483
  ]
262
- }
263
- },
264
- "offset": 0,
265
- "pluralType": "cardinal"
484
+ },
485
+ "minute": {
486
+ "value": [
487
+ {
488
+ "type": 6,
489
+ "value": "amount",
490
+ "options": {
491
+ "zero": { "value": [{ "type": 0, "value": "minutes" }] },
492
+ "one": { "value": [{ "type": 0, "value": "minute" }] },
493
+ "other": { "value": [{ "type": 0, "value": "minutes" }] }
494
+ },
495
+ "offset": 0,
496
+ "pluralType": "cardinal"
497
+ }
498
+ ]
499
+ },
500
+ "hour": {
501
+ "value": [
502
+ {
503
+ "type": 6,
504
+ "value": "amount",
505
+ "options": {
506
+ "zero": { "value": [{ "type": 0, "value": "hours" }] },
507
+ "one": { "value": [{ "type": 0, "value": "hour" }] },
508
+ "other": { "value": [{ "type": 0, "value": "hours" }] }
509
+ },
510
+ "offset": 0,
511
+ "pluralType": "cardinal"
512
+ }
513
+ ]
514
+ },
515
+ "day": {
516
+ "value": [
517
+ {
518
+ "type": 6,
519
+ "value": "amount",
520
+ "options": {
521
+ "zero": { "value": [{ "type": 0, "value": "days" }] },
522
+ "one": { "value": [{ "type": 0, "value": "day" }] },
523
+ "other": { "value": [{ "type": 0, "value": "days" }] }
524
+ },
525
+ "offset": 0,
526
+ "pluralType": "cardinal"
527
+ }
528
+ ]
529
+ },
530
+ "week": {
531
+ "value": [
532
+ {
533
+ "type": 6,
534
+ "value": "amount",
535
+ "options": {
536
+ "zero": { "value": [{ "type": 0, "value": "weeks" }] },
537
+ "one": { "value": [{ "type": 0, "value": "week" }] },
538
+ "other": { "value": [{ "type": 0, "value": "weeks" }] }
539
+ },
540
+ "offset": 0,
541
+ "pluralType": "cardinal"
542
+ }
543
+ ]
544
+ },
545
+ "month": {
546
+ "value": [
547
+ {
548
+ "type": 6,
549
+ "value": "amount",
550
+ "options": {
551
+ "zero": { "value": [{ "type": 0, "value": "months" }] },
552
+ "one": { "value": [{ "type": 0, "value": "Month" }] },
553
+ "other": { "value": [{ "type": 0, "value": "months" }] }
554
+ },
555
+ "offset": 0,
556
+ "pluralType": "cardinal"
557
+ }
558
+ ]
559
+ },
560
+ "year": {
561
+ "value": [
562
+ {
563
+ "type": 6,
564
+ "value": "amount",
565
+ "options": {
566
+ "zero": { "value": [{ "type": 0, "value": "years" }] },
567
+ "one": { "value": [{ "type": 0, "value": "year" }] },
568
+ "other": { "value": [{ "type": 0, "value": "years" }] }
569
+ },
570
+ "offset": 0,
571
+ "pluralType": "cardinal"
572
+ }
573
+ ]
574
+ },
575
+ "other": { "value": [] }
576
+ }
266
577
  }
267
578
  ]
268
579
  },