@trackunit/ui-design-tokens 0.0.97 → 0.0.98
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/index.cjs.js +51 -17
- package/index.esm.js +51 -18
- package/package.json +1 -1
- package/src/tokens/colors/trackunitPalette.d.ts +226 -18
package/index.cjs.js
CHANGED
|
@@ -472,17 +472,26 @@ const rentalStatusPalette = {
|
|
|
472
472
|
OTHER_RENTAL_STATUS: { 100: "238 239 239", 600: "151 154 154" },
|
|
473
473
|
};
|
|
474
474
|
/**
|
|
475
|
-
* The
|
|
476
|
-
* Should be available in any component that could be used to display the
|
|
475
|
+
* The Customer Type color palette
|
|
476
|
+
* Should be available in any component that could be used to display the Customer Type of an asset
|
|
477
477
|
*/
|
|
478
478
|
const customerTypePalette = {
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
479
|
+
CUSTOMER_TYPE_CONTRACTOR: tailwindPalette.purple,
|
|
480
|
+
CUSTOMER_TYPE_DEALER: tailwindPalette.gray,
|
|
481
|
+
CUSTOMER_TYPE_RENTAL: tailwindPalette.orange,
|
|
482
|
+
CUSTOMER_TYPE_OEM: tailwindPalette.blue,
|
|
483
|
+
CUSTOMER_TYPE_SERVICE: tailwindPalette.emerald,
|
|
484
|
+
CUSTOMER_TYPE_DISTRIBUTOR: tailwindPalette.cyan,
|
|
485
|
+
CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: tailwindPalette.red,
|
|
486
|
+
};
|
|
487
|
+
/**
|
|
488
|
+
* The Customer data source color palette
|
|
489
|
+
* Should be available in any component that could be used to display the Customer data source of an asset
|
|
490
|
+
*/
|
|
491
|
+
const customerDataSourcePalette = {
|
|
492
|
+
CUSTOMER_SOURCE_USER_DEFINED: tailwindPalette.purple,
|
|
493
|
+
CUSTOMER_SOURCE_CLASSIC_MIGRATION: tailwindPalette.emerald,
|
|
494
|
+
CUSTOMER_SOURCE_SYSTEM_DEFINED: tailwindPalette.cyan,
|
|
486
495
|
};
|
|
487
496
|
/**
|
|
488
497
|
* Colors of the different site types.
|
|
@@ -516,6 +525,9 @@ const groupedPalettes = {
|
|
|
516
525
|
UTILIZATION: utilizationPalette,
|
|
517
526
|
// Rental
|
|
518
527
|
RENTAL: rentalStatusPalette,
|
|
528
|
+
// Customers
|
|
529
|
+
CUSTOMER_TYPE: customerTypePalette,
|
|
530
|
+
CUSTOMER_DATA_SOURCE: customerDataSourcePalette,
|
|
519
531
|
// Sites
|
|
520
532
|
SITES: sitesPalette,
|
|
521
533
|
// Themed
|
|
@@ -524,7 +536,7 @@ const groupedPalettes = {
|
|
|
524
536
|
/**
|
|
525
537
|
* The full theme color palette (flattened)
|
|
526
538
|
*/
|
|
527
|
-
const trackunitPalette = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, generalPalette), intentPalette), criticalityPalette), activityPalette), utilizationPalette), rentalStatusPalette), customerTypePalette), sitesPalette), themedPalette);
|
|
539
|
+
const trackunitPalette = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, generalPalette), intentPalette), criticalityPalette), activityPalette), utilizationPalette), rentalStatusPalette), customerTypePalette), customerDataSourcePalette), sitesPalette), themedPalette);
|
|
528
540
|
|
|
529
541
|
/**
|
|
530
542
|
* A collection of all the tokens related to the named colors in the default theme.
|
|
@@ -565,13 +577,34 @@ const themeColors = {
|
|
|
565
577
|
RETURNED: { name: "returned", variants: trackunitPalette.RETURNED },
|
|
566
578
|
TRANSFER: { name: "transfer", variants: trackunitPalette.TRANSFER },
|
|
567
579
|
SITE: { name: "site", variants: trackunitPalette.SITE },
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
580
|
+
CUSTOMER_TYPE_CONTRACTOR: {
|
|
581
|
+
name: "customer_type_contractor",
|
|
582
|
+
variants: trackunitPalette.CUSTOMER_TYPE_CONTRACTOR,
|
|
583
|
+
},
|
|
584
|
+
CUSTOMER_TYPE_DEALER: { name: "customer_type_dealer", variants: trackunitPalette.CUSTOMER_TYPE_DEALER },
|
|
585
|
+
CUSTOMER_TYPE_DISTRIBUTOR: {
|
|
586
|
+
name: "customer_type_distributor",
|
|
587
|
+
variants: trackunitPalette.CUSTOMER_TYPE_DISTRIBUTOR,
|
|
588
|
+
},
|
|
589
|
+
CUSTOMER_SOURCE_CLASSIC_MIGRATION: {
|
|
590
|
+
name: "customer_source_classic_migration",
|
|
591
|
+
variants: trackunitPalette.CUSTOMER_SOURCE_CLASSIC_MIGRATION,
|
|
592
|
+
},
|
|
593
|
+
CUSTOMER_SOURCE_SYSTEM_DEFINED: {
|
|
594
|
+
name: "customer_source_system_defined",
|
|
595
|
+
variants: trackunitPalette.CUSTOMER_SOURCE_SYSTEM_DEFINED,
|
|
596
|
+
},
|
|
597
|
+
CUSTOMER_SOURCE_USER_DEFINED: {
|
|
598
|
+
name: "customer_source_user_defined",
|
|
599
|
+
variants: trackunitPalette.CUSTOMER_SOURCE_USER_DEFINED,
|
|
600
|
+
},
|
|
601
|
+
CUSTOMER_TYPE_OEM: { name: "customer_type_oem", variants: trackunitPalette.CUSTOMER_TYPE_OEM },
|
|
602
|
+
CUSTOMER_TYPE_RENTAL: { name: "customer_type_rental", variants: trackunitPalette.CUSTOMER_TYPE_RENTAL },
|
|
603
|
+
CUSTOMER_TYPE_SERVICE: { name: "customer_type_service", variants: trackunitPalette.CUSTOMER_TYPE_SERVICE },
|
|
604
|
+
CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: {
|
|
605
|
+
name: "customer_type_other_customer_type",
|
|
606
|
+
variants: trackunitPalette.CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE,
|
|
607
|
+
},
|
|
575
608
|
MAIN_MENU_BACKGROUND: { name: "main_menu_background", variants: trackunitPalette.MAIN_MENU_BACKGROUND },
|
|
576
609
|
MAIN_MENU_NAV_ITEM_BACKGROUND: {
|
|
577
610
|
name: "main_menu_nav_item_background",
|
|
@@ -807,6 +840,7 @@ exports.DEFAULT_CHART_COLORS = DEFAULT_CHART_COLORS;
|
|
|
807
840
|
exports.activityPalette = activityPalette;
|
|
808
841
|
exports.color = color;
|
|
809
842
|
exports.criticalityPalette = criticalityPalette;
|
|
843
|
+
exports.customerDataSourcePalette = customerDataSourcePalette;
|
|
810
844
|
exports.customerTypePalette = customerTypePalette;
|
|
811
845
|
exports.elevation = elevation;
|
|
812
846
|
exports.fontFamily = fontFamily;
|
package/index.esm.js
CHANGED
|
@@ -468,17 +468,26 @@ const rentalStatusPalette = {
|
|
|
468
468
|
OTHER_RENTAL_STATUS: { 100: "238 239 239", 600: "151 154 154" },
|
|
469
469
|
};
|
|
470
470
|
/**
|
|
471
|
-
* The
|
|
472
|
-
* Should be available in any component that could be used to display the
|
|
471
|
+
* The Customer Type color palette
|
|
472
|
+
* Should be available in any component that could be used to display the Customer Type of an asset
|
|
473
473
|
*/
|
|
474
474
|
const customerTypePalette = {
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
475
|
+
CUSTOMER_TYPE_CONTRACTOR: tailwindPalette.purple,
|
|
476
|
+
CUSTOMER_TYPE_DEALER: tailwindPalette.gray,
|
|
477
|
+
CUSTOMER_TYPE_RENTAL: tailwindPalette.orange,
|
|
478
|
+
CUSTOMER_TYPE_OEM: tailwindPalette.blue,
|
|
479
|
+
CUSTOMER_TYPE_SERVICE: tailwindPalette.emerald,
|
|
480
|
+
CUSTOMER_TYPE_DISTRIBUTOR: tailwindPalette.cyan,
|
|
481
|
+
CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: tailwindPalette.red,
|
|
482
|
+
};
|
|
483
|
+
/**
|
|
484
|
+
* The Customer data source color palette
|
|
485
|
+
* Should be available in any component that could be used to display the Customer data source of an asset
|
|
486
|
+
*/
|
|
487
|
+
const customerDataSourcePalette = {
|
|
488
|
+
CUSTOMER_SOURCE_USER_DEFINED: tailwindPalette.purple,
|
|
489
|
+
CUSTOMER_SOURCE_CLASSIC_MIGRATION: tailwindPalette.emerald,
|
|
490
|
+
CUSTOMER_SOURCE_SYSTEM_DEFINED: tailwindPalette.cyan,
|
|
482
491
|
};
|
|
483
492
|
/**
|
|
484
493
|
* Colors of the different site types.
|
|
@@ -512,6 +521,9 @@ const groupedPalettes = {
|
|
|
512
521
|
UTILIZATION: utilizationPalette,
|
|
513
522
|
// Rental
|
|
514
523
|
RENTAL: rentalStatusPalette,
|
|
524
|
+
// Customers
|
|
525
|
+
CUSTOMER_TYPE: customerTypePalette,
|
|
526
|
+
CUSTOMER_DATA_SOURCE: customerDataSourcePalette,
|
|
515
527
|
// Sites
|
|
516
528
|
SITES: sitesPalette,
|
|
517
529
|
// Themed
|
|
@@ -520,7 +532,7 @@ const groupedPalettes = {
|
|
|
520
532
|
/**
|
|
521
533
|
* The full theme color palette (flattened)
|
|
522
534
|
*/
|
|
523
|
-
const trackunitPalette = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, generalPalette), intentPalette), criticalityPalette), activityPalette), utilizationPalette), rentalStatusPalette), customerTypePalette), sitesPalette), themedPalette);
|
|
535
|
+
const trackunitPalette = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, generalPalette), intentPalette), criticalityPalette), activityPalette), utilizationPalette), rentalStatusPalette), customerTypePalette), customerDataSourcePalette), sitesPalette), themedPalette);
|
|
524
536
|
|
|
525
537
|
/**
|
|
526
538
|
* A collection of all the tokens related to the named colors in the default theme.
|
|
@@ -561,13 +573,34 @@ const themeColors = {
|
|
|
561
573
|
RETURNED: { name: "returned", variants: trackunitPalette.RETURNED },
|
|
562
574
|
TRANSFER: { name: "transfer", variants: trackunitPalette.TRANSFER },
|
|
563
575
|
SITE: { name: "site", variants: trackunitPalette.SITE },
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
576
|
+
CUSTOMER_TYPE_CONTRACTOR: {
|
|
577
|
+
name: "customer_type_contractor",
|
|
578
|
+
variants: trackunitPalette.CUSTOMER_TYPE_CONTRACTOR,
|
|
579
|
+
},
|
|
580
|
+
CUSTOMER_TYPE_DEALER: { name: "customer_type_dealer", variants: trackunitPalette.CUSTOMER_TYPE_DEALER },
|
|
581
|
+
CUSTOMER_TYPE_DISTRIBUTOR: {
|
|
582
|
+
name: "customer_type_distributor",
|
|
583
|
+
variants: trackunitPalette.CUSTOMER_TYPE_DISTRIBUTOR,
|
|
584
|
+
},
|
|
585
|
+
CUSTOMER_SOURCE_CLASSIC_MIGRATION: {
|
|
586
|
+
name: "customer_source_classic_migration",
|
|
587
|
+
variants: trackunitPalette.CUSTOMER_SOURCE_CLASSIC_MIGRATION,
|
|
588
|
+
},
|
|
589
|
+
CUSTOMER_SOURCE_SYSTEM_DEFINED: {
|
|
590
|
+
name: "customer_source_system_defined",
|
|
591
|
+
variants: trackunitPalette.CUSTOMER_SOURCE_SYSTEM_DEFINED,
|
|
592
|
+
},
|
|
593
|
+
CUSTOMER_SOURCE_USER_DEFINED: {
|
|
594
|
+
name: "customer_source_user_defined",
|
|
595
|
+
variants: trackunitPalette.CUSTOMER_SOURCE_USER_DEFINED,
|
|
596
|
+
},
|
|
597
|
+
CUSTOMER_TYPE_OEM: { name: "customer_type_oem", variants: trackunitPalette.CUSTOMER_TYPE_OEM },
|
|
598
|
+
CUSTOMER_TYPE_RENTAL: { name: "customer_type_rental", variants: trackunitPalette.CUSTOMER_TYPE_RENTAL },
|
|
599
|
+
CUSTOMER_TYPE_SERVICE: { name: "customer_type_service", variants: trackunitPalette.CUSTOMER_TYPE_SERVICE },
|
|
600
|
+
CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: {
|
|
601
|
+
name: "customer_type_other_customer_type",
|
|
602
|
+
variants: trackunitPalette.CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE,
|
|
603
|
+
},
|
|
571
604
|
MAIN_MENU_BACKGROUND: { name: "main_menu_background", variants: trackunitPalette.MAIN_MENU_BACKGROUND },
|
|
572
605
|
MAIN_MENU_NAV_ITEM_BACKGROUND: {
|
|
573
606
|
name: "main_menu_nav_item_background",
|
|
@@ -799,4 +832,4 @@ const zIndex = {
|
|
|
799
832
|
toast: themeZIndex.toast,
|
|
800
833
|
};
|
|
801
834
|
|
|
802
|
-
export { DEFAULT_CHART_COLORS, activityPalette, color, criticalityPalette, customerTypePalette, elevation, fontFamily, fontSize, fontWeight, generalPalette, getReorderedChartColors, groupedPalettes, intentPalette, rentalStatusPalette, sitesPalette, size, tailwindPalette, themeBorderRadius, themeBoxShadow, themeColors, themeFontSize, themeFontWeight, themeLineHeight, themeScreenSize, themeSpacing, themeZIndex, themedPalette, trackunitPalette, utilizationPalette, zIndex };
|
|
835
|
+
export { DEFAULT_CHART_COLORS, activityPalette, color, criticalityPalette, customerDataSourcePalette, customerTypePalette, elevation, fontFamily, fontSize, fontWeight, generalPalette, getReorderedChartColors, groupedPalettes, intentPalette, rentalStatusPalette, sitesPalette, size, tailwindPalette, themeBorderRadius, themeBoxShadow, themeColors, themeFontSize, themeFontWeight, themeLineHeight, themeScreenSize, themeSpacing, themeZIndex, themedPalette, trackunitPalette, utilizationPalette, zIndex };
|
package/package.json
CHANGED
|
@@ -332,11 +332,11 @@ export declare const rentalStatusPalette: {
|
|
|
332
332
|
export type RentalStatusColorKeys = keyof typeof rentalStatusPalette;
|
|
333
333
|
export type RentalStatusColors = `${Lowercase<RentalStatusColorKeys>}`;
|
|
334
334
|
/**
|
|
335
|
-
* The
|
|
336
|
-
* Should be available in any component that could be used to display the
|
|
335
|
+
* The Customer Type color palette
|
|
336
|
+
* Should be available in any component that could be used to display the Customer Type of an asset
|
|
337
337
|
*/
|
|
338
338
|
export declare const customerTypePalette: {
|
|
339
|
-
readonly
|
|
339
|
+
readonly CUSTOMER_TYPE_CONTRACTOR: {
|
|
340
340
|
readonly 50: "250 245 255";
|
|
341
341
|
readonly 100: "243 232 255";
|
|
342
342
|
readonly 200: "233 213 255";
|
|
@@ -348,7 +348,7 @@ export declare const customerTypePalette: {
|
|
|
348
348
|
readonly 800: "107 33 168";
|
|
349
349
|
readonly 900: "88 28 135";
|
|
350
350
|
};
|
|
351
|
-
readonly
|
|
351
|
+
readonly CUSTOMER_TYPE_DEALER: {
|
|
352
352
|
readonly 50: "249 250 251";
|
|
353
353
|
readonly 100: "243 244 246";
|
|
354
354
|
readonly 200: "229 231 235";
|
|
@@ -360,7 +360,7 @@ export declare const customerTypePalette: {
|
|
|
360
360
|
readonly 800: "31 41 55";
|
|
361
361
|
readonly 900: "17 24 39";
|
|
362
362
|
};
|
|
363
|
-
readonly
|
|
363
|
+
readonly CUSTOMER_TYPE_RENTAL: {
|
|
364
364
|
readonly 50: "255 247 237";
|
|
365
365
|
readonly 100: "255 237 213";
|
|
366
366
|
readonly 200: "254 215 170";
|
|
@@ -372,7 +372,7 @@ export declare const customerTypePalette: {
|
|
|
372
372
|
readonly 800: "154 52 18";
|
|
373
373
|
readonly 900: "124 45 18";
|
|
374
374
|
};
|
|
375
|
-
readonly
|
|
375
|
+
readonly CUSTOMER_TYPE_OEM: {
|
|
376
376
|
readonly 50: "239 246 255";
|
|
377
377
|
readonly 100: "219 234 254";
|
|
378
378
|
readonly 200: "191 219 254";
|
|
@@ -384,7 +384,7 @@ export declare const customerTypePalette: {
|
|
|
384
384
|
readonly 800: "30 64 175";
|
|
385
385
|
readonly 900: "30 58 138";
|
|
386
386
|
};
|
|
387
|
-
readonly
|
|
387
|
+
readonly CUSTOMER_TYPE_SERVICE: {
|
|
388
388
|
readonly 50: "236 253 245";
|
|
389
389
|
readonly 100: "209 250 229";
|
|
390
390
|
readonly 200: "167 243 208";
|
|
@@ -396,7 +396,7 @@ export declare const customerTypePalette: {
|
|
|
396
396
|
readonly 800: "6 95 70";
|
|
397
397
|
readonly 900: "6 78 59";
|
|
398
398
|
};
|
|
399
|
-
readonly
|
|
399
|
+
readonly CUSTOMER_TYPE_DISTRIBUTOR: {
|
|
400
400
|
readonly 50: "236 254 255";
|
|
401
401
|
readonly 100: "207 250 254";
|
|
402
402
|
readonly 200: "165 243 252";
|
|
@@ -408,7 +408,7 @@ export declare const customerTypePalette: {
|
|
|
408
408
|
readonly 800: "21 94 117";
|
|
409
409
|
readonly 900: "22 78 99";
|
|
410
410
|
};
|
|
411
|
-
readonly
|
|
411
|
+
readonly CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: {
|
|
412
412
|
readonly 50: "254 242 242";
|
|
413
413
|
readonly 100: "254 226 226";
|
|
414
414
|
readonly 200: "254 202 202";
|
|
@@ -422,11 +422,59 @@ export declare const customerTypePalette: {
|
|
|
422
422
|
};
|
|
423
423
|
};
|
|
424
424
|
/**
|
|
425
|
-
* The
|
|
426
|
-
* Should be available in any component that could be used to display the
|
|
425
|
+
* The Customer Type color palette
|
|
426
|
+
* Should be available in any component that could be used to display the Customer Type of an asset
|
|
427
427
|
*/
|
|
428
428
|
export type CustomerTypeColorKeys = keyof typeof customerTypePalette;
|
|
429
429
|
export type CustomerTypeColors = `${Lowercase<CustomerTypeColorKeys>}`;
|
|
430
|
+
/**
|
|
431
|
+
* The Customer data source color palette
|
|
432
|
+
* Should be available in any component that could be used to display the Customer data source of an asset
|
|
433
|
+
*/
|
|
434
|
+
export declare const customerDataSourcePalette: {
|
|
435
|
+
readonly CUSTOMER_SOURCE_USER_DEFINED: {
|
|
436
|
+
readonly 50: "250 245 255";
|
|
437
|
+
readonly 100: "243 232 255";
|
|
438
|
+
readonly 200: "233 213 255";
|
|
439
|
+
readonly 300: "216 180 254";
|
|
440
|
+
readonly 400: "192 132 252";
|
|
441
|
+
readonly 500: "168 85 247";
|
|
442
|
+
readonly 600: "147 51 234";
|
|
443
|
+
readonly 700: "126 34 206";
|
|
444
|
+
readonly 800: "107 33 168";
|
|
445
|
+
readonly 900: "88 28 135";
|
|
446
|
+
};
|
|
447
|
+
readonly CUSTOMER_SOURCE_CLASSIC_MIGRATION: {
|
|
448
|
+
readonly 50: "236 253 245";
|
|
449
|
+
readonly 100: "209 250 229";
|
|
450
|
+
readonly 200: "167 243 208";
|
|
451
|
+
readonly 300: "110 231 183";
|
|
452
|
+
readonly 400: "52 211 153";
|
|
453
|
+
readonly 500: "16 185 129";
|
|
454
|
+
readonly 600: "5 150 105";
|
|
455
|
+
readonly 700: "4 120 87";
|
|
456
|
+
readonly 800: "6 95 70";
|
|
457
|
+
readonly 900: "6 78 59";
|
|
458
|
+
};
|
|
459
|
+
readonly CUSTOMER_SOURCE_SYSTEM_DEFINED: {
|
|
460
|
+
readonly 50: "236 254 255";
|
|
461
|
+
readonly 100: "207 250 254";
|
|
462
|
+
readonly 200: "165 243 252";
|
|
463
|
+
readonly 300: "103 232 249";
|
|
464
|
+
readonly 400: "34 211 238";
|
|
465
|
+
readonly 500: "6 182 212";
|
|
466
|
+
readonly 600: "8 145 178";
|
|
467
|
+
readonly 700: "14 116 144";
|
|
468
|
+
readonly 800: "21 94 117";
|
|
469
|
+
readonly 900: "22 78 99";
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
/**
|
|
473
|
+
* The Customer data source color palette
|
|
474
|
+
* Should be available in any component that could be used to display the customer data source of an asset
|
|
475
|
+
*/
|
|
476
|
+
export type CustomerDataSourceColorKeys = keyof typeof customerDataSourcePalette;
|
|
477
|
+
export type CustomerDataSourceColors = `${Lowercase<CustomerDataSourceColorKeys>}`;
|
|
430
478
|
/**
|
|
431
479
|
* Colors of the different site types.
|
|
432
480
|
*
|
|
@@ -697,6 +745,130 @@ export declare const groupedPalettes: {
|
|
|
697
745
|
readonly 600: "151 154 154";
|
|
698
746
|
};
|
|
699
747
|
};
|
|
748
|
+
readonly CUSTOMER_TYPE: {
|
|
749
|
+
readonly CUSTOMER_TYPE_CONTRACTOR: {
|
|
750
|
+
readonly 50: "250 245 255";
|
|
751
|
+
readonly 100: "243 232 255";
|
|
752
|
+
readonly 200: "233 213 255";
|
|
753
|
+
readonly 300: "216 180 254";
|
|
754
|
+
readonly 400: "192 132 252";
|
|
755
|
+
readonly 500: "168 85 247";
|
|
756
|
+
readonly 600: "147 51 234";
|
|
757
|
+
readonly 700: "126 34 206";
|
|
758
|
+
readonly 800: "107 33 168";
|
|
759
|
+
readonly 900: "88 28 135";
|
|
760
|
+
};
|
|
761
|
+
readonly CUSTOMER_TYPE_DEALER: {
|
|
762
|
+
readonly 50: "249 250 251";
|
|
763
|
+
readonly 100: "243 244 246";
|
|
764
|
+
readonly 200: "229 231 235";
|
|
765
|
+
readonly 300: "209 213 219";
|
|
766
|
+
readonly 400: "156 163 175";
|
|
767
|
+
readonly 500: "107 114 128";
|
|
768
|
+
readonly 600: "75 85 99";
|
|
769
|
+
readonly 700: "55 65 81";
|
|
770
|
+
readonly 800: "31 41 55";
|
|
771
|
+
readonly 900: "17 24 39";
|
|
772
|
+
};
|
|
773
|
+
readonly CUSTOMER_TYPE_RENTAL: {
|
|
774
|
+
readonly 50: "255 247 237";
|
|
775
|
+
readonly 100: "255 237 213";
|
|
776
|
+
readonly 200: "254 215 170";
|
|
777
|
+
readonly 300: "253 186 116";
|
|
778
|
+
readonly 400: "251 146 60";
|
|
779
|
+
readonly 500: "249 115 22";
|
|
780
|
+
readonly 600: "234 88 12";
|
|
781
|
+
readonly 700: "194 65 12";
|
|
782
|
+
readonly 800: "154 52 18";
|
|
783
|
+
readonly 900: "124 45 18";
|
|
784
|
+
};
|
|
785
|
+
readonly CUSTOMER_TYPE_OEM: {
|
|
786
|
+
readonly 50: "239 246 255";
|
|
787
|
+
readonly 100: "219 234 254";
|
|
788
|
+
readonly 200: "191 219 254";
|
|
789
|
+
readonly 300: "147 197 253";
|
|
790
|
+
readonly 400: "96 165 250";
|
|
791
|
+
readonly 500: "59 130 246";
|
|
792
|
+
readonly 600: "37 99 235";
|
|
793
|
+
readonly 700: "29 78 216";
|
|
794
|
+
readonly 800: "30 64 175";
|
|
795
|
+
readonly 900: "30 58 138";
|
|
796
|
+
};
|
|
797
|
+
readonly CUSTOMER_TYPE_SERVICE: {
|
|
798
|
+
readonly 50: "236 253 245";
|
|
799
|
+
readonly 100: "209 250 229";
|
|
800
|
+
readonly 200: "167 243 208";
|
|
801
|
+
readonly 300: "110 231 183";
|
|
802
|
+
readonly 400: "52 211 153";
|
|
803
|
+
readonly 500: "16 185 129";
|
|
804
|
+
readonly 600: "5 150 105";
|
|
805
|
+
readonly 700: "4 120 87";
|
|
806
|
+
readonly 800: "6 95 70";
|
|
807
|
+
readonly 900: "6 78 59";
|
|
808
|
+
};
|
|
809
|
+
readonly CUSTOMER_TYPE_DISTRIBUTOR: {
|
|
810
|
+
readonly 50: "236 254 255";
|
|
811
|
+
readonly 100: "207 250 254";
|
|
812
|
+
readonly 200: "165 243 252";
|
|
813
|
+
readonly 300: "103 232 249";
|
|
814
|
+
readonly 400: "34 211 238";
|
|
815
|
+
readonly 500: "6 182 212";
|
|
816
|
+
readonly 600: "8 145 178";
|
|
817
|
+
readonly 700: "14 116 144";
|
|
818
|
+
readonly 800: "21 94 117";
|
|
819
|
+
readonly 900: "22 78 99";
|
|
820
|
+
};
|
|
821
|
+
readonly CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: {
|
|
822
|
+
readonly 50: "254 242 242";
|
|
823
|
+
readonly 100: "254 226 226";
|
|
824
|
+
readonly 200: "254 202 202";
|
|
825
|
+
readonly 300: "252 165 165";
|
|
826
|
+
readonly 400: "248 113 113";
|
|
827
|
+
readonly 500: "239 68 68";
|
|
828
|
+
readonly 600: "220 38 38";
|
|
829
|
+
readonly 700: "185 28 28";
|
|
830
|
+
readonly 800: "153 27 27";
|
|
831
|
+
readonly 900: "127 29 29";
|
|
832
|
+
};
|
|
833
|
+
};
|
|
834
|
+
readonly CUSTOMER_DATA_SOURCE: {
|
|
835
|
+
readonly CUSTOMER_SOURCE_USER_DEFINED: {
|
|
836
|
+
readonly 50: "250 245 255";
|
|
837
|
+
readonly 100: "243 232 255";
|
|
838
|
+
readonly 200: "233 213 255";
|
|
839
|
+
readonly 300: "216 180 254";
|
|
840
|
+
readonly 400: "192 132 252";
|
|
841
|
+
readonly 500: "168 85 247";
|
|
842
|
+
readonly 600: "147 51 234";
|
|
843
|
+
readonly 700: "126 34 206";
|
|
844
|
+
readonly 800: "107 33 168";
|
|
845
|
+
readonly 900: "88 28 135";
|
|
846
|
+
};
|
|
847
|
+
readonly CUSTOMER_SOURCE_CLASSIC_MIGRATION: {
|
|
848
|
+
readonly 50: "236 253 245";
|
|
849
|
+
readonly 100: "209 250 229";
|
|
850
|
+
readonly 200: "167 243 208";
|
|
851
|
+
readonly 300: "110 231 183";
|
|
852
|
+
readonly 400: "52 211 153";
|
|
853
|
+
readonly 500: "16 185 129";
|
|
854
|
+
readonly 600: "5 150 105";
|
|
855
|
+
readonly 700: "4 120 87";
|
|
856
|
+
readonly 800: "6 95 70";
|
|
857
|
+
readonly 900: "6 78 59";
|
|
858
|
+
};
|
|
859
|
+
readonly CUSTOMER_SOURCE_SYSTEM_DEFINED: {
|
|
860
|
+
readonly 50: "236 254 255";
|
|
861
|
+
readonly 100: "207 250 254";
|
|
862
|
+
readonly 200: "165 243 252";
|
|
863
|
+
readonly 300: "103 232 249";
|
|
864
|
+
readonly 400: "34 211 238";
|
|
865
|
+
readonly 500: "6 182 212";
|
|
866
|
+
readonly 600: "8 145 178";
|
|
867
|
+
readonly 700: "14 116 144";
|
|
868
|
+
readonly 800: "21 94 117";
|
|
869
|
+
readonly 900: "22 78 99";
|
|
870
|
+
};
|
|
871
|
+
};
|
|
700
872
|
readonly SITES: {
|
|
701
873
|
readonly SITE: {
|
|
702
874
|
readonly AREA: "37 99 235";
|
|
@@ -750,7 +922,7 @@ export declare const trackunitPalette: {
|
|
|
750
922
|
readonly CONSTRUCTION_SITE: "245 158 11";
|
|
751
923
|
readonly UNKNOWN: "115 115 115";
|
|
752
924
|
};
|
|
753
|
-
readonly
|
|
925
|
+
readonly CUSTOMER_SOURCE_USER_DEFINED: {
|
|
754
926
|
readonly 50: "250 245 255";
|
|
755
927
|
readonly 100: "243 232 255";
|
|
756
928
|
readonly 200: "233 213 255";
|
|
@@ -762,7 +934,43 @@ export declare const trackunitPalette: {
|
|
|
762
934
|
readonly 800: "107 33 168";
|
|
763
935
|
readonly 900: "88 28 135";
|
|
764
936
|
};
|
|
765
|
-
readonly
|
|
937
|
+
readonly CUSTOMER_SOURCE_CLASSIC_MIGRATION: {
|
|
938
|
+
readonly 50: "236 253 245";
|
|
939
|
+
readonly 100: "209 250 229";
|
|
940
|
+
readonly 200: "167 243 208";
|
|
941
|
+
readonly 300: "110 231 183";
|
|
942
|
+
readonly 400: "52 211 153";
|
|
943
|
+
readonly 500: "16 185 129";
|
|
944
|
+
readonly 600: "5 150 105";
|
|
945
|
+
readonly 700: "4 120 87";
|
|
946
|
+
readonly 800: "6 95 70";
|
|
947
|
+
readonly 900: "6 78 59";
|
|
948
|
+
};
|
|
949
|
+
readonly CUSTOMER_SOURCE_SYSTEM_DEFINED: {
|
|
950
|
+
readonly 50: "236 254 255";
|
|
951
|
+
readonly 100: "207 250 254";
|
|
952
|
+
readonly 200: "165 243 252";
|
|
953
|
+
readonly 300: "103 232 249";
|
|
954
|
+
readonly 400: "34 211 238";
|
|
955
|
+
readonly 500: "6 182 212";
|
|
956
|
+
readonly 600: "8 145 178";
|
|
957
|
+
readonly 700: "14 116 144";
|
|
958
|
+
readonly 800: "21 94 117";
|
|
959
|
+
readonly 900: "22 78 99";
|
|
960
|
+
};
|
|
961
|
+
readonly CUSTOMER_TYPE_CONTRACTOR: {
|
|
962
|
+
readonly 50: "250 245 255";
|
|
963
|
+
readonly 100: "243 232 255";
|
|
964
|
+
readonly 200: "233 213 255";
|
|
965
|
+
readonly 300: "216 180 254";
|
|
966
|
+
readonly 400: "192 132 252";
|
|
967
|
+
readonly 500: "168 85 247";
|
|
968
|
+
readonly 600: "147 51 234";
|
|
969
|
+
readonly 700: "126 34 206";
|
|
970
|
+
readonly 800: "107 33 168";
|
|
971
|
+
readonly 900: "88 28 135";
|
|
972
|
+
};
|
|
973
|
+
readonly CUSTOMER_TYPE_DEALER: {
|
|
766
974
|
readonly 50: "249 250 251";
|
|
767
975
|
readonly 100: "243 244 246";
|
|
768
976
|
readonly 200: "229 231 235";
|
|
@@ -774,7 +982,7 @@ export declare const trackunitPalette: {
|
|
|
774
982
|
readonly 800: "31 41 55";
|
|
775
983
|
readonly 900: "17 24 39";
|
|
776
984
|
};
|
|
777
|
-
readonly
|
|
985
|
+
readonly CUSTOMER_TYPE_RENTAL: {
|
|
778
986
|
readonly 50: "255 247 237";
|
|
779
987
|
readonly 100: "255 237 213";
|
|
780
988
|
readonly 200: "254 215 170";
|
|
@@ -786,7 +994,7 @@ export declare const trackunitPalette: {
|
|
|
786
994
|
readonly 800: "154 52 18";
|
|
787
995
|
readonly 900: "124 45 18";
|
|
788
996
|
};
|
|
789
|
-
readonly
|
|
997
|
+
readonly CUSTOMER_TYPE_OEM: {
|
|
790
998
|
readonly 50: "239 246 255";
|
|
791
999
|
readonly 100: "219 234 254";
|
|
792
1000
|
readonly 200: "191 219 254";
|
|
@@ -798,7 +1006,7 @@ export declare const trackunitPalette: {
|
|
|
798
1006
|
readonly 800: "30 64 175";
|
|
799
1007
|
readonly 900: "30 58 138";
|
|
800
1008
|
};
|
|
801
|
-
readonly
|
|
1009
|
+
readonly CUSTOMER_TYPE_SERVICE: {
|
|
802
1010
|
readonly 50: "236 253 245";
|
|
803
1011
|
readonly 100: "209 250 229";
|
|
804
1012
|
readonly 200: "167 243 208";
|
|
@@ -810,7 +1018,7 @@ export declare const trackunitPalette: {
|
|
|
810
1018
|
readonly 800: "6 95 70";
|
|
811
1019
|
readonly 900: "6 78 59";
|
|
812
1020
|
};
|
|
813
|
-
readonly
|
|
1021
|
+
readonly CUSTOMER_TYPE_DISTRIBUTOR: {
|
|
814
1022
|
readonly 50: "236 254 255";
|
|
815
1023
|
readonly 100: "207 250 254";
|
|
816
1024
|
readonly 200: "165 243 252";
|
|
@@ -822,7 +1030,7 @@ export declare const trackunitPalette: {
|
|
|
822
1030
|
readonly 800: "21 94 117";
|
|
823
1031
|
readonly 900: "22 78 99";
|
|
824
1032
|
};
|
|
825
|
-
readonly
|
|
1033
|
+
readonly CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: {
|
|
826
1034
|
readonly 50: "254 242 242";
|
|
827
1035
|
readonly 100: "254 226 226";
|
|
828
1036
|
readonly 200: "254 202 202";
|