@carbon-labs/react-animated-header 0.31.0 → 0.33.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 (52) hide show
  1. package/es/__stories__/AnimatedHeader.stories.d.ts +148 -1944
  2. package/es/__stories__/data/index.d.ts +52 -225
  3. package/es/_virtual/lottie.js +1 -1
  4. package/es/components/AnimatedHeader/AnimatedHeader.d.ts +11 -27
  5. package/es/components/AnimatedHeader/AnimatedHeader.js +42 -36
  6. package/es/components/AnimatedHeader/types.d.ts +24 -0
  7. package/es/components/HeaderTitle/HeaderTitle.d.ts +1 -1
  8. package/es/components/TasksController/TasksController.d.ts +1 -1
  9. package/es/components/Tiles/AIPromptTile/AIPromptTile.d.ts +10 -11
  10. package/es/components/Tiles/AIPromptTile/AIPromptTile.js +14 -16
  11. package/es/components/Tiles/AITile/AITile.d.ts +26 -0
  12. package/es/components/Tiles/AITile/AITile.js +65 -0
  13. package/es/components/Tiles/AITile/AITileBody.d.ts +19 -0
  14. package/es/components/Tiles/AITile/AITileBody.js +59 -0
  15. package/es/components/Tiles/BaseTile/BaseTile.d.ts +15 -18
  16. package/es/components/Tiles/BaseTile/BaseTile.js +34 -4
  17. package/es/components/Tiles/GlassTile/GlassTile.d.ts +13 -9
  18. package/es/components/Tiles/GlassTile/GlassTile.js +13 -15
  19. package/es/components/Tiles/GlassTile/GlassTileBody.d.ts +4 -4
  20. package/es/components/Tiles/GlassTile/GlassTileBody.js +6 -6
  21. package/es/components/Tiles/index.d.ts +2 -1
  22. package/es/index.d.ts +3 -2
  23. package/es/node_modules/lottie-web/build/player/lottie.js +194 -193
  24. package/lib/__stories__/AnimatedHeader.stories.d.ts +148 -1944
  25. package/lib/__stories__/data/index.d.ts +52 -225
  26. package/lib/_virtual/lottie.js +1 -1
  27. package/lib/components/AnimatedHeader/AnimatedHeader.d.ts +11 -27
  28. package/lib/components/AnimatedHeader/AnimatedHeader.js +42 -36
  29. package/lib/components/AnimatedHeader/types.d.ts +24 -0
  30. package/lib/components/HeaderTitle/HeaderTitle.d.ts +1 -1
  31. package/lib/components/TasksController/TasksController.d.ts +1 -1
  32. package/lib/components/Tiles/AIPromptTile/AIPromptTile.d.ts +10 -11
  33. package/lib/components/Tiles/AIPromptTile/AIPromptTile.js +14 -16
  34. package/lib/components/Tiles/AITile/AITile.d.ts +26 -0
  35. package/lib/components/Tiles/AITile/AITile.js +70 -0
  36. package/lib/components/Tiles/AITile/AITileBody.d.ts +19 -0
  37. package/lib/components/Tiles/AITile/AITileBody.js +61 -0
  38. package/lib/components/Tiles/BaseTile/BaseTile.d.ts +15 -18
  39. package/lib/components/Tiles/BaseTile/BaseTile.js +34 -4
  40. package/lib/components/Tiles/GlassTile/GlassTile.d.ts +13 -9
  41. package/lib/components/Tiles/GlassTile/GlassTile.js +13 -15
  42. package/lib/components/Tiles/GlassTile/GlassTileBody.d.ts +4 -4
  43. package/lib/components/Tiles/GlassTile/GlassTileBody.js +6 -6
  44. package/lib/components/Tiles/index.d.ts +2 -1
  45. package/lib/index.d.ts +3 -2
  46. package/lib/node_modules/lottie-web/build/player/lottie.js +194 -193
  47. package/package.json +2 -2
  48. package/scss/AnimatedHeader/animated-header.scss +66 -36
  49. package/scss/Tiles/AIPromptTile/ai-prompt-tile.scss +14 -2
  50. package/scss/Tiles/AITile/ai-tile.scss +222 -0
  51. package/scss/Tiles/GlassTile/glass-tile.scss +14 -2
  52. package/scss/animated-header.scss +1 -0
@@ -9781,648 +9781,20 @@ export declare const ThemeG10: {
9781
9781
  5: string;
9782
9782
  6: string;
9783
9783
  7: string;
9784
+ 8: string;
9784
9785
  };
9785
9786
  };
9786
9787
  options: number[];
9787
9788
  mapping: {
9788
9789
  0: null;
9789
- 1: {
9790
- id: number;
9791
- label: string;
9792
- tiles: ({
9793
- id: string;
9794
- href: string;
9795
- title: string;
9796
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9797
- ariaLabel: string;
9798
- subtitle?: undefined;
9799
- } | {
9800
- id: string;
9801
- href: string;
9802
- title: string;
9803
- subtitle: string;
9804
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9805
- ariaLabel: string;
9806
- })[];
9807
- } | {
9808
- id: number;
9809
- label: string;
9810
- tiles: ({
9811
- id: string;
9812
- href: string;
9813
- title: string;
9814
- subtitle: string;
9815
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9816
- ariaLabel: string;
9817
- secondaryIcon?: undefined;
9818
- } | {
9819
- id: string;
9820
- href: string;
9821
- title: string;
9822
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9823
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
9824
- ariaLabel: string;
9825
- subtitle?: undefined;
9826
- })[];
9827
- } | {
9828
- id: number;
9829
- label: string;
9830
- tiles: ({
9831
- id: string;
9832
- href: string;
9833
- title: string;
9834
- subtitle: string;
9835
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9836
- isLoading: boolean;
9837
- ariaLabel: string;
9838
- isDisabled?: undefined;
9839
- secondaryIcon?: undefined;
9840
- } | {
9841
- id: string;
9842
- title: string;
9843
- subtitle: string;
9844
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9845
- ariaLabel: string;
9846
- href?: undefined;
9847
- isLoading?: undefined;
9848
- isDisabled?: undefined;
9849
- secondaryIcon?: undefined;
9850
- } | {
9851
- id: string;
9852
- href: string;
9853
- title: string;
9854
- subtitle: string;
9855
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9856
- isDisabled: boolean;
9857
- ariaLabel: string;
9858
- isLoading?: undefined;
9859
- secondaryIcon?: undefined;
9860
- } | {
9861
- id: string;
9862
- href: string;
9863
- title: string;
9864
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9865
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
9866
- ariaLabel: string;
9867
- subtitle?: undefined;
9868
- isLoading?: undefined;
9869
- isDisabled?: undefined;
9870
- })[];
9871
- } | {
9872
- id: number;
9873
- label: string;
9874
- tiles: {
9875
- id: string;
9876
- customContent: import("react/jsx-runtime").JSX.Element;
9877
- ariaLabel: string;
9878
- }[];
9879
- };
9880
- 2: {
9881
- id: number;
9882
- label: string;
9883
- tiles: ({
9884
- id: string;
9885
- href: string;
9886
- title: string;
9887
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9888
- ariaLabel: string;
9889
- subtitle?: undefined;
9890
- } | {
9891
- id: string;
9892
- href: string;
9893
- title: string;
9894
- subtitle: string;
9895
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9896
- ariaLabel: string;
9897
- })[];
9898
- } | {
9899
- id: number;
9900
- label: string;
9901
- tiles: ({
9902
- id: string;
9903
- href: string;
9904
- title: string;
9905
- subtitle: string;
9906
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9907
- ariaLabel: string;
9908
- secondaryIcon?: undefined;
9909
- } | {
9910
- id: string;
9911
- href: string;
9912
- title: string;
9913
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9914
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
9915
- ariaLabel: string;
9916
- subtitle?: undefined;
9917
- })[];
9918
- } | {
9919
- id: number;
9920
- label: string;
9921
- tiles: ({
9922
- id: string;
9923
- href: string;
9924
- title: string;
9925
- subtitle: string;
9926
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9927
- isLoading: boolean;
9928
- ariaLabel: string;
9929
- isDisabled?: undefined;
9930
- secondaryIcon?: undefined;
9931
- } | {
9932
- id: string;
9933
- title: string;
9934
- subtitle: string;
9935
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9936
- ariaLabel: string;
9937
- href?: undefined;
9938
- isLoading?: undefined;
9939
- isDisabled?: undefined;
9940
- secondaryIcon?: undefined;
9941
- } | {
9942
- id: string;
9943
- href: string;
9944
- title: string;
9945
- subtitle: string;
9946
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9947
- isDisabled: boolean;
9948
- ariaLabel: string;
9949
- isLoading?: undefined;
9950
- secondaryIcon?: undefined;
9951
- } | {
9952
- id: string;
9953
- href: string;
9954
- title: string;
9955
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9956
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
9957
- ariaLabel: string;
9958
- subtitle?: undefined;
9959
- isLoading?: undefined;
9960
- isDisabled?: undefined;
9961
- })[];
9962
- } | {
9963
- id: number;
9964
- label: string;
9965
- tiles: {
9966
- id: string;
9967
- customContent: import("react/jsx-runtime").JSX.Element;
9968
- ariaLabel: string;
9969
- }[];
9970
- };
9971
- 3: {
9972
- id: number;
9973
- label: string;
9974
- tiles: ({
9975
- id: string;
9976
- href: string;
9977
- title: string;
9978
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9979
- ariaLabel: string;
9980
- subtitle?: undefined;
9981
- } | {
9982
- id: string;
9983
- href: string;
9984
- title: string;
9985
- subtitle: string;
9986
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9987
- ariaLabel: string;
9988
- })[];
9989
- } | {
9990
- id: number;
9991
- label: string;
9992
- tiles: ({
9993
- id: string;
9994
- href: string;
9995
- title: string;
9996
- subtitle: string;
9997
- mainIcon: import("@carbon/icons-react").CarbonIconType;
9998
- ariaLabel: string;
9999
- secondaryIcon?: undefined;
10000
- } | {
10001
- id: string;
10002
- href: string;
10003
- title: string;
10004
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10005
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10006
- ariaLabel: string;
10007
- subtitle?: undefined;
10008
- })[];
10009
- } | {
10010
- id: number;
10011
- label: string;
10012
- tiles: ({
10013
- id: string;
10014
- href: string;
10015
- title: string;
10016
- subtitle: string;
10017
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10018
- isLoading: boolean;
10019
- ariaLabel: string;
10020
- isDisabled?: undefined;
10021
- secondaryIcon?: undefined;
10022
- } | {
10023
- id: string;
10024
- title: string;
10025
- subtitle: string;
10026
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10027
- ariaLabel: string;
10028
- href?: undefined;
10029
- isLoading?: undefined;
10030
- isDisabled?: undefined;
10031
- secondaryIcon?: undefined;
10032
- } | {
10033
- id: string;
10034
- href: string;
10035
- title: string;
10036
- subtitle: string;
10037
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10038
- isDisabled: boolean;
10039
- ariaLabel: string;
10040
- isLoading?: undefined;
10041
- secondaryIcon?: undefined;
10042
- } | {
10043
- id: string;
10044
- href: string;
10045
- title: string;
10046
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10047
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10048
- ariaLabel: string;
10049
- subtitle?: undefined;
10050
- isLoading?: undefined;
10051
- isDisabled?: undefined;
10052
- })[];
10053
- } | {
10054
- id: number;
10055
- label: string;
10056
- tiles: {
10057
- id: string;
10058
- customContent: import("react/jsx-runtime").JSX.Element;
10059
- ariaLabel: string;
10060
- }[];
10061
- };
10062
- 4: {
10063
- id: number;
10064
- label: string;
10065
- tiles: ({
10066
- id: string;
10067
- href: string;
10068
- title: string;
10069
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10070
- ariaLabel: string;
10071
- subtitle?: undefined;
10072
- } | {
10073
- id: string;
10074
- href: string;
10075
- title: string;
10076
- subtitle: string;
10077
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10078
- ariaLabel: string;
10079
- })[];
10080
- } | {
10081
- id: number;
10082
- label: string;
10083
- tiles: ({
10084
- id: string;
10085
- href: string;
10086
- title: string;
10087
- subtitle: string;
10088
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10089
- ariaLabel: string;
10090
- secondaryIcon?: undefined;
10091
- } | {
10092
- id: string;
10093
- href: string;
10094
- title: string;
10095
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10096
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10097
- ariaLabel: string;
10098
- subtitle?: undefined;
10099
- })[];
10100
- } | {
10101
- id: number;
10102
- label: string;
10103
- tiles: ({
10104
- id: string;
10105
- href: string;
10106
- title: string;
10107
- subtitle: string;
10108
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10109
- isLoading: boolean;
10110
- ariaLabel: string;
10111
- isDisabled?: undefined;
10112
- secondaryIcon?: undefined;
10113
- } | {
10114
- id: string;
10115
- title: string;
10116
- subtitle: string;
10117
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10118
- ariaLabel: string;
10119
- href?: undefined;
10120
- isLoading?: undefined;
10121
- isDisabled?: undefined;
10122
- secondaryIcon?: undefined;
10123
- } | {
10124
- id: string;
10125
- href: string;
10126
- title: string;
10127
- subtitle: string;
10128
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10129
- isDisabled: boolean;
10130
- ariaLabel: string;
10131
- isLoading?: undefined;
10132
- secondaryIcon?: undefined;
10133
- } | {
10134
- id: string;
10135
- href: string;
10136
- title: string;
10137
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10138
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10139
- ariaLabel: string;
10140
- subtitle?: undefined;
10141
- isLoading?: undefined;
10142
- isDisabled?: undefined;
10143
- })[];
10144
- } | {
10145
- id: number;
10146
- label: string;
10147
- tiles: {
10148
- id: string;
10149
- customContent: import("react/jsx-runtime").JSX.Element;
10150
- ariaLabel: string;
10151
- }[];
10152
- };
10153
- 5: {
10154
- id: number;
10155
- label: string;
10156
- tiles: ({
10157
- id: string;
10158
- href: string;
10159
- title: string;
10160
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10161
- ariaLabel: string;
10162
- subtitle?: undefined;
10163
- } | {
10164
- id: string;
10165
- href: string;
10166
- title: string;
10167
- subtitle: string;
10168
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10169
- ariaLabel: string;
10170
- })[];
10171
- } | {
10172
- id: number;
10173
- label: string;
10174
- tiles: ({
10175
- id: string;
10176
- href: string;
10177
- title: string;
10178
- subtitle: string;
10179
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10180
- ariaLabel: string;
10181
- secondaryIcon?: undefined;
10182
- } | {
10183
- id: string;
10184
- href: string;
10185
- title: string;
10186
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10187
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10188
- ariaLabel: string;
10189
- subtitle?: undefined;
10190
- })[];
10191
- } | {
10192
- id: number;
10193
- label: string;
10194
- tiles: ({
10195
- id: string;
10196
- href: string;
10197
- title: string;
10198
- subtitle: string;
10199
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10200
- isLoading: boolean;
10201
- ariaLabel: string;
10202
- isDisabled?: undefined;
10203
- secondaryIcon?: undefined;
10204
- } | {
10205
- id: string;
10206
- title: string;
10207
- subtitle: string;
10208
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10209
- ariaLabel: string;
10210
- href?: undefined;
10211
- isLoading?: undefined;
10212
- isDisabled?: undefined;
10213
- secondaryIcon?: undefined;
10214
- } | {
10215
- id: string;
10216
- href: string;
10217
- title: string;
10218
- subtitle: string;
10219
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10220
- isDisabled: boolean;
10221
- ariaLabel: string;
10222
- isLoading?: undefined;
10223
- secondaryIcon?: undefined;
10224
- } | {
10225
- id: string;
10226
- href: string;
10227
- title: string;
10228
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10229
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10230
- ariaLabel: string;
10231
- subtitle?: undefined;
10232
- isLoading?: undefined;
10233
- isDisabled?: undefined;
10234
- })[];
10235
- } | {
10236
- id: number;
10237
- label: string;
10238
- tiles: {
10239
- id: string;
10240
- customContent: import("react/jsx-runtime").JSX.Element;
10241
- ariaLabel: string;
10242
- }[];
10243
- };
10244
- 6: {
10245
- id: number;
10246
- label: string;
10247
- tiles: ({
10248
- id: string;
10249
- href: string;
10250
- title: string;
10251
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10252
- ariaLabel: string;
10253
- subtitle?: undefined;
10254
- } | {
10255
- id: string;
10256
- href: string;
10257
- title: string;
10258
- subtitle: string;
10259
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10260
- ariaLabel: string;
10261
- })[];
10262
- } | {
10263
- id: number;
10264
- label: string;
10265
- tiles: ({
10266
- id: string;
10267
- href: string;
10268
- title: string;
10269
- subtitle: string;
10270
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10271
- ariaLabel: string;
10272
- secondaryIcon?: undefined;
10273
- } | {
10274
- id: string;
10275
- href: string;
10276
- title: string;
10277
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10278
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10279
- ariaLabel: string;
10280
- subtitle?: undefined;
10281
- })[];
10282
- } | {
10283
- id: number;
10284
- label: string;
10285
- tiles: ({
10286
- id: string;
10287
- href: string;
10288
- title: string;
10289
- subtitle: string;
10290
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10291
- isLoading: boolean;
10292
- ariaLabel: string;
10293
- isDisabled?: undefined;
10294
- secondaryIcon?: undefined;
10295
- } | {
10296
- id: string;
10297
- title: string;
10298
- subtitle: string;
10299
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10300
- ariaLabel: string;
10301
- href?: undefined;
10302
- isLoading?: undefined;
10303
- isDisabled?: undefined;
10304
- secondaryIcon?: undefined;
10305
- } | {
10306
- id: string;
10307
- href: string;
10308
- title: string;
10309
- subtitle: string;
10310
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10311
- isDisabled: boolean;
10312
- ariaLabel: string;
10313
- isLoading?: undefined;
10314
- secondaryIcon?: undefined;
10315
- } | {
10316
- id: string;
10317
- href: string;
10318
- title: string;
10319
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10320
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10321
- ariaLabel: string;
10322
- subtitle?: undefined;
10323
- isLoading?: undefined;
10324
- isDisabled?: undefined;
10325
- })[];
10326
- } | {
10327
- id: number;
10328
- label: string;
10329
- tiles: {
10330
- id: string;
10331
- customContent: import("react/jsx-runtime").JSX.Element;
10332
- ariaLabel: string;
10333
- }[];
10334
- };
10335
- 7: {
10336
- id: number;
10337
- label: string;
10338
- tiles: ({
10339
- id: string;
10340
- href: string;
10341
- title: string;
10342
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10343
- ariaLabel: string;
10344
- subtitle?: undefined;
10345
- } | {
10346
- id: string;
10347
- href: string;
10348
- title: string;
10349
- subtitle: string;
10350
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10351
- ariaLabel: string;
10352
- })[];
10353
- } | {
10354
- id: number;
10355
- label: string;
10356
- tiles: ({
10357
- id: string;
10358
- href: string;
10359
- title: string;
10360
- subtitle: string;
10361
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10362
- ariaLabel: string;
10363
- secondaryIcon?: undefined;
10364
- } | {
10365
- id: string;
10366
- href: string;
10367
- title: string;
10368
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10369
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10370
- ariaLabel: string;
10371
- subtitle?: undefined;
10372
- })[];
10373
- } | {
10374
- id: number;
10375
- label: string;
10376
- tiles: ({
10377
- id: string;
10378
- href: string;
10379
- title: string;
10380
- subtitle: string;
10381
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10382
- isLoading: boolean;
10383
- ariaLabel: string;
10384
- isDisabled?: undefined;
10385
- secondaryIcon?: undefined;
10386
- } | {
10387
- id: string;
10388
- title: string;
10389
- subtitle: string;
10390
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10391
- ariaLabel: string;
10392
- href?: undefined;
10393
- isLoading?: undefined;
10394
- isDisabled?: undefined;
10395
- secondaryIcon?: undefined;
10396
- } | {
10397
- id: string;
10398
- href: string;
10399
- title: string;
10400
- subtitle: string;
10401
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10402
- isDisabled: boolean;
10403
- ariaLabel: string;
10404
- isLoading?: undefined;
10405
- secondaryIcon?: undefined;
10406
- } | {
10407
- id: string;
10408
- href: string;
10409
- title: string;
10410
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10411
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10412
- ariaLabel: string;
10413
- subtitle?: undefined;
10414
- isLoading?: undefined;
10415
- isDisabled?: undefined;
10416
- })[];
10417
- } | {
10418
- id: number;
10419
- label: string;
10420
- tiles: {
10421
- id: string;
10422
- customContent: import("react/jsx-runtime").JSX.Element;
10423
- ariaLabel: string;
10424
- }[];
10425
- };
9790
+ 1: import("..").TileGroup;
9791
+ 2: import("..").TileGroup;
9792
+ 3: import("..").TileGroup;
9793
+ 4: import("..").TileGroup;
9794
+ 5: import("..").TileGroup;
9795
+ 6: import("..").TileGroup;
9796
+ 7: import("..").TileGroup;
9797
+ 8: import("..").TileGroup;
10426
9798
  };
10427
9799
  };
10428
9800
  tasksControllerConfig: {
@@ -10452,188 +9824,8 @@ export declare const ThemeG10: {
10452
9824
  type: string;
10453
9825
  dropdown: {
10454
9826
  label: string;
10455
- allTileGroups: ({
10456
- id: number;
10457
- label: string;
10458
- tiles: ({
10459
- id: string;
10460
- href: string;
10461
- title: string;
10462
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10463
- ariaLabel: string;
10464
- subtitle?: undefined;
10465
- } | {
10466
- id: string;
10467
- href: string;
10468
- title: string;
10469
- subtitle: string;
10470
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10471
- ariaLabel: string;
10472
- })[];
10473
- } | {
10474
- id: number;
10475
- label: string;
10476
- tiles: ({
10477
- id: string;
10478
- href: string;
10479
- title: string;
10480
- subtitle: string;
10481
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10482
- ariaLabel: string;
10483
- secondaryIcon?: undefined;
10484
- } | {
10485
- id: string;
10486
- href: string;
10487
- title: string;
10488
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10489
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10490
- ariaLabel: string;
10491
- subtitle?: undefined;
10492
- })[];
10493
- } | {
10494
- id: number;
10495
- label: string;
10496
- tiles: ({
10497
- id: string;
10498
- href: string;
10499
- title: string;
10500
- subtitle: string;
10501
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10502
- isLoading: boolean;
10503
- ariaLabel: string;
10504
- isDisabled?: undefined;
10505
- secondaryIcon?: undefined;
10506
- } | {
10507
- id: string;
10508
- title: string;
10509
- subtitle: string;
10510
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10511
- ariaLabel: string;
10512
- href?: undefined;
10513
- isLoading?: undefined;
10514
- isDisabled?: undefined;
10515
- secondaryIcon?: undefined;
10516
- } | {
10517
- id: string;
10518
- href: string;
10519
- title: string;
10520
- subtitle: string;
10521
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10522
- isDisabled: boolean;
10523
- ariaLabel: string;
10524
- isLoading?: undefined;
10525
- secondaryIcon?: undefined;
10526
- } | {
10527
- id: string;
10528
- href: string;
10529
- title: string;
10530
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10531
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10532
- ariaLabel: string;
10533
- subtitle?: undefined;
10534
- isLoading?: undefined;
10535
- isDisabled?: undefined;
10536
- })[];
10537
- } | {
10538
- id: number;
10539
- label: string;
10540
- tiles: {
10541
- id: string;
10542
- customContent: import("react/jsx-runtime").JSX.Element;
10543
- ariaLabel: string;
10544
- }[];
10545
- })[];
10546
- selectedTileGroup: {
10547
- id: number;
10548
- label: string;
10549
- tiles: ({
10550
- id: string;
10551
- href: string;
10552
- title: string;
10553
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10554
- ariaLabel: string;
10555
- subtitle?: undefined;
10556
- } | {
10557
- id: string;
10558
- href: string;
10559
- title: string;
10560
- subtitle: string;
10561
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10562
- ariaLabel: string;
10563
- })[];
10564
- } | {
10565
- id: number;
10566
- label: string;
10567
- tiles: ({
10568
- id: string;
10569
- href: string;
10570
- title: string;
10571
- subtitle: string;
10572
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10573
- ariaLabel: string;
10574
- secondaryIcon?: undefined;
10575
- } | {
10576
- id: string;
10577
- href: string;
10578
- title: string;
10579
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10580
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10581
- ariaLabel: string;
10582
- subtitle?: undefined;
10583
- })[];
10584
- } | {
10585
- id: number;
10586
- label: string;
10587
- tiles: ({
10588
- id: string;
10589
- href: string;
10590
- title: string;
10591
- subtitle: string;
10592
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10593
- isLoading: boolean;
10594
- ariaLabel: string;
10595
- isDisabled?: undefined;
10596
- secondaryIcon?: undefined;
10597
- } | {
10598
- id: string;
10599
- title: string;
10600
- subtitle: string;
10601
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10602
- ariaLabel: string;
10603
- href?: undefined;
10604
- isLoading?: undefined;
10605
- isDisabled?: undefined;
10606
- secondaryIcon?: undefined;
10607
- } | {
10608
- id: string;
10609
- href: string;
10610
- title: string;
10611
- subtitle: string;
10612
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10613
- isDisabled: boolean;
10614
- ariaLabel: string;
10615
- isLoading?: undefined;
10616
- secondaryIcon?: undefined;
10617
- } | {
10618
- id: string;
10619
- href: string;
10620
- title: string;
10621
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10622
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10623
- ariaLabel: string;
10624
- subtitle?: undefined;
10625
- isLoading?: undefined;
10626
- isDisabled?: undefined;
10627
- })[];
10628
- } | {
10629
- id: number;
10630
- label: string;
10631
- tiles: {
10632
- id: string;
10633
- customContent: import("react/jsx-runtime").JSX.Element;
10634
- ariaLabel: string;
10635
- }[];
10636
- };
9827
+ allTileGroups: import("..").TileGroup[];
9828
+ selectedTileGroup: import("..").TileGroup;
10637
9829
  setSelectedTileGroup: () => void;
10638
9830
  ariaLabel: string;
10639
9831
  };
@@ -10698,97 +9890,7 @@ export declare const ThemeG10: {
10698
9890
  };
10699
9891
  };
10700
9892
  args: {
10701
- allTileGroups: ({
10702
- id: number;
10703
- label: string;
10704
- tiles: ({
10705
- id: string;
10706
- href: string;
10707
- title: string;
10708
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10709
- ariaLabel: string;
10710
- subtitle?: undefined;
10711
- } | {
10712
- id: string;
10713
- href: string;
10714
- title: string;
10715
- subtitle: string;
10716
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10717
- ariaLabel: string;
10718
- })[];
10719
- } | {
10720
- id: number;
10721
- label: string;
10722
- tiles: ({
10723
- id: string;
10724
- href: string;
10725
- title: string;
10726
- subtitle: string;
10727
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10728
- ariaLabel: string;
10729
- secondaryIcon?: undefined;
10730
- } | {
10731
- id: string;
10732
- href: string;
10733
- title: string;
10734
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10735
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10736
- ariaLabel: string;
10737
- subtitle?: undefined;
10738
- })[];
10739
- } | {
10740
- id: number;
10741
- label: string;
10742
- tiles: ({
10743
- id: string;
10744
- href: string;
10745
- title: string;
10746
- subtitle: string;
10747
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10748
- isLoading: boolean;
10749
- ariaLabel: string;
10750
- isDisabled?: undefined;
10751
- secondaryIcon?: undefined;
10752
- } | {
10753
- id: string;
10754
- title: string;
10755
- subtitle: string;
10756
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10757
- ariaLabel: string;
10758
- href?: undefined;
10759
- isLoading?: undefined;
10760
- isDisabled?: undefined;
10761
- secondaryIcon?: undefined;
10762
- } | {
10763
- id: string;
10764
- href: string;
10765
- title: string;
10766
- subtitle: string;
10767
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10768
- isDisabled: boolean;
10769
- ariaLabel: string;
10770
- isLoading?: undefined;
10771
- secondaryIcon?: undefined;
10772
- } | {
10773
- id: string;
10774
- href: string;
10775
- title: string;
10776
- mainIcon: import("@carbon/icons-react").CarbonIconType;
10777
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
10778
- ariaLabel: string;
10779
- subtitle?: undefined;
10780
- isLoading?: undefined;
10781
- isDisabled?: undefined;
10782
- })[];
10783
- } | {
10784
- id: number;
10785
- label: string;
10786
- tiles: {
10787
- id: string;
10788
- customContent: import("react/jsx-runtime").JSX.Element;
10789
- ariaLabel: string;
10790
- }[];
10791
- })[];
9893
+ allTileGroups: import("..").TileGroup[];
10792
9894
  tasksControllerConfig: number;
10793
9895
  workspaceSelectorConfig: number;
10794
9896
  description: string;
@@ -20465,773 +19567,145 @@ export declare const ThemeG100: {
20465
19567
  ml2?: undefined;
20466
19568
  bm?: undefined;
20467
19569
  })[];
20468
- nm: string;
20469
- np: number;
20470
- cix: number;
20471
- bm: number;
20472
- ix: number;
20473
- mn: string;
20474
- hd: boolean;
20475
- }[];
20476
- ip: number;
20477
- op: number;
20478
- st: number;
20479
- ct: number;
20480
- bm: number;
20481
- parent?: undefined;
20482
- })[];
20483
- }[];
20484
- layers: {
20485
- ddd: number;
20486
- ind: number;
20487
- ty: number;
20488
- nm: string;
20489
- refId: string;
20490
- sr: number;
20491
- ks: {
20492
- o: {
20493
- a: number;
20494
- k: number;
20495
- ix: number;
20496
- };
20497
- r: {
20498
- a: number;
20499
- k: number;
20500
- ix: number;
20501
- };
20502
- p: {
20503
- a: number;
20504
- k: number[];
20505
- ix: number;
20506
- l: number;
20507
- };
20508
- a: {
20509
- a: number;
20510
- k: number[];
20511
- ix: number;
20512
- l: number;
20513
- };
20514
- s: {
20515
- a: number;
20516
- k: number[];
20517
- ix: number;
20518
- l: number;
20519
- };
20520
- };
20521
- ao: number;
20522
- w: number;
20523
- h: number;
20524
- ip: number;
20525
- op: number;
20526
- st: number;
20527
- bm: number;
20528
- }[];
20529
- markers: {
20530
- tm: number;
20531
- cm: string;
20532
- dr: number;
20533
- }[];
20534
- props: {};
20535
- };
20536
- };
20537
- };
20538
- headerStatic: {
20539
- description: string;
20540
- type: string;
20541
- control: {
20542
- type: string;
20543
- labels: {
20544
- 0: string;
20545
- 1: string;
20546
- 2: string;
20547
- 3: string;
20548
- 4: string;
20549
- 5: string;
20550
- 6: string;
20551
- 7: string;
20552
- 8: string;
20553
- 9: string;
20554
- 10: string;
20555
- };
20556
- };
20557
- options: number[];
20558
- mapping: {
20559
- 0: null;
20560
- 1: any;
20561
- 2: any;
20562
- 3: any;
20563
- 4: any;
20564
- 5: any;
20565
- 6: any;
20566
- 7: any;
20567
- 8: any;
20568
- 9: any;
20569
- 10: any;
20570
- };
20571
- };
20572
- productName: {
20573
- description: string;
20574
- };
20575
- disabledTaskLabel: {
20576
- description: string;
20577
- };
20578
- selectedTileGroup: {
20579
- description: string;
20580
- type: string;
20581
- control: {
20582
- type: string;
20583
- labels: {
20584
- 0: string;
20585
- 1: string;
20586
- 2: string;
20587
- 3: string;
20588
- 4: string;
20589
- 5: string;
20590
- 6: string;
20591
- 7: string;
20592
- };
20593
- };
20594
- options: number[];
20595
- mapping: {
20596
- 0: null;
20597
- 1: {
20598
- id: number;
20599
- label: string;
20600
- tiles: ({
20601
- id: string;
20602
- href: string;
20603
- title: string;
20604
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20605
- ariaLabel: string;
20606
- subtitle?: undefined;
20607
- } | {
20608
- id: string;
20609
- href: string;
20610
- title: string;
20611
- subtitle: string;
20612
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20613
- ariaLabel: string;
20614
- })[];
20615
- } | {
20616
- id: number;
20617
- label: string;
20618
- tiles: ({
20619
- id: string;
20620
- href: string;
20621
- title: string;
20622
- subtitle: string;
20623
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20624
- ariaLabel: string;
20625
- secondaryIcon?: undefined;
20626
- } | {
20627
- id: string;
20628
- href: string;
20629
- title: string;
20630
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20631
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
20632
- ariaLabel: string;
20633
- subtitle?: undefined;
20634
- })[];
20635
- } | {
20636
- id: number;
20637
- label: string;
20638
- tiles: ({
20639
- id: string;
20640
- href: string;
20641
- title: string;
20642
- subtitle: string;
20643
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20644
- isLoading: boolean;
20645
- ariaLabel: string;
20646
- isDisabled?: undefined;
20647
- secondaryIcon?: undefined;
20648
- } | {
20649
- id: string;
20650
- title: string;
20651
- subtitle: string;
20652
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20653
- ariaLabel: string;
20654
- href?: undefined;
20655
- isLoading?: undefined;
20656
- isDisabled?: undefined;
20657
- secondaryIcon?: undefined;
20658
- } | {
20659
- id: string;
20660
- href: string;
20661
- title: string;
20662
- subtitle: string;
20663
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20664
- isDisabled: boolean;
20665
- ariaLabel: string;
20666
- isLoading?: undefined;
20667
- secondaryIcon?: undefined;
20668
- } | {
20669
- id: string;
20670
- href: string;
20671
- title: string;
20672
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20673
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
20674
- ariaLabel: string;
20675
- subtitle?: undefined;
20676
- isLoading?: undefined;
20677
- isDisabled?: undefined;
20678
- })[];
20679
- } | {
20680
- id: number;
20681
- label: string;
20682
- tiles: {
20683
- id: string;
20684
- customContent: import("react/jsx-runtime").JSX.Element;
20685
- ariaLabel: string;
20686
- }[];
20687
- };
20688
- 2: {
20689
- id: number;
20690
- label: string;
20691
- tiles: ({
20692
- id: string;
20693
- href: string;
20694
- title: string;
20695
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20696
- ariaLabel: string;
20697
- subtitle?: undefined;
20698
- } | {
20699
- id: string;
20700
- href: string;
20701
- title: string;
20702
- subtitle: string;
20703
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20704
- ariaLabel: string;
20705
- })[];
20706
- } | {
20707
- id: number;
20708
- label: string;
20709
- tiles: ({
20710
- id: string;
20711
- href: string;
20712
- title: string;
20713
- subtitle: string;
20714
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20715
- ariaLabel: string;
20716
- secondaryIcon?: undefined;
20717
- } | {
20718
- id: string;
20719
- href: string;
20720
- title: string;
20721
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20722
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
20723
- ariaLabel: string;
20724
- subtitle?: undefined;
20725
- })[];
20726
- } | {
20727
- id: number;
20728
- label: string;
20729
- tiles: ({
20730
- id: string;
20731
- href: string;
20732
- title: string;
20733
- subtitle: string;
20734
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20735
- isLoading: boolean;
20736
- ariaLabel: string;
20737
- isDisabled?: undefined;
20738
- secondaryIcon?: undefined;
20739
- } | {
20740
- id: string;
20741
- title: string;
20742
- subtitle: string;
20743
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20744
- ariaLabel: string;
20745
- href?: undefined;
20746
- isLoading?: undefined;
20747
- isDisabled?: undefined;
20748
- secondaryIcon?: undefined;
20749
- } | {
20750
- id: string;
20751
- href: string;
20752
- title: string;
20753
- subtitle: string;
20754
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20755
- isDisabled: boolean;
20756
- ariaLabel: string;
20757
- isLoading?: undefined;
20758
- secondaryIcon?: undefined;
20759
- } | {
20760
- id: string;
20761
- href: string;
20762
- title: string;
20763
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20764
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
20765
- ariaLabel: string;
20766
- subtitle?: undefined;
20767
- isLoading?: undefined;
20768
- isDisabled?: undefined;
20769
- })[];
20770
- } | {
20771
- id: number;
20772
- label: string;
20773
- tiles: {
20774
- id: string;
20775
- customContent: import("react/jsx-runtime").JSX.Element;
20776
- ariaLabel: string;
20777
- }[];
20778
- };
20779
- 3: {
20780
- id: number;
20781
- label: string;
20782
- tiles: ({
20783
- id: string;
20784
- href: string;
20785
- title: string;
20786
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20787
- ariaLabel: string;
20788
- subtitle?: undefined;
20789
- } | {
20790
- id: string;
20791
- href: string;
20792
- title: string;
20793
- subtitle: string;
20794
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20795
- ariaLabel: string;
20796
- })[];
20797
- } | {
20798
- id: number;
20799
- label: string;
20800
- tiles: ({
20801
- id: string;
20802
- href: string;
20803
- title: string;
20804
- subtitle: string;
20805
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20806
- ariaLabel: string;
20807
- secondaryIcon?: undefined;
20808
- } | {
20809
- id: string;
20810
- href: string;
20811
- title: string;
20812
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20813
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
20814
- ariaLabel: string;
20815
- subtitle?: undefined;
20816
- })[];
20817
- } | {
20818
- id: number;
20819
- label: string;
20820
- tiles: ({
20821
- id: string;
20822
- href: string;
20823
- title: string;
20824
- subtitle: string;
20825
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20826
- isLoading: boolean;
20827
- ariaLabel: string;
20828
- isDisabled?: undefined;
20829
- secondaryIcon?: undefined;
20830
- } | {
20831
- id: string;
20832
- title: string;
20833
- subtitle: string;
20834
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20835
- ariaLabel: string;
20836
- href?: undefined;
20837
- isLoading?: undefined;
20838
- isDisabled?: undefined;
20839
- secondaryIcon?: undefined;
20840
- } | {
20841
- id: string;
20842
- href: string;
20843
- title: string;
20844
- subtitle: string;
20845
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20846
- isDisabled: boolean;
20847
- ariaLabel: string;
20848
- isLoading?: undefined;
20849
- secondaryIcon?: undefined;
20850
- } | {
20851
- id: string;
20852
- href: string;
20853
- title: string;
20854
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20855
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
20856
- ariaLabel: string;
20857
- subtitle?: undefined;
20858
- isLoading?: undefined;
20859
- isDisabled?: undefined;
20860
- })[];
20861
- } | {
20862
- id: number;
20863
- label: string;
20864
- tiles: {
20865
- id: string;
20866
- customContent: import("react/jsx-runtime").JSX.Element;
20867
- ariaLabel: string;
20868
- }[];
20869
- };
20870
- 4: {
20871
- id: number;
20872
- label: string;
20873
- tiles: ({
20874
- id: string;
20875
- href: string;
20876
- title: string;
20877
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20878
- ariaLabel: string;
20879
- subtitle?: undefined;
20880
- } | {
20881
- id: string;
20882
- href: string;
20883
- title: string;
20884
- subtitle: string;
20885
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20886
- ariaLabel: string;
20887
- })[];
20888
- } | {
20889
- id: number;
20890
- label: string;
20891
- tiles: ({
20892
- id: string;
20893
- href: string;
20894
- title: string;
20895
- subtitle: string;
20896
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20897
- ariaLabel: string;
20898
- secondaryIcon?: undefined;
20899
- } | {
20900
- id: string;
20901
- href: string;
20902
- title: string;
20903
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20904
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
20905
- ariaLabel: string;
20906
- subtitle?: undefined;
20907
- })[];
20908
- } | {
20909
- id: number;
20910
- label: string;
20911
- tiles: ({
20912
- id: string;
20913
- href: string;
20914
- title: string;
20915
- subtitle: string;
20916
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20917
- isLoading: boolean;
20918
- ariaLabel: string;
20919
- isDisabled?: undefined;
20920
- secondaryIcon?: undefined;
20921
- } | {
20922
- id: string;
20923
- title: string;
20924
- subtitle: string;
20925
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20926
- ariaLabel: string;
20927
- href?: undefined;
20928
- isLoading?: undefined;
20929
- isDisabled?: undefined;
20930
- secondaryIcon?: undefined;
20931
- } | {
20932
- id: string;
20933
- href: string;
20934
- title: string;
20935
- subtitle: string;
20936
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20937
- isDisabled: boolean;
20938
- ariaLabel: string;
20939
- isLoading?: undefined;
20940
- secondaryIcon?: undefined;
20941
- } | {
20942
- id: string;
20943
- href: string;
20944
- title: string;
20945
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20946
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
20947
- ariaLabel: string;
20948
- subtitle?: undefined;
20949
- isLoading?: undefined;
20950
- isDisabled?: undefined;
20951
- })[];
20952
- } | {
20953
- id: number;
20954
- label: string;
20955
- tiles: {
20956
- id: string;
20957
- customContent: import("react/jsx-runtime").JSX.Element;
20958
- ariaLabel: string;
19570
+ nm: string;
19571
+ np: number;
19572
+ cix: number;
19573
+ bm: number;
19574
+ ix: number;
19575
+ mn: string;
19576
+ hd: boolean;
19577
+ }[];
19578
+ ip: number;
19579
+ op: number;
19580
+ st: number;
19581
+ ct: number;
19582
+ bm: number;
19583
+ parent?: undefined;
19584
+ })[];
20959
19585
  }[];
20960
- };
20961
- 5: {
20962
- id: number;
20963
- label: string;
20964
- tiles: ({
20965
- id: string;
20966
- href: string;
20967
- title: string;
20968
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20969
- ariaLabel: string;
20970
- subtitle?: undefined;
20971
- } | {
20972
- id: string;
20973
- href: string;
20974
- title: string;
20975
- subtitle: string;
20976
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20977
- ariaLabel: string;
20978
- })[];
20979
- } | {
20980
- id: number;
20981
- label: string;
20982
- tiles: ({
20983
- id: string;
20984
- href: string;
20985
- title: string;
20986
- subtitle: string;
20987
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20988
- ariaLabel: string;
20989
- secondaryIcon?: undefined;
20990
- } | {
20991
- id: string;
20992
- href: string;
20993
- title: string;
20994
- mainIcon: import("@carbon/icons-react").CarbonIconType;
20995
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
20996
- ariaLabel: string;
20997
- subtitle?: undefined;
20998
- })[];
20999
- } | {
21000
- id: number;
21001
- label: string;
21002
- tiles: ({
21003
- id: string;
21004
- href: string;
21005
- title: string;
21006
- subtitle: string;
21007
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21008
- isLoading: boolean;
21009
- ariaLabel: string;
21010
- isDisabled?: undefined;
21011
- secondaryIcon?: undefined;
21012
- } | {
21013
- id: string;
21014
- title: string;
21015
- subtitle: string;
21016
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21017
- ariaLabel: string;
21018
- href?: undefined;
21019
- isLoading?: undefined;
21020
- isDisabled?: undefined;
21021
- secondaryIcon?: undefined;
21022
- } | {
21023
- id: string;
21024
- href: string;
21025
- title: string;
21026
- subtitle: string;
21027
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21028
- isDisabled: boolean;
21029
- ariaLabel: string;
21030
- isLoading?: undefined;
21031
- secondaryIcon?: undefined;
21032
- } | {
21033
- id: string;
21034
- href: string;
21035
- title: string;
21036
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21037
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21038
- ariaLabel: string;
21039
- subtitle?: undefined;
21040
- isLoading?: undefined;
21041
- isDisabled?: undefined;
21042
- })[];
21043
- } | {
21044
- id: number;
21045
- label: string;
21046
- tiles: {
21047
- id: string;
21048
- customContent: import("react/jsx-runtime").JSX.Element;
21049
- ariaLabel: string;
19586
+ layers: {
19587
+ ddd: number;
19588
+ ind: number;
19589
+ ty: number;
19590
+ nm: string;
19591
+ refId: string;
19592
+ sr: number;
19593
+ ks: {
19594
+ o: {
19595
+ a: number;
19596
+ k: number;
19597
+ ix: number;
19598
+ };
19599
+ r: {
19600
+ a: number;
19601
+ k: number;
19602
+ ix: number;
19603
+ };
19604
+ p: {
19605
+ a: number;
19606
+ k: number[];
19607
+ ix: number;
19608
+ l: number;
19609
+ };
19610
+ a: {
19611
+ a: number;
19612
+ k: number[];
19613
+ ix: number;
19614
+ l: number;
19615
+ };
19616
+ s: {
19617
+ a: number;
19618
+ k: number[];
19619
+ ix: number;
19620
+ l: number;
19621
+ };
19622
+ };
19623
+ ao: number;
19624
+ w: number;
19625
+ h: number;
19626
+ ip: number;
19627
+ op: number;
19628
+ st: number;
19629
+ bm: number;
21050
19630
  }[];
21051
- };
21052
- 6: {
21053
- id: number;
21054
- label: string;
21055
- tiles: ({
21056
- id: string;
21057
- href: string;
21058
- title: string;
21059
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21060
- ariaLabel: string;
21061
- subtitle?: undefined;
21062
- } | {
21063
- id: string;
21064
- href: string;
21065
- title: string;
21066
- subtitle: string;
21067
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21068
- ariaLabel: string;
21069
- })[];
21070
- } | {
21071
- id: number;
21072
- label: string;
21073
- tiles: ({
21074
- id: string;
21075
- href: string;
21076
- title: string;
21077
- subtitle: string;
21078
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21079
- ariaLabel: string;
21080
- secondaryIcon?: undefined;
21081
- } | {
21082
- id: string;
21083
- href: string;
21084
- title: string;
21085
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21086
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21087
- ariaLabel: string;
21088
- subtitle?: undefined;
21089
- })[];
21090
- } | {
21091
- id: number;
21092
- label: string;
21093
- tiles: ({
21094
- id: string;
21095
- href: string;
21096
- title: string;
21097
- subtitle: string;
21098
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21099
- isLoading: boolean;
21100
- ariaLabel: string;
21101
- isDisabled?: undefined;
21102
- secondaryIcon?: undefined;
21103
- } | {
21104
- id: string;
21105
- title: string;
21106
- subtitle: string;
21107
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21108
- ariaLabel: string;
21109
- href?: undefined;
21110
- isLoading?: undefined;
21111
- isDisabled?: undefined;
21112
- secondaryIcon?: undefined;
21113
- } | {
21114
- id: string;
21115
- href: string;
21116
- title: string;
21117
- subtitle: string;
21118
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21119
- isDisabled: boolean;
21120
- ariaLabel: string;
21121
- isLoading?: undefined;
21122
- secondaryIcon?: undefined;
21123
- } | {
21124
- id: string;
21125
- href: string;
21126
- title: string;
21127
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21128
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21129
- ariaLabel: string;
21130
- subtitle?: undefined;
21131
- isLoading?: undefined;
21132
- isDisabled?: undefined;
21133
- })[];
21134
- } | {
21135
- id: number;
21136
- label: string;
21137
- tiles: {
21138
- id: string;
21139
- customContent: import("react/jsx-runtime").JSX.Element;
21140
- ariaLabel: string;
19631
+ markers: {
19632
+ tm: number;
19633
+ cm: string;
19634
+ dr: number;
21141
19635
  }[];
19636
+ props: {};
21142
19637
  };
21143
- 7: {
21144
- id: number;
21145
- label: string;
21146
- tiles: ({
21147
- id: string;
21148
- href: string;
21149
- title: string;
21150
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21151
- ariaLabel: string;
21152
- subtitle?: undefined;
21153
- } | {
21154
- id: string;
21155
- href: string;
21156
- title: string;
21157
- subtitle: string;
21158
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21159
- ariaLabel: string;
21160
- })[];
21161
- } | {
21162
- id: number;
21163
- label: string;
21164
- tiles: ({
21165
- id: string;
21166
- href: string;
21167
- title: string;
21168
- subtitle: string;
21169
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21170
- ariaLabel: string;
21171
- secondaryIcon?: undefined;
21172
- } | {
21173
- id: string;
21174
- href: string;
21175
- title: string;
21176
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21177
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21178
- ariaLabel: string;
21179
- subtitle?: undefined;
21180
- })[];
21181
- } | {
21182
- id: number;
21183
- label: string;
21184
- tiles: ({
21185
- id: string;
21186
- href: string;
21187
- title: string;
21188
- subtitle: string;
21189
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21190
- isLoading: boolean;
21191
- ariaLabel: string;
21192
- isDisabled?: undefined;
21193
- secondaryIcon?: undefined;
21194
- } | {
21195
- id: string;
21196
- title: string;
21197
- subtitle: string;
21198
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21199
- ariaLabel: string;
21200
- href?: undefined;
21201
- isLoading?: undefined;
21202
- isDisabled?: undefined;
21203
- secondaryIcon?: undefined;
21204
- } | {
21205
- id: string;
21206
- href: string;
21207
- title: string;
21208
- subtitle: string;
21209
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21210
- isDisabled: boolean;
21211
- ariaLabel: string;
21212
- isLoading?: undefined;
21213
- secondaryIcon?: undefined;
21214
- } | {
21215
- id: string;
21216
- href: string;
21217
- title: string;
21218
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21219
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21220
- ariaLabel: string;
21221
- subtitle?: undefined;
21222
- isLoading?: undefined;
21223
- isDisabled?: undefined;
21224
- })[];
21225
- } | {
21226
- id: number;
21227
- label: string;
21228
- tiles: {
21229
- id: string;
21230
- customContent: import("react/jsx-runtime").JSX.Element;
21231
- ariaLabel: string;
21232
- }[];
19638
+ };
19639
+ };
19640
+ headerStatic: {
19641
+ description: string;
19642
+ type: string;
19643
+ control: {
19644
+ type: string;
19645
+ labels: {
19646
+ 0: string;
19647
+ 1: string;
19648
+ 2: string;
19649
+ 3: string;
19650
+ 4: string;
19651
+ 5: string;
19652
+ 6: string;
19653
+ 7: string;
19654
+ 8: string;
19655
+ 9: string;
19656
+ 10: string;
19657
+ };
19658
+ };
19659
+ options: number[];
19660
+ mapping: {
19661
+ 0: null;
19662
+ 1: any;
19663
+ 2: any;
19664
+ 3: any;
19665
+ 4: any;
19666
+ 5: any;
19667
+ 6: any;
19668
+ 7: any;
19669
+ 8: any;
19670
+ 9: any;
19671
+ 10: any;
19672
+ };
19673
+ };
19674
+ productName: {
19675
+ description: string;
19676
+ };
19677
+ disabledTaskLabel: {
19678
+ description: string;
19679
+ };
19680
+ selectedTileGroup: {
19681
+ description: string;
19682
+ type: string;
19683
+ control: {
19684
+ type: string;
19685
+ labels: {
19686
+ 0: string;
19687
+ 1: string;
19688
+ 2: string;
19689
+ 3: string;
19690
+ 4: string;
19691
+ 5: string;
19692
+ 6: string;
19693
+ 7: string;
19694
+ 8: string;
21233
19695
  };
21234
19696
  };
19697
+ options: number[];
19698
+ mapping: {
19699
+ 0: null;
19700
+ 1: import("..").TileGroup;
19701
+ 2: import("..").TileGroup;
19702
+ 3: import("..").TileGroup;
19703
+ 4: import("..").TileGroup;
19704
+ 5: import("..").TileGroup;
19705
+ 6: import("..").TileGroup;
19706
+ 7: import("..").TileGroup;
19707
+ 8: import("..").TileGroup;
19708
+ };
21235
19709
  };
21236
19710
  tasksControllerConfig: {
21237
19711
  description: string;
@@ -21260,188 +19734,8 @@ export declare const ThemeG100: {
21260
19734
  type: string;
21261
19735
  dropdown: {
21262
19736
  label: string;
21263
- allTileGroups: ({
21264
- id: number;
21265
- label: string;
21266
- tiles: ({
21267
- id: string;
21268
- href: string;
21269
- title: string;
21270
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21271
- ariaLabel: string;
21272
- subtitle?: undefined;
21273
- } | {
21274
- id: string;
21275
- href: string;
21276
- title: string;
21277
- subtitle: string;
21278
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21279
- ariaLabel: string;
21280
- })[];
21281
- } | {
21282
- id: number;
21283
- label: string;
21284
- tiles: ({
21285
- id: string;
21286
- href: string;
21287
- title: string;
21288
- subtitle: string;
21289
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21290
- ariaLabel: string;
21291
- secondaryIcon?: undefined;
21292
- } | {
21293
- id: string;
21294
- href: string;
21295
- title: string;
21296
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21297
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21298
- ariaLabel: string;
21299
- subtitle?: undefined;
21300
- })[];
21301
- } | {
21302
- id: number;
21303
- label: string;
21304
- tiles: ({
21305
- id: string;
21306
- href: string;
21307
- title: string;
21308
- subtitle: string;
21309
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21310
- isLoading: boolean;
21311
- ariaLabel: string;
21312
- isDisabled?: undefined;
21313
- secondaryIcon?: undefined;
21314
- } | {
21315
- id: string;
21316
- title: string;
21317
- subtitle: string;
21318
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21319
- ariaLabel: string;
21320
- href?: undefined;
21321
- isLoading?: undefined;
21322
- isDisabled?: undefined;
21323
- secondaryIcon?: undefined;
21324
- } | {
21325
- id: string;
21326
- href: string;
21327
- title: string;
21328
- subtitle: string;
21329
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21330
- isDisabled: boolean;
21331
- ariaLabel: string;
21332
- isLoading?: undefined;
21333
- secondaryIcon?: undefined;
21334
- } | {
21335
- id: string;
21336
- href: string;
21337
- title: string;
21338
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21339
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21340
- ariaLabel: string;
21341
- subtitle?: undefined;
21342
- isLoading?: undefined;
21343
- isDisabled?: undefined;
21344
- })[];
21345
- } | {
21346
- id: number;
21347
- label: string;
21348
- tiles: {
21349
- id: string;
21350
- customContent: import("react/jsx-runtime").JSX.Element;
21351
- ariaLabel: string;
21352
- }[];
21353
- })[];
21354
- selectedTileGroup: {
21355
- id: number;
21356
- label: string;
21357
- tiles: ({
21358
- id: string;
21359
- href: string;
21360
- title: string;
21361
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21362
- ariaLabel: string;
21363
- subtitle?: undefined;
21364
- } | {
21365
- id: string;
21366
- href: string;
21367
- title: string;
21368
- subtitle: string;
21369
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21370
- ariaLabel: string;
21371
- })[];
21372
- } | {
21373
- id: number;
21374
- label: string;
21375
- tiles: ({
21376
- id: string;
21377
- href: string;
21378
- title: string;
21379
- subtitle: string;
21380
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21381
- ariaLabel: string;
21382
- secondaryIcon?: undefined;
21383
- } | {
21384
- id: string;
21385
- href: string;
21386
- title: string;
21387
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21388
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21389
- ariaLabel: string;
21390
- subtitle?: undefined;
21391
- })[];
21392
- } | {
21393
- id: number;
21394
- label: string;
21395
- tiles: ({
21396
- id: string;
21397
- href: string;
21398
- title: string;
21399
- subtitle: string;
21400
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21401
- isLoading: boolean;
21402
- ariaLabel: string;
21403
- isDisabled?: undefined;
21404
- secondaryIcon?: undefined;
21405
- } | {
21406
- id: string;
21407
- title: string;
21408
- subtitle: string;
21409
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21410
- ariaLabel: string;
21411
- href?: undefined;
21412
- isLoading?: undefined;
21413
- isDisabled?: undefined;
21414
- secondaryIcon?: undefined;
21415
- } | {
21416
- id: string;
21417
- href: string;
21418
- title: string;
21419
- subtitle: string;
21420
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21421
- isDisabled: boolean;
21422
- ariaLabel: string;
21423
- isLoading?: undefined;
21424
- secondaryIcon?: undefined;
21425
- } | {
21426
- id: string;
21427
- href: string;
21428
- title: string;
21429
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21430
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21431
- ariaLabel: string;
21432
- subtitle?: undefined;
21433
- isLoading?: undefined;
21434
- isDisabled?: undefined;
21435
- })[];
21436
- } | {
21437
- id: number;
21438
- label: string;
21439
- tiles: {
21440
- id: string;
21441
- customContent: import("react/jsx-runtime").JSX.Element;
21442
- ariaLabel: string;
21443
- }[];
21444
- };
19737
+ allTileGroups: import("..").TileGroup[];
19738
+ selectedTileGroup: import("..").TileGroup;
21445
19739
  setSelectedTileGroup: () => void;
21446
19740
  ariaLabel: string;
21447
19741
  };
@@ -21506,97 +19800,7 @@ export declare const ThemeG100: {
21506
19800
  };
21507
19801
  };
21508
19802
  args: {
21509
- allTileGroups: ({
21510
- id: number;
21511
- label: string;
21512
- tiles: ({
21513
- id: string;
21514
- href: string;
21515
- title: string;
21516
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21517
- ariaLabel: string;
21518
- subtitle?: undefined;
21519
- } | {
21520
- id: string;
21521
- href: string;
21522
- title: string;
21523
- subtitle: string;
21524
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21525
- ariaLabel: string;
21526
- })[];
21527
- } | {
21528
- id: number;
21529
- label: string;
21530
- tiles: ({
21531
- id: string;
21532
- href: string;
21533
- title: string;
21534
- subtitle: string;
21535
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21536
- ariaLabel: string;
21537
- secondaryIcon?: undefined;
21538
- } | {
21539
- id: string;
21540
- href: string;
21541
- title: string;
21542
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21543
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21544
- ariaLabel: string;
21545
- subtitle?: undefined;
21546
- })[];
21547
- } | {
21548
- id: number;
21549
- label: string;
21550
- tiles: ({
21551
- id: string;
21552
- href: string;
21553
- title: string;
21554
- subtitle: string;
21555
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21556
- isLoading: boolean;
21557
- ariaLabel: string;
21558
- isDisabled?: undefined;
21559
- secondaryIcon?: undefined;
21560
- } | {
21561
- id: string;
21562
- title: string;
21563
- subtitle: string;
21564
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21565
- ariaLabel: string;
21566
- href?: undefined;
21567
- isLoading?: undefined;
21568
- isDisabled?: undefined;
21569
- secondaryIcon?: undefined;
21570
- } | {
21571
- id: string;
21572
- href: string;
21573
- title: string;
21574
- subtitle: string;
21575
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21576
- isDisabled: boolean;
21577
- ariaLabel: string;
21578
- isLoading?: undefined;
21579
- secondaryIcon?: undefined;
21580
- } | {
21581
- id: string;
21582
- href: string;
21583
- title: string;
21584
- mainIcon: import("@carbon/icons-react").CarbonIconType;
21585
- secondaryIcon: import("@carbon/icons-react").CarbonIconType;
21586
- ariaLabel: string;
21587
- subtitle?: undefined;
21588
- isLoading?: undefined;
21589
- isDisabled?: undefined;
21590
- })[];
21591
- } | {
21592
- id: number;
21593
- label: string;
21594
- tiles: {
21595
- id: string;
21596
- customContent: import("react/jsx-runtime").JSX.Element;
21597
- ariaLabel: string;
21598
- }[];
21599
- })[];
19803
+ allTileGroups: import("..").TileGroup[];
21600
19804
  tasksControllerConfig: number;
21601
19805
  workspaceSelectorConfig: number;
21602
19806
  description: string;