@zohodesk/components 1.0.0-alpha-244 → 1.0.0-alpha-247
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/pureDark/mode/pureDarkMode.module.css +2 -2
- package/es/CheckBox/CheckBox.module.css +12 -8
- package/es/LightNightMode/Colors.json +496 -397
- package/es/LightNightMode/docs/AlternativeColors.docs.js +21 -1
- package/es/ListItem/ListItem.module.css +12 -8
- package/es/MultiSelect/AdvancedGroupMultiSelect.js +1 -1
- package/es/Radio/Radio.module.css +8 -6
- package/es/RippleEffect/RippleEffect.module.css +37 -15
- package/es/Switch/Switch.module.css +3 -2
- package/es/index.js +0 -4
- package/lib/CheckBox/CheckBox.module.css +12 -8
- package/lib/LightNightMode/Colors.json +496 -397
- package/lib/LightNightMode/docs/AlternativeColors.docs.js +23 -1
- package/lib/ListItem/ListItem.module.css +12 -8
- package/lib/MultiSelect/AdvancedGroupMultiSelect.js +1 -1
- package/lib/Radio/Radio.module.css +8 -6
- package/lib/RippleEffect/RippleEffect.module.css +37 -15
- package/lib/Switch/Switch.module.css +3 -2
- package/lib/index.js +0 -36
- package/package.json +5 -5
- package/es/a11y/FocusScope/FocusScope.js +0 -370
- package/es/a11y/FocusScope/docs/FocusScope__default.docs.js +0 -139
- package/es/beta/FocusRing/FocusRing.js +0 -281
- package/es/beta/FocusRing/FocusRing.module.css +0 -152
- package/es/beta/FocusRing/docs/FocusRing__default.docs.js +0 -48
- package/lib/a11y/FocusScope/FocusScope.js +0 -443
- package/lib/a11y/FocusScope/docs/FocusScope__default.docs.js +0 -191
- package/lib/beta/FocusRing/FocusRing.js +0 -338
- package/lib/beta/FocusRing/FocusRing.module.css +0 -152
- package/lib/beta/FocusRing/docs/FocusRing__default.docs.js +0 -101
package/README.md
CHANGED
|
@@ -32,6 +32,16 @@ In this Package, we Provide Some Basic Components to Build Web App
|
|
|
32
32
|
- TextBoxIcon
|
|
33
33
|
- Tooltip
|
|
34
34
|
|
|
35
|
+
# 1.0.0-alpha-247
|
|
36
|
+
|
|
37
|
+
- Svg path changes
|
|
38
|
+
# 1.0.0-alpha-246
|
|
39
|
+
|
|
40
|
+
- :focus in css removed
|
|
41
|
+
# 1.0.0-alpha-245
|
|
42
|
+
|
|
43
|
+
- PureDark mode color lists added in docs
|
|
44
|
+
|
|
35
45
|
# 1.0.0-alpha-244
|
|
36
46
|
|
|
37
47
|
- AdvancedGroupMultiSelect , AdvancedMultiSelect => textbox flexible ui fix and duplicate css removed
|
|
@@ -290,7 +290,7 @@
|
|
|
290
290
|
--zdt_datetime_datestr_text: var(--dot_platinum);
|
|
291
291
|
--zdt_datetime_datestr_hover_bg: #161515;
|
|
292
292
|
--zdt_datetime_separator_border: #161515;
|
|
293
|
-
--zdt_datetime_daystr_text:
|
|
293
|
+
--zdt_datetime_daystr_text: var(--dot_oslogrey);
|
|
294
294
|
--zdt_datetime_invalid_text: var(--dot_riverbed);
|
|
295
295
|
--zdt_datetime_invalid_hover_text: var(--dot_bittersweet);
|
|
296
296
|
--zdt_datetime_invaliddate_text: rgba(222, 53, 53, 0.3);
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
--zdt_yearview_currentmonth_text: var(--dot_white);
|
|
307
307
|
--zdt_yearview_yearbox_border: #161515;
|
|
308
308
|
--zdt_yearview_year_hover_text: var(--dot_platinum);
|
|
309
|
-
--zdt_yearview_yeartext_text:
|
|
309
|
+
--zdt_yearview_yeartext_text: var(--dot_oslogrey);
|
|
310
310
|
--zdt_yearview_month_text: var(--dot_platinum);
|
|
311
311
|
|
|
312
312
|
/* date widget */
|
|
@@ -101,15 +101,17 @@
|
|
|
101
101
|
.checkeddanger {
|
|
102
102
|
stroke: var(--checkbox_checked_stroke_color);
|
|
103
103
|
}
|
|
104
|
-
.primary:hover
|
|
105
|
-
.primary:focus
|
|
104
|
+
.primary:hover
|
|
105
|
+
/* .primary:focus */
|
|
106
|
+
{
|
|
106
107
|
--checkbox_stroke_color: var(--zdt_checkbox_primary_stroke_border);
|
|
107
108
|
}
|
|
108
109
|
.checkedprimary {
|
|
109
110
|
--checkbox_checked_stroke_color: var(--zdt_checkbox_primary_stroke_border);
|
|
110
111
|
}
|
|
111
|
-
.danger:hover
|
|
112
|
-
.danger:focus
|
|
112
|
+
.danger:hover
|
|
113
|
+
/* .danger:focus */
|
|
114
|
+
{
|
|
113
115
|
--checkbox_stroke_color: var(--zdt_checkbox_danger_stroke_border);
|
|
114
116
|
}
|
|
115
117
|
.checkeddanger {
|
|
@@ -120,15 +122,17 @@
|
|
|
120
122
|
.checkeddangerLabel {
|
|
121
123
|
color: var(--checkbox_checked_active_color);
|
|
122
124
|
}
|
|
123
|
-
.activeprimaryLabel:hover
|
|
124
|
-
.activeprimaryLabel:focus
|
|
125
|
+
.activeprimaryLabel:hover
|
|
126
|
+
/* .activeprimaryLabel:focus */
|
|
127
|
+
{
|
|
125
128
|
--label_text_color: var(--zdt_checkbox_label_primary_text);
|
|
126
129
|
}
|
|
127
130
|
.checkedprimaryLabel {
|
|
128
131
|
--checkbox_checked_active_color: var(--zdt_checkbox_primary_stroke_border);
|
|
129
132
|
}
|
|
130
|
-
.activedangerLabel:hover
|
|
131
|
-
.activedangerLabel:focus
|
|
133
|
+
.activedangerLabel:hover
|
|
134
|
+
/* .activedangerLabel:focus */
|
|
135
|
+
{
|
|
132
136
|
--label_text_color: var(--zdt_checkbox_label_danger_text);
|
|
133
137
|
}
|
|
134
138
|
.checkeddangerLabel {
|