@trackunit/ui-design-tokens 0.0.113 → 0.0.115

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 CHANGED
@@ -470,28 +470,6 @@ const rentalStatusPalette = {
470
470
  IN_REPAIR: { 100: "255 233 233", 600: "255 90 90" },
471
471
  OTHER_RENTAL_STATUS: { 100: "238 239 239", 600: "151 154 154" },
472
472
  };
473
- /**
474
- * The Customer Type color palette
475
- * Should be available in any component that could be used to display the Customer Type of an asset
476
- */
477
- const customerTypePalette = {
478
- CUSTOMER_TYPE_CONTRACTOR: tailwindPalette.purple,
479
- CUSTOMER_TYPE_DEALER: tailwindPalette.gray,
480
- CUSTOMER_TYPE_RENTAL: tailwindPalette.orange,
481
- CUSTOMER_TYPE_OEM: tailwindPalette.blue,
482
- CUSTOMER_TYPE_SERVICE: tailwindPalette.emerald,
483
- CUSTOMER_TYPE_DISTRIBUTOR: tailwindPalette.cyan,
484
- CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: tailwindPalette.red,
485
- };
486
- /**
487
- * The Customer data source color palette
488
- * Should be available in any component that could be used to display the Customer data source of an asset
489
- */
490
- const customerDataSourcePalette = {
491
- CUSTOMER_SOURCE_USER_DEFINED: tailwindPalette.purple,
492
- CUSTOMER_SOURCE_CLASSIC_MIGRATION: tailwindPalette.emerald,
493
- CUSTOMER_SOURCE_SYSTEM_DEFINED: tailwindPalette.cyan,
494
- };
495
473
  /**
496
474
  * Colors of the different site types.
497
475
  *
@@ -524,9 +502,6 @@ const groupedPalettes = {
524
502
  UTILIZATION: utilizationPalette,
525
503
  // Rental
526
504
  RENTAL: rentalStatusPalette,
527
- // Customers
528
- CUSTOMER_TYPE: customerTypePalette,
529
- CUSTOMER_DATA_SOURCE: customerDataSourcePalette,
530
505
  // Sites
531
506
  SITES: sitesPalette,
532
507
  // Themed
@@ -548,10 +523,6 @@ const trackunitPalette = {
548
523
  ...utilizationPalette,
549
524
  // Rental
550
525
  ...rentalStatusPalette,
551
- // Customer Type
552
- ...customerTypePalette,
553
- // Customer DataSource
554
- ...customerDataSourcePalette,
555
526
  // Sites
556
527
  ...sitesPalette,
557
528
  // Themed
@@ -597,34 +568,6 @@ const themeColors = {
597
568
  RETURNED: { name: "returned", variants: trackunitPalette.RETURNED },
598
569
  TRANSFER: { name: "transfer", variants: trackunitPalette.TRANSFER },
599
570
  SITE: { name: "site", variants: trackunitPalette.SITE },
600
- CUSTOMER_TYPE_CONTRACTOR: {
601
- name: "customer_type_contractor",
602
- variants: trackunitPalette.CUSTOMER_TYPE_CONTRACTOR,
603
- },
604
- CUSTOMER_TYPE_DEALER: { name: "customer_type_dealer", variants: trackunitPalette.CUSTOMER_TYPE_DEALER },
605
- CUSTOMER_TYPE_DISTRIBUTOR: {
606
- name: "customer_type_distributor",
607
- variants: trackunitPalette.CUSTOMER_TYPE_DISTRIBUTOR,
608
- },
609
- CUSTOMER_SOURCE_CLASSIC_MIGRATION: {
610
- name: "customer_source_classic_migration",
611
- variants: trackunitPalette.CUSTOMER_SOURCE_CLASSIC_MIGRATION,
612
- },
613
- CUSTOMER_SOURCE_SYSTEM_DEFINED: {
614
- name: "customer_source_system_defined",
615
- variants: trackunitPalette.CUSTOMER_SOURCE_SYSTEM_DEFINED,
616
- },
617
- CUSTOMER_SOURCE_USER_DEFINED: {
618
- name: "customer_source_user_defined",
619
- variants: trackunitPalette.CUSTOMER_SOURCE_USER_DEFINED,
620
- },
621
- CUSTOMER_TYPE_OEM: { name: "customer_type_oem", variants: trackunitPalette.CUSTOMER_TYPE_OEM },
622
- CUSTOMER_TYPE_RENTAL: { name: "customer_type_rental", variants: trackunitPalette.CUSTOMER_TYPE_RENTAL },
623
- CUSTOMER_TYPE_SERVICE: { name: "customer_type_service", variants: trackunitPalette.CUSTOMER_TYPE_SERVICE },
624
- CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: {
625
- name: "customer_type_other_customer_type",
626
- variants: trackunitPalette.CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE,
627
- },
628
571
  MAIN_MENU_BACKGROUND: { name: "main_menu_background", variants: trackunitPalette.MAIN_MENU_BACKGROUND },
629
572
  MAIN_MENU_NAV_ITEM_BACKGROUND: {
630
573
  name: "main_menu_nav_item_background",
@@ -855,16 +798,19 @@ const fontFamily = `'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe
855
798
  const themeZIndex = {
856
799
  hidden: -1,
857
800
  default: 1,
858
- top: 5,
859
- sidebar: 9,
860
- overlay: 10,
861
- popover: 21,
862
- toast: 100,
801
+ top: 30,
802
+ "main-menu-drawer": 40,
803
+ "main-menu": 50,
804
+ overlay: 60,
805
+ popover: 70,
806
+ toast: 80,
863
807
  };
864
808
  const zIndex = {
865
809
  hidden: themeZIndex.hidden,
866
810
  default: themeZIndex.default,
867
811
  top: themeZIndex.top,
812
+ "main-menu-drawer": themeZIndex["main-menu-drawer"],
813
+ "main-menu": themeZIndex["main-menu"],
868
814
  overlay: themeZIndex.overlay,
869
815
  popover: themeZIndex.popover,
870
816
  toast: themeZIndex.toast,
@@ -874,8 +820,6 @@ exports.DEFAULT_CHART_COLORS = DEFAULT_CHART_COLORS;
874
820
  exports.activityPalette = activityPalette;
875
821
  exports.color = color;
876
822
  exports.criticalityPalette = criticalityPalette;
877
- exports.customerDataSourcePalette = customerDataSourcePalette;
878
- exports.customerTypePalette = customerTypePalette;
879
823
  exports.elevation = elevation;
880
824
  exports.fontFamily = fontFamily;
881
825
  exports.fontSize = fontSize;
package/index.esm.js CHANGED
@@ -468,28 +468,6 @@ const rentalStatusPalette = {
468
468
  IN_REPAIR: { 100: "255 233 233", 600: "255 90 90" },
469
469
  OTHER_RENTAL_STATUS: { 100: "238 239 239", 600: "151 154 154" },
470
470
  };
471
- /**
472
- * The Customer Type color palette
473
- * Should be available in any component that could be used to display the Customer Type of an asset
474
- */
475
- const customerTypePalette = {
476
- CUSTOMER_TYPE_CONTRACTOR: tailwindPalette.purple,
477
- CUSTOMER_TYPE_DEALER: tailwindPalette.gray,
478
- CUSTOMER_TYPE_RENTAL: tailwindPalette.orange,
479
- CUSTOMER_TYPE_OEM: tailwindPalette.blue,
480
- CUSTOMER_TYPE_SERVICE: tailwindPalette.emerald,
481
- CUSTOMER_TYPE_DISTRIBUTOR: tailwindPalette.cyan,
482
- CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: tailwindPalette.red,
483
- };
484
- /**
485
- * The Customer data source color palette
486
- * Should be available in any component that could be used to display the Customer data source of an asset
487
- */
488
- const customerDataSourcePalette = {
489
- CUSTOMER_SOURCE_USER_DEFINED: tailwindPalette.purple,
490
- CUSTOMER_SOURCE_CLASSIC_MIGRATION: tailwindPalette.emerald,
491
- CUSTOMER_SOURCE_SYSTEM_DEFINED: tailwindPalette.cyan,
492
- };
493
471
  /**
494
472
  * Colors of the different site types.
495
473
  *
@@ -522,9 +500,6 @@ const groupedPalettes = {
522
500
  UTILIZATION: utilizationPalette,
523
501
  // Rental
524
502
  RENTAL: rentalStatusPalette,
525
- // Customers
526
- CUSTOMER_TYPE: customerTypePalette,
527
- CUSTOMER_DATA_SOURCE: customerDataSourcePalette,
528
503
  // Sites
529
504
  SITES: sitesPalette,
530
505
  // Themed
@@ -546,10 +521,6 @@ const trackunitPalette = {
546
521
  ...utilizationPalette,
547
522
  // Rental
548
523
  ...rentalStatusPalette,
549
- // Customer Type
550
- ...customerTypePalette,
551
- // Customer DataSource
552
- ...customerDataSourcePalette,
553
524
  // Sites
554
525
  ...sitesPalette,
555
526
  // Themed
@@ -595,34 +566,6 @@ const themeColors = {
595
566
  RETURNED: { name: "returned", variants: trackunitPalette.RETURNED },
596
567
  TRANSFER: { name: "transfer", variants: trackunitPalette.TRANSFER },
597
568
  SITE: { name: "site", variants: trackunitPalette.SITE },
598
- CUSTOMER_TYPE_CONTRACTOR: {
599
- name: "customer_type_contractor",
600
- variants: trackunitPalette.CUSTOMER_TYPE_CONTRACTOR,
601
- },
602
- CUSTOMER_TYPE_DEALER: { name: "customer_type_dealer", variants: trackunitPalette.CUSTOMER_TYPE_DEALER },
603
- CUSTOMER_TYPE_DISTRIBUTOR: {
604
- name: "customer_type_distributor",
605
- variants: trackunitPalette.CUSTOMER_TYPE_DISTRIBUTOR,
606
- },
607
- CUSTOMER_SOURCE_CLASSIC_MIGRATION: {
608
- name: "customer_source_classic_migration",
609
- variants: trackunitPalette.CUSTOMER_SOURCE_CLASSIC_MIGRATION,
610
- },
611
- CUSTOMER_SOURCE_SYSTEM_DEFINED: {
612
- name: "customer_source_system_defined",
613
- variants: trackunitPalette.CUSTOMER_SOURCE_SYSTEM_DEFINED,
614
- },
615
- CUSTOMER_SOURCE_USER_DEFINED: {
616
- name: "customer_source_user_defined",
617
- variants: trackunitPalette.CUSTOMER_SOURCE_USER_DEFINED,
618
- },
619
- CUSTOMER_TYPE_OEM: { name: "customer_type_oem", variants: trackunitPalette.CUSTOMER_TYPE_OEM },
620
- CUSTOMER_TYPE_RENTAL: { name: "customer_type_rental", variants: trackunitPalette.CUSTOMER_TYPE_RENTAL },
621
- CUSTOMER_TYPE_SERVICE: { name: "customer_type_service", variants: trackunitPalette.CUSTOMER_TYPE_SERVICE },
622
- CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: {
623
- name: "customer_type_other_customer_type",
624
- variants: trackunitPalette.CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE,
625
- },
626
569
  MAIN_MENU_BACKGROUND: { name: "main_menu_background", variants: trackunitPalette.MAIN_MENU_BACKGROUND },
627
570
  MAIN_MENU_NAV_ITEM_BACKGROUND: {
628
571
  name: "main_menu_nav_item_background",
@@ -853,19 +796,22 @@ const fontFamily = `'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe
853
796
  const themeZIndex = {
854
797
  hidden: -1,
855
798
  default: 1,
856
- top: 5,
857
- sidebar: 9,
858
- overlay: 10,
859
- popover: 21,
860
- toast: 100,
799
+ top: 30,
800
+ "main-menu-drawer": 40,
801
+ "main-menu": 50,
802
+ overlay: 60,
803
+ popover: 70,
804
+ toast: 80,
861
805
  };
862
806
  const zIndex = {
863
807
  hidden: themeZIndex.hidden,
864
808
  default: themeZIndex.default,
865
809
  top: themeZIndex.top,
810
+ "main-menu-drawer": themeZIndex["main-menu-drawer"],
811
+ "main-menu": themeZIndex["main-menu"],
866
812
  overlay: themeZIndex.overlay,
867
813
  popover: themeZIndex.popover,
868
814
  toast: themeZIndex.toast,
869
815
  };
870
816
 
871
- 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, themeScreenSizeAsNumber, themeSpacing, themeZIndex, themedPalette, trackunitPalette, utilizationPalette, zIndex };
817
+ export { DEFAULT_CHART_COLORS, activityPalette, color, criticalityPalette, elevation, fontFamily, fontSize, fontWeight, generalPalette, getReorderedChartColors, groupedPalettes, intentPalette, rentalStatusPalette, sitesPalette, size, tailwindPalette, themeBorderRadius, themeBoxShadow, themeColors, themeFontSize, themeFontWeight, themeLineHeight, themeScreenSize, themeScreenSizeAsNumber, themeSpacing, themeZIndex, themedPalette, trackunitPalette, utilizationPalette, zIndex };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/ui-design-tokens",
3
- "version": "0.0.113",
3
+ "version": "0.0.115",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -334,150 +334,6 @@ export declare const rentalStatusPalette: {
334
334
  */
335
335
  export type RentalStatusColorKeys = keyof typeof rentalStatusPalette;
336
336
  export type RentalStatusColors = `${Lowercase<RentalStatusColorKeys>}`;
337
- /**
338
- * The Customer Type color palette
339
- * Should be available in any component that could be used to display the Customer Type of an asset
340
- */
341
- export declare const customerTypePalette: {
342
- readonly CUSTOMER_TYPE_CONTRACTOR: {
343
- readonly 50: "250 245 255";
344
- readonly 100: "243 232 255";
345
- readonly 200: "233 213 255";
346
- readonly 300: "216 180 254";
347
- readonly 400: "192 132 252";
348
- readonly 500: "168 85 247";
349
- readonly 600: "147 51 234";
350
- readonly 700: "126 34 206";
351
- readonly 800: "107 33 168";
352
- readonly 900: "88 28 135";
353
- };
354
- readonly CUSTOMER_TYPE_DEALER: {
355
- readonly 50: "249 250 251";
356
- readonly 100: "243 244 246";
357
- readonly 200: "229 231 235";
358
- readonly 300: "209 213 219";
359
- readonly 400: "156 163 175";
360
- readonly 500: "107 114 128";
361
- readonly 600: "75 85 99";
362
- readonly 700: "55 65 81";
363
- readonly 800: "31 41 55";
364
- readonly 900: "17 24 39";
365
- };
366
- readonly CUSTOMER_TYPE_RENTAL: {
367
- readonly 50: "255 247 237";
368
- readonly 100: "255 237 213";
369
- readonly 200: "254 215 170";
370
- readonly 300: "253 186 116";
371
- readonly 400: "251 146 60";
372
- readonly 500: "249 115 22";
373
- readonly 600: "234 88 12";
374
- readonly 700: "194 65 12";
375
- readonly 800: "154 52 18";
376
- readonly 900: "124 45 18";
377
- };
378
- readonly CUSTOMER_TYPE_OEM: {
379
- readonly 50: "239 246 255";
380
- readonly 100: "219 234 254";
381
- readonly 200: "191 219 254";
382
- readonly 300: "147 197 253";
383
- readonly 400: "96 165 250";
384
- readonly 500: "59 130 246";
385
- readonly 600: "37 99 235";
386
- readonly 700: "29 78 216";
387
- readonly 800: "30 64 175";
388
- readonly 900: "30 58 138";
389
- };
390
- readonly CUSTOMER_TYPE_SERVICE: {
391
- readonly 50: "236 253 245";
392
- readonly 100: "209 250 229";
393
- readonly 200: "167 243 208";
394
- readonly 300: "110 231 183";
395
- readonly 400: "52 211 153";
396
- readonly 500: "16 185 129";
397
- readonly 600: "5 150 105";
398
- readonly 700: "4 120 87";
399
- readonly 800: "6 95 70";
400
- readonly 900: "6 78 59";
401
- };
402
- readonly CUSTOMER_TYPE_DISTRIBUTOR: {
403
- readonly 50: "236 254 255";
404
- readonly 100: "207 250 254";
405
- readonly 200: "165 243 252";
406
- readonly 300: "103 232 249";
407
- readonly 400: "34 211 238";
408
- readonly 500: "6 182 212";
409
- readonly 600: "8 145 178";
410
- readonly 700: "14 116 144";
411
- readonly 800: "21 94 117";
412
- readonly 900: "22 78 99";
413
- };
414
- readonly CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: {
415
- readonly 50: "254 242 242";
416
- readonly 100: "254 226 226";
417
- readonly 200: "254 202 202";
418
- readonly 300: "252 165 165";
419
- readonly 400: "248 113 113";
420
- readonly 500: "239 68 68";
421
- readonly 600: "220 38 38";
422
- readonly 700: "185 28 28";
423
- readonly 800: "153 27 27";
424
- readonly 900: "127 29 29";
425
- };
426
- };
427
- /**
428
- * The Customer Type color palette
429
- * Should be available in any component that could be used to display the Customer Type of an asset
430
- */
431
- export type CustomerTypeColorKeys = keyof typeof customerTypePalette;
432
- export type CustomerTypeColors = `${Lowercase<CustomerTypeColorKeys>}`;
433
- /**
434
- * The Customer data source color palette
435
- * Should be available in any component that could be used to display the Customer data source of an asset
436
- */
437
- export declare const customerDataSourcePalette: {
438
- readonly CUSTOMER_SOURCE_USER_DEFINED: {
439
- readonly 50: "250 245 255";
440
- readonly 100: "243 232 255";
441
- readonly 200: "233 213 255";
442
- readonly 300: "216 180 254";
443
- readonly 400: "192 132 252";
444
- readonly 500: "168 85 247";
445
- readonly 600: "147 51 234";
446
- readonly 700: "126 34 206";
447
- readonly 800: "107 33 168";
448
- readonly 900: "88 28 135";
449
- };
450
- readonly CUSTOMER_SOURCE_CLASSIC_MIGRATION: {
451
- readonly 50: "236 253 245";
452
- readonly 100: "209 250 229";
453
- readonly 200: "167 243 208";
454
- readonly 300: "110 231 183";
455
- readonly 400: "52 211 153";
456
- readonly 500: "16 185 129";
457
- readonly 600: "5 150 105";
458
- readonly 700: "4 120 87";
459
- readonly 800: "6 95 70";
460
- readonly 900: "6 78 59";
461
- };
462
- readonly CUSTOMER_SOURCE_SYSTEM_DEFINED: {
463
- readonly 50: "236 254 255";
464
- readonly 100: "207 250 254";
465
- readonly 200: "165 243 252";
466
- readonly 300: "103 232 249";
467
- readonly 400: "34 211 238";
468
- readonly 500: "6 182 212";
469
- readonly 600: "8 145 178";
470
- readonly 700: "14 116 144";
471
- readonly 800: "21 94 117";
472
- readonly 900: "22 78 99";
473
- };
474
- };
475
- /**
476
- * The Customer data source color palette
477
- * Should be available in any component that could be used to display the customer data source of an asset
478
- */
479
- export type CustomerDataSourceColorKeys = keyof typeof customerDataSourcePalette;
480
- export type CustomerDataSourceColors = `${Lowercase<CustomerDataSourceColorKeys>}`;
481
337
  /**
482
338
  * Colors of the different site types.
483
339
  *
@@ -748,130 +604,6 @@ export declare const groupedPalettes: {
748
604
  readonly 600: "151 154 154";
749
605
  };
750
606
  };
751
- readonly CUSTOMER_TYPE: {
752
- readonly CUSTOMER_TYPE_CONTRACTOR: {
753
- readonly 50: "250 245 255";
754
- readonly 100: "243 232 255";
755
- readonly 200: "233 213 255";
756
- readonly 300: "216 180 254";
757
- readonly 400: "192 132 252";
758
- readonly 500: "168 85 247";
759
- readonly 600: "147 51 234";
760
- readonly 700: "126 34 206";
761
- readonly 800: "107 33 168";
762
- readonly 900: "88 28 135";
763
- };
764
- readonly CUSTOMER_TYPE_DEALER: {
765
- readonly 50: "249 250 251";
766
- readonly 100: "243 244 246";
767
- readonly 200: "229 231 235";
768
- readonly 300: "209 213 219";
769
- readonly 400: "156 163 175";
770
- readonly 500: "107 114 128";
771
- readonly 600: "75 85 99";
772
- readonly 700: "55 65 81";
773
- readonly 800: "31 41 55";
774
- readonly 900: "17 24 39";
775
- };
776
- readonly CUSTOMER_TYPE_RENTAL: {
777
- readonly 50: "255 247 237";
778
- readonly 100: "255 237 213";
779
- readonly 200: "254 215 170";
780
- readonly 300: "253 186 116";
781
- readonly 400: "251 146 60";
782
- readonly 500: "249 115 22";
783
- readonly 600: "234 88 12";
784
- readonly 700: "194 65 12";
785
- readonly 800: "154 52 18";
786
- readonly 900: "124 45 18";
787
- };
788
- readonly CUSTOMER_TYPE_OEM: {
789
- readonly 50: "239 246 255";
790
- readonly 100: "219 234 254";
791
- readonly 200: "191 219 254";
792
- readonly 300: "147 197 253";
793
- readonly 400: "96 165 250";
794
- readonly 500: "59 130 246";
795
- readonly 600: "37 99 235";
796
- readonly 700: "29 78 216";
797
- readonly 800: "30 64 175";
798
- readonly 900: "30 58 138";
799
- };
800
- readonly CUSTOMER_TYPE_SERVICE: {
801
- readonly 50: "236 253 245";
802
- readonly 100: "209 250 229";
803
- readonly 200: "167 243 208";
804
- readonly 300: "110 231 183";
805
- readonly 400: "52 211 153";
806
- readonly 500: "16 185 129";
807
- readonly 600: "5 150 105";
808
- readonly 700: "4 120 87";
809
- readonly 800: "6 95 70";
810
- readonly 900: "6 78 59";
811
- };
812
- readonly CUSTOMER_TYPE_DISTRIBUTOR: {
813
- readonly 50: "236 254 255";
814
- readonly 100: "207 250 254";
815
- readonly 200: "165 243 252";
816
- readonly 300: "103 232 249";
817
- readonly 400: "34 211 238";
818
- readonly 500: "6 182 212";
819
- readonly 600: "8 145 178";
820
- readonly 700: "14 116 144";
821
- readonly 800: "21 94 117";
822
- readonly 900: "22 78 99";
823
- };
824
- readonly CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: {
825
- readonly 50: "254 242 242";
826
- readonly 100: "254 226 226";
827
- readonly 200: "254 202 202";
828
- readonly 300: "252 165 165";
829
- readonly 400: "248 113 113";
830
- readonly 500: "239 68 68";
831
- readonly 600: "220 38 38";
832
- readonly 700: "185 28 28";
833
- readonly 800: "153 27 27";
834
- readonly 900: "127 29 29";
835
- };
836
- };
837
- readonly CUSTOMER_DATA_SOURCE: {
838
- readonly CUSTOMER_SOURCE_USER_DEFINED: {
839
- readonly 50: "250 245 255";
840
- readonly 100: "243 232 255";
841
- readonly 200: "233 213 255";
842
- readonly 300: "216 180 254";
843
- readonly 400: "192 132 252";
844
- readonly 500: "168 85 247";
845
- readonly 600: "147 51 234";
846
- readonly 700: "126 34 206";
847
- readonly 800: "107 33 168";
848
- readonly 900: "88 28 135";
849
- };
850
- readonly CUSTOMER_SOURCE_CLASSIC_MIGRATION: {
851
- readonly 50: "236 253 245";
852
- readonly 100: "209 250 229";
853
- readonly 200: "167 243 208";
854
- readonly 300: "110 231 183";
855
- readonly 400: "52 211 153";
856
- readonly 500: "16 185 129";
857
- readonly 600: "5 150 105";
858
- readonly 700: "4 120 87";
859
- readonly 800: "6 95 70";
860
- readonly 900: "6 78 59";
861
- };
862
- readonly CUSTOMER_SOURCE_SYSTEM_DEFINED: {
863
- readonly 50: "236 254 255";
864
- readonly 100: "207 250 254";
865
- readonly 200: "165 243 252";
866
- readonly 300: "103 232 249";
867
- readonly 400: "34 211 238";
868
- readonly 500: "6 182 212";
869
- readonly 600: "8 145 178";
870
- readonly 700: "14 116 144";
871
- readonly 800: "21 94 117";
872
- readonly 900: "22 78 99";
873
- };
874
- };
875
607
  readonly SITES: {
876
608
  readonly SITE: {
877
609
  readonly AREA: "37 99 235";
@@ -931,126 +663,6 @@ export declare const trackunitPalette: {
931
663
  readonly CONSTRUCTION_SITE: "245 158 11";
932
664
  readonly UNKNOWN: "115 115 115";
933
665
  };
934
- readonly CUSTOMER_SOURCE_USER_DEFINED: {
935
- readonly 50: "250 245 255";
936
- readonly 100: "243 232 255";
937
- readonly 200: "233 213 255";
938
- readonly 300: "216 180 254";
939
- readonly 400: "192 132 252";
940
- readonly 500: "168 85 247";
941
- readonly 600: "147 51 234";
942
- readonly 700: "126 34 206";
943
- readonly 800: "107 33 168";
944
- readonly 900: "88 28 135";
945
- };
946
- readonly CUSTOMER_SOURCE_CLASSIC_MIGRATION: {
947
- readonly 50: "236 253 245";
948
- readonly 100: "209 250 229";
949
- readonly 200: "167 243 208";
950
- readonly 300: "110 231 183";
951
- readonly 400: "52 211 153";
952
- readonly 500: "16 185 129";
953
- readonly 600: "5 150 105";
954
- readonly 700: "4 120 87";
955
- readonly 800: "6 95 70";
956
- readonly 900: "6 78 59";
957
- };
958
- readonly CUSTOMER_SOURCE_SYSTEM_DEFINED: {
959
- readonly 50: "236 254 255";
960
- readonly 100: "207 250 254";
961
- readonly 200: "165 243 252";
962
- readonly 300: "103 232 249";
963
- readonly 400: "34 211 238";
964
- readonly 500: "6 182 212";
965
- readonly 600: "8 145 178";
966
- readonly 700: "14 116 144";
967
- readonly 800: "21 94 117";
968
- readonly 900: "22 78 99";
969
- };
970
- readonly CUSTOMER_TYPE_CONTRACTOR: {
971
- readonly 50: "250 245 255";
972
- readonly 100: "243 232 255";
973
- readonly 200: "233 213 255";
974
- readonly 300: "216 180 254";
975
- readonly 400: "192 132 252";
976
- readonly 500: "168 85 247";
977
- readonly 600: "147 51 234";
978
- readonly 700: "126 34 206";
979
- readonly 800: "107 33 168";
980
- readonly 900: "88 28 135";
981
- };
982
- readonly CUSTOMER_TYPE_DEALER: {
983
- readonly 50: "249 250 251";
984
- readonly 100: "243 244 246";
985
- readonly 200: "229 231 235";
986
- readonly 300: "209 213 219";
987
- readonly 400: "156 163 175";
988
- readonly 500: "107 114 128";
989
- readonly 600: "75 85 99";
990
- readonly 700: "55 65 81";
991
- readonly 800: "31 41 55";
992
- readonly 900: "17 24 39";
993
- };
994
- readonly CUSTOMER_TYPE_RENTAL: {
995
- readonly 50: "255 247 237";
996
- readonly 100: "255 237 213";
997
- readonly 200: "254 215 170";
998
- readonly 300: "253 186 116";
999
- readonly 400: "251 146 60";
1000
- readonly 500: "249 115 22";
1001
- readonly 600: "234 88 12";
1002
- readonly 700: "194 65 12";
1003
- readonly 800: "154 52 18";
1004
- readonly 900: "124 45 18";
1005
- };
1006
- readonly CUSTOMER_TYPE_OEM: {
1007
- readonly 50: "239 246 255";
1008
- readonly 100: "219 234 254";
1009
- readonly 200: "191 219 254";
1010
- readonly 300: "147 197 253";
1011
- readonly 400: "96 165 250";
1012
- readonly 500: "59 130 246";
1013
- readonly 600: "37 99 235";
1014
- readonly 700: "29 78 216";
1015
- readonly 800: "30 64 175";
1016
- readonly 900: "30 58 138";
1017
- };
1018
- readonly CUSTOMER_TYPE_SERVICE: {
1019
- readonly 50: "236 253 245";
1020
- readonly 100: "209 250 229";
1021
- readonly 200: "167 243 208";
1022
- readonly 300: "110 231 183";
1023
- readonly 400: "52 211 153";
1024
- readonly 500: "16 185 129";
1025
- readonly 600: "5 150 105";
1026
- readonly 700: "4 120 87";
1027
- readonly 800: "6 95 70";
1028
- readonly 900: "6 78 59";
1029
- };
1030
- readonly CUSTOMER_TYPE_DISTRIBUTOR: {
1031
- readonly 50: "236 254 255";
1032
- readonly 100: "207 250 254";
1033
- readonly 200: "165 243 252";
1034
- readonly 300: "103 232 249";
1035
- readonly 400: "34 211 238";
1036
- readonly 500: "6 182 212";
1037
- readonly 600: "8 145 178";
1038
- readonly 700: "14 116 144";
1039
- readonly 800: "21 94 117";
1040
- readonly 900: "22 78 99";
1041
- };
1042
- readonly CUSTOMER_TYPE_OTHER_CUSTOMER_TYPE: {
1043
- readonly 50: "254 242 242";
1044
- readonly 100: "254 226 226";
1045
- readonly 200: "254 202 202";
1046
- readonly 300: "252 165 165";
1047
- readonly 400: "248 113 113";
1048
- readonly 500: "239 68 68";
1049
- readonly 600: "220 38 38";
1050
- readonly 700: "185 28 28";
1051
- readonly 800: "153 27 27";
1052
- readonly 900: "127 29 29";
1053
- };
1054
666
  readonly ON_RENT: {
1055
667
  readonly 100: "223 244 254";
1056
668
  readonly 600: "90 200 250";
@@ -1,18 +1,21 @@
1
1
  export declare const themeZIndex: {
2
2
  readonly hidden: -1;
3
3
  readonly default: 1;
4
- readonly top: 5;
5
- readonly sidebar: 9;
6
- readonly overlay: 10;
7
- readonly popover: 21;
8
- readonly toast: 100;
4
+ readonly top: 30;
5
+ readonly "main-menu-drawer": 40;
6
+ readonly "main-menu": 50;
7
+ readonly overlay: 60;
8
+ readonly popover: 70;
9
+ readonly toast: 80;
9
10
  };
10
11
  export declare const zIndex: {
11
12
  readonly hidden: -1;
12
13
  readonly default: 1;
13
- readonly top: 5;
14
- readonly overlay: 10;
15
- readonly popover: 21;
16
- readonly toast: 100;
14
+ readonly top: 30;
15
+ readonly "main-menu-drawer": 40;
16
+ readonly "main-menu": 50;
17
+ readonly overlay: 60;
18
+ readonly popover: 70;
19
+ readonly toast: 80;
17
20
  };
18
21
  export type ZIndex = typeof zIndex;