@zohodesk/components 1.2.18 → 1.2.19

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 (66) hide show
  1. package/.cli/AppearanceThemeValidationExcludeFiles.js +1 -0
  2. package/.cli/propValidation_report.html +1 -1
  3. package/README.md +6 -0
  4. package/assets/Appearance/dark/mode/Component_DarkMode.module.css +3 -0
  5. package/assets/Appearance/light/mode/Component_LightMode.module.css +3 -0
  6. package/assets/Appearance/pureDark/mode/Component_PureDarkMode.module.css +3 -0
  7. package/es/Avatar/Avatar.module.css +12 -0
  8. package/es/AvatarTeam/AvatarTeam.module.css +2 -0
  9. package/es/Button/css/Button.module.css +9 -1
  10. package/es/Buttongroup/Buttongroup.module.css +2 -0
  11. package/es/CheckBox/CheckBox.module.css +2 -0
  12. package/es/DateTime/DateTime.module.css +1 -0
  13. package/es/DateTime/dateFormatUtils/dateFormat.js +6 -1
  14. package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +7 -0
  15. package/es/DropBox/css/DropBox.module.css +1 -0
  16. package/es/DropDown/DropDownHeading.module.css +6 -0
  17. package/es/DropDown/DropDownItem.module.css +3 -0
  18. package/es/Label/Label.module.css +1 -0
  19. package/es/ListItem/ListItem.module.css +21 -0
  20. package/es/PopOver/PopOver.module.css +1 -0
  21. package/es/Radio/Radio.module.css +1 -0
  22. package/es/Ribbon/Ribbon.module.css +4 -0
  23. package/es/Switch/Switch.module.css +2 -0
  24. package/es/Tag/Tag.module.css +6 -0
  25. package/es/TextBox/TextBox.module.css +20 -0
  26. package/es/TextBoxIcon/TextBoxIcon.module.css +5 -0
  27. package/es/Textarea/Textarea.module.css +6 -0
  28. package/es/Tooltip/Tooltip.module.css +4 -0
  29. package/es/common/customscroll.module.css +37 -0
  30. package/es/v1/Modal/Modal.js +86 -114
  31. package/es/v1/Typography/css/Typography.module.css +83 -112
  32. package/es/v1/Typography/css/cssJSLogic.js +6 -2
  33. package/es/v1/Typography/props/propTypes.js +2 -2
  34. package/es/v1/Typography/utils/index.js +50 -0
  35. package/lib/Avatar/Avatar.module.css +12 -0
  36. package/lib/AvatarTeam/AvatarTeam.module.css +2 -0
  37. package/lib/Button/css/Button.module.css +9 -1
  38. package/lib/Buttongroup/Buttongroup.module.css +2 -0
  39. package/lib/CheckBox/CheckBox.module.css +2 -0
  40. package/lib/DateTime/DateTime.module.css +1 -0
  41. package/lib/DateTime/dateFormatUtils/dateFormat.js +6 -1
  42. package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +7 -0
  43. package/lib/DropBox/css/DropBox.module.css +1 -0
  44. package/lib/DropDown/DropDownHeading.module.css +6 -0
  45. package/lib/DropDown/DropDownItem.module.css +3 -0
  46. package/lib/Label/Label.module.css +1 -0
  47. package/lib/ListItem/ListItem.module.css +21 -0
  48. package/lib/PopOver/PopOver.module.css +1 -0
  49. package/lib/Radio/Radio.module.css +1 -0
  50. package/lib/Ribbon/Ribbon.module.css +4 -0
  51. package/lib/Switch/Switch.module.css +2 -0
  52. package/lib/Tag/Tag.module.css +6 -0
  53. package/lib/TextBox/TextBox.module.css +20 -0
  54. package/lib/TextBoxIcon/TextBoxIcon.module.css +5 -0
  55. package/lib/Textarea/Textarea.module.css +6 -0
  56. package/lib/Tooltip/Tooltip.module.css +4 -0
  57. package/lib/common/customscroll.module.css +37 -0
  58. package/lib/v1/Modal/Modal.js +118 -164
  59. package/lib/v1/Typography/css/Typography.module.css +83 -112
  60. package/lib/v1/Typography/css/cssJSLogic.js +7 -3
  61. package/lib/v1/Typography/props/propTypes.js +2 -2
  62. package/lib/v1/Typography/utils/index.js +59 -0
  63. package/package.json +8 -6
  64. package/result.json +1 -1
  65. package/es/v1/Typography/css/letterSpacingMap.js +0 -12
  66. package/lib/v1/Typography/css/letterSpacingMap.js +0 -20
@@ -1,12 +0,0 @@
1
- /* eslint-disable */
2
- export const letterspacingMapping = {
3
- '0.1': '01',
4
- '0.2': '02',
5
- '0.3': '03',
6
- '0.4': '04',
7
- '0.5': '05',
8
- '0.6': '06',
9
- '0.7': '07',
10
- '0.8': '08',
11
- '0.9': '09'
12
- };
@@ -1,20 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.letterspacingMapping = void 0;
7
-
8
- /* eslint-disable */
9
- var letterspacingMapping = {
10
- '0.1': '01',
11
- '0.2': '02',
12
- '0.3': '03',
13
- '0.4': '04',
14
- '0.5': '05',
15
- '0.6': '06',
16
- '0.7': '07',
17
- '0.8': '08',
18
- '0.9': '09'
19
- };
20
- exports.letterspacingMapping = letterspacingMapping;