@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.
- package/.cli/AppearanceThemeValidationExcludeFiles.js +1 -0
- package/.cli/propValidation_report.html +1 -1
- package/README.md +6 -0
- package/assets/Appearance/dark/mode/Component_DarkMode.module.css +3 -0
- package/assets/Appearance/light/mode/Component_LightMode.module.css +3 -0
- package/assets/Appearance/pureDark/mode/Component_PureDarkMode.module.css +3 -0
- package/es/Avatar/Avatar.module.css +12 -0
- package/es/AvatarTeam/AvatarTeam.module.css +2 -0
- package/es/Button/css/Button.module.css +9 -1
- package/es/Buttongroup/Buttongroup.module.css +2 -0
- package/es/CheckBox/CheckBox.module.css +2 -0
- package/es/DateTime/DateTime.module.css +1 -0
- package/es/DateTime/dateFormatUtils/dateFormat.js +6 -1
- package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +7 -0
- package/es/DropBox/css/DropBox.module.css +1 -0
- package/es/DropDown/DropDownHeading.module.css +6 -0
- package/es/DropDown/DropDownItem.module.css +3 -0
- package/es/Label/Label.module.css +1 -0
- package/es/ListItem/ListItem.module.css +21 -0
- package/es/PopOver/PopOver.module.css +1 -0
- package/es/Radio/Radio.module.css +1 -0
- package/es/Ribbon/Ribbon.module.css +4 -0
- package/es/Switch/Switch.module.css +2 -0
- package/es/Tag/Tag.module.css +6 -0
- package/es/TextBox/TextBox.module.css +20 -0
- package/es/TextBoxIcon/TextBoxIcon.module.css +5 -0
- package/es/Textarea/Textarea.module.css +6 -0
- package/es/Tooltip/Tooltip.module.css +4 -0
- package/es/common/customscroll.module.css +37 -0
- package/es/v1/Modal/Modal.js +86 -114
- package/es/v1/Typography/css/Typography.module.css +83 -112
- package/es/v1/Typography/css/cssJSLogic.js +6 -2
- package/es/v1/Typography/props/propTypes.js +2 -2
- package/es/v1/Typography/utils/index.js +50 -0
- package/lib/Avatar/Avatar.module.css +12 -0
- package/lib/AvatarTeam/AvatarTeam.module.css +2 -0
- package/lib/Button/css/Button.module.css +9 -1
- package/lib/Buttongroup/Buttongroup.module.css +2 -0
- package/lib/CheckBox/CheckBox.module.css +2 -0
- package/lib/DateTime/DateTime.module.css +1 -0
- package/lib/DateTime/dateFormatUtils/dateFormat.js +6 -1
- package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +7 -0
- package/lib/DropBox/css/DropBox.module.css +1 -0
- package/lib/DropDown/DropDownHeading.module.css +6 -0
- package/lib/DropDown/DropDownItem.module.css +3 -0
- package/lib/Label/Label.module.css +1 -0
- package/lib/ListItem/ListItem.module.css +21 -0
- package/lib/PopOver/PopOver.module.css +1 -0
- package/lib/Radio/Radio.module.css +1 -0
- package/lib/Ribbon/Ribbon.module.css +4 -0
- package/lib/Switch/Switch.module.css +2 -0
- package/lib/Tag/Tag.module.css +6 -0
- package/lib/TextBox/TextBox.module.css +20 -0
- package/lib/TextBoxIcon/TextBoxIcon.module.css +5 -0
- package/lib/Textarea/Textarea.module.css +6 -0
- package/lib/Tooltip/Tooltip.module.css +4 -0
- package/lib/common/customscroll.module.css +37 -0
- package/lib/v1/Modal/Modal.js +118 -164
- package/lib/v1/Typography/css/Typography.module.css +83 -112
- package/lib/v1/Typography/css/cssJSLogic.js +7 -3
- package/lib/v1/Typography/props/propTypes.js +2 -2
- package/lib/v1/Typography/utils/index.js +59 -0
- package/package.json +8 -6
- package/result.json +1 -1
- package/es/v1/Typography/css/letterSpacingMap.js +0 -12
- package/lib/v1/Typography/css/letterSpacingMap.js +0 -20
|
@@ -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;
|