@zohodesk/components 1.0.0-temp-118 → 1.0.0-temp-120

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 (112) hide show
  1. package/README.md +4 -0
  2. package/assets/Appearance/dark/mode/darkMode.module.css +2 -1
  3. package/assets/Appearance/default/mode/defaultMode.module.css +2 -1
  4. package/assets/Appearance/pureDark/mode/pureDarkMode.module.css +2 -1
  5. package/es/Accordion/Accordion.js +7 -6
  6. package/es/Accordion/AccordionItem.js +6 -6
  7. package/es/Animation/Animation.js +9 -8
  8. package/es/AppContainer/AppContainer.js +7 -6
  9. package/es/Avatar/Avatar.js +18 -15
  10. package/es/Avatar/Avatar.module.css +3 -0
  11. package/es/Avatar/props/defaultProps.js +3 -1
  12. package/es/Avatar/props/propTypes.js +3 -1
  13. package/es/AvatarTeam/AvatarTeam.js +16 -9
  14. package/es/AvatarTeam/AvatarTeam.module.css +9 -0
  15. package/es/AvatarTeam/props/defaultProps.js +4 -1
  16. package/es/AvatarTeam/props/propTypes.js +3 -0
  17. package/es/Button/Button.js +7 -6
  18. package/es/Buttongroup/Buttongroup.js +15 -12
  19. package/es/Card/Card.js +10 -8
  20. package/es/CheckBox/CheckBox.js +7 -6
  21. package/es/DateTime/DateWidget.js +13 -14
  22. package/es/DropBox/DropBox.js +8 -8
  23. package/es/DropDown/DropDown.js +8 -6
  24. package/es/DropDown/DropDownHeading.js +7 -6
  25. package/es/Heading/Heading.js +7 -6
  26. package/es/Label/Label.js +7 -6
  27. package/es/ListItem/ListContainer.js +7 -6
  28. package/es/ListItem/ListItem.js +7 -6
  29. package/es/ListItem/ListItemWithAvatar.js +6 -6
  30. package/es/ListItem/ListItemWithCheckBox.js +6 -6
  31. package/es/ListItem/ListItemWithIcon.js +7 -6
  32. package/es/ListItem/ListItemWithRadio.js +7 -6
  33. package/es/Modal/Modal.js +9 -8
  34. package/es/MultiSelect/AdvancedGroupMultiSelect.js +7 -6
  35. package/es/MultiSelect/AdvancedMultiSelect.js +10 -8
  36. package/es/MultiSelect/MultiSelect.js +7 -6
  37. package/es/MultiSelect/MultiSelectWithAvatar.js +10 -8
  38. package/es/PopOver/PopOver.js +8 -8
  39. package/es/Radio/Radio.js +6 -6
  40. package/es/Ribbon/Ribbon.js +14 -12
  41. package/es/RippleEffect/RippleEffect.js +7 -6
  42. package/es/Select/GroupSelect.js +9 -8
  43. package/es/Select/Select.js +11 -10
  44. package/es/Select/SelectWithAvatar.js +10 -8
  45. package/es/Select/SelectWithIcon.js +7 -6
  46. package/es/Stencils/Stencils.js +9 -8
  47. package/es/Switch/Switch.js +7 -6
  48. package/es/Tab/Tab.js +7 -6
  49. package/es/Tag/Tag.js +6 -6
  50. package/es/TextBox/TextBox.js +9 -8
  51. package/es/TextBoxIcon/TextBoxIcon.js +8 -8
  52. package/es/Textarea/Textarea.js +9 -8
  53. package/es/Tooltip/Tooltip.js +9 -8
  54. package/es/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +5 -5
  55. package/es/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +6 -5
  56. package/es/deprecated/PortalLayer/PortalLayer.js +7 -6
  57. package/es/semantic/Button/Button.js +6 -6
  58. package/lib/Accordion/Accordion.js +7 -6
  59. package/lib/Accordion/AccordionItem.js +6 -6
  60. package/lib/Animation/Animation.js +9 -8
  61. package/lib/AppContainer/AppContainer.js +7 -6
  62. package/lib/Avatar/Avatar.js +18 -15
  63. package/lib/Avatar/Avatar.module.css +3 -0
  64. package/lib/Avatar/props/defaultProps.js +3 -1
  65. package/lib/Avatar/props/propTypes.js +3 -1
  66. package/lib/AvatarTeam/AvatarTeam.js +16 -9
  67. package/lib/AvatarTeam/AvatarTeam.module.css +9 -0
  68. package/lib/AvatarTeam/props/defaultProps.js +4 -1
  69. package/lib/AvatarTeam/props/propTypes.js +3 -0
  70. package/lib/Button/Button.js +7 -6
  71. package/lib/Buttongroup/Buttongroup.js +15 -12
  72. package/lib/Card/Card.js +9 -8
  73. package/lib/CheckBox/CheckBox.js +7 -6
  74. package/lib/DateTime/DateWidget.js +12 -14
  75. package/lib/DropBox/DropBox.js +8 -8
  76. package/lib/DropDown/DropDown.js +7 -6
  77. package/lib/DropDown/DropDownHeading.js +7 -6
  78. package/lib/Heading/Heading.js +7 -6
  79. package/lib/Label/Label.js +7 -6
  80. package/lib/ListItem/ListContainer.js +7 -8
  81. package/lib/ListItem/ListItem.js +7 -6
  82. package/lib/ListItem/ListItemWithAvatar.js +6 -6
  83. package/lib/ListItem/ListItemWithCheckBox.js +6 -6
  84. package/lib/ListItem/ListItemWithIcon.js +7 -6
  85. package/lib/ListItem/ListItemWithRadio.js +7 -6
  86. package/lib/Modal/Modal.js +9 -8
  87. package/lib/MultiSelect/AdvancedGroupMultiSelect.js +6 -6
  88. package/lib/MultiSelect/AdvancedMultiSelect.js +9 -8
  89. package/lib/MultiSelect/MultiSelect.js +7 -6
  90. package/lib/MultiSelect/MultiSelectWithAvatar.js +9 -8
  91. package/lib/PopOver/PopOver.js +8 -8
  92. package/lib/Radio/Radio.js +6 -6
  93. package/lib/Ribbon/Ribbon.js +14 -12
  94. package/lib/RippleEffect/RippleEffect.js +7 -6
  95. package/lib/Select/GroupSelect.js +9 -10
  96. package/lib/Select/Select.js +11 -12
  97. package/lib/Select/SelectWithAvatar.js +9 -8
  98. package/lib/Select/SelectWithIcon.js +7 -6
  99. package/lib/Stencils/Stencils.js +9 -8
  100. package/lib/Switch/Switch.js +7 -6
  101. package/lib/Tab/Tab.js +7 -6
  102. package/lib/Tag/Tag.js +6 -6
  103. package/lib/TextBox/TextBox.js +9 -8
  104. package/lib/TextBoxIcon/TextBoxIcon.js +8 -8
  105. package/lib/Textarea/Textarea.js +9 -8
  106. package/lib/Tooltip/Tooltip.js +9 -8
  107. package/lib/VelocityAnimation/VelocityAnimation/VelocityAnimation.js +5 -5
  108. package/lib/VelocityAnimation/VelocityAnimationGroup/VelocityAnimationGroup.js +6 -5
  109. package/lib/deprecated/PortalLayer/PortalLayer.js +7 -6
  110. package/lib/semantic/Button/Button.js +6 -6
  111. package/package.json +1 -1
  112. package/css_error.log +0 -0
@@ -292,13 +292,14 @@ MultiSelectWithAvatarComponent.defaultProps = _defaultProps.MultiSelectWithAvata
292
292
  MultiSelectWithAvatarComponent.displayName = 'MultiSelectWithAvatar';
293
293
  var MultiSelectWithAvatar = (0, _Popup["default"])(MultiSelectWithAvatarComponent);
294
294
  MultiSelectWithAvatar.defaultProps = MultiSelectWithAvatarComponent.defaultProps;
295
- if (false) {
296
- MultiSelectWithAvatarComponent.docs = {
297
- componentGroup: 'Form Elements',
298
- folderName: 'Style Guide'
299
- };
300
- // eslint-disable-next-line react/forbid-foreign-prop-types
301
- MultiSelectWithAvatar.propTypes = MultiSelectWithAvatarComponent.propTypes;
302
- }
295
+
296
+ // if (__DOCS__) {
297
+ // MultiSelectWithAvatarComponent.docs = {
298
+ // componentGroup: 'Form Elements',
299
+ // folderName: 'Style Guide'
300
+ // };
301
+ // // eslint-disable-next-line react/forbid-foreign-prop-types
302
+ // MultiSelectWithAvatar.propTypes = MultiSelectWithAvatarComponent.propTypes;
303
+ // }
303
304
  var _default = MultiSelectWithAvatar;
304
305
  exports["default"] = _default;
@@ -130,14 +130,14 @@ var PopOver = /*#__PURE__*/function (_React$Component) {
130
130
  }(_react["default"].Component);
131
131
  PopOver.defaultProps = _defaultProps.PopOver_defaultProps;
132
132
  PopOver.propTypes = _propTypes.PopOver_propTypes;
133
- if (false) {
134
- PopOver.docs = {
135
- componentGroup: 'Form Elements',
136
- folderName: 'Style Guide',
137
- description: ' ',
138
- external: true
139
- };
140
- }
133
+ // if (__DOCS__) {
134
+ // PopOver.docs = {
135
+ // componentGroup: 'Form Elements',
136
+ // folderName: 'Style Guide',
137
+ // description: ' ',
138
+ // external: true
139
+ // };
140
+ // }
141
141
  var _default = (0, _Popup["default"])(PopOver);
142
142
  exports["default"] = _default;
143
143
  var PopOverTarget = /*#__PURE__*/function (_React$Component2) {
@@ -138,9 +138,9 @@ var Radio = /*#__PURE__*/function (_React$Component) {
138
138
  exports["default"] = Radio;
139
139
  Radio.defaultProps = _defaultProps.defaultProps;
140
140
  Radio.propTypes = _propTypes.propTypes;
141
- if (false) {
142
- Radio.docs = {
143
- componentGroup: 'Form Elements',
144
- folderName: 'Style Guide'
145
- };
146
- }
141
+ // if (__DOCS__) {
142
+ // Radio.docs = {
143
+ // componentGroup: 'Form Elements',
144
+ // folderName: 'Style Guide'
145
+ // };
146
+ // }
@@ -57,15 +57,17 @@ var Ribbon = /*#__PURE__*/function (_React$Component) {
57
57
  exports["default"] = Ribbon;
58
58
  Ribbon.propTypes = _propTypes.propTypes;
59
59
  Ribbon.defaultProps = _defaultProps.defaultProps;
60
- if (false) {
61
- Ribbon.docs = {
62
- componentGroup: 'Atom',
63
- folderName: 'Style Guide',
64
- external: true,
65
- description: ' ',
66
- images: [{
67
- view: 'http://zsupport-tech-1.tsi.zohocorpin.com:8080/ui/general/Ribbon/v1/Ribbon.png',
68
- psd: 'http://zsupport-tech-1.tsi.zohocorpin.com:8080/ui/general/Ribbon/v1/Ribbon.psd'
69
- }]
70
- };
71
- }
60
+ // if (__DOCS__) {
61
+ // Ribbon.docs = {
62
+ // componentGroup: 'Atom',
63
+ // folderName: 'Style Guide',
64
+ // external: true,
65
+ // description: ' ',
66
+ // images: [
67
+ // {
68
+ // view: 'http://zsupport-tech-1.tsi.zohocorpin.com:8080/ui/general/Ribbon/v1/Ribbon.png',
69
+ // psd: 'http://zsupport-tech-1.tsi.zohocorpin.com:8080/ui/general/Ribbon/v1/Ribbon.psd'
70
+ // }
71
+ // ]
72
+ // };
73
+ // }
@@ -27,9 +27,10 @@ function RippleEffect(props) {
27
27
  }
28
28
  RippleEffect.defaultProps = _defaultProps.defaultProps;
29
29
  RippleEffect.propTypes = _propTypes.propTypes;
30
- if (false) {
31
- RippleEffect.docs = {
32
- componentGroup: 'RippleEffect',
33
- folderName: 'Style Guide'
34
- };
35
- }
30
+
31
+ // if (__DOCS__) {
32
+ // RippleEffect.docs = {
33
+ // componentGroup: 'RippleEffect',
34
+ // folderName: 'Style Guide'
35
+ // };
36
+ // }
@@ -759,13 +759,12 @@ GroupSelectComponent.defaultProps = _defaultProps.GroupSelect_defaultProps;
759
759
  GroupSelectComponent.displayName = 'GroupSelect';
760
760
  var GroupSelect = (0, _Popup["default"])(GroupSelectComponent);
761
761
  GroupSelect.defaultProps = GroupSelectComponent.defaultProps;
762
- var _default = GroupSelect;
763
- exports["default"] = _default;
764
- if (false) {
765
- GroupSelect.docs = {
766
- componentGroup: 'Form Elements',
767
- folderName: 'Style Guide'
768
- };
769
- // eslint-disable-next-line react/forbid-foreign-prop-types
770
- GroupSelect.propTypes = GroupSelectComponent.propTypes;
771
- }
762
+ var _default = GroupSelect; // if (__DOCS__) {
763
+ // GroupSelect.docs = {
764
+ // componentGroup: 'Form Elements',
765
+ // folderName: 'Style Guide'
766
+ // };
767
+ // // eslint-disable-next-line react/forbid-foreign-prop-types
768
+ // GroupSelect.propTypes = GroupSelectComponent.propTypes;
769
+ // }
770
+ exports["default"] = _default;
@@ -899,15 +899,14 @@ SelectComponent.defaultProps = _defaultProps.Select_defaultProps;
899
899
  SelectComponent.displayName = 'Select';
900
900
  var Select = (0, _Popup["default"])(SelectComponent);
901
901
  Select.defaultProps = SelectComponent.defaultProps;
902
- var _default = Select;
903
- exports["default"] = _default;
904
- if (false) {
905
- Select.docs = {
906
- componentGroup: 'Form Elements',
907
- folderName: 'Style Guide',
908
- external: true,
909
- description: ' '
910
- };
911
- // eslint-disable-next-line react/forbid-foreign-prop-types
912
- Select.propTypes = SelectComponent.propTypes;
913
- }
902
+ var _default = Select; // if (__DOCS__) {
903
+ // Select.docs = {
904
+ // componentGroup: 'Form Elements',
905
+ // folderName: 'Style Guide',
906
+ // external: true,
907
+ // description: ' '
908
+ // };
909
+ // // eslint-disable-next-line react/forbid-foreign-prop-types
910
+ // Select.propTypes = SelectComponent.propTypes;
911
+ // }
912
+ exports["default"] = _default;
@@ -328,13 +328,14 @@ SelectWithAvatarComponent.defaultProps = _defaultProps.SelectWithAvatar_defaultP
328
328
  SelectWithAvatarComponent.displayName = 'SelectWithAvatar';
329
329
  var SelectWithAvatar = (0, _Popup["default"])(SelectWithAvatarComponent);
330
330
  SelectWithAvatar.defaultProps = SelectWithAvatarComponent.defaultProps;
331
- if (false) {
332
- SelectWithAvatar.docs = {
333
- componentGroup: 'Form Elements',
334
- folderName: 'Style Guide'
335
- };
336
- // eslint-disable-next-line react/forbid-foreign-prop-types
337
- SelectWithAvatar.propTypes = SelectWithAvatarComponent.propTypes;
338
- }
331
+
332
+ // if (__DOCS__) {
333
+ // SelectWithAvatar.docs = {
334
+ // componentGroup: 'Form Elements',
335
+ // folderName: 'Style Guide'
336
+ // };
337
+ // // eslint-disable-next-line react/forbid-foreign-prop-types
338
+ // SelectWithAvatar.propTypes = SelectWithAvatarComponent.propTypes;
339
+ // }
339
340
  var _default = SelectWithAvatar;
340
341
  exports["default"] = _default;
@@ -521,11 +521,12 @@ var SelectWithIcon = /*#__PURE__*/function (_Component) {
521
521
  }(_react.Component);
522
522
  SelectWithIcon.propTypes = _propTypes.SelectWithIcon_propTypes;
523
523
  SelectWithIcon.defaultProps = _defaultProps.SelectWithIcon_defaultProps;
524
- if (false) {
525
- SelectWithIcon.docs = {
526
- componentGroup: 'Form Elements',
527
- folderName: 'Style Guide'
528
- };
529
- }
524
+
525
+ // if (__DOCS__) {
526
+ // SelectWithIcon.docs = {
527
+ // componentGroup: 'Form Elements',
528
+ // folderName: 'Style Guide'
529
+ // };
530
+ // }
530
531
  var _default = (0, _Popup["default"])(SelectWithIcon);
531
532
  exports["default"] = _default;
@@ -47,11 +47,12 @@ var Stencils = /*#__PURE__*/function (_React$PureComponent) {
47
47
  exports["default"] = Stencils;
48
48
  Stencils.propTypes = _propTypes.propTypes;
49
49
  Stencils.defaultProps = _defaultProps.defaultProps;
50
- if (false) {
51
- Stencils.docs = {
52
- componentGroup: 'Atom',
53
- folderName: 'Style Guide',
54
- description: ' ',
55
- external: true
56
- };
57
- }
50
+
51
+ // if (__DOCS__) {
52
+ // Stencils.docs = {
53
+ // componentGroup: 'Atom',
54
+ // folderName: 'Style Guide',
55
+ // description: ' ',
56
+ // external: true
57
+ // };
58
+ // }
@@ -115,9 +115,10 @@ var Switch = /*#__PURE__*/function (_React$Component) {
115
115
  exports["default"] = Switch;
116
116
  Switch.defaultProps = _defaultProps.defaultProps;
117
117
  Switch.propTypes = _propTypes.propTypes;
118
- if (false) {
119
- Switch.docs = {
120
- componentGroup: 'Form Elements',
121
- folderName: 'Style Guide'
122
- };
123
- }
118
+
119
+ // if (__DOCS__) {
120
+ // Switch.docs = {
121
+ // componentGroup: 'Form Elements',
122
+ // folderName: 'Style Guide'
123
+ // };
124
+ // }
package/lib/Tab/Tab.js CHANGED
@@ -108,9 +108,10 @@ function Tab(_ref) {
108
108
  }
109
109
  Tab.defaultProps = _defaultProps.Tab_defaultProps;
110
110
  Tab.propTypes = _propTypes.Tab_propTypes;
111
- if (false) {
112
- Tab.docs = {
113
- componentGroup: 'Tab',
114
- folderName: 'Style Guide'
115
- };
116
- }
111
+
112
+ // if (__DOCS__) {
113
+ // Tab.docs = {
114
+ // componentGroup: 'Tab',
115
+ // folderName: 'Style Guide'
116
+ // };
117
+ // }
package/lib/Tag/Tag.js CHANGED
@@ -169,9 +169,9 @@ var Tag = /*#__PURE__*/function (_PureComponent) {
169
169
  exports["default"] = Tag;
170
170
  Tag.defaultProps = _defaultProps.defaultProps;
171
171
  Tag.propTypes = _propTypes.propTypes;
172
- if (false) {
173
- Tag.docs = {
174
- componentGroup: 'Molecule',
175
- folderName: 'Style Guide'
176
- };
177
- }
172
+ // if (__DOCS__) {
173
+ // Tag.docs = {
174
+ // componentGroup: 'Molecule',
175
+ // folderName: 'Style Guide'
176
+ // };
177
+ // }
@@ -183,11 +183,12 @@ var Textbox = /*#__PURE__*/function (_React$PureComponent) {
183
183
  exports["default"] = Textbox;
184
184
  Textbox.defaultProps = _defaultProps.defaultProps;
185
185
  Textbox.propTypes = _propTypes.propTypes;
186
- if (false) {
187
- Textbox.docs = {
188
- componentGroup: 'Form Elements',
189
- folderName: 'Style Guide',
190
- external: true,
191
- description: ' '
192
- };
193
- }
186
+
187
+ // if (__DOCS__) {
188
+ // Textbox.docs = {
189
+ // componentGroup: 'Form Elements',
190
+ // folderName: 'Style Guide',
191
+ // external: true,
192
+ // description: ' '
193
+ // };
194
+ // }
@@ -177,11 +177,11 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.g
177
177
  exports["default"] = TextBoxIcon;
178
178
  TextBoxIcon.defaultProps = _defaultProps.defaultProps;
179
179
  TextBoxIcon.propTypes = _propTypes.propTypes;
180
- if (false) {
181
- TextBoxIcon.docs = {
182
- componentGroup: 'Form Elements',
183
- folderName: 'Style Guide',
184
- external: true,
185
- description: ' '
186
- };
187
- }
180
+ // if (__DOCS__) {
181
+ // TextBoxIcon.docs = {
182
+ // componentGroup: 'Form Elements',
183
+ // folderName: 'Style Guide',
184
+ // external: true,
185
+ // description: ' '
186
+ // };
187
+ // }
@@ -120,11 +120,12 @@ var Textarea = /*#__PURE__*/function (_React$Component) {
120
120
  exports["default"] = Textarea;
121
121
  Textarea.defaultProps = _defaultProps.defaultProps;
122
122
  Textarea.propTypes = _propTypes.propTypes;
123
- if (false) {
124
- Textarea.docs = {
125
- componentGroup: 'Form Elements',
126
- folderName: 'Style Guide',
127
- external: true,
128
- description: ' '
129
- };
130
- }
123
+
124
+ // if (__DOCS__) {
125
+ // Textarea.docs = {
126
+ // componentGroup: 'Form Elements',
127
+ // folderName: 'Style Guide',
128
+ // external: true,
129
+ // description: ' '
130
+ // };
131
+ // }
@@ -509,11 +509,12 @@ var Tooltip = /*#__PURE__*/function (_React$Component) {
509
509
  exports["default"] = Tooltip;
510
510
  Tooltip.propTypes = _propTypes.propTypes;
511
511
  Tooltip.defaultProps = _defaultProps.defaultProps;
512
- if (false) {
513
- Tooltip.docs = {
514
- componentGroup: 'Atom',
515
- folderName: 'Style Guide',
516
- description: ' ',
517
- external: true
518
- };
519
- }
512
+
513
+ // if (__DOCS__) {
514
+ // Tooltip.docs = {
515
+ // componentGroup: 'Atom',
516
+ // folderName: 'Style Guide',
517
+ // description: ' ',
518
+ // external: true
519
+ // };
520
+ // }
@@ -93,8 +93,8 @@ exports["default"] = VelocityAnimation;
93
93
  VelocityAnimation.defaultProps = _defaultProps.defaultProps;
94
94
  VelocityAnimation.propTypes = _propTypes.propTypes;
95
95
  VelocityAnimation.contextType = _LibraryContextInit["default"];
96
- if (false) {
97
- VelocityAnimation.docs = {
98
- componentGroup: 'Animation'
99
- };
100
- }
96
+ // if (__DOCS__) {
97
+ // VelocityAnimation.docs = {
98
+ // componentGroup: 'Animation'
99
+ // };
100
+ // }
@@ -124,8 +124,9 @@ VelocityAnimationGroup.defaultProps = _objectSpread(_objectSpread({}, _defaultPr
124
124
  });
125
125
  VelocityAnimationGroup.propTypes = _propTypes.propTypes;
126
126
  VelocityAnimationGroup.contextType = _LibraryContextInit["default"];
127
- if (false) {
128
- VelocityAnimationGroup.docs = {
129
- componentGroup: 'Animation'
130
- };
131
- }
127
+
128
+ // if (__DOCS__) {
129
+ // VelocityAnimationGroup.docs = {
130
+ // componentGroup: 'Animation'
131
+ // };
132
+ // }
@@ -118,9 +118,10 @@ var PortalLayer = /*#__PURE__*/function (_React$Component) {
118
118
  exports["default"] = PortalLayer;
119
119
  PortalLayer.defaultProps = _defaultProps.defaultProps;
120
120
  PortalLayer.propTypes = _propTypes.propTypes;
121
- if (false) {
122
- PortalLayer.docs = {
123
- componentGroup: 'Atom',
124
- folderName: 'Style Guide'
125
- };
126
- }
121
+
122
+ // if (__DOCS__) {
123
+ // PortalLayer.docs = {
124
+ // componentGroup: 'Atom',
125
+ // folderName: 'Style Guide'
126
+ // };
127
+ // }
@@ -73,9 +73,9 @@ var Button = /*#__PURE__*/function (_React$Component) {
73
73
  exports["default"] = Button;
74
74
  Button.defaultProps = _defaultProps.defaultProps;
75
75
  Button.propTypes = _propTypes.propTypes;
76
- if (false) {
77
- Button.docs = {
78
- componentGroup: 'semantic',
79
- folderName: 'DefaultComponents'
80
- };
81
- }
76
+ // if (__DOCS__) {
77
+ // Button.docs = {
78
+ // componentGroup: 'semantic',
79
+ // folderName: 'DefaultComponents'
80
+ // };
81
+ // }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/components",
3
- "version": "1.0.0-temp-118",
3
+ "version": "1.0.0-temp-120",
4
4
  "main": "es/index.js",
5
5
  "module": "es/index.js",
6
6
  "private": false,
package/css_error.log DELETED
File without changes