@zohodesk/dot 1.0.0-temp-228 → 1.0.0-temp-228.2
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 +4 -0
- package/es/ActionButton/ActionButton.js +2 -2
- package/es/Attachment/Attachment.module.css +3 -3
- package/es/Image/Image.module.css +2 -2
- package/es/Onboarding/css/Onboarding.module.css +1 -1
- package/es/Separator/Separator.module.css +5 -5
- package/es/TagWithIcon/TagWithIcon.module.css +3 -3
- package/es/Upload/Upload.module.css +31 -2
- package/es/form/fields/Fields.module.css +73 -17
- package/es/form/fields/TextEditor/TextEditor.module.css +1 -1
- package/es/list/GridStencils/GridStencils.module.css +12 -2
- package/es/list/TagNew/TagNew.module.css +1 -1
- package/es/list/status/StatusListItem/StatusListItem.module.css +2 -2
- package/es/version2/AlertClose/AlertClose.module.css +1 -1
- package/es/version2/GlobalNotification/GlobalNotification.module.css +1 -1
- package/es/version2/lookup/AlertLookup/AlertLookupNew.module.css +8 -2
- package/es/version2/notification/DesktopNotification/DesktopNotification.module.css +2 -2
- package/es/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +3 -2
- package/lib/ActionButton/ActionButton.js +2 -2
- package/lib/Attachment/Attachment.module.css +3 -3
- package/lib/Image/Image.module.css +2 -2
- package/lib/Onboarding/css/Onboarding.module.css +1 -1
- package/lib/Separator/Separator.module.css +5 -5
- package/lib/TagWithIcon/TagWithIcon.module.css +3 -3
- package/lib/Upload/Upload.module.css +31 -2
- package/lib/form/fields/Fields.module.css +73 -17
- package/lib/form/fields/TextEditor/TextEditor.module.css +1 -1
- package/lib/list/GridStencils/GridStencils.module.css +12 -2
- package/lib/list/TagNew/TagNew.module.css +1 -1
- package/lib/list/status/StatusListItem/StatusListItem.module.css +2 -2
- package/lib/version2/AlertClose/AlertClose.module.css +1 -1
- package/lib/version2/GlobalNotification/GlobalNotification.module.css +1 -1
- package/lib/version2/lookup/AlertLookup/AlertLookupNew.module.css +8 -2
- package/lib/version2/notification/DesktopNotification/DesktopNotification.module.css +2 -2
- package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css +3 -2
- package/package.json +15 -12
- package/_react-cli.config.js +0 -27
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.varClass {
|
|
2
2
|
--statuslistitem_multiline_lineheight: 1.5385;
|
|
3
3
|
--statuslistitem_font_size: var(--zd_font_size13);
|
|
4
|
-
--statuslistitem_min_height:
|
|
4
|
+
--statuslistitem_min_height: var(--zd_size35);
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.list {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
padding: var(--zd_size7) var(--zd_size20) ;
|
|
30
30
|
}
|
|
31
31
|
.large {
|
|
32
|
-
--statuslistitem_min_height:
|
|
32
|
+
--statuslistitem_min_height: var(--zd_size48);
|
|
33
33
|
}
|
|
34
34
|
[dir=ltr] .large {
|
|
35
35
|
padding: var(--zd_size10) var(--zd_size3) var(--zd_size10) var(--zd_size25) ;
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
composes: wbreak from '~@zohodesk/components/es/common/common.module.css';
|
|
83
83
|
width: 100% ;
|
|
84
84
|
box-shadow: var(--zd_bs_globalnotification_container);
|
|
85
|
-
border-radius: 0 0
|
|
85
|
+
border-radius: 0 0 10px 10px;
|
|
86
86
|
background-color: var(--globalnotification_bg_color);
|
|
87
87
|
border-style: solid;
|
|
88
88
|
border-color: var(--commonalert_border_color);
|
|
@@ -28,17 +28,23 @@
|
|
|
28
28
|
|
|
29
29
|
.footer {
|
|
30
30
|
overflow: hidden;
|
|
31
|
-
border-radius: 0 0
|
|
31
|
+
border-radius: 0 0 10px 10px;
|
|
32
32
|
}
|
|
33
|
-
|
|
33
|
+
|
|
34
|
+
.horizontalScroll,
|
|
35
|
+
.verticalScroll,
|
|
36
|
+
.bothScroll {
|
|
34
37
|
height: 100% ;
|
|
35
38
|
}
|
|
39
|
+
|
|
36
40
|
.horizontalScroll {
|
|
37
41
|
composes: oflowx from '~@zohodesk/components/es/common/common.module.css';
|
|
38
42
|
}
|
|
43
|
+
|
|
39
44
|
.verticalScroll {
|
|
40
45
|
composes: oflowy from '~@zohodesk/components/es/common/common.module.css';
|
|
41
46
|
}
|
|
47
|
+
|
|
42
48
|
.bothScroll {
|
|
43
49
|
composes: oflowA from '~@zohodesk/components/es/common/common.module.css';
|
|
44
50
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
pointer-events: auto;
|
|
12
12
|
background-color: var(--zdt_desktopnotification_bg);
|
|
13
13
|
box-shadow: var(--zd_bs_desktopnotification_container);
|
|
14
|
-
border-radius: 0 0
|
|
14
|
+
border-radius: 0 0 10px 10px;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
[dir=ltr] .container {
|
|
@@ -130,5 +130,5 @@
|
|
|
130
130
|
|
|
131
131
|
.footer {
|
|
132
132
|
overflow: hidden;
|
|
133
|
-
border-radius: 0 0
|
|
133
|
+
border-radius: 0 0 10px 10px;
|
|
134
134
|
}
|
package/lib/version2/notification/DesktopNotificationHeader/DesktopNotificationHeader.module.css
CHANGED
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
--commonalert_border_color: var(--zdt_commonalert_info_border);
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
.danger
|
|
45
|
+
.danger,
|
|
46
|
+
.error {
|
|
46
47
|
--commonalert_border_color: var(--zdt_commonalert_danger_border);
|
|
47
48
|
}
|
|
48
49
|
|
|
@@ -91,7 +92,7 @@
|
|
|
91
92
|
/* Secondary Header */
|
|
92
93
|
.secondary_header {
|
|
93
94
|
composes: wbreak from '~@zohodesk/components/es/common/common.module.css';
|
|
94
|
-
border-radius: 0 0
|
|
95
|
+
border-radius: 0 0 10px 10px;
|
|
95
96
|
}
|
|
96
97
|
[dir=ltr] .secondary_header {
|
|
97
98
|
padding: var(--zd_size18) var(--zd_size70) var(--zd_size19) var(--zd_size75) ;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/dot",
|
|
3
|
-
"version": "1.0.0-temp-228",
|
|
3
|
+
"version": "1.0.0-temp-228.2",
|
|
4
4
|
"main": "lib/index",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"private": false,
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"build:lib": "cbt build:lib src,assets lib,assets",
|
|
23
23
|
"build:es": "cbt build:es src,assets es,assets",
|
|
24
24
|
"build:es:watch": "cbt build:es src es",
|
|
25
|
-
"build": "npm run theme:validate && npm run build:lib && npm run build:es",
|
|
25
|
+
"build": "npm run theme:validate && npm run build:lib && npm run build:es && npm run cssVariableConvert ",
|
|
26
26
|
"build:watch": "npm run build:es:watch --module:mode=dev -- -w",
|
|
27
27
|
"prepare": "npm run clean && npm run css:build",
|
|
28
28
|
"lint": "react-cli lint",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"snap-update": "npm run test-clean && npm run test -- -u",
|
|
35
35
|
"sstest": "react-cli sstest",
|
|
36
36
|
"common_package_build": "cd ../common && npm run build && cd ../dot",
|
|
37
|
-
"prepublishOnly": "node prePublish.js && npm run downloadOnly",
|
|
38
|
-
"postpublish": "node postPublish.js",
|
|
37
|
+
"prepublishOnly": "node ../prePublish.js && npm run downloadOnly",
|
|
38
|
+
"postpublish": "node ../postPublish.js",
|
|
39
39
|
"test-clean": "react-cli clean ./coverage && react-cli clean ./unittest react-cli clean ./es && react-cli clean ./lib && react-cli clean ./package-lock.json && react-cli clean ./result.json",
|
|
40
40
|
"download": "npm run downloadOnly && cd ../ && npm run download",
|
|
41
41
|
"downloadOnly": "react-cli clean ./node_modules ./package-lock.json && npm install --legacy-peer-deps",
|
|
42
|
-
"expublish": "
|
|
42
|
+
"expublish": "node ../publish.js -- exp",
|
|
43
43
|
"css:lineheight:validate": "node ./node_modules/@zohodesk-private/node-plugins/es/lineheight_automation/lineHeightErrorCheck.js ./src/",
|
|
44
44
|
"variable:addignore": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/variableIgnore.js ./src",
|
|
45
45
|
"variable:convert": "node ./node_modules/@zohodesk-private/css-variable-migrator/es/pxParserPostcss.js ./src",
|
|
@@ -55,7 +55,10 @@
|
|
|
55
55
|
"css:layer_generate_order": "node ./node_modules/@zohodesk-private/node-plugins/es/css_layer_generator/generate_layer_order.js css_layer_config.json ./src/dot_layer.module.css",
|
|
56
56
|
"css:layer_config_validate": "node ./node_modules/@zohodesk-private/node-plugins/es/css_layer_generator/validate.js css_layer_config.json ./src/ ./assets",
|
|
57
57
|
"css:build": "npm run css:layer_config_validate && npm run css:layer_generate_order && npm run build",
|
|
58
|
-
"css:layer_remove": "node ./node_modules/@zohodesk-private/node-plugins/es/css_layer_generator/remove_layer.js ./es ./assets css_layer_config.json --rewrite=src=es --rewrite=assets=assets"
|
|
58
|
+
"css:layer_remove": "node ./node_modules/@zohodesk-private/node-plugins/es/css_layer_generator/remove_layer.js ./es ./assets css_layer_config.json --rewrite=src=es --rewrite=assets=assets",
|
|
59
|
+
"cssVariableConvert": "react-cli variableConverter ./lib ./lib && react-cli variableConverter ./es ./es",
|
|
60
|
+
"publish": "node ../publish.js",
|
|
61
|
+
"check_package": "node ../check_dependencies.js"
|
|
59
62
|
},
|
|
60
63
|
"devDependencies": {
|
|
61
64
|
"postcss-discard-comments": "^7.0.5",
|
|
@@ -68,13 +71,13 @@
|
|
|
68
71
|
"@zohodesk-private/node-plugins": "1.1.13",
|
|
69
72
|
"@zohodesk-private/react-prop-validator": "1.2.3",
|
|
70
73
|
"@zohodesk/a11y": "2.3.8",
|
|
71
|
-
"@zohodesk/components": "1.6.
|
|
74
|
+
"@zohodesk/components": "1.6.8",
|
|
72
75
|
"@zohodesk/hooks": "2.0.8",
|
|
73
76
|
"@zohodesk/icons": "1.2.8",
|
|
74
77
|
"@zohodesk/layout": "3.1.0",
|
|
75
|
-
"@zohodesk/svg": "1.3.
|
|
78
|
+
"@zohodesk/svg": "1.3.5",
|
|
76
79
|
"@zohodesk/utils": "1.3.16",
|
|
77
|
-
"@zohodesk/variables": "1.3.
|
|
80
|
+
"@zohodesk/variables": "1.3.1",
|
|
78
81
|
"@zohodesk/virtualizer": "1.0.13",
|
|
79
82
|
"react-sortable-hoc": "^0.8.3",
|
|
80
83
|
"velocity-react": "1.4.3",
|
|
@@ -84,10 +87,10 @@
|
|
|
84
87
|
},
|
|
85
88
|
"peerDependencies": {
|
|
86
89
|
"velocity-react": "1.4.3",
|
|
87
|
-
"@zohodesk/variables": "1.3.
|
|
88
|
-
"@zohodesk/components": "1.6.
|
|
90
|
+
"@zohodesk/variables": "1.3.1",
|
|
91
|
+
"@zohodesk/components": "1.6.8",
|
|
89
92
|
"@zohodesk/icons": "1.2.8",
|
|
90
|
-
"@zohodesk/svg": "1.3.
|
|
93
|
+
"@zohodesk/svg": "1.3.5",
|
|
91
94
|
"@zohodesk/virtualizer": "1.0.13",
|
|
92
95
|
"react-sortable-hoc": "^0.8.3",
|
|
93
96
|
"@zohodesk/hooks": "2.0.8",
|
package/_react-cli.config.js
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
exports.config= {
|
|
2
|
-
"preprocess": {
|
|
3
|
-
"runner": "./preprocess/index.js"
|
|
4
|
-
},
|
|
5
|
-
"css": {
|
|
6
|
-
"cssVariableReplacementConfig": "./node_modules/@zohodesk-private/css-variable-migrator/es/config/cssVariableReplacementOptions.json",
|
|
7
|
-
"plugins": {
|
|
8
|
-
"hasRTL": true,
|
|
9
|
-
"cssVariableReplacement": true
|
|
10
|
-
},
|
|
11
|
-
"patterns": {
|
|
12
|
-
"cssVariableReplacement": [
|
|
13
|
-
"**/src/**",
|
|
14
|
-
"**/lib/**",
|
|
15
|
-
"**/es/**",
|
|
16
|
-
"!**/node_modules/**"
|
|
17
|
-
],
|
|
18
|
-
"hasRTL":[
|
|
19
|
-
"**/src/**",
|
|
20
|
-
"!**/node_modules/**"
|
|
21
|
-
]
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
app:{
|
|
25
|
-
disableES5Transpile:true
|
|
26
|
-
}
|
|
27
|
-
}
|