@zohodesk/dot 1.0.0-beta.252 → 1.0.0-beta.254
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/README.md +10 -0
- package/assets/Appearance/dark/mode/dotDarkMode.module.css +293 -303
- package/assets/Appearance/dark/themes/blue/blueDarkDotTheme.module.css +9 -9
- package/assets/Appearance/dark/themes/green/greenDarkDotTheme.module.css +9 -9
- package/assets/Appearance/dark/themes/orange/orangeDarkDotTheme.module.css +9 -9
- package/assets/Appearance/dark/themes/red/redDarkDotTheme.module.css +9 -9
- package/assets/Appearance/dark/themes/yellow/yellowDarkDotTheme.module.css +9 -9
- package/assets/Appearance/default/mode/dotDefaultMode.module.css +288 -298
- package/assets/Appearance/default/themes/blue/blueDefaultDotTheme.module.css +9 -9
- package/assets/Appearance/default/themes/green/greenDefaultDotTheme.module.css +9 -9
- package/assets/Appearance/default/themes/orange/orangeDefaultDotTheme.module.css +9 -9
- package/assets/Appearance/default/themes/red/redDefaultDotTheme.module.css +9 -9
- package/assets/Appearance/default/themes/yellow/yellowDefaultDotTheme.module.css +9 -9
- package/assets/Appearance/pureDark/mode/dotPureDarkMode.module.css +296 -306
- package/assets/Appearance/pureDark/themes/blue/bluePureDarkDotTheme.module.css +9 -9
- package/assets/Appearance/pureDark/themes/green/greenPureDarkDotTheme.module.css +9 -9
- package/assets/Appearance/pureDark/themes/orange/orangePureDarkDotTheme.module.css +9 -9
- package/assets/Appearance/pureDark/themes/red/redPureDarkDotTheme.module.css +9 -9
- package/assets/Appearance/pureDark/themes/yellow/yellowPureDarkDotTheme.module.css +9 -9
- package/css_error.log +1 -0
- package/es/AttachmentViewer/AttachmentViewer.module.css +4 -5
- package/es/Drawer/Drawer.js +3 -2
- package/es/Drawer/Drawer.module.css +42 -3
- package/es/FreezeLayer/props/propTypes.js +2 -1
- package/es/FreezeLayer/useFreezeLayer.js +5 -3
- package/es/Link/Link.js +3 -2
- package/es/Message/Message.module.css +1 -1
- package/es/PlusIcon/PlusIcon.module.css +5 -2
- package/es/ToastMessage/ToastMessage.js +2 -5
- package/es/ToastMessage/ToastMessage.module.css +7 -6
- package/es/actions/AutoClose.js +2 -5
- package/es/common/dot_boxShadow.module.css +38 -0
- package/es/common/dot_docStyle.module.css +35 -0
- package/es/form/fields/TextEditor/TextEditor.module.css +161 -63
- package/es/layout/SubtabLayout/SubtabLayout.module.css +21 -2
- package/es/list/DotNew/DotNew.module.css +8 -5
- package/es/list/TagNew/TagNew.module.css +4 -2
- package/es/lookup/Section/LookupSection.module.css +2 -2
- package/es/lookup/header/Search/Search.js +5 -8
- package/es/version2/GlobalNotification/GlobalNotification.module.css +4 -1
- package/es/version2/notification/DesktopNotification/DesktopNotification.module.css +23 -2
- package/lib/AttachmentViewer/AttachmentViewer.module.css +4 -5
- package/lib/Drawer/Drawer.js +3 -2
- package/lib/Drawer/Drawer.module.css +42 -3
- package/lib/FreezeLayer/props/propTypes.js +4 -2
- package/lib/FreezeLayer/useFreezeLayer.js +4 -2
- package/lib/Link/Link.js +3 -2
- package/lib/Message/Message.module.css +1 -1
- package/lib/PlusIcon/PlusIcon.module.css +5 -2
- package/lib/ToastMessage/ToastMessage.js +2 -5
- package/lib/ToastMessage/ToastMessage.module.css +7 -6
- package/lib/actions/AutoClose.js +2 -5
- package/lib/common/dot_boxShadow.module.css +38 -0
- package/lib/common/dot_docStyle.module.css +35 -0
- package/lib/form/fields/TextEditor/TextEditor.module.css +161 -63
- package/lib/layout/SubtabLayout/SubtabLayout.module.css +21 -2
- package/lib/list/DotNew/DotNew.module.css +8 -5
- package/lib/list/TagNew/TagNew.module.css +4 -2
- package/lib/lookup/Section/LookupSection.module.css +2 -2
- package/lib/lookup/header/Search/Search.js +5 -10
- package/lib/version2/GlobalNotification/GlobalNotification.module.css +4 -1
- package/lib/version2/notification/DesktopNotification/DesktopNotification.module.css +23 -2
- package/package.json +10 -18
package/README.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
In this Library, we Provide Some Basic Components to Build Your Application
|
|
4
4
|
|
|
5
|
+
# 1.0.0-beta.254
|
|
6
|
+
|
|
7
|
+
- Contrast option implemented through preprocess. Category key value added for all color variables.
|
|
8
|
+
- BoxShadow Values Separated for Contrast
|
|
9
|
+
|
|
10
|
+
# 1.0.0-beta.253
|
|
11
|
+
|
|
12
|
+
- **FreezeLayer** - onClick event issue solved
|
|
13
|
+
- cancelBubblingEffect function replaced to all stopPropagation used placed
|
|
14
|
+
|
|
5
15
|
# 1.0.0-beta.252
|
|
6
16
|
|
|
7
17
|
- **ToggleDropdown** - customClass (customDropBox and customListBox) Support added.
|