@carbon-labs/react-animated-header 0.14.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/__stories__/AnimatedHeader.stories.d.ts +882 -44
- package/es/__stories__/data/index.d.ts +112 -3
- package/es/assets/static/illustration_data_fabric_dark_05.svg.js +1 -1
- package/es/assets/static/illustration_data_fabric_light_04.svg.js +1 -1
- package/es/assets/static/illustration_watson_x_data_dark_03.svg.js +1 -1
- package/es/assets/static/illustration_watson_x_data_light_03.svg.js +1 -1
- package/es/components/AnimatedHeader/AnimatedHeader.d.ts +12 -31
- package/es/components/AnimatedHeader/AnimatedHeader.js +68 -101
- package/es/components/TasksController/TasksController.d.ts +30 -0
- package/es/components/TasksController/TasksController.js +73 -0
- package/es/components/Tiles/AIPromptTile/AIPromptTile.d.ts +6 -3
- package/es/components/Tiles/AIPromptTile/AIPromptTile.js +12 -6
- package/es/components/Tiles/BaseTile/BaseTile.d.ts +9 -5
- package/es/components/Tiles/BaseTile/BaseTile.js +5 -25
- package/es/components/Tiles/GlassTile/GlassTile.d.ts +9 -5
- package/es/components/Tiles/GlassTile/GlassTile.js +15 -4
- package/es/components/WorkspaceSelector/WorkspaceSelector.d.ts +27 -0
- package/es/components/WorkspaceSelector/WorkspaceSelector.js +57 -0
- package/es/index.d.ts +2 -0
- package/lib/__stories__/AnimatedHeader.stories.d.ts +882 -44
- package/lib/__stories__/data/index.d.ts +112 -3
- package/lib/assets/static/illustration_data_fabric_dark_05.svg.js +1 -1
- package/lib/assets/static/illustration_data_fabric_light_04.svg.js +1 -1
- package/lib/assets/static/illustration_watson_x_data_dark_03.svg.js +1 -1
- package/lib/assets/static/illustration_watson_x_data_light_03.svg.js +1 -1
- package/lib/components/AnimatedHeader/AnimatedHeader.d.ts +12 -31
- package/lib/components/AnimatedHeader/AnimatedHeader.js +67 -100
- package/lib/components/TasksController/TasksController.d.ts +30 -0
- package/lib/components/TasksController/TasksController.js +77 -0
- package/lib/components/Tiles/AIPromptTile/AIPromptTile.d.ts +6 -3
- package/lib/components/Tiles/AIPromptTile/AIPromptTile.js +11 -5
- package/lib/components/Tiles/BaseTile/BaseTile.d.ts +9 -5
- package/lib/components/Tiles/BaseTile/BaseTile.js +5 -25
- package/lib/components/Tiles/GlassTile/GlassTile.d.ts +9 -5
- package/lib/components/Tiles/GlassTile/GlassTile.js +14 -3
- package/lib/components/WorkspaceSelector/WorkspaceSelector.d.ts +27 -0
- package/lib/components/WorkspaceSelector/WorkspaceSelector.js +61 -0
- package/lib/index.d.ts +2 -0
- package/package.json +2 -2
- package/scss/AnimatedHeader/animated-header.scss +37 -6
- package/scss/Tiles/AIPromptTile/ai-prompt-tile.scss +22 -0
- package/scss/Tiles/GlassTile/glass-tile.scss +22 -0
|
@@ -9,12 +9,6 @@ export declare const ThemeG10: {
|
|
|
9
9
|
description: {
|
|
10
10
|
description: string;
|
|
11
11
|
};
|
|
12
|
-
handleHeaderItemsToString: {
|
|
13
|
-
description: string;
|
|
14
|
-
};
|
|
15
|
-
handleWorkspaceItemsToString: {
|
|
16
|
-
description: string;
|
|
17
|
-
};
|
|
18
12
|
headerAnimation: {
|
|
19
13
|
description: string;
|
|
20
14
|
type: string;
|
|
@@ -8236,6 +8230,9 @@ export declare const ThemeG10: {
|
|
|
8236
8230
|
productName: {
|
|
8237
8231
|
description: string;
|
|
8238
8232
|
};
|
|
8233
|
+
disabledTaskLabel: {
|
|
8234
|
+
description: string;
|
|
8235
|
+
};
|
|
8239
8236
|
selectedTileGroup: {
|
|
8240
8237
|
description: string;
|
|
8241
8238
|
type: string;
|
|
@@ -8251,6 +8248,7 @@ export declare const ThemeG10: {
|
|
|
8251
8248
|
6: string;
|
|
8252
8249
|
7: string;
|
|
8253
8250
|
8: string;
|
|
8251
|
+
9: string;
|
|
8254
8252
|
};
|
|
8255
8253
|
};
|
|
8256
8254
|
options: number[];
|
|
@@ -8281,6 +8279,26 @@ export declare const ThemeG10: {
|
|
|
8281
8279
|
title: string;
|
|
8282
8280
|
subtitle: string;
|
|
8283
8281
|
mainIcon: string;
|
|
8282
|
+
isLoading: boolean;
|
|
8283
|
+
isDisabled?: undefined;
|
|
8284
|
+
secondaryIcon?: undefined;
|
|
8285
|
+
} | {
|
|
8286
|
+
id: string;
|
|
8287
|
+
href: string;
|
|
8288
|
+
title: string;
|
|
8289
|
+
subtitle: string;
|
|
8290
|
+
mainIcon: string;
|
|
8291
|
+
isLoading?: undefined;
|
|
8292
|
+
isDisabled?: undefined;
|
|
8293
|
+
secondaryIcon?: undefined;
|
|
8294
|
+
} | {
|
|
8295
|
+
id: string;
|
|
8296
|
+
href: string;
|
|
8297
|
+
title: string;
|
|
8298
|
+
subtitle: string;
|
|
8299
|
+
mainIcon: string;
|
|
8300
|
+
isDisabled: boolean;
|
|
8301
|
+
isLoading?: undefined;
|
|
8284
8302
|
secondaryIcon?: undefined;
|
|
8285
8303
|
} | {
|
|
8286
8304
|
id: string;
|
|
@@ -8289,6 +8307,8 @@ export declare const ThemeG10: {
|
|
|
8289
8307
|
mainIcon: string;
|
|
8290
8308
|
secondaryIcon: string;
|
|
8291
8309
|
subtitle?: undefined;
|
|
8310
|
+
isLoading?: undefined;
|
|
8311
|
+
isDisabled?: undefined;
|
|
8292
8312
|
})[];
|
|
8293
8313
|
} | {
|
|
8294
8314
|
id: number;
|
|
@@ -8323,6 +8343,26 @@ export declare const ThemeG10: {
|
|
|
8323
8343
|
title: string;
|
|
8324
8344
|
subtitle: string;
|
|
8325
8345
|
mainIcon: string;
|
|
8346
|
+
isLoading: boolean;
|
|
8347
|
+
isDisabled?: undefined;
|
|
8348
|
+
secondaryIcon?: undefined;
|
|
8349
|
+
} | {
|
|
8350
|
+
id: string;
|
|
8351
|
+
href: string;
|
|
8352
|
+
title: string;
|
|
8353
|
+
subtitle: string;
|
|
8354
|
+
mainIcon: string;
|
|
8355
|
+
isLoading?: undefined;
|
|
8356
|
+
isDisabled?: undefined;
|
|
8357
|
+
secondaryIcon?: undefined;
|
|
8358
|
+
} | {
|
|
8359
|
+
id: string;
|
|
8360
|
+
href: string;
|
|
8361
|
+
title: string;
|
|
8362
|
+
subtitle: string;
|
|
8363
|
+
mainIcon: string;
|
|
8364
|
+
isDisabled: boolean;
|
|
8365
|
+
isLoading?: undefined;
|
|
8326
8366
|
secondaryIcon?: undefined;
|
|
8327
8367
|
} | {
|
|
8328
8368
|
id: string;
|
|
@@ -8331,6 +8371,8 @@ export declare const ThemeG10: {
|
|
|
8331
8371
|
mainIcon: string;
|
|
8332
8372
|
secondaryIcon: string;
|
|
8333
8373
|
subtitle?: undefined;
|
|
8374
|
+
isLoading?: undefined;
|
|
8375
|
+
isDisabled?: undefined;
|
|
8334
8376
|
})[];
|
|
8335
8377
|
} | {
|
|
8336
8378
|
id: number;
|
|
@@ -8365,6 +8407,26 @@ export declare const ThemeG10: {
|
|
|
8365
8407
|
title: string;
|
|
8366
8408
|
subtitle: string;
|
|
8367
8409
|
mainIcon: string;
|
|
8410
|
+
isLoading: boolean;
|
|
8411
|
+
isDisabled?: undefined;
|
|
8412
|
+
secondaryIcon?: undefined;
|
|
8413
|
+
} | {
|
|
8414
|
+
id: string;
|
|
8415
|
+
href: string;
|
|
8416
|
+
title: string;
|
|
8417
|
+
subtitle: string;
|
|
8418
|
+
mainIcon: string;
|
|
8419
|
+
isLoading?: undefined;
|
|
8420
|
+
isDisabled?: undefined;
|
|
8421
|
+
secondaryIcon?: undefined;
|
|
8422
|
+
} | {
|
|
8423
|
+
id: string;
|
|
8424
|
+
href: string;
|
|
8425
|
+
title: string;
|
|
8426
|
+
subtitle: string;
|
|
8427
|
+
mainIcon: string;
|
|
8428
|
+
isDisabled: boolean;
|
|
8429
|
+
isLoading?: undefined;
|
|
8368
8430
|
secondaryIcon?: undefined;
|
|
8369
8431
|
} | {
|
|
8370
8432
|
id: string;
|
|
@@ -8373,6 +8435,8 @@ export declare const ThemeG10: {
|
|
|
8373
8435
|
mainIcon: string;
|
|
8374
8436
|
secondaryIcon: string;
|
|
8375
8437
|
subtitle?: undefined;
|
|
8438
|
+
isLoading?: undefined;
|
|
8439
|
+
isDisabled?: undefined;
|
|
8376
8440
|
})[];
|
|
8377
8441
|
} | {
|
|
8378
8442
|
id: number;
|
|
@@ -8407,6 +8471,26 @@ export declare const ThemeG10: {
|
|
|
8407
8471
|
title: string;
|
|
8408
8472
|
subtitle: string;
|
|
8409
8473
|
mainIcon: string;
|
|
8474
|
+
isLoading: boolean;
|
|
8475
|
+
isDisabled?: undefined;
|
|
8476
|
+
secondaryIcon?: undefined;
|
|
8477
|
+
} | {
|
|
8478
|
+
id: string;
|
|
8479
|
+
href: string;
|
|
8480
|
+
title: string;
|
|
8481
|
+
subtitle: string;
|
|
8482
|
+
mainIcon: string;
|
|
8483
|
+
isLoading?: undefined;
|
|
8484
|
+
isDisabled?: undefined;
|
|
8485
|
+
secondaryIcon?: undefined;
|
|
8486
|
+
} | {
|
|
8487
|
+
id: string;
|
|
8488
|
+
href: string;
|
|
8489
|
+
title: string;
|
|
8490
|
+
subtitle: string;
|
|
8491
|
+
mainIcon: string;
|
|
8492
|
+
isDisabled: boolean;
|
|
8493
|
+
isLoading?: undefined;
|
|
8410
8494
|
secondaryIcon?: undefined;
|
|
8411
8495
|
} | {
|
|
8412
8496
|
id: string;
|
|
@@ -8415,6 +8499,8 @@ export declare const ThemeG10: {
|
|
|
8415
8499
|
mainIcon: string;
|
|
8416
8500
|
secondaryIcon: string;
|
|
8417
8501
|
subtitle?: undefined;
|
|
8502
|
+
isLoading?: undefined;
|
|
8503
|
+
isDisabled?: undefined;
|
|
8418
8504
|
})[];
|
|
8419
8505
|
} | {
|
|
8420
8506
|
id: number;
|
|
@@ -8449,6 +8535,26 @@ export declare const ThemeG10: {
|
|
|
8449
8535
|
title: string;
|
|
8450
8536
|
subtitle: string;
|
|
8451
8537
|
mainIcon: string;
|
|
8538
|
+
isLoading: boolean;
|
|
8539
|
+
isDisabled?: undefined;
|
|
8540
|
+
secondaryIcon?: undefined;
|
|
8541
|
+
} | {
|
|
8542
|
+
id: string;
|
|
8543
|
+
href: string;
|
|
8544
|
+
title: string;
|
|
8545
|
+
subtitle: string;
|
|
8546
|
+
mainIcon: string;
|
|
8547
|
+
isLoading?: undefined;
|
|
8548
|
+
isDisabled?: undefined;
|
|
8549
|
+
secondaryIcon?: undefined;
|
|
8550
|
+
} | {
|
|
8551
|
+
id: string;
|
|
8552
|
+
href: string;
|
|
8553
|
+
title: string;
|
|
8554
|
+
subtitle: string;
|
|
8555
|
+
mainIcon: string;
|
|
8556
|
+
isDisabled: boolean;
|
|
8557
|
+
isLoading?: undefined;
|
|
8452
8558
|
secondaryIcon?: undefined;
|
|
8453
8559
|
} | {
|
|
8454
8560
|
id: string;
|
|
@@ -8457,6 +8563,8 @@ export declare const ThemeG10: {
|
|
|
8457
8563
|
mainIcon: string;
|
|
8458
8564
|
secondaryIcon: string;
|
|
8459
8565
|
subtitle?: undefined;
|
|
8566
|
+
isLoading?: undefined;
|
|
8567
|
+
isDisabled?: undefined;
|
|
8460
8568
|
})[];
|
|
8461
8569
|
} | {
|
|
8462
8570
|
id: number;
|
|
@@ -8491,6 +8599,26 @@ export declare const ThemeG10: {
|
|
|
8491
8599
|
title: string;
|
|
8492
8600
|
subtitle: string;
|
|
8493
8601
|
mainIcon: string;
|
|
8602
|
+
isLoading: boolean;
|
|
8603
|
+
isDisabled?: undefined;
|
|
8604
|
+
secondaryIcon?: undefined;
|
|
8605
|
+
} | {
|
|
8606
|
+
id: string;
|
|
8607
|
+
href: string;
|
|
8608
|
+
title: string;
|
|
8609
|
+
subtitle: string;
|
|
8610
|
+
mainIcon: string;
|
|
8611
|
+
isLoading?: undefined;
|
|
8612
|
+
isDisabled?: undefined;
|
|
8613
|
+
secondaryIcon?: undefined;
|
|
8614
|
+
} | {
|
|
8615
|
+
id: string;
|
|
8616
|
+
href: string;
|
|
8617
|
+
title: string;
|
|
8618
|
+
subtitle: string;
|
|
8619
|
+
mainIcon: string;
|
|
8620
|
+
isDisabled: boolean;
|
|
8621
|
+
isLoading?: undefined;
|
|
8494
8622
|
secondaryIcon?: undefined;
|
|
8495
8623
|
} | {
|
|
8496
8624
|
id: string;
|
|
@@ -8499,6 +8627,8 @@ export declare const ThemeG10: {
|
|
|
8499
8627
|
mainIcon: string;
|
|
8500
8628
|
secondaryIcon: string;
|
|
8501
8629
|
subtitle?: undefined;
|
|
8630
|
+
isLoading?: undefined;
|
|
8631
|
+
isDisabled?: undefined;
|
|
8502
8632
|
})[];
|
|
8503
8633
|
} | {
|
|
8504
8634
|
id: number;
|
|
@@ -8533,6 +8663,26 @@ export declare const ThemeG10: {
|
|
|
8533
8663
|
title: string;
|
|
8534
8664
|
subtitle: string;
|
|
8535
8665
|
mainIcon: string;
|
|
8666
|
+
isLoading: boolean;
|
|
8667
|
+
isDisabled?: undefined;
|
|
8668
|
+
secondaryIcon?: undefined;
|
|
8669
|
+
} | {
|
|
8670
|
+
id: string;
|
|
8671
|
+
href: string;
|
|
8672
|
+
title: string;
|
|
8673
|
+
subtitle: string;
|
|
8674
|
+
mainIcon: string;
|
|
8675
|
+
isLoading?: undefined;
|
|
8676
|
+
isDisabled?: undefined;
|
|
8677
|
+
secondaryIcon?: undefined;
|
|
8678
|
+
} | {
|
|
8679
|
+
id: string;
|
|
8680
|
+
href: string;
|
|
8681
|
+
title: string;
|
|
8682
|
+
subtitle: string;
|
|
8683
|
+
mainIcon: string;
|
|
8684
|
+
isDisabled: boolean;
|
|
8685
|
+
isLoading?: undefined;
|
|
8536
8686
|
secondaryIcon?: undefined;
|
|
8537
8687
|
} | {
|
|
8538
8688
|
id: string;
|
|
@@ -8541,6 +8691,8 @@ export declare const ThemeG10: {
|
|
|
8541
8691
|
mainIcon: string;
|
|
8542
8692
|
secondaryIcon: string;
|
|
8543
8693
|
subtitle?: undefined;
|
|
8694
|
+
isLoading?: undefined;
|
|
8695
|
+
isDisabled?: undefined;
|
|
8544
8696
|
})[];
|
|
8545
8697
|
} | {
|
|
8546
8698
|
id: number;
|
|
@@ -8575,6 +8727,26 @@ export declare const ThemeG10: {
|
|
|
8575
8727
|
title: string;
|
|
8576
8728
|
subtitle: string;
|
|
8577
8729
|
mainIcon: string;
|
|
8730
|
+
isLoading: boolean;
|
|
8731
|
+
isDisabled?: undefined;
|
|
8732
|
+
secondaryIcon?: undefined;
|
|
8733
|
+
} | {
|
|
8734
|
+
id: string;
|
|
8735
|
+
href: string;
|
|
8736
|
+
title: string;
|
|
8737
|
+
subtitle: string;
|
|
8738
|
+
mainIcon: string;
|
|
8739
|
+
isLoading?: undefined;
|
|
8740
|
+
isDisabled?: undefined;
|
|
8741
|
+
secondaryIcon?: undefined;
|
|
8742
|
+
} | {
|
|
8743
|
+
id: string;
|
|
8744
|
+
href: string;
|
|
8745
|
+
title: string;
|
|
8746
|
+
subtitle: string;
|
|
8747
|
+
mainIcon: string;
|
|
8748
|
+
isDisabled: boolean;
|
|
8749
|
+
isLoading?: undefined;
|
|
8578
8750
|
secondaryIcon?: undefined;
|
|
8579
8751
|
} | {
|
|
8580
8752
|
id: string;
|
|
@@ -8583,6 +8755,72 @@ export declare const ThemeG10: {
|
|
|
8583
8755
|
mainIcon: string;
|
|
8584
8756
|
secondaryIcon: string;
|
|
8585
8757
|
subtitle?: undefined;
|
|
8758
|
+
isLoading?: undefined;
|
|
8759
|
+
isDisabled?: undefined;
|
|
8760
|
+
})[];
|
|
8761
|
+
} | {
|
|
8762
|
+
id: number;
|
|
8763
|
+
label: string;
|
|
8764
|
+
tiles: {
|
|
8765
|
+
id: string;
|
|
8766
|
+
customContent: import("react/jsx-runtime").JSX.Element;
|
|
8767
|
+
}[];
|
|
8768
|
+
};
|
|
8769
|
+
9: {
|
|
8770
|
+
id: number;
|
|
8771
|
+
label: string;
|
|
8772
|
+
tiles: ({
|
|
8773
|
+
id: string;
|
|
8774
|
+
href: string;
|
|
8775
|
+
title: string;
|
|
8776
|
+
mainIcon: string;
|
|
8777
|
+
subtitle?: undefined;
|
|
8778
|
+
} | {
|
|
8779
|
+
id: string;
|
|
8780
|
+
href: string;
|
|
8781
|
+
title: string;
|
|
8782
|
+
subtitle: string;
|
|
8783
|
+
mainIcon: string;
|
|
8784
|
+
})[];
|
|
8785
|
+
} | {
|
|
8786
|
+
id: number;
|
|
8787
|
+
label: string;
|
|
8788
|
+
tiles: ({
|
|
8789
|
+
id: string;
|
|
8790
|
+
href: string;
|
|
8791
|
+
title: string;
|
|
8792
|
+
subtitle: string;
|
|
8793
|
+
mainIcon: string;
|
|
8794
|
+
isLoading: boolean;
|
|
8795
|
+
isDisabled?: undefined;
|
|
8796
|
+
secondaryIcon?: undefined;
|
|
8797
|
+
} | {
|
|
8798
|
+
id: string;
|
|
8799
|
+
href: string;
|
|
8800
|
+
title: string;
|
|
8801
|
+
subtitle: string;
|
|
8802
|
+
mainIcon: string;
|
|
8803
|
+
isLoading?: undefined;
|
|
8804
|
+
isDisabled?: undefined;
|
|
8805
|
+
secondaryIcon?: undefined;
|
|
8806
|
+
} | {
|
|
8807
|
+
id: string;
|
|
8808
|
+
href: string;
|
|
8809
|
+
title: string;
|
|
8810
|
+
subtitle: string;
|
|
8811
|
+
mainIcon: string;
|
|
8812
|
+
isDisabled: boolean;
|
|
8813
|
+
isLoading?: undefined;
|
|
8814
|
+
secondaryIcon?: undefined;
|
|
8815
|
+
} | {
|
|
8816
|
+
id: string;
|
|
8817
|
+
href: string;
|
|
8818
|
+
title: string;
|
|
8819
|
+
mainIcon: string;
|
|
8820
|
+
secondaryIcon: string;
|
|
8821
|
+
subtitle?: undefined;
|
|
8822
|
+
isLoading?: undefined;
|
|
8823
|
+
isDisabled?: undefined;
|
|
8586
8824
|
})[];
|
|
8587
8825
|
} | {
|
|
8588
8826
|
id: number;
|
|
@@ -8594,11 +8832,7 @@ export declare const ThemeG10: {
|
|
|
8594
8832
|
};
|
|
8595
8833
|
};
|
|
8596
8834
|
};
|
|
8597
|
-
|
|
8598
|
-
description: string;
|
|
8599
|
-
type: string;
|
|
8600
|
-
};
|
|
8601
|
-
tasksConfig: {
|
|
8835
|
+
tasksControllerConfig: {
|
|
8602
8836
|
description: string;
|
|
8603
8837
|
control: {
|
|
8604
8838
|
type: string;
|
|
@@ -8606,6 +8840,7 @@ export declare const ThemeG10: {
|
|
|
8606
8840
|
0: string;
|
|
8607
8841
|
1: string;
|
|
8608
8842
|
2: string;
|
|
8843
|
+
3: string;
|
|
8609
8844
|
};
|
|
8610
8845
|
};
|
|
8611
8846
|
options: number[];
|
|
@@ -8624,8 +8859,175 @@ export declare const ThemeG10: {
|
|
|
8624
8859
|
type: string;
|
|
8625
8860
|
dropdown: {
|
|
8626
8861
|
label: string;
|
|
8862
|
+
allTileGroups: ({
|
|
8863
|
+
id: number;
|
|
8864
|
+
label: string;
|
|
8865
|
+
tiles: ({
|
|
8866
|
+
id: string;
|
|
8867
|
+
href: string;
|
|
8868
|
+
title: string;
|
|
8869
|
+
mainIcon: string;
|
|
8870
|
+
subtitle?: undefined;
|
|
8871
|
+
} | {
|
|
8872
|
+
id: string;
|
|
8873
|
+
href: string;
|
|
8874
|
+
title: string;
|
|
8875
|
+
subtitle: string;
|
|
8876
|
+
mainIcon: string;
|
|
8877
|
+
})[];
|
|
8878
|
+
} | {
|
|
8879
|
+
id: number;
|
|
8880
|
+
label: string;
|
|
8881
|
+
tiles: ({
|
|
8882
|
+
id: string;
|
|
8883
|
+
href: string;
|
|
8884
|
+
title: string;
|
|
8885
|
+
subtitle: string;
|
|
8886
|
+
mainIcon: string;
|
|
8887
|
+
isLoading: boolean;
|
|
8888
|
+
isDisabled?: undefined;
|
|
8889
|
+
secondaryIcon?: undefined;
|
|
8890
|
+
} | {
|
|
8891
|
+
id: string;
|
|
8892
|
+
href: string;
|
|
8893
|
+
title: string;
|
|
8894
|
+
subtitle: string;
|
|
8895
|
+
mainIcon: string;
|
|
8896
|
+
isLoading?: undefined;
|
|
8897
|
+
isDisabled?: undefined;
|
|
8898
|
+
secondaryIcon?: undefined;
|
|
8899
|
+
} | {
|
|
8900
|
+
id: string;
|
|
8901
|
+
href: string;
|
|
8902
|
+
title: string;
|
|
8903
|
+
subtitle: string;
|
|
8904
|
+
mainIcon: string;
|
|
8905
|
+
isDisabled: boolean;
|
|
8906
|
+
isLoading?: undefined;
|
|
8907
|
+
secondaryIcon?: undefined;
|
|
8908
|
+
} | {
|
|
8909
|
+
id: string;
|
|
8910
|
+
href: string;
|
|
8911
|
+
title: string;
|
|
8912
|
+
mainIcon: string;
|
|
8913
|
+
secondaryIcon: string;
|
|
8914
|
+
subtitle?: undefined;
|
|
8915
|
+
isLoading?: undefined;
|
|
8916
|
+
isDisabled?: undefined;
|
|
8917
|
+
})[];
|
|
8918
|
+
} | {
|
|
8919
|
+
id: number;
|
|
8920
|
+
label: string;
|
|
8921
|
+
tiles: {
|
|
8922
|
+
id: string;
|
|
8923
|
+
customContent: import("react/jsx-runtime").JSX.Element;
|
|
8924
|
+
}[];
|
|
8925
|
+
})[];
|
|
8926
|
+
selectedTileGroup: {
|
|
8927
|
+
id: number;
|
|
8928
|
+
label: string;
|
|
8929
|
+
tiles: ({
|
|
8930
|
+
id: string;
|
|
8931
|
+
href: string;
|
|
8932
|
+
title: string;
|
|
8933
|
+
mainIcon: string;
|
|
8934
|
+
subtitle?: undefined;
|
|
8935
|
+
} | {
|
|
8936
|
+
id: string;
|
|
8937
|
+
href: string;
|
|
8938
|
+
title: string;
|
|
8939
|
+
subtitle: string;
|
|
8940
|
+
mainIcon: string;
|
|
8941
|
+
})[];
|
|
8942
|
+
} | {
|
|
8943
|
+
id: number;
|
|
8944
|
+
label: string;
|
|
8945
|
+
tiles: ({
|
|
8946
|
+
id: string;
|
|
8947
|
+
href: string;
|
|
8948
|
+
title: string;
|
|
8949
|
+
subtitle: string;
|
|
8950
|
+
mainIcon: string;
|
|
8951
|
+
isLoading: boolean;
|
|
8952
|
+
isDisabled?: undefined;
|
|
8953
|
+
secondaryIcon?: undefined;
|
|
8954
|
+
} | {
|
|
8955
|
+
id: string;
|
|
8956
|
+
href: string;
|
|
8957
|
+
title: string;
|
|
8958
|
+
subtitle: string;
|
|
8959
|
+
mainIcon: string;
|
|
8960
|
+
isLoading?: undefined;
|
|
8961
|
+
isDisabled?: undefined;
|
|
8962
|
+
secondaryIcon?: undefined;
|
|
8963
|
+
} | {
|
|
8964
|
+
id: string;
|
|
8965
|
+
href: string;
|
|
8966
|
+
title: string;
|
|
8967
|
+
subtitle: string;
|
|
8968
|
+
mainIcon: string;
|
|
8969
|
+
isDisabled: boolean;
|
|
8970
|
+
isLoading?: undefined;
|
|
8971
|
+
secondaryIcon?: undefined;
|
|
8972
|
+
} | {
|
|
8973
|
+
id: string;
|
|
8974
|
+
href: string;
|
|
8975
|
+
title: string;
|
|
8976
|
+
mainIcon: string;
|
|
8977
|
+
secondaryIcon: string;
|
|
8978
|
+
subtitle?: undefined;
|
|
8979
|
+
isLoading?: undefined;
|
|
8980
|
+
isDisabled?: undefined;
|
|
8981
|
+
})[];
|
|
8982
|
+
} | {
|
|
8983
|
+
id: number;
|
|
8984
|
+
label: string;
|
|
8985
|
+
tiles: {
|
|
8986
|
+
id: string;
|
|
8987
|
+
customContent: import("react/jsx-runtime").JSX.Element;
|
|
8988
|
+
}[];
|
|
8989
|
+
};
|
|
8990
|
+
setSelectedTileGroup: () => void;
|
|
8991
|
+
};
|
|
8992
|
+
};
|
|
8993
|
+
3: {
|
|
8994
|
+
type: string;
|
|
8995
|
+
isLoading: boolean;
|
|
8996
|
+
};
|
|
8997
|
+
};
|
|
8998
|
+
};
|
|
8999
|
+
workspaceSelectorConfig: {
|
|
9000
|
+
description: string;
|
|
9001
|
+
control: {
|
|
9002
|
+
type: string;
|
|
9003
|
+
labels: {
|
|
9004
|
+
0: string;
|
|
9005
|
+
1: string;
|
|
9006
|
+
2: string;
|
|
9007
|
+
};
|
|
9008
|
+
};
|
|
9009
|
+
options: number[];
|
|
9010
|
+
mapping: {
|
|
9011
|
+
0: null;
|
|
9012
|
+
1: {
|
|
9013
|
+
allWorkspaces: {
|
|
9014
|
+
id: string;
|
|
9015
|
+
label: string;
|
|
9016
|
+
}[];
|
|
9017
|
+
setSelectedWorkspace: () => void;
|
|
9018
|
+
propsOverrides: {
|
|
9019
|
+
label: string;
|
|
9020
|
+
renderSelectedItem: (item: any) => string;
|
|
8627
9021
|
};
|
|
8628
9022
|
};
|
|
9023
|
+
2: {
|
|
9024
|
+
allWorkspaces: {
|
|
9025
|
+
id: string;
|
|
9026
|
+
label: string;
|
|
9027
|
+
}[];
|
|
9028
|
+
setSelectedWorkspace: () => void;
|
|
9029
|
+
isLoading: boolean;
|
|
9030
|
+
};
|
|
8629
9031
|
};
|
|
8630
9032
|
};
|
|
8631
9033
|
userName: {
|
|
@@ -8634,7 +9036,7 @@ export declare const ThemeG10: {
|
|
|
8634
9036
|
welcomeText: {
|
|
8635
9037
|
description: string;
|
|
8636
9038
|
};
|
|
8637
|
-
|
|
9039
|
+
isLoading: {
|
|
8638
9040
|
description: string;
|
|
8639
9041
|
};
|
|
8640
9042
|
expandButtonLabel: {
|
|
@@ -8647,7 +9049,7 @@ export declare const ThemeG10: {
|
|
|
8647
9049
|
};
|
|
8648
9050
|
};
|
|
8649
9051
|
args: {
|
|
8650
|
-
|
|
9052
|
+
allTileGroups: ({
|
|
8651
9053
|
id: number;
|
|
8652
9054
|
label: string;
|
|
8653
9055
|
tiles: ({
|
|
@@ -8672,6 +9074,26 @@ export declare const ThemeG10: {
|
|
|
8672
9074
|
title: string;
|
|
8673
9075
|
subtitle: string;
|
|
8674
9076
|
mainIcon: string;
|
|
9077
|
+
isLoading: boolean;
|
|
9078
|
+
isDisabled?: undefined;
|
|
9079
|
+
secondaryIcon?: undefined;
|
|
9080
|
+
} | {
|
|
9081
|
+
id: string;
|
|
9082
|
+
href: string;
|
|
9083
|
+
title: string;
|
|
9084
|
+
subtitle: string;
|
|
9085
|
+
mainIcon: string;
|
|
9086
|
+
isLoading?: undefined;
|
|
9087
|
+
isDisabled?: undefined;
|
|
9088
|
+
secondaryIcon?: undefined;
|
|
9089
|
+
} | {
|
|
9090
|
+
id: string;
|
|
9091
|
+
href: string;
|
|
9092
|
+
title: string;
|
|
9093
|
+
subtitle: string;
|
|
9094
|
+
mainIcon: string;
|
|
9095
|
+
isDisabled: boolean;
|
|
9096
|
+
isLoading?: undefined;
|
|
8675
9097
|
secondaryIcon?: undefined;
|
|
8676
9098
|
} | {
|
|
8677
9099
|
id: string;
|
|
@@ -8680,6 +9102,8 @@ export declare const ThemeG10: {
|
|
|
8680
9102
|
mainIcon: string;
|
|
8681
9103
|
secondaryIcon: string;
|
|
8682
9104
|
subtitle?: undefined;
|
|
9105
|
+
isLoading?: undefined;
|
|
9106
|
+
isDisabled?: undefined;
|
|
8683
9107
|
})[];
|
|
8684
9108
|
} | {
|
|
8685
9109
|
id: number;
|
|
@@ -8689,21 +9113,16 @@ export declare const ThemeG10: {
|
|
|
8689
9113
|
customContent: import("react/jsx-runtime").JSX.Element;
|
|
8690
9114
|
}[];
|
|
8691
9115
|
})[];
|
|
8692
|
-
|
|
8693
|
-
|
|
8694
|
-
label: string;
|
|
8695
|
-
}[];
|
|
9116
|
+
tasksControllerConfig: number;
|
|
9117
|
+
workspaceSelectorConfig: number;
|
|
8696
9118
|
description: string;
|
|
8697
9119
|
headerStatic: number;
|
|
8698
9120
|
productName: string;
|
|
8699
9121
|
selectedTileGroup: number;
|
|
8700
|
-
selectedWorkspace: {
|
|
8701
|
-
id: string;
|
|
8702
|
-
label: string;
|
|
8703
|
-
};
|
|
8704
|
-
tasksConfig: number;
|
|
8705
9122
|
userName: string;
|
|
8706
9123
|
welcomeText: string;
|
|
9124
|
+
isLoading: boolean;
|
|
9125
|
+
disabledTaskLabel: string;
|
|
8707
9126
|
expandButtonLabel: string;
|
|
8708
9127
|
collapseButtonLabel: string;
|
|
8709
9128
|
headerAnimation: number;
|
|
@@ -8715,12 +9134,6 @@ export declare const ThemeG100: {
|
|
|
8715
9134
|
description: {
|
|
8716
9135
|
description: string;
|
|
8717
9136
|
};
|
|
8718
|
-
handleHeaderItemsToString: {
|
|
8719
|
-
description: string;
|
|
8720
|
-
};
|
|
8721
|
-
handleWorkspaceItemsToString: {
|
|
8722
|
-
description: string;
|
|
8723
|
-
};
|
|
8724
9137
|
headerAnimation: {
|
|
8725
9138
|
description: string;
|
|
8726
9139
|
type: string;
|
|
@@ -16942,6 +17355,9 @@ export declare const ThemeG100: {
|
|
|
16942
17355
|
productName: {
|
|
16943
17356
|
description: string;
|
|
16944
17357
|
};
|
|
17358
|
+
disabledTaskLabel: {
|
|
17359
|
+
description: string;
|
|
17360
|
+
};
|
|
16945
17361
|
selectedTileGroup: {
|
|
16946
17362
|
description: string;
|
|
16947
17363
|
type: string;
|
|
@@ -16957,6 +17373,7 @@ export declare const ThemeG100: {
|
|
|
16957
17373
|
6: string;
|
|
16958
17374
|
7: string;
|
|
16959
17375
|
8: string;
|
|
17376
|
+
9: string;
|
|
16960
17377
|
};
|
|
16961
17378
|
};
|
|
16962
17379
|
options: number[];
|
|
@@ -16987,6 +17404,26 @@ export declare const ThemeG100: {
|
|
|
16987
17404
|
title: string;
|
|
16988
17405
|
subtitle: string;
|
|
16989
17406
|
mainIcon: string;
|
|
17407
|
+
isLoading: boolean;
|
|
17408
|
+
isDisabled?: undefined;
|
|
17409
|
+
secondaryIcon?: undefined;
|
|
17410
|
+
} | {
|
|
17411
|
+
id: string;
|
|
17412
|
+
href: string;
|
|
17413
|
+
title: string;
|
|
17414
|
+
subtitle: string;
|
|
17415
|
+
mainIcon: string;
|
|
17416
|
+
isLoading?: undefined;
|
|
17417
|
+
isDisabled?: undefined;
|
|
17418
|
+
secondaryIcon?: undefined;
|
|
17419
|
+
} | {
|
|
17420
|
+
id: string;
|
|
17421
|
+
href: string;
|
|
17422
|
+
title: string;
|
|
17423
|
+
subtitle: string;
|
|
17424
|
+
mainIcon: string;
|
|
17425
|
+
isDisabled: boolean;
|
|
17426
|
+
isLoading?: undefined;
|
|
16990
17427
|
secondaryIcon?: undefined;
|
|
16991
17428
|
} | {
|
|
16992
17429
|
id: string;
|
|
@@ -16995,6 +17432,8 @@ export declare const ThemeG100: {
|
|
|
16995
17432
|
mainIcon: string;
|
|
16996
17433
|
secondaryIcon: string;
|
|
16997
17434
|
subtitle?: undefined;
|
|
17435
|
+
isLoading?: undefined;
|
|
17436
|
+
isDisabled?: undefined;
|
|
16998
17437
|
})[];
|
|
16999
17438
|
} | {
|
|
17000
17439
|
id: number;
|
|
@@ -17029,6 +17468,26 @@ export declare const ThemeG100: {
|
|
|
17029
17468
|
title: string;
|
|
17030
17469
|
subtitle: string;
|
|
17031
17470
|
mainIcon: string;
|
|
17471
|
+
isLoading: boolean;
|
|
17472
|
+
isDisabled?: undefined;
|
|
17473
|
+
secondaryIcon?: undefined;
|
|
17474
|
+
} | {
|
|
17475
|
+
id: string;
|
|
17476
|
+
href: string;
|
|
17477
|
+
title: string;
|
|
17478
|
+
subtitle: string;
|
|
17479
|
+
mainIcon: string;
|
|
17480
|
+
isLoading?: undefined;
|
|
17481
|
+
isDisabled?: undefined;
|
|
17482
|
+
secondaryIcon?: undefined;
|
|
17483
|
+
} | {
|
|
17484
|
+
id: string;
|
|
17485
|
+
href: string;
|
|
17486
|
+
title: string;
|
|
17487
|
+
subtitle: string;
|
|
17488
|
+
mainIcon: string;
|
|
17489
|
+
isDisabled: boolean;
|
|
17490
|
+
isLoading?: undefined;
|
|
17032
17491
|
secondaryIcon?: undefined;
|
|
17033
17492
|
} | {
|
|
17034
17493
|
id: string;
|
|
@@ -17037,6 +17496,8 @@ export declare const ThemeG100: {
|
|
|
17037
17496
|
mainIcon: string;
|
|
17038
17497
|
secondaryIcon: string;
|
|
17039
17498
|
subtitle?: undefined;
|
|
17499
|
+
isLoading?: undefined;
|
|
17500
|
+
isDisabled?: undefined;
|
|
17040
17501
|
})[];
|
|
17041
17502
|
} | {
|
|
17042
17503
|
id: number;
|
|
@@ -17071,6 +17532,26 @@ export declare const ThemeG100: {
|
|
|
17071
17532
|
title: string;
|
|
17072
17533
|
subtitle: string;
|
|
17073
17534
|
mainIcon: string;
|
|
17535
|
+
isLoading: boolean;
|
|
17536
|
+
isDisabled?: undefined;
|
|
17537
|
+
secondaryIcon?: undefined;
|
|
17538
|
+
} | {
|
|
17539
|
+
id: string;
|
|
17540
|
+
href: string;
|
|
17541
|
+
title: string;
|
|
17542
|
+
subtitle: string;
|
|
17543
|
+
mainIcon: string;
|
|
17544
|
+
isLoading?: undefined;
|
|
17545
|
+
isDisabled?: undefined;
|
|
17546
|
+
secondaryIcon?: undefined;
|
|
17547
|
+
} | {
|
|
17548
|
+
id: string;
|
|
17549
|
+
href: string;
|
|
17550
|
+
title: string;
|
|
17551
|
+
subtitle: string;
|
|
17552
|
+
mainIcon: string;
|
|
17553
|
+
isDisabled: boolean;
|
|
17554
|
+
isLoading?: undefined;
|
|
17074
17555
|
secondaryIcon?: undefined;
|
|
17075
17556
|
} | {
|
|
17076
17557
|
id: string;
|
|
@@ -17079,6 +17560,8 @@ export declare const ThemeG100: {
|
|
|
17079
17560
|
mainIcon: string;
|
|
17080
17561
|
secondaryIcon: string;
|
|
17081
17562
|
subtitle?: undefined;
|
|
17563
|
+
isLoading?: undefined;
|
|
17564
|
+
isDisabled?: undefined;
|
|
17082
17565
|
})[];
|
|
17083
17566
|
} | {
|
|
17084
17567
|
id: number;
|
|
@@ -17113,6 +17596,26 @@ export declare const ThemeG100: {
|
|
|
17113
17596
|
title: string;
|
|
17114
17597
|
subtitle: string;
|
|
17115
17598
|
mainIcon: string;
|
|
17599
|
+
isLoading: boolean;
|
|
17600
|
+
isDisabled?: undefined;
|
|
17601
|
+
secondaryIcon?: undefined;
|
|
17602
|
+
} | {
|
|
17603
|
+
id: string;
|
|
17604
|
+
href: string;
|
|
17605
|
+
title: string;
|
|
17606
|
+
subtitle: string;
|
|
17607
|
+
mainIcon: string;
|
|
17608
|
+
isLoading?: undefined;
|
|
17609
|
+
isDisabled?: undefined;
|
|
17610
|
+
secondaryIcon?: undefined;
|
|
17611
|
+
} | {
|
|
17612
|
+
id: string;
|
|
17613
|
+
href: string;
|
|
17614
|
+
title: string;
|
|
17615
|
+
subtitle: string;
|
|
17616
|
+
mainIcon: string;
|
|
17617
|
+
isDisabled: boolean;
|
|
17618
|
+
isLoading?: undefined;
|
|
17116
17619
|
secondaryIcon?: undefined;
|
|
17117
17620
|
} | {
|
|
17118
17621
|
id: string;
|
|
@@ -17121,6 +17624,8 @@ export declare const ThemeG100: {
|
|
|
17121
17624
|
mainIcon: string;
|
|
17122
17625
|
secondaryIcon: string;
|
|
17123
17626
|
subtitle?: undefined;
|
|
17627
|
+
isLoading?: undefined;
|
|
17628
|
+
isDisabled?: undefined;
|
|
17124
17629
|
})[];
|
|
17125
17630
|
} | {
|
|
17126
17631
|
id: number;
|
|
@@ -17155,6 +17660,26 @@ export declare const ThemeG100: {
|
|
|
17155
17660
|
title: string;
|
|
17156
17661
|
subtitle: string;
|
|
17157
17662
|
mainIcon: string;
|
|
17663
|
+
isLoading: boolean;
|
|
17664
|
+
isDisabled?: undefined;
|
|
17665
|
+
secondaryIcon?: undefined;
|
|
17666
|
+
} | {
|
|
17667
|
+
id: string;
|
|
17668
|
+
href: string;
|
|
17669
|
+
title: string;
|
|
17670
|
+
subtitle: string;
|
|
17671
|
+
mainIcon: string;
|
|
17672
|
+
isLoading?: undefined;
|
|
17673
|
+
isDisabled?: undefined;
|
|
17674
|
+
secondaryIcon?: undefined;
|
|
17675
|
+
} | {
|
|
17676
|
+
id: string;
|
|
17677
|
+
href: string;
|
|
17678
|
+
title: string;
|
|
17679
|
+
subtitle: string;
|
|
17680
|
+
mainIcon: string;
|
|
17681
|
+
isDisabled: boolean;
|
|
17682
|
+
isLoading?: undefined;
|
|
17158
17683
|
secondaryIcon?: undefined;
|
|
17159
17684
|
} | {
|
|
17160
17685
|
id: string;
|
|
@@ -17163,6 +17688,8 @@ export declare const ThemeG100: {
|
|
|
17163
17688
|
mainIcon: string;
|
|
17164
17689
|
secondaryIcon: string;
|
|
17165
17690
|
subtitle?: undefined;
|
|
17691
|
+
isLoading?: undefined;
|
|
17692
|
+
isDisabled?: undefined;
|
|
17166
17693
|
})[];
|
|
17167
17694
|
} | {
|
|
17168
17695
|
id: number;
|
|
@@ -17197,6 +17724,26 @@ export declare const ThemeG100: {
|
|
|
17197
17724
|
title: string;
|
|
17198
17725
|
subtitle: string;
|
|
17199
17726
|
mainIcon: string;
|
|
17727
|
+
isLoading: boolean;
|
|
17728
|
+
isDisabled?: undefined;
|
|
17729
|
+
secondaryIcon?: undefined;
|
|
17730
|
+
} | {
|
|
17731
|
+
id: string;
|
|
17732
|
+
href: string;
|
|
17733
|
+
title: string;
|
|
17734
|
+
subtitle: string;
|
|
17735
|
+
mainIcon: string;
|
|
17736
|
+
isLoading?: undefined;
|
|
17737
|
+
isDisabled?: undefined;
|
|
17738
|
+
secondaryIcon?: undefined;
|
|
17739
|
+
} | {
|
|
17740
|
+
id: string;
|
|
17741
|
+
href: string;
|
|
17742
|
+
title: string;
|
|
17743
|
+
subtitle: string;
|
|
17744
|
+
mainIcon: string;
|
|
17745
|
+
isDisabled: boolean;
|
|
17746
|
+
isLoading?: undefined;
|
|
17200
17747
|
secondaryIcon?: undefined;
|
|
17201
17748
|
} | {
|
|
17202
17749
|
id: string;
|
|
@@ -17205,6 +17752,8 @@ export declare const ThemeG100: {
|
|
|
17205
17752
|
mainIcon: string;
|
|
17206
17753
|
secondaryIcon: string;
|
|
17207
17754
|
subtitle?: undefined;
|
|
17755
|
+
isLoading?: undefined;
|
|
17756
|
+
isDisabled?: undefined;
|
|
17208
17757
|
})[];
|
|
17209
17758
|
} | {
|
|
17210
17759
|
id: number;
|
|
@@ -17239,6 +17788,26 @@ export declare const ThemeG100: {
|
|
|
17239
17788
|
title: string;
|
|
17240
17789
|
subtitle: string;
|
|
17241
17790
|
mainIcon: string;
|
|
17791
|
+
isLoading: boolean;
|
|
17792
|
+
isDisabled?: undefined;
|
|
17793
|
+
secondaryIcon?: undefined;
|
|
17794
|
+
} | {
|
|
17795
|
+
id: string;
|
|
17796
|
+
href: string;
|
|
17797
|
+
title: string;
|
|
17798
|
+
subtitle: string;
|
|
17799
|
+
mainIcon: string;
|
|
17800
|
+
isLoading?: undefined;
|
|
17801
|
+
isDisabled?: undefined;
|
|
17802
|
+
secondaryIcon?: undefined;
|
|
17803
|
+
} | {
|
|
17804
|
+
id: string;
|
|
17805
|
+
href: string;
|
|
17806
|
+
title: string;
|
|
17807
|
+
subtitle: string;
|
|
17808
|
+
mainIcon: string;
|
|
17809
|
+
isDisabled: boolean;
|
|
17810
|
+
isLoading?: undefined;
|
|
17242
17811
|
secondaryIcon?: undefined;
|
|
17243
17812
|
} | {
|
|
17244
17813
|
id: string;
|
|
@@ -17247,6 +17816,8 @@ export declare const ThemeG100: {
|
|
|
17247
17816
|
mainIcon: string;
|
|
17248
17817
|
secondaryIcon: string;
|
|
17249
17818
|
subtitle?: undefined;
|
|
17819
|
+
isLoading?: undefined;
|
|
17820
|
+
isDisabled?: undefined;
|
|
17250
17821
|
})[];
|
|
17251
17822
|
} | {
|
|
17252
17823
|
id: number;
|
|
@@ -17281,6 +17852,26 @@ export declare const ThemeG100: {
|
|
|
17281
17852
|
title: string;
|
|
17282
17853
|
subtitle: string;
|
|
17283
17854
|
mainIcon: string;
|
|
17855
|
+
isLoading: boolean;
|
|
17856
|
+
isDisabled?: undefined;
|
|
17857
|
+
secondaryIcon?: undefined;
|
|
17858
|
+
} | {
|
|
17859
|
+
id: string;
|
|
17860
|
+
href: string;
|
|
17861
|
+
title: string;
|
|
17862
|
+
subtitle: string;
|
|
17863
|
+
mainIcon: string;
|
|
17864
|
+
isLoading?: undefined;
|
|
17865
|
+
isDisabled?: undefined;
|
|
17866
|
+
secondaryIcon?: undefined;
|
|
17867
|
+
} | {
|
|
17868
|
+
id: string;
|
|
17869
|
+
href: string;
|
|
17870
|
+
title: string;
|
|
17871
|
+
subtitle: string;
|
|
17872
|
+
mainIcon: string;
|
|
17873
|
+
isDisabled: boolean;
|
|
17874
|
+
isLoading?: undefined;
|
|
17284
17875
|
secondaryIcon?: undefined;
|
|
17285
17876
|
} | {
|
|
17286
17877
|
id: string;
|
|
@@ -17289,6 +17880,72 @@ export declare const ThemeG100: {
|
|
|
17289
17880
|
mainIcon: string;
|
|
17290
17881
|
secondaryIcon: string;
|
|
17291
17882
|
subtitle?: undefined;
|
|
17883
|
+
isLoading?: undefined;
|
|
17884
|
+
isDisabled?: undefined;
|
|
17885
|
+
})[];
|
|
17886
|
+
} | {
|
|
17887
|
+
id: number;
|
|
17888
|
+
label: string;
|
|
17889
|
+
tiles: {
|
|
17890
|
+
id: string;
|
|
17891
|
+
customContent: import("react/jsx-runtime").JSX.Element;
|
|
17892
|
+
}[];
|
|
17893
|
+
};
|
|
17894
|
+
9: {
|
|
17895
|
+
id: number;
|
|
17896
|
+
label: string;
|
|
17897
|
+
tiles: ({
|
|
17898
|
+
id: string;
|
|
17899
|
+
href: string;
|
|
17900
|
+
title: string;
|
|
17901
|
+
mainIcon: string;
|
|
17902
|
+
subtitle?: undefined;
|
|
17903
|
+
} | {
|
|
17904
|
+
id: string;
|
|
17905
|
+
href: string;
|
|
17906
|
+
title: string;
|
|
17907
|
+
subtitle: string;
|
|
17908
|
+
mainIcon: string;
|
|
17909
|
+
})[];
|
|
17910
|
+
} | {
|
|
17911
|
+
id: number;
|
|
17912
|
+
label: string;
|
|
17913
|
+
tiles: ({
|
|
17914
|
+
id: string;
|
|
17915
|
+
href: string;
|
|
17916
|
+
title: string;
|
|
17917
|
+
subtitle: string;
|
|
17918
|
+
mainIcon: string;
|
|
17919
|
+
isLoading: boolean;
|
|
17920
|
+
isDisabled?: undefined;
|
|
17921
|
+
secondaryIcon?: undefined;
|
|
17922
|
+
} | {
|
|
17923
|
+
id: string;
|
|
17924
|
+
href: string;
|
|
17925
|
+
title: string;
|
|
17926
|
+
subtitle: string;
|
|
17927
|
+
mainIcon: string;
|
|
17928
|
+
isLoading?: undefined;
|
|
17929
|
+
isDisabled?: undefined;
|
|
17930
|
+
secondaryIcon?: undefined;
|
|
17931
|
+
} | {
|
|
17932
|
+
id: string;
|
|
17933
|
+
href: string;
|
|
17934
|
+
title: string;
|
|
17935
|
+
subtitle: string;
|
|
17936
|
+
mainIcon: string;
|
|
17937
|
+
isDisabled: boolean;
|
|
17938
|
+
isLoading?: undefined;
|
|
17939
|
+
secondaryIcon?: undefined;
|
|
17940
|
+
} | {
|
|
17941
|
+
id: string;
|
|
17942
|
+
href: string;
|
|
17943
|
+
title: string;
|
|
17944
|
+
mainIcon: string;
|
|
17945
|
+
secondaryIcon: string;
|
|
17946
|
+
subtitle?: undefined;
|
|
17947
|
+
isLoading?: undefined;
|
|
17948
|
+
isDisabled?: undefined;
|
|
17292
17949
|
})[];
|
|
17293
17950
|
} | {
|
|
17294
17951
|
id: number;
|
|
@@ -17300,11 +17957,7 @@ export declare const ThemeG100: {
|
|
|
17300
17957
|
};
|
|
17301
17958
|
};
|
|
17302
17959
|
};
|
|
17303
|
-
|
|
17304
|
-
description: string;
|
|
17305
|
-
type: string;
|
|
17306
|
-
};
|
|
17307
|
-
tasksConfig: {
|
|
17960
|
+
tasksControllerConfig: {
|
|
17308
17961
|
description: string;
|
|
17309
17962
|
control: {
|
|
17310
17963
|
type: string;
|
|
@@ -17312,6 +17965,7 @@ export declare const ThemeG100: {
|
|
|
17312
17965
|
0: string;
|
|
17313
17966
|
1: string;
|
|
17314
17967
|
2: string;
|
|
17968
|
+
3: string;
|
|
17315
17969
|
};
|
|
17316
17970
|
};
|
|
17317
17971
|
options: number[];
|
|
@@ -17330,8 +17984,175 @@ export declare const ThemeG100: {
|
|
|
17330
17984
|
type: string;
|
|
17331
17985
|
dropdown: {
|
|
17332
17986
|
label: string;
|
|
17987
|
+
allTileGroups: ({
|
|
17988
|
+
id: number;
|
|
17989
|
+
label: string;
|
|
17990
|
+
tiles: ({
|
|
17991
|
+
id: string;
|
|
17992
|
+
href: string;
|
|
17993
|
+
title: string;
|
|
17994
|
+
mainIcon: string;
|
|
17995
|
+
subtitle?: undefined;
|
|
17996
|
+
} | {
|
|
17997
|
+
id: string;
|
|
17998
|
+
href: string;
|
|
17999
|
+
title: string;
|
|
18000
|
+
subtitle: string;
|
|
18001
|
+
mainIcon: string;
|
|
18002
|
+
})[];
|
|
18003
|
+
} | {
|
|
18004
|
+
id: number;
|
|
18005
|
+
label: string;
|
|
18006
|
+
tiles: ({
|
|
18007
|
+
id: string;
|
|
18008
|
+
href: string;
|
|
18009
|
+
title: string;
|
|
18010
|
+
subtitle: string;
|
|
18011
|
+
mainIcon: string;
|
|
18012
|
+
isLoading: boolean;
|
|
18013
|
+
isDisabled?: undefined;
|
|
18014
|
+
secondaryIcon?: undefined;
|
|
18015
|
+
} | {
|
|
18016
|
+
id: string;
|
|
18017
|
+
href: string;
|
|
18018
|
+
title: string;
|
|
18019
|
+
subtitle: string;
|
|
18020
|
+
mainIcon: string;
|
|
18021
|
+
isLoading?: undefined;
|
|
18022
|
+
isDisabled?: undefined;
|
|
18023
|
+
secondaryIcon?: undefined;
|
|
18024
|
+
} | {
|
|
18025
|
+
id: string;
|
|
18026
|
+
href: string;
|
|
18027
|
+
title: string;
|
|
18028
|
+
subtitle: string;
|
|
18029
|
+
mainIcon: string;
|
|
18030
|
+
isDisabled: boolean;
|
|
18031
|
+
isLoading?: undefined;
|
|
18032
|
+
secondaryIcon?: undefined;
|
|
18033
|
+
} | {
|
|
18034
|
+
id: string;
|
|
18035
|
+
href: string;
|
|
18036
|
+
title: string;
|
|
18037
|
+
mainIcon: string;
|
|
18038
|
+
secondaryIcon: string;
|
|
18039
|
+
subtitle?: undefined;
|
|
18040
|
+
isLoading?: undefined;
|
|
18041
|
+
isDisabled?: undefined;
|
|
18042
|
+
})[];
|
|
18043
|
+
} | {
|
|
18044
|
+
id: number;
|
|
18045
|
+
label: string;
|
|
18046
|
+
tiles: {
|
|
18047
|
+
id: string;
|
|
18048
|
+
customContent: import("react/jsx-runtime").JSX.Element;
|
|
18049
|
+
}[];
|
|
18050
|
+
})[];
|
|
18051
|
+
selectedTileGroup: {
|
|
18052
|
+
id: number;
|
|
18053
|
+
label: string;
|
|
18054
|
+
tiles: ({
|
|
18055
|
+
id: string;
|
|
18056
|
+
href: string;
|
|
18057
|
+
title: string;
|
|
18058
|
+
mainIcon: string;
|
|
18059
|
+
subtitle?: undefined;
|
|
18060
|
+
} | {
|
|
18061
|
+
id: string;
|
|
18062
|
+
href: string;
|
|
18063
|
+
title: string;
|
|
18064
|
+
subtitle: string;
|
|
18065
|
+
mainIcon: string;
|
|
18066
|
+
})[];
|
|
18067
|
+
} | {
|
|
18068
|
+
id: number;
|
|
18069
|
+
label: string;
|
|
18070
|
+
tiles: ({
|
|
18071
|
+
id: string;
|
|
18072
|
+
href: string;
|
|
18073
|
+
title: string;
|
|
18074
|
+
subtitle: string;
|
|
18075
|
+
mainIcon: string;
|
|
18076
|
+
isLoading: boolean;
|
|
18077
|
+
isDisabled?: undefined;
|
|
18078
|
+
secondaryIcon?: undefined;
|
|
18079
|
+
} | {
|
|
18080
|
+
id: string;
|
|
18081
|
+
href: string;
|
|
18082
|
+
title: string;
|
|
18083
|
+
subtitle: string;
|
|
18084
|
+
mainIcon: string;
|
|
18085
|
+
isLoading?: undefined;
|
|
18086
|
+
isDisabled?: undefined;
|
|
18087
|
+
secondaryIcon?: undefined;
|
|
18088
|
+
} | {
|
|
18089
|
+
id: string;
|
|
18090
|
+
href: string;
|
|
18091
|
+
title: string;
|
|
18092
|
+
subtitle: string;
|
|
18093
|
+
mainIcon: string;
|
|
18094
|
+
isDisabled: boolean;
|
|
18095
|
+
isLoading?: undefined;
|
|
18096
|
+
secondaryIcon?: undefined;
|
|
18097
|
+
} | {
|
|
18098
|
+
id: string;
|
|
18099
|
+
href: string;
|
|
18100
|
+
title: string;
|
|
18101
|
+
mainIcon: string;
|
|
18102
|
+
secondaryIcon: string;
|
|
18103
|
+
subtitle?: undefined;
|
|
18104
|
+
isLoading?: undefined;
|
|
18105
|
+
isDisabled?: undefined;
|
|
18106
|
+
})[];
|
|
18107
|
+
} | {
|
|
18108
|
+
id: number;
|
|
18109
|
+
label: string;
|
|
18110
|
+
tiles: {
|
|
18111
|
+
id: string;
|
|
18112
|
+
customContent: import("react/jsx-runtime").JSX.Element;
|
|
18113
|
+
}[];
|
|
18114
|
+
};
|
|
18115
|
+
setSelectedTileGroup: () => void;
|
|
18116
|
+
};
|
|
18117
|
+
};
|
|
18118
|
+
3: {
|
|
18119
|
+
type: string;
|
|
18120
|
+
isLoading: boolean;
|
|
18121
|
+
};
|
|
18122
|
+
};
|
|
18123
|
+
};
|
|
18124
|
+
workspaceSelectorConfig: {
|
|
18125
|
+
description: string;
|
|
18126
|
+
control: {
|
|
18127
|
+
type: string;
|
|
18128
|
+
labels: {
|
|
18129
|
+
0: string;
|
|
18130
|
+
1: string;
|
|
18131
|
+
2: string;
|
|
18132
|
+
};
|
|
18133
|
+
};
|
|
18134
|
+
options: number[];
|
|
18135
|
+
mapping: {
|
|
18136
|
+
0: null;
|
|
18137
|
+
1: {
|
|
18138
|
+
allWorkspaces: {
|
|
18139
|
+
id: string;
|
|
18140
|
+
label: string;
|
|
18141
|
+
}[];
|
|
18142
|
+
setSelectedWorkspace: () => void;
|
|
18143
|
+
propsOverrides: {
|
|
18144
|
+
label: string;
|
|
18145
|
+
renderSelectedItem: (item: any) => string;
|
|
17333
18146
|
};
|
|
17334
18147
|
};
|
|
18148
|
+
2: {
|
|
18149
|
+
allWorkspaces: {
|
|
18150
|
+
id: string;
|
|
18151
|
+
label: string;
|
|
18152
|
+
}[];
|
|
18153
|
+
setSelectedWorkspace: () => void;
|
|
18154
|
+
isLoading: boolean;
|
|
18155
|
+
};
|
|
17335
18156
|
};
|
|
17336
18157
|
};
|
|
17337
18158
|
userName: {
|
|
@@ -17340,7 +18161,7 @@ export declare const ThemeG100: {
|
|
|
17340
18161
|
welcomeText: {
|
|
17341
18162
|
description: string;
|
|
17342
18163
|
};
|
|
17343
|
-
|
|
18164
|
+
isLoading: {
|
|
17344
18165
|
description: string;
|
|
17345
18166
|
};
|
|
17346
18167
|
expandButtonLabel: {
|
|
@@ -17353,7 +18174,7 @@ export declare const ThemeG100: {
|
|
|
17353
18174
|
};
|
|
17354
18175
|
};
|
|
17355
18176
|
args: {
|
|
17356
|
-
|
|
18177
|
+
allTileGroups: ({
|
|
17357
18178
|
id: number;
|
|
17358
18179
|
label: string;
|
|
17359
18180
|
tiles: ({
|
|
@@ -17378,6 +18199,26 @@ export declare const ThemeG100: {
|
|
|
17378
18199
|
title: string;
|
|
17379
18200
|
subtitle: string;
|
|
17380
18201
|
mainIcon: string;
|
|
18202
|
+
isLoading: boolean;
|
|
18203
|
+
isDisabled?: undefined;
|
|
18204
|
+
secondaryIcon?: undefined;
|
|
18205
|
+
} | {
|
|
18206
|
+
id: string;
|
|
18207
|
+
href: string;
|
|
18208
|
+
title: string;
|
|
18209
|
+
subtitle: string;
|
|
18210
|
+
mainIcon: string;
|
|
18211
|
+
isLoading?: undefined;
|
|
18212
|
+
isDisabled?: undefined;
|
|
18213
|
+
secondaryIcon?: undefined;
|
|
18214
|
+
} | {
|
|
18215
|
+
id: string;
|
|
18216
|
+
href: string;
|
|
18217
|
+
title: string;
|
|
18218
|
+
subtitle: string;
|
|
18219
|
+
mainIcon: string;
|
|
18220
|
+
isDisabled: boolean;
|
|
18221
|
+
isLoading?: undefined;
|
|
17381
18222
|
secondaryIcon?: undefined;
|
|
17382
18223
|
} | {
|
|
17383
18224
|
id: string;
|
|
@@ -17386,6 +18227,8 @@ export declare const ThemeG100: {
|
|
|
17386
18227
|
mainIcon: string;
|
|
17387
18228
|
secondaryIcon: string;
|
|
17388
18229
|
subtitle?: undefined;
|
|
18230
|
+
isLoading?: undefined;
|
|
18231
|
+
isDisabled?: undefined;
|
|
17389
18232
|
})[];
|
|
17390
18233
|
} | {
|
|
17391
18234
|
id: number;
|
|
@@ -17395,21 +18238,16 @@ export declare const ThemeG100: {
|
|
|
17395
18238
|
customContent: import("react/jsx-runtime").JSX.Element;
|
|
17396
18239
|
}[];
|
|
17397
18240
|
})[];
|
|
17398
|
-
|
|
17399
|
-
|
|
17400
|
-
label: string;
|
|
17401
|
-
}[];
|
|
18241
|
+
tasksControllerConfig: number;
|
|
18242
|
+
workspaceSelectorConfig: number;
|
|
17402
18243
|
description: string;
|
|
17403
18244
|
headerStatic: number;
|
|
17404
18245
|
productName: string;
|
|
17405
18246
|
selectedTileGroup: number;
|
|
17406
|
-
selectedWorkspace: {
|
|
17407
|
-
id: string;
|
|
17408
|
-
label: string;
|
|
17409
|
-
};
|
|
17410
|
-
tasksConfig: number;
|
|
17411
18247
|
userName: string;
|
|
17412
18248
|
welcomeText: string;
|
|
18249
|
+
isLoading: boolean;
|
|
18250
|
+
disabledTaskLabel: string;
|
|
17413
18251
|
expandButtonLabel: string;
|
|
17414
18252
|
collapseButtonLabel: string;
|
|
17415
18253
|
headerAnimation: number;
|