@vitrosoftware/common-ui-ts 1.1.17 → 1.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/css/common.css +1 -1
  2. package/css/std/controls/activity/activity.css +21 -0
  3. package/css/std/controls/activity-item/activity-item.css +74 -0
  4. package/css/std/controls/button/button.css +1 -1
  5. package/css/std/controls/checkbox/checkbox.css +54 -0
  6. package/css/std/controls/command-menu/command-menu-item.css +1 -1
  7. package/css/std/controls/date-picker/date-picker.css +16 -6
  8. package/css/std/controls/icon/icon.css +3 -0
  9. package/css/std/controls/input/input.css +8 -2
  10. package/css/std/controls/label/label.css +6 -0
  11. package/css/std/controls/login/login.css +8 -0
  12. package/css/std/controls/lookup-picker/lookup-picker-selected-item.css +1 -2
  13. package/css/std/controls/lookup-picker/lookup-picker.css +10 -3
  14. package/css/std/controls/sidebar/sidebar-item.css +12 -12
  15. package/css/std/controls/tab-group/tab-group.css +5 -1
  16. package/css/std/controls/table-view/treegrid.css +6 -6
  17. package/css/std/controls/time-picker/time-picker.css +8 -1
  18. package/css/std/controls/uploader/uploader.css +11 -10
  19. package/css/white/controls/activity/activity.css +21 -0
  20. package/css/white/controls/activity-item/activity-item.css +65 -0
  21. package/dist/controls/Activity/Activity.d.ts +9 -0
  22. package/dist/controls/ActivityItem/ActivityItem.d.ts +16 -0
  23. package/dist/controls/Checkbox/Checkbox.d.ts +11 -0
  24. package/dist/controls/Icon/Icon.d.ts +11 -0
  25. package/dist/controls/Login/Login.d.ts +1 -1
  26. package/dist/controls/TelerikUploader/TelerikUploaderConstants.d.ts +0 -1
  27. package/dist/controls/TelerikUploader/TelerikUploaderContextImpl.d.ts +2 -2
  28. package/dist/controls/TelerikUploader/TelerikUploaderSettings.d.ts +6 -4
  29. package/dist/controls/TreeView/TreeViewConstants.d.ts +2 -1
  30. package/dist/controls/ViewPart/ViewPart.d.ts +1 -0
  31. package/dist/index.css +247 -41
  32. package/dist/index.d.ts +8 -0
  33. package/dist/index.js +295 -186
  34. package/dist/index.js.map +1 -1
  35. package/dist/index.modern.js +284 -179
  36. package/dist/index.modern.js.map +1 -1
  37. package/package.json +2 -2
  38. package/src/controls/PdfViewer/js/pdf-viewer.js +1 -3
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import { DropdownItem } from '../DropdownButton/DropdownItem';
3
+ export interface ActivityItemProps {
4
+ userName: string;
5
+ title?: string;
6
+ userImageUrl?: string;
7
+ message: string;
8
+ date?: any;
9
+ variant?: string;
10
+ dropdownItemList?: DropdownItem[];
11
+ onDropdownToggle?: (state: any, e: any) => any;
12
+ isActive?: boolean;
13
+ isShowDetail?: boolean;
14
+ children?: React.ReactNode;
15
+ }
16
+ export declare const ActivityItem: (props: ActivityItemProps) => JSX.Element;
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ export interface CheckboxProps {
3
+ value?: any;
4
+ onChange?: (value: any[] | any, name?: string) => void;
5
+ labelPosition?: string;
6
+ label: string;
7
+ isDisabled?: boolean;
8
+ name: string;
9
+ className?: string;
10
+ }
11
+ export declare const Checkbox: (props: CheckboxProps) => JSX.Element;
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import '../../../css/std/controls/icon/icon.css';
3
+ interface IconProps {
4
+ defaultUrl: string;
5
+ hoverUrl?: string;
6
+ className?: string;
7
+ isHover?: boolean;
8
+ onClick?: () => any;
9
+ }
10
+ export declare const Icon: (props: IconProps) => JSX.Element;
11
+ export {};
@@ -2,7 +2,7 @@
2
2
  interface LoginProps {
3
3
  onSubmit: (userName: string, password: string) => any;
4
4
  onResetPassword?: () => any;
5
- onSaveData?: () => any;
5
+ onSaveData?: (value: any[] | any, name?: string) => any;
6
6
  onRegister?: () => any;
7
7
  userNameErrorText?: string;
8
8
  passwordErrorText?: string;
@@ -1,5 +1,4 @@
1
1
  export declare enum EVENT {
2
- UPLOAD_START = "vitro.upload.start",
3
2
  ADD_FILE = "vitro.file.add",
4
3
  READY_STATE_CHANGE = "readystatechange"
5
4
  }
@@ -8,7 +8,7 @@ export declare class TelerikUploaderContextImpl implements TelerikUploaderContex
8
8
  private token;
9
9
  private settings;
10
10
  private localeService;
11
- private onUploadComplete;
11
+ private toggleButtons;
12
12
  private successCount;
13
13
  private errorCount;
14
14
  private fileList;
@@ -16,7 +16,7 @@ export declare class TelerikUploaderContextImpl implements TelerikUploaderContex
16
16
  private progressBar;
17
17
  private title;
18
18
  private subtitle;
19
- constructor(uploader: HTMLInputElement, container: HTMLDivElement, dropZone: HTMLDivElement, settings: TelerikUploaderSettings, localeService: LocaleService, onUploadComplete: () => any);
19
+ constructor(uploader: HTMLInputElement, container: HTMLDivElement, dropZone: HTMLDivElement, settings: TelerikUploaderSettings, localeService: LocaleService, toggleButtons: (show: boolean) => any);
20
20
  clearAllFiles(): void;
21
21
  private resetUploader;
22
22
  private initAuthorization;
@@ -1,11 +1,13 @@
1
1
  export interface TelerikUploaderSettings {
2
2
  async: {
3
3
  saveUrl: string;
4
- autoUpload: boolean;
5
- batch: boolean;
6
- concurrent: boolean;
4
+ isAutoUpload: boolean;
5
+ isBatch: boolean;
6
+ isConcurrent: boolean;
7
7
  };
8
8
  upload: (e: any) => void;
9
9
  success?: (e: any) => void | undefined;
10
- directoryDrop: boolean;
10
+ isDirectoryDrop: boolean;
11
+ isAutoReset?: boolean;
12
+ resetDurationMs?: number;
11
13
  }
@@ -20,7 +20,8 @@ export declare enum METHOD {
20
20
  export declare enum EVENT {
21
21
  CLOSE_NODE = "close_node.jstree",
22
22
  SELECT_NODE = "select_node.jstree",
23
- LOADED = "loaded.jstree"
23
+ LOADED = "loaded.jstree",
24
+ MODEL = "model.jstree"
24
25
  }
25
26
  export declare enum NODE_TYPE {
26
27
  FOLDER = "folder",
@@ -3,6 +3,7 @@ interface ViewPartProps {
3
3
  component: any;
4
4
  settings: any;
5
5
  props: any;
6
+ item?: any;
6
7
  }
7
8
  export declare let ViewPart: (props: ViewPartProps) => JSX.Element;
8
9
  export {};
package/dist/index.css CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  .vitro-title {
20
20
  font-size: 20px;
21
- font-family: 'InterMedium';
21
+ font-family: 'InterRegular';
22
22
  line-height: 24px;
23
23
  margin-right: 24px;
24
24
  margin-bottom: 14px;
@@ -445,7 +445,7 @@
445
445
  bottom: 24px;
446
446
  right: 24px;
447
447
  position: absolute;
448
- transition: all 1s ease;
448
+ transition: all 0.1s ease;
449
449
  width: 241px;
450
450
  height: 96px;
451
451
  z-index: 10000000000000;
@@ -704,9 +704,9 @@
704
704
  background-repeat: no-repeat;
705
705
  border: none;
706
706
  outline: none;
707
- width: 16px;
708
- height: 16px;
709
- top: 16px;
707
+ width: 24px;
708
+ height: 24px;
709
+ top: 12px;
710
710
  }
711
711
 
712
712
  ._uploader_vitro-uploader_237vX7T ._uploader_vitro-button-close_30As0AM {
@@ -717,14 +717,14 @@
717
717
 
718
718
  ._uploader_vitro-button-show_uUmWVJc {
719
719
  /* show.svg URL-encoder for SVG */
720
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4.66406 9.66406L7.99739 6.33073L11.3307 9.66406' stroke='%238E98A3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
721
- right: 40px;
720
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect width='24' height='24' rx='4' transform='matrix(0 1 1 0 0 0)' fill='white'/%3E%3Cpath d='M20 15L12 7L4 15' stroke='%234A556C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
721
+ right: 48px;
722
722
  }
723
723
 
724
724
  ._uploader_vitro-button-hide_LYS1px9 {
725
725
  /* hide.svg URL-encoder for SVG */
726
- background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M11.3359 6.33594L8.0026 9.66927L4.66927 6.33594' stroke='%238E98A3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
727
- right: 40px;
726
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect width='24' height='24' rx='4' transform='matrix(1.19249e-08 -1 -1 -1.19249e-08 24 24)' fill='white'/%3E%3Cpath d='M4 9L12 17L20 9' stroke='%234A556C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
727
+ right: 48px;
728
728
  }
729
729
 
730
730
  ._uploader_vitro-uploader_237vX7T .k-upload .k-dropzone .k-upload-status {
@@ -841,7 +841,9 @@
841
841
 
842
842
  ._uploader_vitro-uploader_237vX7T #vitro-uploader-title {
843
843
  display: flex;
844
- width: 176px;
844
+ width: -moz-fit-content;
845
+ width: fit-content;
846
+ max-width: 80%;
845
847
  align-items: center;
846
848
  justify-content: space-between;
847
849
  font-family: 'InterMedium';
@@ -857,6 +859,7 @@
857
859
  display: inline-block !important;
858
860
  width: 24px;
859
861
  height: 24px;
862
+ margin-left: 12px;
860
863
  background-position: center;
861
864
  background-size: 100%;
862
865
  display: none;
@@ -866,7 +869,6 @@
866
869
 
867
870
  ._uploader_vitro-uploader_237vX7T .vitro-upload-complete #vitro-uploader-title {
868
871
  display: flex;
869
- width: 176px;
870
872
  align-items: center;
871
873
  justify-content: space-between;
872
874
  margin-bottom: 0;
@@ -916,8 +918,12 @@
916
918
  }
917
919
 
918
920
 
921
+ .vitro-display-none {
922
+ display: none;
923
+ }
924
+
919
925
  ._button_vitro-button_hVfBuSO {
920
- font-family: 'InterSemiBold';
926
+ font-family: 'InterMeduim';
921
927
  font-size: 14px;
922
928
  outline: none;
923
929
  height: 32px;
@@ -1503,7 +1509,11 @@
1503
1509
  }
1504
1510
 
1505
1511
  ._tab-group_vitro-tab_1Qb50HL .ps > div:first-child {
1506
- padding: 26px 16px 0 16px;
1512
+ padding: 30px 16px 0 16px;
1513
+ display: flex;
1514
+ flex-wrap: wrap;
1515
+ grid-gap: 0 16px;
1516
+ align-content: flex-start;
1507
1517
  }
1508
1518
 
1509
1519
  ._tab-group_vitro-tab_1Qb50HL .nav .dropdown-menu {
@@ -1630,10 +1640,16 @@
1630
1640
  ._label_vitro-label_it8WNUE {
1631
1641
  font-size: inherit;
1632
1642
  margin-left: 0;
1643
+ display: inline-block;
1644
+ white-space: nowrap;
1645
+ text-overflow: ellipsis;
1646
+ overflow: hidden;
1647
+ max-width: calc(100% - 20px);
1633
1648
  }
1634
1649
 
1635
1650
  ._label_vitro-label_it8WNUE ._label_vitro-required_2-bSGif {
1636
1651
  color: red;
1652
+ margin-left: 2px;
1637
1653
  }
1638
1654
 
1639
1655
  ._input_vitro-control_1DmPFkF {
@@ -1758,12 +1774,15 @@
1758
1774
  }
1759
1775
 
1760
1776
  ._input_vitro-error-text_QpZK56k {
1761
- display: flex;
1762
- align-items: center;
1777
+ display: inline-block;
1763
1778
  color: #D13438;
1764
1779
  font-size: 14px;
1765
1780
  line-height: 135%;
1766
1781
  margin-top: 2px;
1782
+ width: 100%;
1783
+ text-overflow: ellipsis;
1784
+ white-space: nowrap;
1785
+ overflow: hidden;
1767
1786
  }
1768
1787
 
1769
1788
  ._input_vitro-focus_1txynr8 ._input_vitro-error-text_QpZK56k {
@@ -1773,8 +1792,11 @@
1773
1792
  ._input_vitro-error-text_QpZK56k::before {
1774
1793
  content: '';
1775
1794
  display: inline-block;
1795
+ vertical-align: text-top;
1776
1796
  height: 16px;
1777
1797
  width: 16px;
1798
+ min-width: 16px;
1799
+ min-height: 16px;
1778
1800
  margin-right: 4px;
1779
1801
  background-size: 100%;
1780
1802
  background-position: center;
@@ -1940,6 +1962,61 @@
1940
1962
  ._issue-tile_vitro-issue-tile_2D7E9Y-.vitro-active ._issue-tile_vitro-control_3V6_Ze7 textarea {
1941
1963
  background: #F3F8FF;
1942
1964
  }
1965
+ ._checkbox_vitro-control_DfB5DDM {
1966
+ width: 100%;
1967
+ position: relative;
1968
+ margin-bottom: 32px;
1969
+ }
1970
+
1971
+ ._checkbox_vitro-checkbox-content_2fBG1zl {
1972
+ width: 100%;
1973
+ display: flex;
1974
+ align-items: center;
1975
+ }
1976
+
1977
+ ._checkbox_vitro-checkbox-content_2fBG1zl input {
1978
+ width: 24px;
1979
+ height: 24px;
1980
+ margin-right: 6px;
1981
+ cursor: pointer;
1982
+ }
1983
+
1984
+ ._checkbox_vitro-checkbox-content_2fBG1zl input::before,
1985
+ ._checkbox_vitro-checkbox-content_2fBG1zl input:checked::before {
1986
+ content: '';
1987
+ display: block;
1988
+ width: 24px;
1989
+ height: 24px;
1990
+ background: #fff;
1991
+ background-size: 100%;
1992
+ background-position: center;
1993
+ }
1994
+
1995
+ ._checkbox_vitro-checkbox-content_2fBG1zl input::before {
1996
+ /* checkbox-big-empty.svg URL-encoder for SVG */
1997
+ background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Checkbox-big'%3E%3Crect id='Background' x='2.5' y='2.5' width='19' height='19' rx='3.5' stroke='%23C0CAD5'/%3E%3C/g%3E%3C/svg%3E%0A");
1998
+ }
1999
+
2000
+ ._checkbox_vitro-checkbox-content_2fBG1zl input:checked::before {
2001
+ /* checkbox-big-active.svg URL-encoder for SVG */
2002
+ background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='2' width='20' height='20' rx='2.5' fill='%234292F7'/%3E%3Cpath d='M16.7062 8.50593C17.0826 8.86144 17.0996 9.45479 16.7441 9.83121L11.4316 15.4562C11.2577 15.6404 11.0166 15.7463 10.7634 15.7499C10.5101 15.7535 10.2662 15.6545 10.0871 15.4754L7.27459 12.6629C6.90847 12.2968 6.90847 11.7032 7.27459 11.3371C7.6407 10.971 8.2343 10.971 8.60041 11.3371L10.7308 13.4675L15.3809 8.54379C15.7364 8.16737 16.3298 8.15042 16.7062 8.50593Z' fill='white'/%3E%3C/svg%3E%0A");
2003
+ }
2004
+
2005
+ ._checkbox_vitro-label_qZxCbCP {
2006
+ color: #222D44;
2007
+ font-size: 14px;
2008
+ line-height: 135%;
2009
+ }
2010
+
2011
+ ._checkbox_vitro-left-label_Uu1Tp31 {
2012
+ display: flex;
2013
+ align-items: center;
2014
+ }
2015
+
2016
+ ._checkbox_vitro-left-label_Uu1Tp31 ._checkbox_vitro-label_qZxCbCP {
2017
+ margin-right: 6px;
2018
+ }
2019
+
1943
2020
  ._login_vitro-login-layout_1C8owlz {
1944
2021
  width: 100vw;
1945
2022
  height: 100vh;
@@ -2088,6 +2165,14 @@
2088
2165
  line-height: 135%;
2089
2166
  }
2090
2167
 
2168
+ ._login_vitro-login-checkbox_39NOnZg {
2169
+ margin-bottom: 0;
2170
+ }
2171
+
2172
+ ._login_vitro-login-checkbox_39NOnZg div {
2173
+ font-size: 16px;
2174
+ }
2175
+
2091
2176
  ._login_vitro-button_2OCqKtD {
2092
2177
  font-family: 'InterMedium' !important;
2093
2178
  width: 100%;
@@ -2255,7 +2340,7 @@
2255
2340
  }
2256
2341
 
2257
2342
  ._date-picker_vitro-read-only_2NZoMN5 .k-picker-wrap .k-select {
2258
- display: none;
2343
+ display: none !important;
2259
2344
  }
2260
2345
 
2261
2346
  ._date-picker_vitro-error_3DkgZiN ._date-picker_vitro-label_2jh9qxb {
@@ -2283,12 +2368,16 @@
2283
2368
  }
2284
2369
 
2285
2370
  ._date-picker_vitro-error-text_15CdrRj {
2286
- display: flex;
2287
- align-items: center;
2371
+ display: inline-block;
2372
+ vertical-align: text-top;
2288
2373
  color: #D13438;
2289
2374
  font-size: 14px;
2290
2375
  line-height: 135%;
2291
2376
  margin-top: 2px;
2377
+ width: 100%;
2378
+ text-overflow: ellipsis;
2379
+ white-space: nowrap;
2380
+ overflow: hidden;
2292
2381
  }
2293
2382
 
2294
2383
  ._date-picker_vitro-focus_2cJKcKr ._date-picker_vitro-error-text_15CdrRj {
@@ -2298,8 +2387,11 @@
2298
2387
  ._date-picker_vitro-error-text_15CdrRj::before {
2299
2388
  content: '';
2300
2389
  display: inline-block;
2390
+ vertical-align: text-top;
2301
2391
  height: 16px;
2302
2392
  width: 16px;
2393
+ min-width: 16px;
2394
+ min-height: 16px;
2303
2395
  margin-right: 4px;
2304
2396
  background-size: 100%;
2305
2397
  background-position: center;
@@ -2353,8 +2445,11 @@
2353
2445
  }
2354
2446
 
2355
2447
  .k-i-calendar {
2356
- width: 20px;
2357
- height: 20px;
2448
+ height: 20px !important;
2449
+ width: 20px !important;
2450
+ display: flex !important;
2451
+ align-items: center;
2452
+ justify-content: center;
2358
2453
  }
2359
2454
 
2360
2455
  .k-i-calendar::before {
@@ -2366,7 +2461,7 @@
2366
2461
  background-size: 100%;
2367
2462
  background-position: center;
2368
2463
  /* date-picker.svg URL-encoder for SVG */
2369
- background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Vector'%3E%3Cpath d='M9.49725 6.25275C9.53799 6.29339 9.57032 6.34167 9.59237 6.39482C9.61443 6.44797 9.62578 6.50495 9.62578 6.5625C9.62578 6.62005 9.61443 6.67703 9.59237 6.73018C9.57032 6.78333 9.53799 6.83161 9.49725 6.87225L6.87225 9.49725C6.83161 9.53799 6.78333 9.57032 6.73018 9.59237C6.67703 9.61443 6.62005 9.62578 6.5625 9.62578C6.50495 9.62578 6.44797 9.61443 6.39482 9.59237C6.34167 9.57032 6.29339 9.53799 6.25275 9.49725L4.94025 8.18475C4.89957 8.14407 4.86731 8.09578 4.84529 8.04264C4.82328 7.98949 4.81195 7.93253 4.81195 7.875C4.81195 7.81747 4.82328 7.76051 4.84529 7.70736C4.86731 7.65422 4.89957 7.60593 4.94025 7.56525C5.0224 7.4831 5.13382 7.43695 5.25 7.43695C5.30753 7.43695 5.36449 7.44828 5.41764 7.47029C5.47078 7.49231 5.51907 7.52457 5.55975 7.56525L6.5625 8.56888L8.87775 6.25275C8.91839 6.21201 8.96667 6.17968 9.01982 6.15763C9.07297 6.13557 9.12995 6.12422 9.1875 6.12422C9.24505 6.12422 9.30203 6.13557 9.35518 6.15763C9.40833 6.17968 9.45661 6.21201 9.49725 6.25275Z' fill='%234A556C'/%3E%3Cpath d='M3.0625 0C3.17853 0 3.28981 0.0460936 3.37186 0.128141C3.45391 0.210188 3.5 0.321468 3.5 0.4375V0.875H10.5V0.4375C10.5 0.321468 10.5461 0.210188 10.6281 0.128141C10.7102 0.0460936 10.8215 0 10.9375 0C11.0535 0 11.1648 0.0460936 11.2469 0.128141C11.3289 0.210188 11.375 0.321468 11.375 0.4375V0.875H12.25C12.7141 0.875 13.1592 1.05937 13.4874 1.38756C13.8156 1.71575 14 2.16087 14 2.625V12.25C14 12.7141 13.8156 13.1592 13.4874 13.4874C13.1592 13.8156 12.7141 14 12.25 14H1.75C1.28587 14 0.840752 13.8156 0.512563 13.4874C0.184375 13.1592 0 12.7141 0 12.25V2.625C0 2.16087 0.184375 1.71575 0.512563 1.38756C0.840752 1.05937 1.28587 0.875 1.75 0.875H2.625V0.4375C2.625 0.321468 2.67109 0.210188 2.75314 0.128141C2.83519 0.0460936 2.94647 0 3.0625 0ZM0.875 3.5V12.25C0.875 12.4821 0.967187 12.7046 1.13128 12.8687C1.29538 13.0328 1.51794 13.125 1.75 13.125H12.25C12.4821 13.125 12.7046 13.0328 12.8687 12.8687C13.0328 12.7046 13.125 12.4821 13.125 12.25V3.5H0.875Z' fill='%234A556C'/%3E%3C/g%3E%3C/svg%3E%0A");
2464
+ background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Vector'%3E%3Cpath d='M12.1216 8.06594C12.1725 8.11674 12.2129 8.17709 12.2405 8.24353C12.268 8.30997 12.2822 8.38119 12.2822 8.45312C12.2822 8.52506 12.268 8.59628 12.2405 8.66272C12.2129 8.72916 12.1725 8.78951 12.1216 8.84031L8.84031 12.1216C8.78951 12.1725 8.72916 12.2129 8.66272 12.2405C8.59628 12.268 8.52506 12.2822 8.45312 12.2822C8.38119 12.2822 8.30997 12.268 8.24353 12.2405C8.17709 12.2129 8.11674 12.1725 8.06594 12.1216L6.42531 10.4809C6.37447 10.4301 6.33413 10.3697 6.30661 10.3033C6.2791 10.2369 6.26493 10.1657 6.26493 10.0938C6.26493 10.0218 6.2791 9.95064 6.30661 9.88421C6.33413 9.81777 6.37447 9.75741 6.42531 9.70656C6.528 9.60387 6.66728 9.54618 6.8125 9.54618C6.88441 9.54618 6.95561 9.56035 7.02204 9.58786C7.08848 9.61538 7.14884 9.65572 7.19969 9.70656L8.45312 10.9611L11.3472 8.06594C11.398 8.01501 11.4583 7.9746 11.5248 7.94703C11.5912 7.91946 11.6624 7.90527 11.7344 7.90527C11.8063 7.90527 11.8775 7.91946 11.944 7.94703C12.0104 7.9746 12.0708 8.01501 12.1216 8.06594Z' fill='%234A556C'/%3E%3Cpath d='M4.07812 0.25C4.22317 0.25 4.36227 0.307617 4.46482 0.410176C4.56738 0.512735 4.625 0.651835 4.625 0.796875V1.34375H13.375V0.796875C13.375 0.651835 13.4326 0.512735 13.5352 0.410176C13.6377 0.307617 13.7768 0.25 13.9219 0.25C14.0669 0.25 14.206 0.307617 14.3086 0.410176C14.4111 0.512735 14.4688 0.651835 14.4688 0.796875V1.34375H15.5625C16.1427 1.34375 16.6991 1.57422 17.1093 1.98445C17.5195 2.39469 17.75 2.95109 17.75 3.53125V15.5625C17.75 16.1427 17.5195 16.6991 17.1093 17.1093C16.6991 17.5195 16.1427 17.75 15.5625 17.75H2.4375C1.85734 17.75 1.30094 17.5195 0.890704 17.1093C0.480468 16.6991 0.25 16.1427 0.25 15.5625V3.53125C0.25 2.95109 0.480468 2.39469 0.890704 1.98445C1.30094 1.57422 1.85734 1.34375 2.4375 1.34375H3.53125V0.796875C3.53125 0.651835 3.58887 0.512735 3.69143 0.410176C3.79398 0.307617 3.93308 0.25 4.07812 0.25ZM1.34375 4.625V15.5625C1.34375 15.8526 1.45898 16.1308 1.6641 16.3359C1.86922 16.541 2.14742 16.6562 2.4375 16.6562H15.5625C15.8526 16.6562 16.1308 16.541 16.3359 16.3359C16.541 16.1308 16.6562 15.8526 16.6562 15.5625V4.625H1.34375Z' fill='%234A556C'/%3E%3C/g%3E%3C/svg%3E%0A");
2370
2465
  }
2371
2466
 
2372
2467
  .k-picker-wrap.k-state-default > .k-select {
@@ -2615,12 +2710,16 @@
2615
2710
  }
2616
2711
 
2617
2712
  ._time-picker_vitro-error-text_2BNoBKW {
2618
- display: flex;
2713
+ display: inline-block;
2619
2714
  align-items: center;
2620
2715
  color: #D13438;
2621
2716
  font-size: 14px;
2622
2717
  line-height: 135%;
2623
2718
  margin-top: 2px;
2719
+ width: 100%;
2720
+ text-overflow: ellipsis;
2721
+ white-space: nowrap;
2722
+ overflow: hidden;
2624
2723
  }
2625
2724
 
2626
2725
  ._time-picker_vitro-focus_wmhPjvE ._time-picker_vitro-error-text_2BNoBKW {
@@ -2630,8 +2729,11 @@
2630
2729
  ._time-picker_vitro-error-text_2BNoBKW::before {
2631
2730
  content: '';
2632
2731
  display: inline-block;
2732
+ vertical-align: text-top;
2633
2733
  height: 16px;
2634
2734
  width: 16px;
2735
+ min-width: 16px;
2736
+ min-height: 16px;
2635
2737
  margin-right: 4px;
2636
2738
  background-size: 100%;
2637
2739
  background-position: center;
@@ -2805,8 +2907,7 @@
2805
2907
  ._lookup-picker-selected-item_vitro-selected-item_hw-euth {
2806
2908
  display: inline;
2807
2909
  margin: 0 6px 0 0;
2808
- display: flex;
2809
- align-items: center;
2910
+ white-space: nowrap;
2810
2911
  }
2811
2912
 
2812
2913
  ._lookup-picker-html-value_vitro-item-html-value_2QBoTey {
@@ -2899,7 +3000,7 @@
2899
3000
  border-radius: 4px;
2900
3001
  display: flex;
2901
3002
  width: 100%;
2902
- flex-wrap: wrap;
3003
+ flex-wrap: nowrap;
2903
3004
  align-items: center;
2904
3005
  height: 40px;
2905
3006
  padding: 8px 32px 8px 16px;
@@ -2950,12 +3051,16 @@
2950
3051
  }
2951
3052
 
2952
3053
  ._lookup-picker_vitro-error-text_273lqvD {
2953
- display: flex;
3054
+ display: inline-block;
2954
3055
  align-items: center;
2955
3056
  color: #D13438;
2956
3057
  font-size: 14px;
2957
3058
  line-height: 135%;
2958
3059
  margin-top: 2px;
3060
+ width: 100%;
3061
+ text-overflow: ellipsis;
3062
+ white-space: nowrap;
3063
+ overflow: hidden;
2959
3064
  }
2960
3065
 
2961
3066
  ._lookup-picker_vitro-focus_2UGpxXD ._lookup-picker_vitro-error-text_273lqvD {
@@ -2965,8 +3070,11 @@
2965
3070
  ._lookup-picker_vitro-error-text_273lqvD::before {
2966
3071
  content: '';
2967
3072
  display: inline-block;
3073
+ vertical-align: text-top;
2968
3074
  height: 16px;
2969
3075
  width: 16px;
3076
+ min-width: 16px;
3077
+ min-height: 16px;
2970
3078
  margin-right: 4px;
2971
3079
  background-size: 100%;
2972
3080
  background-position: center;
@@ -2978,7 +3086,7 @@
2978
3086
  width: 20px;
2979
3087
  display: inline-block;
2980
3088
  right: 0;
2981
- /* copy.svg URL-encoder for SVG */
3089
+ /* copy.svg URL-encoder for SVG */
2982
3090
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='copy-icon'%3E%3Cpath id='Vector' d='M4.33594 4.14517V3.27214C4.33594 2.0877 4.75567 1.66797 5.9401 1.66797H12.7318C13.9162 1.66797 14.3359 2.0877 14.3359 3.27214V10.0638C14.3359 11.2482 13.9162 11.668 12.7318 11.668H11.8414' stroke='%238E98A3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath id='Vector_2' d='M10.0599 4.33203H3.26823C2.0838 4.33203 1.66406 4.75176 1.66406 5.9362V12.7279C1.66406 13.9123 2.0838 14.332 3.26823 14.332H10.0599C11.2443 14.332 11.6641 13.9123 11.6641 12.7279V5.9362C11.6641 4.75176 11.2443 4.33203 10.0599 4.33203Z' stroke='%238E98A3' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
2983
3091
  background-repeat: no-repeat;
2984
3092
  background-position: center;
@@ -3091,7 +3199,7 @@
3091
3199
 
3092
3200
  li:first-child ._command-menu-item_vitro-item_2pVhk23 {
3093
3201
  background: #347FDE;
3094
- font-family: 'InterSemiBold';
3202
+ font-family: 'InterMedium';
3095
3203
  color: #fff;
3096
3204
  }
3097
3205
 
@@ -3327,14 +3435,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
3327
3435
  width: 32px;
3328
3436
  }
3329
3437
  }
3330
- ._sidebar-item_vitro-active_7p5iOhY {
3331
- background-color: #DCEEFF;
3332
- }
3333
-
3334
- ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
3335
- background-color: transparent;
3336
- }
3337
-
3338
3438
  ._sidebar-item_vitro-icon-text_3ROhyLK {
3339
3439
  display: none;
3340
3440
  color: #222D44;
@@ -3350,6 +3450,18 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
3350
3450
  display: none;
3351
3451
  }
3352
3452
 
3453
+ ._sidebar-item_vitro-active_7p5iOhY {
3454
+ background-color: #DCEEFF;
3455
+ }
3456
+
3457
+ ._sidebar-item_vitro-hover_1mECzme ._sidebar-item_vitro-icon-text_3ROhyLK {
3458
+ color: #326AD6;
3459
+ }
3460
+
3461
+ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
3462
+ background-color: transparent;
3463
+ }
3464
+
3353
3465
  ._sidebar-item_vitro-active_7p5iOhY ._sidebar-item_vitro-icon-text_3ROhyLK,
3354
3466
  ._sidebar-item_vitro-active_7p5iOhY ._sidebar-item_vitro-item-text_1kK_aIZ {
3355
3467
  color: #326AD6;
@@ -3384,10 +3496,6 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
3384
3496
  display: block;
3385
3497
  }
3386
3498
 
3387
- ._sidebar-item_vitro-active_7p5iOhY {
3388
- background-color: #DCEEFF;
3389
- }
3390
-
3391
3499
  .vitro-bottom-menu ._sidebar-item_vitro-item-text_1kK_aIZ {
3392
3500
  display: block;
3393
3501
  color: #4A556C;
@@ -4017,4 +4125,102 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
4017
4125
  ._user-profile_vitro-dropdown-item_dSErsta:hover,
4018
4126
  ._user-profile_vitro-dropdown-item_dSErsta:active {
4019
4127
  background: #DCEEFF;
4020
- }
4128
+ }
4129
+ ._activity_vitro-title_1rdvvaa {
4130
+ color: #bdbdbd;
4131
+ margin-bottom: 12px;
4132
+ text-align: center;
4133
+ }
4134
+
4135
+ ._activity_vitro-title_1rdvvaa > h3 {
4136
+ text-transform: uppercase;
4137
+ font-size: 12pt;
4138
+ margin: 0;
4139
+ }
4140
+
4141
+ ._activity_vitro-dropdown-button_12258nJ {
4142
+ position: absolute;
4143
+ right: 0;
4144
+ }
4145
+
4146
+ ._activity_vitro-activity_1u7YeF3 .preview-roller-wrapper {
4147
+ height: 100px;
4148
+ position: relative;
4149
+ }
4150
+
4151
+ ._activity-item_vitro-item_3Tprske {
4152
+ margin-bottom: 22px;
4153
+ min-height: 32px;
4154
+ }
4155
+
4156
+ ._activity-item_vitro-item_3Tprske._activity-item_vitro-active_2kENgvf {
4157
+ background: #F3F8FF;
4158
+ }
4159
+
4160
+ ._activity-item_vitro-item_3Tprske > .vitro-flex {
4161
+ width: 100%;
4162
+ }
4163
+
4164
+ ._activity-item_vitro-title__QItISm span {
4165
+ color: #222d44;
4166
+ }
4167
+
4168
+ ._activity-item_vitro-due-date_1mBIraY {
4169
+ font-size: 8pt;
4170
+ color: #bdbdbd;
4171
+ float: right;
4172
+ white-space: nowrap;
4173
+ }
4174
+
4175
+ ._activity-item_vitro-content_3Lt7XRy {
4176
+ margin-top: -1px;
4177
+ width: 100%;
4178
+ display: flex;
4179
+ justify-content: space-between;
4180
+ align-items: center;
4181
+ margin-right: 4px;
4182
+ }
4183
+
4184
+ ._activity-item_vitro-content_3Lt7XRy p {
4185
+ -webkit-margin-before: 0px;
4186
+ margin-block-start: 0px;
4187
+ -webkit-margin-after: 0px;
4188
+ margin-block-end: 0px;
4189
+ margin-bottom: 0px;
4190
+ color: #bdbdbd;
4191
+ font-size: 9pt;
4192
+ line-height: 14px;
4193
+ margin-top: 3px;
4194
+ }
4195
+
4196
+ ._activity-item_vitro-content_3Lt7XRy p span {
4197
+ font-size: 9pt !important;
4198
+ }
4199
+
4200
+ ._activity-item_vitro-content_3Lt7XRy .vitro-status-changed {
4201
+ font-style: normal;
4202
+ color: #27AE60;
4203
+ font-size: 9pt;
4204
+ }
4205
+
4206
+ ._activity-item_vitro-message_1ndqhgR {
4207
+ overflow-wrap: anywhere;
4208
+ }
4209
+
4210
+ ._activity-item_vitro-message_1ndqhgR img {
4211
+ max-width: calc(100% - 20px);
4212
+ display: block;
4213
+ margin: 4px 0;
4214
+ }
4215
+
4216
+ ._activity-item_vitro-flex_37IxBWe {
4217
+ display: flex;
4218
+ }
4219
+
4220
+ ._activity-item_vitro-dropdown-button_1J50ja7 {
4221
+ align-self: flex-start;
4222
+ }
4223
+
4224
+ ._activity-item_vitro-avatar_218ZqAk {
4225
+ margin-right: 4px;
4226
+ }