@carbon-labs/react-animated-header 0.23.0 → 0.24.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 (38) hide show
  1. package/es/__stories__/AnimatedHeader.stories.d.ts +198 -0
  2. package/es/__stories__/data/index.d.ts +21 -0
  3. package/es/components/AnimatedHeader/AnimatedHeader.d.ts +9 -0
  4. package/es/components/AnimatedHeader/AnimatedHeader.js +30 -22
  5. package/es/components/HeaderTitle/HeaderTitle.d.ts +18 -0
  6. package/es/components/HeaderTitle/HeaderTitle.js +53 -0
  7. package/es/components/TasksController/TasksController.d.ts +1 -0
  8. package/es/components/TasksController/TasksController.js +2 -1
  9. package/es/components/Tiles/AIPromptTile/AIPromptTile.d.ts +1 -0
  10. package/es/components/Tiles/AIPromptTile/AIPromptTile.js +4 -1
  11. package/es/components/Tiles/BaseTile/BaseTile.d.ts +1 -0
  12. package/es/components/Tiles/GlassTile/GlassTile.d.ts +1 -0
  13. package/es/components/Tiles/GlassTile/GlassTile.js +9 -2
  14. package/es/components/WorkspaceSelector/WorkspaceSelector.d.ts +1 -0
  15. package/es/components/WorkspaceSelector/WorkspaceSelector.js +1 -0
  16. package/es/index.d.ts +3 -2
  17. package/es/index.js +1 -0
  18. package/lib/__stories__/AnimatedHeader.stories.d.ts +198 -0
  19. package/lib/__stories__/data/index.d.ts +21 -0
  20. package/lib/components/AnimatedHeader/AnimatedHeader.d.ts +9 -0
  21. package/lib/components/AnimatedHeader/AnimatedHeader.js +29 -21
  22. package/lib/components/HeaderTitle/HeaderTitle.d.ts +18 -0
  23. package/lib/components/HeaderTitle/HeaderTitle.js +57 -0
  24. package/lib/components/TasksController/TasksController.d.ts +1 -0
  25. package/lib/components/TasksController/TasksController.js +2 -1
  26. package/lib/components/Tiles/AIPromptTile/AIPromptTile.d.ts +1 -0
  27. package/lib/components/Tiles/AIPromptTile/AIPromptTile.js +4 -1
  28. package/lib/components/Tiles/BaseTile/BaseTile.d.ts +1 -0
  29. package/lib/components/Tiles/GlassTile/GlassTile.d.ts +1 -0
  30. package/lib/components/Tiles/GlassTile/GlassTile.js +9 -2
  31. package/lib/components/WorkspaceSelector/WorkspaceSelector.d.ts +1 -0
  32. package/lib/components/WorkspaceSelector/WorkspaceSelector.js +1 -0
  33. package/lib/index.d.ts +3 -2
  34. package/lib/index.js +2 -0
  35. package/package.json +2 -2
  36. package/scss/AnimatedHeader/animated-header.scss +6 -57
  37. package/scss/HeaderTitle/header-title.scss +60 -0
  38. package/scss/animated-header.scss +1 -0
@@ -8260,6 +8260,7 @@ export declare const ThemeG10: {
8260
8260
  href: string;
8261
8261
  title: string;
8262
8262
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8263
+ ariaLabel: string;
8263
8264
  subtitle?: undefined;
8264
8265
  } | {
8265
8266
  id: string;
@@ -8267,6 +8268,7 @@ export declare const ThemeG10: {
8267
8268
  title: string;
8268
8269
  subtitle: string;
8269
8270
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8271
+ ariaLabel: string;
8270
8272
  })[];
8271
8273
  } | {
8272
8274
  id: number;
@@ -8277,6 +8279,7 @@ export declare const ThemeG10: {
8277
8279
  title: string;
8278
8280
  subtitle: string;
8279
8281
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8282
+ ariaLabel: string;
8280
8283
  secondaryIcon?: undefined;
8281
8284
  } | {
8282
8285
  id: string;
@@ -8284,6 +8287,7 @@ export declare const ThemeG10: {
8284
8287
  title: string;
8285
8288
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8286
8289
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8290
+ ariaLabel: string;
8287
8291
  subtitle?: undefined;
8288
8292
  })[];
8289
8293
  } | {
@@ -8296,6 +8300,7 @@ export declare const ThemeG10: {
8296
8300
  subtitle: string;
8297
8301
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8298
8302
  isLoading: boolean;
8303
+ ariaLabel: string;
8299
8304
  isDisabled?: undefined;
8300
8305
  secondaryIcon?: undefined;
8301
8306
  } | {
@@ -8303,6 +8308,7 @@ export declare const ThemeG10: {
8303
8308
  title: string;
8304
8309
  subtitle: string;
8305
8310
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8311
+ ariaLabel: string;
8306
8312
  href?: undefined;
8307
8313
  isLoading?: undefined;
8308
8314
  isDisabled?: undefined;
@@ -8314,6 +8320,7 @@ export declare const ThemeG10: {
8314
8320
  subtitle: string;
8315
8321
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8316
8322
  isDisabled: boolean;
8323
+ ariaLabel: string;
8317
8324
  isLoading?: undefined;
8318
8325
  secondaryIcon?: undefined;
8319
8326
  } | {
@@ -8322,6 +8329,7 @@ export declare const ThemeG10: {
8322
8329
  title: string;
8323
8330
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8324
8331
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8332
+ ariaLabel: string;
8325
8333
  subtitle?: undefined;
8326
8334
  isLoading?: undefined;
8327
8335
  isDisabled?: undefined;
@@ -8332,6 +8340,7 @@ export declare const ThemeG10: {
8332
8340
  tiles: {
8333
8341
  id: string;
8334
8342
  customContent: import("react/jsx-runtime").JSX.Element;
8343
+ ariaLabel: string;
8335
8344
  }[];
8336
8345
  };
8337
8346
  2: {
@@ -8342,6 +8351,7 @@ export declare const ThemeG10: {
8342
8351
  href: string;
8343
8352
  title: string;
8344
8353
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8354
+ ariaLabel: string;
8345
8355
  subtitle?: undefined;
8346
8356
  } | {
8347
8357
  id: string;
@@ -8349,6 +8359,7 @@ export declare const ThemeG10: {
8349
8359
  title: string;
8350
8360
  subtitle: string;
8351
8361
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8362
+ ariaLabel: string;
8352
8363
  })[];
8353
8364
  } | {
8354
8365
  id: number;
@@ -8359,6 +8370,7 @@ export declare const ThemeG10: {
8359
8370
  title: string;
8360
8371
  subtitle: string;
8361
8372
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8373
+ ariaLabel: string;
8362
8374
  secondaryIcon?: undefined;
8363
8375
  } | {
8364
8376
  id: string;
@@ -8366,6 +8378,7 @@ export declare const ThemeG10: {
8366
8378
  title: string;
8367
8379
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8368
8380
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8381
+ ariaLabel: string;
8369
8382
  subtitle?: undefined;
8370
8383
  })[];
8371
8384
  } | {
@@ -8378,6 +8391,7 @@ export declare const ThemeG10: {
8378
8391
  subtitle: string;
8379
8392
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8380
8393
  isLoading: boolean;
8394
+ ariaLabel: string;
8381
8395
  isDisabled?: undefined;
8382
8396
  secondaryIcon?: undefined;
8383
8397
  } | {
@@ -8385,6 +8399,7 @@ export declare const ThemeG10: {
8385
8399
  title: string;
8386
8400
  subtitle: string;
8387
8401
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8402
+ ariaLabel: string;
8388
8403
  href?: undefined;
8389
8404
  isLoading?: undefined;
8390
8405
  isDisabled?: undefined;
@@ -8396,6 +8411,7 @@ export declare const ThemeG10: {
8396
8411
  subtitle: string;
8397
8412
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8398
8413
  isDisabled: boolean;
8414
+ ariaLabel: string;
8399
8415
  isLoading?: undefined;
8400
8416
  secondaryIcon?: undefined;
8401
8417
  } | {
@@ -8404,6 +8420,7 @@ export declare const ThemeG10: {
8404
8420
  title: string;
8405
8421
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8406
8422
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8423
+ ariaLabel: string;
8407
8424
  subtitle?: undefined;
8408
8425
  isLoading?: undefined;
8409
8426
  isDisabled?: undefined;
@@ -8414,6 +8431,7 @@ export declare const ThemeG10: {
8414
8431
  tiles: {
8415
8432
  id: string;
8416
8433
  customContent: import("react/jsx-runtime").JSX.Element;
8434
+ ariaLabel: string;
8417
8435
  }[];
8418
8436
  };
8419
8437
  3: {
@@ -8424,6 +8442,7 @@ export declare const ThemeG10: {
8424
8442
  href: string;
8425
8443
  title: string;
8426
8444
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8445
+ ariaLabel: string;
8427
8446
  subtitle?: undefined;
8428
8447
  } | {
8429
8448
  id: string;
@@ -8431,6 +8450,7 @@ export declare const ThemeG10: {
8431
8450
  title: string;
8432
8451
  subtitle: string;
8433
8452
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8453
+ ariaLabel: string;
8434
8454
  })[];
8435
8455
  } | {
8436
8456
  id: number;
@@ -8441,6 +8461,7 @@ export declare const ThemeG10: {
8441
8461
  title: string;
8442
8462
  subtitle: string;
8443
8463
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8464
+ ariaLabel: string;
8444
8465
  secondaryIcon?: undefined;
8445
8466
  } | {
8446
8467
  id: string;
@@ -8448,6 +8469,7 @@ export declare const ThemeG10: {
8448
8469
  title: string;
8449
8470
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8450
8471
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8472
+ ariaLabel: string;
8451
8473
  subtitle?: undefined;
8452
8474
  })[];
8453
8475
  } | {
@@ -8460,6 +8482,7 @@ export declare const ThemeG10: {
8460
8482
  subtitle: string;
8461
8483
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8462
8484
  isLoading: boolean;
8485
+ ariaLabel: string;
8463
8486
  isDisabled?: undefined;
8464
8487
  secondaryIcon?: undefined;
8465
8488
  } | {
@@ -8467,6 +8490,7 @@ export declare const ThemeG10: {
8467
8490
  title: string;
8468
8491
  subtitle: string;
8469
8492
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8493
+ ariaLabel: string;
8470
8494
  href?: undefined;
8471
8495
  isLoading?: undefined;
8472
8496
  isDisabled?: undefined;
@@ -8478,6 +8502,7 @@ export declare const ThemeG10: {
8478
8502
  subtitle: string;
8479
8503
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8480
8504
  isDisabled: boolean;
8505
+ ariaLabel: string;
8481
8506
  isLoading?: undefined;
8482
8507
  secondaryIcon?: undefined;
8483
8508
  } | {
@@ -8486,6 +8511,7 @@ export declare const ThemeG10: {
8486
8511
  title: string;
8487
8512
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8488
8513
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8514
+ ariaLabel: string;
8489
8515
  subtitle?: undefined;
8490
8516
  isLoading?: undefined;
8491
8517
  isDisabled?: undefined;
@@ -8496,6 +8522,7 @@ export declare const ThemeG10: {
8496
8522
  tiles: {
8497
8523
  id: string;
8498
8524
  customContent: import("react/jsx-runtime").JSX.Element;
8525
+ ariaLabel: string;
8499
8526
  }[];
8500
8527
  };
8501
8528
  4: {
@@ -8506,6 +8533,7 @@ export declare const ThemeG10: {
8506
8533
  href: string;
8507
8534
  title: string;
8508
8535
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8536
+ ariaLabel: string;
8509
8537
  subtitle?: undefined;
8510
8538
  } | {
8511
8539
  id: string;
@@ -8513,6 +8541,7 @@ export declare const ThemeG10: {
8513
8541
  title: string;
8514
8542
  subtitle: string;
8515
8543
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8544
+ ariaLabel: string;
8516
8545
  })[];
8517
8546
  } | {
8518
8547
  id: number;
@@ -8523,6 +8552,7 @@ export declare const ThemeG10: {
8523
8552
  title: string;
8524
8553
  subtitle: string;
8525
8554
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8555
+ ariaLabel: string;
8526
8556
  secondaryIcon?: undefined;
8527
8557
  } | {
8528
8558
  id: string;
@@ -8530,6 +8560,7 @@ export declare const ThemeG10: {
8530
8560
  title: string;
8531
8561
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8532
8562
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8563
+ ariaLabel: string;
8533
8564
  subtitle?: undefined;
8534
8565
  })[];
8535
8566
  } | {
@@ -8542,6 +8573,7 @@ export declare const ThemeG10: {
8542
8573
  subtitle: string;
8543
8574
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8544
8575
  isLoading: boolean;
8576
+ ariaLabel: string;
8545
8577
  isDisabled?: undefined;
8546
8578
  secondaryIcon?: undefined;
8547
8579
  } | {
@@ -8549,6 +8581,7 @@ export declare const ThemeG10: {
8549
8581
  title: string;
8550
8582
  subtitle: string;
8551
8583
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8584
+ ariaLabel: string;
8552
8585
  href?: undefined;
8553
8586
  isLoading?: undefined;
8554
8587
  isDisabled?: undefined;
@@ -8560,6 +8593,7 @@ export declare const ThemeG10: {
8560
8593
  subtitle: string;
8561
8594
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8562
8595
  isDisabled: boolean;
8596
+ ariaLabel: string;
8563
8597
  isLoading?: undefined;
8564
8598
  secondaryIcon?: undefined;
8565
8599
  } | {
@@ -8568,6 +8602,7 @@ export declare const ThemeG10: {
8568
8602
  title: string;
8569
8603
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8570
8604
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8605
+ ariaLabel: string;
8571
8606
  subtitle?: undefined;
8572
8607
  isLoading?: undefined;
8573
8608
  isDisabled?: undefined;
@@ -8578,6 +8613,7 @@ export declare const ThemeG10: {
8578
8613
  tiles: {
8579
8614
  id: string;
8580
8615
  customContent: import("react/jsx-runtime").JSX.Element;
8616
+ ariaLabel: string;
8581
8617
  }[];
8582
8618
  };
8583
8619
  5: {
@@ -8588,6 +8624,7 @@ export declare const ThemeG10: {
8588
8624
  href: string;
8589
8625
  title: string;
8590
8626
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8627
+ ariaLabel: string;
8591
8628
  subtitle?: undefined;
8592
8629
  } | {
8593
8630
  id: string;
@@ -8595,6 +8632,7 @@ export declare const ThemeG10: {
8595
8632
  title: string;
8596
8633
  subtitle: string;
8597
8634
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8635
+ ariaLabel: string;
8598
8636
  })[];
8599
8637
  } | {
8600
8638
  id: number;
@@ -8605,6 +8643,7 @@ export declare const ThemeG10: {
8605
8643
  title: string;
8606
8644
  subtitle: string;
8607
8645
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8646
+ ariaLabel: string;
8608
8647
  secondaryIcon?: undefined;
8609
8648
  } | {
8610
8649
  id: string;
@@ -8612,6 +8651,7 @@ export declare const ThemeG10: {
8612
8651
  title: string;
8613
8652
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8614
8653
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8654
+ ariaLabel: string;
8615
8655
  subtitle?: undefined;
8616
8656
  })[];
8617
8657
  } | {
@@ -8624,6 +8664,7 @@ export declare const ThemeG10: {
8624
8664
  subtitle: string;
8625
8665
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8626
8666
  isLoading: boolean;
8667
+ ariaLabel: string;
8627
8668
  isDisabled?: undefined;
8628
8669
  secondaryIcon?: undefined;
8629
8670
  } | {
@@ -8631,6 +8672,7 @@ export declare const ThemeG10: {
8631
8672
  title: string;
8632
8673
  subtitle: string;
8633
8674
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8675
+ ariaLabel: string;
8634
8676
  href?: undefined;
8635
8677
  isLoading?: undefined;
8636
8678
  isDisabled?: undefined;
@@ -8642,6 +8684,7 @@ export declare const ThemeG10: {
8642
8684
  subtitle: string;
8643
8685
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8644
8686
  isDisabled: boolean;
8687
+ ariaLabel: string;
8645
8688
  isLoading?: undefined;
8646
8689
  secondaryIcon?: undefined;
8647
8690
  } | {
@@ -8650,6 +8693,7 @@ export declare const ThemeG10: {
8650
8693
  title: string;
8651
8694
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8652
8695
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8696
+ ariaLabel: string;
8653
8697
  subtitle?: undefined;
8654
8698
  isLoading?: undefined;
8655
8699
  isDisabled?: undefined;
@@ -8660,6 +8704,7 @@ export declare const ThemeG10: {
8660
8704
  tiles: {
8661
8705
  id: string;
8662
8706
  customContent: import("react/jsx-runtime").JSX.Element;
8707
+ ariaLabel: string;
8663
8708
  }[];
8664
8709
  };
8665
8710
  6: {
@@ -8670,6 +8715,7 @@ export declare const ThemeG10: {
8670
8715
  href: string;
8671
8716
  title: string;
8672
8717
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8718
+ ariaLabel: string;
8673
8719
  subtitle?: undefined;
8674
8720
  } | {
8675
8721
  id: string;
@@ -8677,6 +8723,7 @@ export declare const ThemeG10: {
8677
8723
  title: string;
8678
8724
  subtitle: string;
8679
8725
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8726
+ ariaLabel: string;
8680
8727
  })[];
8681
8728
  } | {
8682
8729
  id: number;
@@ -8687,6 +8734,7 @@ export declare const ThemeG10: {
8687
8734
  title: string;
8688
8735
  subtitle: string;
8689
8736
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8737
+ ariaLabel: string;
8690
8738
  secondaryIcon?: undefined;
8691
8739
  } | {
8692
8740
  id: string;
@@ -8694,6 +8742,7 @@ export declare const ThemeG10: {
8694
8742
  title: string;
8695
8743
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8696
8744
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8745
+ ariaLabel: string;
8697
8746
  subtitle?: undefined;
8698
8747
  })[];
8699
8748
  } | {
@@ -8706,6 +8755,7 @@ export declare const ThemeG10: {
8706
8755
  subtitle: string;
8707
8756
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8708
8757
  isLoading: boolean;
8758
+ ariaLabel: string;
8709
8759
  isDisabled?: undefined;
8710
8760
  secondaryIcon?: undefined;
8711
8761
  } | {
@@ -8713,6 +8763,7 @@ export declare const ThemeG10: {
8713
8763
  title: string;
8714
8764
  subtitle: string;
8715
8765
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8766
+ ariaLabel: string;
8716
8767
  href?: undefined;
8717
8768
  isLoading?: undefined;
8718
8769
  isDisabled?: undefined;
@@ -8724,6 +8775,7 @@ export declare const ThemeG10: {
8724
8775
  subtitle: string;
8725
8776
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8726
8777
  isDisabled: boolean;
8778
+ ariaLabel: string;
8727
8779
  isLoading?: undefined;
8728
8780
  secondaryIcon?: undefined;
8729
8781
  } | {
@@ -8732,6 +8784,7 @@ export declare const ThemeG10: {
8732
8784
  title: string;
8733
8785
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8734
8786
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8787
+ ariaLabel: string;
8735
8788
  subtitle?: undefined;
8736
8789
  isLoading?: undefined;
8737
8790
  isDisabled?: undefined;
@@ -8742,6 +8795,7 @@ export declare const ThemeG10: {
8742
8795
  tiles: {
8743
8796
  id: string;
8744
8797
  customContent: import("react/jsx-runtime").JSX.Element;
8798
+ ariaLabel: string;
8745
8799
  }[];
8746
8800
  };
8747
8801
  7: {
@@ -8752,6 +8806,7 @@ export declare const ThemeG10: {
8752
8806
  href: string;
8753
8807
  title: string;
8754
8808
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8809
+ ariaLabel: string;
8755
8810
  subtitle?: undefined;
8756
8811
  } | {
8757
8812
  id: string;
@@ -8759,6 +8814,7 @@ export declare const ThemeG10: {
8759
8814
  title: string;
8760
8815
  subtitle: string;
8761
8816
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8817
+ ariaLabel: string;
8762
8818
  })[];
8763
8819
  } | {
8764
8820
  id: number;
@@ -8769,6 +8825,7 @@ export declare const ThemeG10: {
8769
8825
  title: string;
8770
8826
  subtitle: string;
8771
8827
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8828
+ ariaLabel: string;
8772
8829
  secondaryIcon?: undefined;
8773
8830
  } | {
8774
8831
  id: string;
@@ -8776,6 +8833,7 @@ export declare const ThemeG10: {
8776
8833
  title: string;
8777
8834
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8778
8835
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8836
+ ariaLabel: string;
8779
8837
  subtitle?: undefined;
8780
8838
  })[];
8781
8839
  } | {
@@ -8788,6 +8846,7 @@ export declare const ThemeG10: {
8788
8846
  subtitle: string;
8789
8847
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8790
8848
  isLoading: boolean;
8849
+ ariaLabel: string;
8791
8850
  isDisabled?: undefined;
8792
8851
  secondaryIcon?: undefined;
8793
8852
  } | {
@@ -8795,6 +8854,7 @@ export declare const ThemeG10: {
8795
8854
  title: string;
8796
8855
  subtitle: string;
8797
8856
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8857
+ ariaLabel: string;
8798
8858
  href?: undefined;
8799
8859
  isLoading?: undefined;
8800
8860
  isDisabled?: undefined;
@@ -8806,6 +8866,7 @@ export declare const ThemeG10: {
8806
8866
  subtitle: string;
8807
8867
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8808
8868
  isDisabled: boolean;
8869
+ ariaLabel: string;
8809
8870
  isLoading?: undefined;
8810
8871
  secondaryIcon?: undefined;
8811
8872
  } | {
@@ -8814,6 +8875,7 @@ export declare const ThemeG10: {
8814
8875
  title: string;
8815
8876
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8816
8877
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8878
+ ariaLabel: string;
8817
8879
  subtitle?: undefined;
8818
8880
  isLoading?: undefined;
8819
8881
  isDisabled?: undefined;
@@ -8824,6 +8886,7 @@ export declare const ThemeG10: {
8824
8886
  tiles: {
8825
8887
  id: string;
8826
8888
  customContent: import("react/jsx-runtime").JSX.Element;
8889
+ ariaLabel: string;
8827
8890
  }[];
8828
8891
  };
8829
8892
  };
@@ -8863,6 +8926,7 @@ export declare const ThemeG10: {
8863
8926
  href: string;
8864
8927
  title: string;
8865
8928
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8929
+ ariaLabel: string;
8866
8930
  subtitle?: undefined;
8867
8931
  } | {
8868
8932
  id: string;
@@ -8870,6 +8934,7 @@ export declare const ThemeG10: {
8870
8934
  title: string;
8871
8935
  subtitle: string;
8872
8936
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8937
+ ariaLabel: string;
8873
8938
  })[];
8874
8939
  } | {
8875
8940
  id: number;
@@ -8880,6 +8945,7 @@ export declare const ThemeG10: {
8880
8945
  title: string;
8881
8946
  subtitle: string;
8882
8947
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8948
+ ariaLabel: string;
8883
8949
  secondaryIcon?: undefined;
8884
8950
  } | {
8885
8951
  id: string;
@@ -8887,6 +8953,7 @@ export declare const ThemeG10: {
8887
8953
  title: string;
8888
8954
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8889
8955
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8956
+ ariaLabel: string;
8890
8957
  subtitle?: undefined;
8891
8958
  })[];
8892
8959
  } | {
@@ -8899,6 +8966,7 @@ export declare const ThemeG10: {
8899
8966
  subtitle: string;
8900
8967
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8901
8968
  isLoading: boolean;
8969
+ ariaLabel: string;
8902
8970
  isDisabled?: undefined;
8903
8971
  secondaryIcon?: undefined;
8904
8972
  } | {
@@ -8906,6 +8974,7 @@ export declare const ThemeG10: {
8906
8974
  title: string;
8907
8975
  subtitle: string;
8908
8976
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8977
+ ariaLabel: string;
8909
8978
  href?: undefined;
8910
8979
  isLoading?: undefined;
8911
8980
  isDisabled?: undefined;
@@ -8917,6 +8986,7 @@ export declare const ThemeG10: {
8917
8986
  subtitle: string;
8918
8987
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8919
8988
  isDisabled: boolean;
8989
+ ariaLabel: string;
8920
8990
  isLoading?: undefined;
8921
8991
  secondaryIcon?: undefined;
8922
8992
  } | {
@@ -8925,6 +8995,7 @@ export declare const ThemeG10: {
8925
8995
  title: string;
8926
8996
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8927
8997
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
8998
+ ariaLabel: string;
8928
8999
  subtitle?: undefined;
8929
9000
  isLoading?: undefined;
8930
9001
  isDisabled?: undefined;
@@ -8935,6 +9006,7 @@ export declare const ThemeG10: {
8935
9006
  tiles: {
8936
9007
  id: string;
8937
9008
  customContent: import("react/jsx-runtime").JSX.Element;
9009
+ ariaLabel: string;
8938
9010
  }[];
8939
9011
  })[];
8940
9012
  selectedTileGroup: {
@@ -8945,6 +9017,7 @@ export declare const ThemeG10: {
8945
9017
  href: string;
8946
9018
  title: string;
8947
9019
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9020
+ ariaLabel: string;
8948
9021
  subtitle?: undefined;
8949
9022
  } | {
8950
9023
  id: string;
@@ -8952,6 +9025,7 @@ export declare const ThemeG10: {
8952
9025
  title: string;
8953
9026
  subtitle: string;
8954
9027
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9028
+ ariaLabel: string;
8955
9029
  })[];
8956
9030
  } | {
8957
9031
  id: number;
@@ -8962,6 +9036,7 @@ export declare const ThemeG10: {
8962
9036
  title: string;
8963
9037
  subtitle: string;
8964
9038
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9039
+ ariaLabel: string;
8965
9040
  secondaryIcon?: undefined;
8966
9041
  } | {
8967
9042
  id: string;
@@ -8969,6 +9044,7 @@ export declare const ThemeG10: {
8969
9044
  title: string;
8970
9045
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8971
9046
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
9047
+ ariaLabel: string;
8972
9048
  subtitle?: undefined;
8973
9049
  })[];
8974
9050
  } | {
@@ -8981,6 +9057,7 @@ export declare const ThemeG10: {
8981
9057
  subtitle: string;
8982
9058
  mainIcon: import("@carbon/icons-react").CarbonIconType;
8983
9059
  isLoading: boolean;
9060
+ ariaLabel: string;
8984
9061
  isDisabled?: undefined;
8985
9062
  secondaryIcon?: undefined;
8986
9063
  } | {
@@ -8988,6 +9065,7 @@ export declare const ThemeG10: {
8988
9065
  title: string;
8989
9066
  subtitle: string;
8990
9067
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9068
+ ariaLabel: string;
8991
9069
  href?: undefined;
8992
9070
  isLoading?: undefined;
8993
9071
  isDisabled?: undefined;
@@ -8999,6 +9077,7 @@ export declare const ThemeG10: {
8999
9077
  subtitle: string;
9000
9078
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9001
9079
  isDisabled: boolean;
9080
+ ariaLabel: string;
9002
9081
  isLoading?: undefined;
9003
9082
  secondaryIcon?: undefined;
9004
9083
  } | {
@@ -9007,6 +9086,7 @@ export declare const ThemeG10: {
9007
9086
  title: string;
9008
9087
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9009
9088
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
9089
+ ariaLabel: string;
9010
9090
  subtitle?: undefined;
9011
9091
  isLoading?: undefined;
9012
9092
  isDisabled?: undefined;
@@ -9017,9 +9097,11 @@ export declare const ThemeG10: {
9017
9097
  tiles: {
9018
9098
  id: string;
9019
9099
  customContent: import("react/jsx-runtime").JSX.Element;
9100
+ ariaLabel: string;
9020
9101
  }[];
9021
9102
  };
9022
9103
  setSelectedTileGroup: () => void;
9104
+ ariaLabel: string;
9023
9105
  };
9024
9106
  };
9025
9107
  3: {
@@ -9051,6 +9133,7 @@ export declare const ThemeG10: {
9051
9133
  label: string;
9052
9134
  renderSelectedItem: (item: any) => string;
9053
9135
  };
9136
+ ariaLabel: string;
9054
9137
  };
9055
9138
  2: {
9056
9139
  allWorkspaces: {
@@ -9089,6 +9172,7 @@ export declare const ThemeG10: {
9089
9172
  href: string;
9090
9173
  title: string;
9091
9174
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9175
+ ariaLabel: string;
9092
9176
  subtitle?: undefined;
9093
9177
  } | {
9094
9178
  id: string;
@@ -9096,6 +9180,7 @@ export declare const ThemeG10: {
9096
9180
  title: string;
9097
9181
  subtitle: string;
9098
9182
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9183
+ ariaLabel: string;
9099
9184
  })[];
9100
9185
  } | {
9101
9186
  id: number;
@@ -9106,6 +9191,7 @@ export declare const ThemeG10: {
9106
9191
  title: string;
9107
9192
  subtitle: string;
9108
9193
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9194
+ ariaLabel: string;
9109
9195
  secondaryIcon?: undefined;
9110
9196
  } | {
9111
9197
  id: string;
@@ -9113,6 +9199,7 @@ export declare const ThemeG10: {
9113
9199
  title: string;
9114
9200
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9115
9201
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
9202
+ ariaLabel: string;
9116
9203
  subtitle?: undefined;
9117
9204
  })[];
9118
9205
  } | {
@@ -9125,6 +9212,7 @@ export declare const ThemeG10: {
9125
9212
  subtitle: string;
9126
9213
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9127
9214
  isLoading: boolean;
9215
+ ariaLabel: string;
9128
9216
  isDisabled?: undefined;
9129
9217
  secondaryIcon?: undefined;
9130
9218
  } | {
@@ -9132,6 +9220,7 @@ export declare const ThemeG10: {
9132
9220
  title: string;
9133
9221
  subtitle: string;
9134
9222
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9223
+ ariaLabel: string;
9135
9224
  href?: undefined;
9136
9225
  isLoading?: undefined;
9137
9226
  isDisabled?: undefined;
@@ -9143,6 +9232,7 @@ export declare const ThemeG10: {
9143
9232
  subtitle: string;
9144
9233
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9145
9234
  isDisabled: boolean;
9235
+ ariaLabel: string;
9146
9236
  isLoading?: undefined;
9147
9237
  secondaryIcon?: undefined;
9148
9238
  } | {
@@ -9151,6 +9241,7 @@ export declare const ThemeG10: {
9151
9241
  title: string;
9152
9242
  mainIcon: import("@carbon/icons-react").CarbonIconType;
9153
9243
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
9244
+ ariaLabel: string;
9154
9245
  subtitle?: undefined;
9155
9246
  isLoading?: undefined;
9156
9247
  isDisabled?: undefined;
@@ -9161,6 +9252,7 @@ export declare const ThemeG10: {
9161
9252
  tiles: {
9162
9253
  id: string;
9163
9254
  customContent: import("react/jsx-runtime").JSX.Element;
9255
+ ariaLabel: string;
9164
9256
  }[];
9165
9257
  })[];
9166
9258
  tasksControllerConfig: number;
@@ -9175,6 +9267,13 @@ export declare const ThemeG10: {
9175
9267
  disabledTaskLabel: string;
9176
9268
  expandButtonLabel: string;
9177
9269
  collapseButtonLabel: string;
9270
+ ariaLabels: {
9271
+ welcome: string;
9272
+ description: string;
9273
+ collapseButton: string;
9274
+ expandButton: string;
9275
+ tilesContainer: string;
9276
+ };
9178
9277
  headerAnimation: number;
9179
9278
  };
9180
9279
  };
@@ -17435,6 +17534,7 @@ export declare const ThemeG100: {
17435
17534
  href: string;
17436
17535
  title: string;
17437
17536
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17537
+ ariaLabel: string;
17438
17538
  subtitle?: undefined;
17439
17539
  } | {
17440
17540
  id: string;
@@ -17442,6 +17542,7 @@ export declare const ThemeG100: {
17442
17542
  title: string;
17443
17543
  subtitle: string;
17444
17544
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17545
+ ariaLabel: string;
17445
17546
  })[];
17446
17547
  } | {
17447
17548
  id: number;
@@ -17452,6 +17553,7 @@ export declare const ThemeG100: {
17452
17553
  title: string;
17453
17554
  subtitle: string;
17454
17555
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17556
+ ariaLabel: string;
17455
17557
  secondaryIcon?: undefined;
17456
17558
  } | {
17457
17559
  id: string;
@@ -17459,6 +17561,7 @@ export declare const ThemeG100: {
17459
17561
  title: string;
17460
17562
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17461
17563
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
17564
+ ariaLabel: string;
17462
17565
  subtitle?: undefined;
17463
17566
  })[];
17464
17567
  } | {
@@ -17471,6 +17574,7 @@ export declare const ThemeG100: {
17471
17574
  subtitle: string;
17472
17575
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17473
17576
  isLoading: boolean;
17577
+ ariaLabel: string;
17474
17578
  isDisabled?: undefined;
17475
17579
  secondaryIcon?: undefined;
17476
17580
  } | {
@@ -17478,6 +17582,7 @@ export declare const ThemeG100: {
17478
17582
  title: string;
17479
17583
  subtitle: string;
17480
17584
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17585
+ ariaLabel: string;
17481
17586
  href?: undefined;
17482
17587
  isLoading?: undefined;
17483
17588
  isDisabled?: undefined;
@@ -17489,6 +17594,7 @@ export declare const ThemeG100: {
17489
17594
  subtitle: string;
17490
17595
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17491
17596
  isDisabled: boolean;
17597
+ ariaLabel: string;
17492
17598
  isLoading?: undefined;
17493
17599
  secondaryIcon?: undefined;
17494
17600
  } | {
@@ -17497,6 +17603,7 @@ export declare const ThemeG100: {
17497
17603
  title: string;
17498
17604
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17499
17605
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
17606
+ ariaLabel: string;
17500
17607
  subtitle?: undefined;
17501
17608
  isLoading?: undefined;
17502
17609
  isDisabled?: undefined;
@@ -17507,6 +17614,7 @@ export declare const ThemeG100: {
17507
17614
  tiles: {
17508
17615
  id: string;
17509
17616
  customContent: import("react/jsx-runtime").JSX.Element;
17617
+ ariaLabel: string;
17510
17618
  }[];
17511
17619
  };
17512
17620
  2: {
@@ -17517,6 +17625,7 @@ export declare const ThemeG100: {
17517
17625
  href: string;
17518
17626
  title: string;
17519
17627
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17628
+ ariaLabel: string;
17520
17629
  subtitle?: undefined;
17521
17630
  } | {
17522
17631
  id: string;
@@ -17524,6 +17633,7 @@ export declare const ThemeG100: {
17524
17633
  title: string;
17525
17634
  subtitle: string;
17526
17635
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17636
+ ariaLabel: string;
17527
17637
  })[];
17528
17638
  } | {
17529
17639
  id: number;
@@ -17534,6 +17644,7 @@ export declare const ThemeG100: {
17534
17644
  title: string;
17535
17645
  subtitle: string;
17536
17646
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17647
+ ariaLabel: string;
17537
17648
  secondaryIcon?: undefined;
17538
17649
  } | {
17539
17650
  id: string;
@@ -17541,6 +17652,7 @@ export declare const ThemeG100: {
17541
17652
  title: string;
17542
17653
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17543
17654
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
17655
+ ariaLabel: string;
17544
17656
  subtitle?: undefined;
17545
17657
  })[];
17546
17658
  } | {
@@ -17553,6 +17665,7 @@ export declare const ThemeG100: {
17553
17665
  subtitle: string;
17554
17666
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17555
17667
  isLoading: boolean;
17668
+ ariaLabel: string;
17556
17669
  isDisabled?: undefined;
17557
17670
  secondaryIcon?: undefined;
17558
17671
  } | {
@@ -17560,6 +17673,7 @@ export declare const ThemeG100: {
17560
17673
  title: string;
17561
17674
  subtitle: string;
17562
17675
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17676
+ ariaLabel: string;
17563
17677
  href?: undefined;
17564
17678
  isLoading?: undefined;
17565
17679
  isDisabled?: undefined;
@@ -17571,6 +17685,7 @@ export declare const ThemeG100: {
17571
17685
  subtitle: string;
17572
17686
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17573
17687
  isDisabled: boolean;
17688
+ ariaLabel: string;
17574
17689
  isLoading?: undefined;
17575
17690
  secondaryIcon?: undefined;
17576
17691
  } | {
@@ -17579,6 +17694,7 @@ export declare const ThemeG100: {
17579
17694
  title: string;
17580
17695
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17581
17696
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
17697
+ ariaLabel: string;
17582
17698
  subtitle?: undefined;
17583
17699
  isLoading?: undefined;
17584
17700
  isDisabled?: undefined;
@@ -17589,6 +17705,7 @@ export declare const ThemeG100: {
17589
17705
  tiles: {
17590
17706
  id: string;
17591
17707
  customContent: import("react/jsx-runtime").JSX.Element;
17708
+ ariaLabel: string;
17592
17709
  }[];
17593
17710
  };
17594
17711
  3: {
@@ -17599,6 +17716,7 @@ export declare const ThemeG100: {
17599
17716
  href: string;
17600
17717
  title: string;
17601
17718
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17719
+ ariaLabel: string;
17602
17720
  subtitle?: undefined;
17603
17721
  } | {
17604
17722
  id: string;
@@ -17606,6 +17724,7 @@ export declare const ThemeG100: {
17606
17724
  title: string;
17607
17725
  subtitle: string;
17608
17726
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17727
+ ariaLabel: string;
17609
17728
  })[];
17610
17729
  } | {
17611
17730
  id: number;
@@ -17616,6 +17735,7 @@ export declare const ThemeG100: {
17616
17735
  title: string;
17617
17736
  subtitle: string;
17618
17737
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17738
+ ariaLabel: string;
17619
17739
  secondaryIcon?: undefined;
17620
17740
  } | {
17621
17741
  id: string;
@@ -17623,6 +17743,7 @@ export declare const ThemeG100: {
17623
17743
  title: string;
17624
17744
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17625
17745
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
17746
+ ariaLabel: string;
17626
17747
  subtitle?: undefined;
17627
17748
  })[];
17628
17749
  } | {
@@ -17635,6 +17756,7 @@ export declare const ThemeG100: {
17635
17756
  subtitle: string;
17636
17757
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17637
17758
  isLoading: boolean;
17759
+ ariaLabel: string;
17638
17760
  isDisabled?: undefined;
17639
17761
  secondaryIcon?: undefined;
17640
17762
  } | {
@@ -17642,6 +17764,7 @@ export declare const ThemeG100: {
17642
17764
  title: string;
17643
17765
  subtitle: string;
17644
17766
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17767
+ ariaLabel: string;
17645
17768
  href?: undefined;
17646
17769
  isLoading?: undefined;
17647
17770
  isDisabled?: undefined;
@@ -17653,6 +17776,7 @@ export declare const ThemeG100: {
17653
17776
  subtitle: string;
17654
17777
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17655
17778
  isDisabled: boolean;
17779
+ ariaLabel: string;
17656
17780
  isLoading?: undefined;
17657
17781
  secondaryIcon?: undefined;
17658
17782
  } | {
@@ -17661,6 +17785,7 @@ export declare const ThemeG100: {
17661
17785
  title: string;
17662
17786
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17663
17787
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
17788
+ ariaLabel: string;
17664
17789
  subtitle?: undefined;
17665
17790
  isLoading?: undefined;
17666
17791
  isDisabled?: undefined;
@@ -17671,6 +17796,7 @@ export declare const ThemeG100: {
17671
17796
  tiles: {
17672
17797
  id: string;
17673
17798
  customContent: import("react/jsx-runtime").JSX.Element;
17799
+ ariaLabel: string;
17674
17800
  }[];
17675
17801
  };
17676
17802
  4: {
@@ -17681,6 +17807,7 @@ export declare const ThemeG100: {
17681
17807
  href: string;
17682
17808
  title: string;
17683
17809
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17810
+ ariaLabel: string;
17684
17811
  subtitle?: undefined;
17685
17812
  } | {
17686
17813
  id: string;
@@ -17688,6 +17815,7 @@ export declare const ThemeG100: {
17688
17815
  title: string;
17689
17816
  subtitle: string;
17690
17817
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17818
+ ariaLabel: string;
17691
17819
  })[];
17692
17820
  } | {
17693
17821
  id: number;
@@ -17698,6 +17826,7 @@ export declare const ThemeG100: {
17698
17826
  title: string;
17699
17827
  subtitle: string;
17700
17828
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17829
+ ariaLabel: string;
17701
17830
  secondaryIcon?: undefined;
17702
17831
  } | {
17703
17832
  id: string;
@@ -17705,6 +17834,7 @@ export declare const ThemeG100: {
17705
17834
  title: string;
17706
17835
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17707
17836
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
17837
+ ariaLabel: string;
17708
17838
  subtitle?: undefined;
17709
17839
  })[];
17710
17840
  } | {
@@ -17717,6 +17847,7 @@ export declare const ThemeG100: {
17717
17847
  subtitle: string;
17718
17848
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17719
17849
  isLoading: boolean;
17850
+ ariaLabel: string;
17720
17851
  isDisabled?: undefined;
17721
17852
  secondaryIcon?: undefined;
17722
17853
  } | {
@@ -17724,6 +17855,7 @@ export declare const ThemeG100: {
17724
17855
  title: string;
17725
17856
  subtitle: string;
17726
17857
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17858
+ ariaLabel: string;
17727
17859
  href?: undefined;
17728
17860
  isLoading?: undefined;
17729
17861
  isDisabled?: undefined;
@@ -17735,6 +17867,7 @@ export declare const ThemeG100: {
17735
17867
  subtitle: string;
17736
17868
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17737
17869
  isDisabled: boolean;
17870
+ ariaLabel: string;
17738
17871
  isLoading?: undefined;
17739
17872
  secondaryIcon?: undefined;
17740
17873
  } | {
@@ -17743,6 +17876,7 @@ export declare const ThemeG100: {
17743
17876
  title: string;
17744
17877
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17745
17878
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
17879
+ ariaLabel: string;
17746
17880
  subtitle?: undefined;
17747
17881
  isLoading?: undefined;
17748
17882
  isDisabled?: undefined;
@@ -17753,6 +17887,7 @@ export declare const ThemeG100: {
17753
17887
  tiles: {
17754
17888
  id: string;
17755
17889
  customContent: import("react/jsx-runtime").JSX.Element;
17890
+ ariaLabel: string;
17756
17891
  }[];
17757
17892
  };
17758
17893
  5: {
@@ -17763,6 +17898,7 @@ export declare const ThemeG100: {
17763
17898
  href: string;
17764
17899
  title: string;
17765
17900
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17901
+ ariaLabel: string;
17766
17902
  subtitle?: undefined;
17767
17903
  } | {
17768
17904
  id: string;
@@ -17770,6 +17906,7 @@ export declare const ThemeG100: {
17770
17906
  title: string;
17771
17907
  subtitle: string;
17772
17908
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17909
+ ariaLabel: string;
17773
17910
  })[];
17774
17911
  } | {
17775
17912
  id: number;
@@ -17780,6 +17917,7 @@ export declare const ThemeG100: {
17780
17917
  title: string;
17781
17918
  subtitle: string;
17782
17919
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17920
+ ariaLabel: string;
17783
17921
  secondaryIcon?: undefined;
17784
17922
  } | {
17785
17923
  id: string;
@@ -17787,6 +17925,7 @@ export declare const ThemeG100: {
17787
17925
  title: string;
17788
17926
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17789
17927
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
17928
+ ariaLabel: string;
17790
17929
  subtitle?: undefined;
17791
17930
  })[];
17792
17931
  } | {
@@ -17799,6 +17938,7 @@ export declare const ThemeG100: {
17799
17938
  subtitle: string;
17800
17939
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17801
17940
  isLoading: boolean;
17941
+ ariaLabel: string;
17802
17942
  isDisabled?: undefined;
17803
17943
  secondaryIcon?: undefined;
17804
17944
  } | {
@@ -17806,6 +17946,7 @@ export declare const ThemeG100: {
17806
17946
  title: string;
17807
17947
  subtitle: string;
17808
17948
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17949
+ ariaLabel: string;
17809
17950
  href?: undefined;
17810
17951
  isLoading?: undefined;
17811
17952
  isDisabled?: undefined;
@@ -17817,6 +17958,7 @@ export declare const ThemeG100: {
17817
17958
  subtitle: string;
17818
17959
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17819
17960
  isDisabled: boolean;
17961
+ ariaLabel: string;
17820
17962
  isLoading?: undefined;
17821
17963
  secondaryIcon?: undefined;
17822
17964
  } | {
@@ -17825,6 +17967,7 @@ export declare const ThemeG100: {
17825
17967
  title: string;
17826
17968
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17827
17969
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
17970
+ ariaLabel: string;
17828
17971
  subtitle?: undefined;
17829
17972
  isLoading?: undefined;
17830
17973
  isDisabled?: undefined;
@@ -17835,6 +17978,7 @@ export declare const ThemeG100: {
17835
17978
  tiles: {
17836
17979
  id: string;
17837
17980
  customContent: import("react/jsx-runtime").JSX.Element;
17981
+ ariaLabel: string;
17838
17982
  }[];
17839
17983
  };
17840
17984
  6: {
@@ -17845,6 +17989,7 @@ export declare const ThemeG100: {
17845
17989
  href: string;
17846
17990
  title: string;
17847
17991
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17992
+ ariaLabel: string;
17848
17993
  subtitle?: undefined;
17849
17994
  } | {
17850
17995
  id: string;
@@ -17852,6 +17997,7 @@ export declare const ThemeG100: {
17852
17997
  title: string;
17853
17998
  subtitle: string;
17854
17999
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18000
+ ariaLabel: string;
17855
18001
  })[];
17856
18002
  } | {
17857
18003
  id: number;
@@ -17862,6 +18008,7 @@ export declare const ThemeG100: {
17862
18008
  title: string;
17863
18009
  subtitle: string;
17864
18010
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18011
+ ariaLabel: string;
17865
18012
  secondaryIcon?: undefined;
17866
18013
  } | {
17867
18014
  id: string;
@@ -17869,6 +18016,7 @@ export declare const ThemeG100: {
17869
18016
  title: string;
17870
18017
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17871
18018
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
18019
+ ariaLabel: string;
17872
18020
  subtitle?: undefined;
17873
18021
  })[];
17874
18022
  } | {
@@ -17881,6 +18029,7 @@ export declare const ThemeG100: {
17881
18029
  subtitle: string;
17882
18030
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17883
18031
  isLoading: boolean;
18032
+ ariaLabel: string;
17884
18033
  isDisabled?: undefined;
17885
18034
  secondaryIcon?: undefined;
17886
18035
  } | {
@@ -17888,6 +18037,7 @@ export declare const ThemeG100: {
17888
18037
  title: string;
17889
18038
  subtitle: string;
17890
18039
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18040
+ ariaLabel: string;
17891
18041
  href?: undefined;
17892
18042
  isLoading?: undefined;
17893
18043
  isDisabled?: undefined;
@@ -17899,6 +18049,7 @@ export declare const ThemeG100: {
17899
18049
  subtitle: string;
17900
18050
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17901
18051
  isDisabled: boolean;
18052
+ ariaLabel: string;
17902
18053
  isLoading?: undefined;
17903
18054
  secondaryIcon?: undefined;
17904
18055
  } | {
@@ -17907,6 +18058,7 @@ export declare const ThemeG100: {
17907
18058
  title: string;
17908
18059
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17909
18060
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
18061
+ ariaLabel: string;
17910
18062
  subtitle?: undefined;
17911
18063
  isLoading?: undefined;
17912
18064
  isDisabled?: undefined;
@@ -17917,6 +18069,7 @@ export declare const ThemeG100: {
17917
18069
  tiles: {
17918
18070
  id: string;
17919
18071
  customContent: import("react/jsx-runtime").JSX.Element;
18072
+ ariaLabel: string;
17920
18073
  }[];
17921
18074
  };
17922
18075
  7: {
@@ -17927,6 +18080,7 @@ export declare const ThemeG100: {
17927
18080
  href: string;
17928
18081
  title: string;
17929
18082
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18083
+ ariaLabel: string;
17930
18084
  subtitle?: undefined;
17931
18085
  } | {
17932
18086
  id: string;
@@ -17934,6 +18088,7 @@ export declare const ThemeG100: {
17934
18088
  title: string;
17935
18089
  subtitle: string;
17936
18090
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18091
+ ariaLabel: string;
17937
18092
  })[];
17938
18093
  } | {
17939
18094
  id: number;
@@ -17944,6 +18099,7 @@ export declare const ThemeG100: {
17944
18099
  title: string;
17945
18100
  subtitle: string;
17946
18101
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18102
+ ariaLabel: string;
17947
18103
  secondaryIcon?: undefined;
17948
18104
  } | {
17949
18105
  id: string;
@@ -17951,6 +18107,7 @@ export declare const ThemeG100: {
17951
18107
  title: string;
17952
18108
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17953
18109
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
18110
+ ariaLabel: string;
17954
18111
  subtitle?: undefined;
17955
18112
  })[];
17956
18113
  } | {
@@ -17963,6 +18120,7 @@ export declare const ThemeG100: {
17963
18120
  subtitle: string;
17964
18121
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17965
18122
  isLoading: boolean;
18123
+ ariaLabel: string;
17966
18124
  isDisabled?: undefined;
17967
18125
  secondaryIcon?: undefined;
17968
18126
  } | {
@@ -17970,6 +18128,7 @@ export declare const ThemeG100: {
17970
18128
  title: string;
17971
18129
  subtitle: string;
17972
18130
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18131
+ ariaLabel: string;
17973
18132
  href?: undefined;
17974
18133
  isLoading?: undefined;
17975
18134
  isDisabled?: undefined;
@@ -17981,6 +18140,7 @@ export declare const ThemeG100: {
17981
18140
  subtitle: string;
17982
18141
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17983
18142
  isDisabled: boolean;
18143
+ ariaLabel: string;
17984
18144
  isLoading?: undefined;
17985
18145
  secondaryIcon?: undefined;
17986
18146
  } | {
@@ -17989,6 +18149,7 @@ export declare const ThemeG100: {
17989
18149
  title: string;
17990
18150
  mainIcon: import("@carbon/icons-react").CarbonIconType;
17991
18151
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
18152
+ ariaLabel: string;
17992
18153
  subtitle?: undefined;
17993
18154
  isLoading?: undefined;
17994
18155
  isDisabled?: undefined;
@@ -17999,6 +18160,7 @@ export declare const ThemeG100: {
17999
18160
  tiles: {
18000
18161
  id: string;
18001
18162
  customContent: import("react/jsx-runtime").JSX.Element;
18163
+ ariaLabel: string;
18002
18164
  }[];
18003
18165
  };
18004
18166
  };
@@ -18038,6 +18200,7 @@ export declare const ThemeG100: {
18038
18200
  href: string;
18039
18201
  title: string;
18040
18202
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18203
+ ariaLabel: string;
18041
18204
  subtitle?: undefined;
18042
18205
  } | {
18043
18206
  id: string;
@@ -18045,6 +18208,7 @@ export declare const ThemeG100: {
18045
18208
  title: string;
18046
18209
  subtitle: string;
18047
18210
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18211
+ ariaLabel: string;
18048
18212
  })[];
18049
18213
  } | {
18050
18214
  id: number;
@@ -18055,6 +18219,7 @@ export declare const ThemeG100: {
18055
18219
  title: string;
18056
18220
  subtitle: string;
18057
18221
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18222
+ ariaLabel: string;
18058
18223
  secondaryIcon?: undefined;
18059
18224
  } | {
18060
18225
  id: string;
@@ -18062,6 +18227,7 @@ export declare const ThemeG100: {
18062
18227
  title: string;
18063
18228
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18064
18229
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
18230
+ ariaLabel: string;
18065
18231
  subtitle?: undefined;
18066
18232
  })[];
18067
18233
  } | {
@@ -18074,6 +18240,7 @@ export declare const ThemeG100: {
18074
18240
  subtitle: string;
18075
18241
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18076
18242
  isLoading: boolean;
18243
+ ariaLabel: string;
18077
18244
  isDisabled?: undefined;
18078
18245
  secondaryIcon?: undefined;
18079
18246
  } | {
@@ -18081,6 +18248,7 @@ export declare const ThemeG100: {
18081
18248
  title: string;
18082
18249
  subtitle: string;
18083
18250
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18251
+ ariaLabel: string;
18084
18252
  href?: undefined;
18085
18253
  isLoading?: undefined;
18086
18254
  isDisabled?: undefined;
@@ -18092,6 +18260,7 @@ export declare const ThemeG100: {
18092
18260
  subtitle: string;
18093
18261
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18094
18262
  isDisabled: boolean;
18263
+ ariaLabel: string;
18095
18264
  isLoading?: undefined;
18096
18265
  secondaryIcon?: undefined;
18097
18266
  } | {
@@ -18100,6 +18269,7 @@ export declare const ThemeG100: {
18100
18269
  title: string;
18101
18270
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18102
18271
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
18272
+ ariaLabel: string;
18103
18273
  subtitle?: undefined;
18104
18274
  isLoading?: undefined;
18105
18275
  isDisabled?: undefined;
@@ -18110,6 +18280,7 @@ export declare const ThemeG100: {
18110
18280
  tiles: {
18111
18281
  id: string;
18112
18282
  customContent: import("react/jsx-runtime").JSX.Element;
18283
+ ariaLabel: string;
18113
18284
  }[];
18114
18285
  })[];
18115
18286
  selectedTileGroup: {
@@ -18120,6 +18291,7 @@ export declare const ThemeG100: {
18120
18291
  href: string;
18121
18292
  title: string;
18122
18293
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18294
+ ariaLabel: string;
18123
18295
  subtitle?: undefined;
18124
18296
  } | {
18125
18297
  id: string;
@@ -18127,6 +18299,7 @@ export declare const ThemeG100: {
18127
18299
  title: string;
18128
18300
  subtitle: string;
18129
18301
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18302
+ ariaLabel: string;
18130
18303
  })[];
18131
18304
  } | {
18132
18305
  id: number;
@@ -18137,6 +18310,7 @@ export declare const ThemeG100: {
18137
18310
  title: string;
18138
18311
  subtitle: string;
18139
18312
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18313
+ ariaLabel: string;
18140
18314
  secondaryIcon?: undefined;
18141
18315
  } | {
18142
18316
  id: string;
@@ -18144,6 +18318,7 @@ export declare const ThemeG100: {
18144
18318
  title: string;
18145
18319
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18146
18320
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
18321
+ ariaLabel: string;
18147
18322
  subtitle?: undefined;
18148
18323
  })[];
18149
18324
  } | {
@@ -18156,6 +18331,7 @@ export declare const ThemeG100: {
18156
18331
  subtitle: string;
18157
18332
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18158
18333
  isLoading: boolean;
18334
+ ariaLabel: string;
18159
18335
  isDisabled?: undefined;
18160
18336
  secondaryIcon?: undefined;
18161
18337
  } | {
@@ -18163,6 +18339,7 @@ export declare const ThemeG100: {
18163
18339
  title: string;
18164
18340
  subtitle: string;
18165
18341
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18342
+ ariaLabel: string;
18166
18343
  href?: undefined;
18167
18344
  isLoading?: undefined;
18168
18345
  isDisabled?: undefined;
@@ -18174,6 +18351,7 @@ export declare const ThemeG100: {
18174
18351
  subtitle: string;
18175
18352
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18176
18353
  isDisabled: boolean;
18354
+ ariaLabel: string;
18177
18355
  isLoading?: undefined;
18178
18356
  secondaryIcon?: undefined;
18179
18357
  } | {
@@ -18182,6 +18360,7 @@ export declare const ThemeG100: {
18182
18360
  title: string;
18183
18361
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18184
18362
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
18363
+ ariaLabel: string;
18185
18364
  subtitle?: undefined;
18186
18365
  isLoading?: undefined;
18187
18366
  isDisabled?: undefined;
@@ -18192,9 +18371,11 @@ export declare const ThemeG100: {
18192
18371
  tiles: {
18193
18372
  id: string;
18194
18373
  customContent: import("react/jsx-runtime").JSX.Element;
18374
+ ariaLabel: string;
18195
18375
  }[];
18196
18376
  };
18197
18377
  setSelectedTileGroup: () => void;
18378
+ ariaLabel: string;
18198
18379
  };
18199
18380
  };
18200
18381
  3: {
@@ -18226,6 +18407,7 @@ export declare const ThemeG100: {
18226
18407
  label: string;
18227
18408
  renderSelectedItem: (item: any) => string;
18228
18409
  };
18410
+ ariaLabel: string;
18229
18411
  };
18230
18412
  2: {
18231
18413
  allWorkspaces: {
@@ -18264,6 +18446,7 @@ export declare const ThemeG100: {
18264
18446
  href: string;
18265
18447
  title: string;
18266
18448
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18449
+ ariaLabel: string;
18267
18450
  subtitle?: undefined;
18268
18451
  } | {
18269
18452
  id: string;
@@ -18271,6 +18454,7 @@ export declare const ThemeG100: {
18271
18454
  title: string;
18272
18455
  subtitle: string;
18273
18456
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18457
+ ariaLabel: string;
18274
18458
  })[];
18275
18459
  } | {
18276
18460
  id: number;
@@ -18281,6 +18465,7 @@ export declare const ThemeG100: {
18281
18465
  title: string;
18282
18466
  subtitle: string;
18283
18467
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18468
+ ariaLabel: string;
18284
18469
  secondaryIcon?: undefined;
18285
18470
  } | {
18286
18471
  id: string;
@@ -18288,6 +18473,7 @@ export declare const ThemeG100: {
18288
18473
  title: string;
18289
18474
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18290
18475
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
18476
+ ariaLabel: string;
18291
18477
  subtitle?: undefined;
18292
18478
  })[];
18293
18479
  } | {
@@ -18300,6 +18486,7 @@ export declare const ThemeG100: {
18300
18486
  subtitle: string;
18301
18487
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18302
18488
  isLoading: boolean;
18489
+ ariaLabel: string;
18303
18490
  isDisabled?: undefined;
18304
18491
  secondaryIcon?: undefined;
18305
18492
  } | {
@@ -18307,6 +18494,7 @@ export declare const ThemeG100: {
18307
18494
  title: string;
18308
18495
  subtitle: string;
18309
18496
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18497
+ ariaLabel: string;
18310
18498
  href?: undefined;
18311
18499
  isLoading?: undefined;
18312
18500
  isDisabled?: undefined;
@@ -18318,6 +18506,7 @@ export declare const ThemeG100: {
18318
18506
  subtitle: string;
18319
18507
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18320
18508
  isDisabled: boolean;
18509
+ ariaLabel: string;
18321
18510
  isLoading?: undefined;
18322
18511
  secondaryIcon?: undefined;
18323
18512
  } | {
@@ -18326,6 +18515,7 @@ export declare const ThemeG100: {
18326
18515
  title: string;
18327
18516
  mainIcon: import("@carbon/icons-react").CarbonIconType;
18328
18517
  secondaryIcon: import("@carbon/icons-react").CarbonIconType;
18518
+ ariaLabel: string;
18329
18519
  subtitle?: undefined;
18330
18520
  isLoading?: undefined;
18331
18521
  isDisabled?: undefined;
@@ -18336,6 +18526,7 @@ export declare const ThemeG100: {
18336
18526
  tiles: {
18337
18527
  id: string;
18338
18528
  customContent: import("react/jsx-runtime").JSX.Element;
18529
+ ariaLabel: string;
18339
18530
  }[];
18340
18531
  })[];
18341
18532
  tasksControllerConfig: number;
@@ -18350,6 +18541,13 @@ export declare const ThemeG100: {
18350
18541
  disabledTaskLabel: string;
18351
18542
  expandButtonLabel: string;
18352
18543
  collapseButtonLabel: string;
18544
+ ariaLabels: {
18545
+ welcome: string;
18546
+ description: string;
18547
+ collapseButton: string;
18548
+ expandButton: string;
18549
+ tilesContainer: string;
18550
+ };
18353
18551
  headerAnimation: number;
18354
18552
  };
18355
18553
  globals: {