@zohodesk/dot 1.0.0-temp-203.5 → 1.0.0-temp-203.6

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 (81) hide show
  1. package/.cli/PropLessFiles.html +1 -1
  2. package/.cli/PropUnificationExcludeFilesArray.js +0 -3
  3. package/.cli/UnValidatedFiles.html +1 -1
  4. package/.cli/propValidation_report.html +1 -1
  5. package/README.md +15 -0
  6. package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +0 -3
  7. package/assets/Appearance/dark/themes/blue/blue_DotTheme_DarkTheme.module.css +3 -0
  8. package/assets/Appearance/dark/themes/green/green_DotTheme_DarkTheme.module.css +3 -0
  9. package/assets/Appearance/dark/themes/orange/orange_DotTheme_DarkTheme.module.css +3 -0
  10. package/assets/Appearance/dark/themes/red/red_DotTheme_DarkTheme.module.css +3 -0
  11. package/assets/Appearance/dark/themes/yellow/yellow_DotTheme_DarkTheme.module.css +3 -0
  12. package/assets/Appearance/light/mode/Dot_LightMode.module.css +0 -3
  13. package/assets/Appearance/light/themes/blue/blue_DotTheme_LightTheme.module.css +3 -0
  14. package/assets/Appearance/light/themes/green/green_DotTheme_LightTheme.module.css +3 -0
  15. package/assets/Appearance/light/themes/orange/orange_DotTheme_LightTheme.module.css +3 -0
  16. package/assets/Appearance/light/themes/red/red_DotTheme_LightTheme.module.css +3 -0
  17. package/assets/Appearance/light/themes/yellow/yellow_DotTheme_LightTheme.module.css +3 -0
  18. package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +0 -3
  19. package/assets/Appearance/pureDark/themes/blue/blue_DotTheme_PureDarkTheme.module.css +3 -0
  20. package/assets/Appearance/pureDark/themes/green/green_DotTheme_PureDarkTheme.module.css +3 -0
  21. package/assets/Appearance/pureDark/themes/orange/orange_DotTheme_PureDarkTheme.module.css +3 -0
  22. package/assets/Appearance/pureDark/themes/red/red_DotTheme_PureDarkTheme.module.css +3 -0
  23. package/assets/Appearance/pureDark/themes/yellow/yellow_DotTheme_PureDarkTheme.module.css +3 -0
  24. package/es/AttachmentViewer/AttachmentViewer.js +7 -2
  25. package/es/AttachmentViewer/props/defaultProps.js +2 -1
  26. package/es/AttachmentViewer/props/propTypes.js +5 -1
  27. package/es/ChannelIcon/ChannelIcon.js +15 -5
  28. package/es/ChannelIcon/props/defaultProps.js +2 -1
  29. package/es/ChannelIcon/props/propTypes.js +9 -1
  30. package/es/Loader/Loader.module.css +8 -7
  31. package/es/PlusIcon/PlusIcon.js +4 -2
  32. package/es/PlusIcon/props/defaultProps.js +2 -1
  33. package/es/PlusIcon/props/propTypes.js +3 -1
  34. package/es/utils/getCurrentTime.js +10 -0
  35. package/es/version2/GlobalNotification/GlobalNotification.js +48 -8
  36. package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +1 -1
  37. package/lib/AttachmentViewer/AttachmentViewer.js +6 -3
  38. package/lib/AttachmentViewer/props/defaultProps.js +2 -1
  39. package/lib/AttachmentViewer/props/propTypes.js +6 -1
  40. package/lib/ChannelIcon/ChannelIcon.js +15 -6
  41. package/lib/ChannelIcon/props/defaultProps.js +2 -1
  42. package/lib/ChannelIcon/props/propTypes.js +12 -1
  43. package/lib/Loader/Loader.module.css +8 -7
  44. package/lib/PlusIcon/PlusIcon.js +4 -2
  45. package/lib/PlusIcon/props/defaultProps.js +2 -1
  46. package/lib/PlusIcon/props/propTypes.js +4 -1
  47. package/lib/utils/getCurrentTime.js +17 -0
  48. package/lib/version2/GlobalNotification/GlobalNotification.js +75 -24
  49. package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.js +1 -1
  50. package/package.json +6 -9
  51. package/propValidationArg.json +1 -1
  52. package/result.json +1 -1
  53. package/unittest/index.html +1 -1
  54. package/es/services/components/Attachment/AttachmentViewer.js +0 -24
  55. package/es/services/components/Attachment/AttachmentViewerWrapper.js +0 -114
  56. package/es/services/components/Attachment/props/defaultProps.js +0 -4
  57. package/es/services/components/Attachment/props/propTypes.js +0 -9
  58. package/es/services/components/ToastNotification/ToastNotification.js +0 -43
  59. package/es/services/components/ToastNotification/ToastNotificationWrapper.js +0 -156
  60. package/es/services/components/ToastNotification/ToastNotificationWrapper.module.css +0 -193
  61. package/es/services/components/ToastNotification/props/defaultProps.js +0 -12
  62. package/es/services/components/ToastNotification/props/propTypes.js +0 -17
  63. package/es/services/context/DOTAttachmentService.js +0 -15
  64. package/es/services/context/DOTToastNotificationService.js +0 -16
  65. package/es/services/helpers/utils.js +0 -60
  66. package/es/utils/constants.js +0 -3
  67. package/lib/services/components/Attachment/AttachmentViewer.js +0 -41
  68. package/lib/services/components/Attachment/AttachmentViewerWrapper.js +0 -137
  69. package/lib/services/components/Attachment/props/defaultProps.js +0 -11
  70. package/lib/services/components/Attachment/props/propTypes.js +0 -20
  71. package/lib/services/components/ToastNotification/ToastNotification.js +0 -55
  72. package/lib/services/components/ToastNotification/ToastNotificationWrapper.js +0 -207
  73. package/lib/services/components/ToastNotification/ToastNotificationWrapper.module.css +0 -193
  74. package/lib/services/components/ToastNotification/props/defaultProps.js +0 -19
  75. package/lib/services/components/ToastNotification/props/propTypes.js +0 -28
  76. package/lib/services/context/DOTAttachmentService.js +0 -32
  77. package/lib/services/context/DOTToastNotificationService.js +0 -33
  78. package/lib/services/helpers/utils.js +0 -67
  79. package/lib/utils/constants.js +0 -14
  80. /package/es/version2/GlobalNotification/{v2GlobalNotification.module.css → GlobalNotification.module.css} +0 -0
  81. /package/lib/version2/GlobalNotification/{v2GlobalNotification.module.css → GlobalNotification.module.css} +0 -0
@@ -45,7 +45,7 @@
45
45
  <body>
46
46
  <div id="table-container"></div>
47
47
  <script>
48
- const jsonData = {"LinkContext":{"filePath":"src/Link/LinkContext.js"},"Loader":{"filePath":"src/v1/Loader/Loader.js"},"MessageNew":{"filePath":"src/v1/Message/Message.js"},"DOTAttachmentService":{"filePath":"src/services/context/DOTAttachmentService.js"},"DOTToastNotificationService":{"filePath":"src/services/context/DOTToastNotificationService.js"},"GlobalNotificationNew":{"filePath":"src/version2/GlobalNotification/GlobalNotification.js"},"DesktopNotification":{"filePath":"src/version2/notification/DesktopNotification/DesktopNotification.js"}}
48
+ const jsonData = {"LinkContext":{"filePath":"src/Link/LinkContext.js"},"Loader":{"filePath":"src/v1/Loader/Loader.js"},"MessageNew":{"filePath":"src/v1/Message/Message.js"},"GlobalNotificationNew":{"filePath":"src/version2/GlobalNotification/GlobalNotification.js"},"DesktopNotification":{"filePath":"src/version2/notification/DesktopNotification/DesktopNotification.js"}}
49
49
  const tableContainer = document.getElementById('table-container');
50
50
  const table = document.createElement('table');
51
51
  const thead = document.createElement('thead');
@@ -138,9 +138,6 @@
138
138
  "src/lookup/header/ViewDropDown/ViewDropDown.js",
139
139
  "src/lookup/header/index.js",
140
140
  "src/lookup/index.js",
141
- "src/services/components/Attachment/AttachmentViewerWrapper.js",
142
- "src/services/components/ToastNotification/ToastNotification.js",
143
- "src/services/components/ToastNotification/ToastNotificationWrapper.js",
144
141
  "src/setup/header/Button/Button.js",
145
142
  "src/setup/header/Link/Link.js",
146
143
  "src/setup/header/Search/Search.js",
@@ -45,7 +45,7 @@
45
45
  <body>
46
46
  <div id="table-container"></div>
47
47
  <script>
48
- const jsonData = {"DotProvider":{"filePath":"src/DotProvider/DotProvider.js"},"AttachmentViewer":{"filePath":"src/services/components/Attachment/AttachmentViewer.js"}}
48
+ const jsonData = {"DotProvider":{"filePath":"src/DotProvider/DotProvider.js"}}
49
49
  const tableContainer = document.getElementById('table-container');
50
50
  const table = document.createElement('table');
51
51
  const thead = document.createElement('thead');