@patternfly/react-styles 4.74.13 → 4.74.14
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/CHANGELOG.md +8 -0
- package/css/utilities/BackgroundColor/BackgroundColor.css +100 -0
- package/css/utilities/BackgroundColor/BackgroundColor.d.ts +2 -1
- package/css/utilities/BackgroundColor/BackgroundColor.js +2 -1
- package/css/utilities/BackgroundColor/BackgroundColor.mjs +2 -1
- package/css/utilities/BackgroundColor/themes/dark/BackgroundColor.css +0 -0
- package/css/utilities/BackgroundColor/themes/dark/BackgroundColor.d.ts +3 -0
- package/css/utilities/BackgroundColor/themes/dark/BackgroundColor.js +4 -0
- package/css/utilities/BackgroundColor/themes/dark/BackgroundColor.mjs +2 -0
- package/css/utilities/Text/text.css +173 -0
- package/css/utilities/Text/text.d.ts +1 -0
- package/css/utilities/Text/text.js +1 -0
- package/css/utilities/Text/text.mjs +1 -0
- package/css/utilities/Text/themes/dark/text.css +0 -0
- package/css/utilities/Text/themes/dark/text.d.ts +3 -0
- package/css/utilities/Text/themes/dark/text.js +4 -0
- package/css/utilities/Text/themes/dark/text.mjs +2 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,14 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## 4.74.14 (2022-07-11)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
6
14
|
## 4.74.13 (2022-07-11)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @patternfly/react-styles
|
@@ -311,4 +311,104 @@
|
|
311
311
|
.pf-u-background-color-danger-on-2xl {
|
312
312
|
background-color: var(--pf-global--palette--red-50) !important;
|
313
313
|
}
|
314
|
+
}
|
315
|
+
:where(.pf-theme-dark) .pf-u-background-color-default {
|
316
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
317
|
+
}
|
318
|
+
:where(.pf-theme-dark) .pf-u-background-color-success {
|
319
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
320
|
+
}
|
321
|
+
:where(.pf-theme-dark) .pf-u-background-color-info {
|
322
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
323
|
+
}
|
324
|
+
:where(.pf-theme-dark) .pf-u-background-color-warning {
|
325
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
326
|
+
}
|
327
|
+
:where(.pf-theme-dark) .pf-u-background-color-danger {
|
328
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
329
|
+
}
|
330
|
+
@media screen and (min-width: 576px) {
|
331
|
+
:where(.pf-theme-dark) .pf-u-background-color-default-on-sm {
|
332
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
333
|
+
}
|
334
|
+
:where(.pf-theme-dark) .pf-u-background-color-success-on-sm {
|
335
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
336
|
+
}
|
337
|
+
:where(.pf-theme-dark) .pf-u-background-color-info-on-sm {
|
338
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
339
|
+
}
|
340
|
+
:where(.pf-theme-dark) .pf-u-background-color-warning-on-sm {
|
341
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
342
|
+
}
|
343
|
+
:where(.pf-theme-dark) .pf-u-background-color-danger-on-sm {
|
344
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
345
|
+
}
|
346
|
+
}
|
347
|
+
@media screen and (min-width: 768px) {
|
348
|
+
:where(.pf-theme-dark) .pf-u-background-color-default-on-md {
|
349
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
350
|
+
}
|
351
|
+
:where(.pf-theme-dark) .pf-u-background-color-success-on-md {
|
352
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
353
|
+
}
|
354
|
+
:where(.pf-theme-dark) .pf-u-background-color-info-on-md {
|
355
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
356
|
+
}
|
357
|
+
:where(.pf-theme-dark) .pf-u-background-color-warning-on-md {
|
358
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
359
|
+
}
|
360
|
+
:where(.pf-theme-dark) .pf-u-background-color-danger-on-md {
|
361
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
362
|
+
}
|
363
|
+
}
|
364
|
+
@media screen and (min-width: 992px) {
|
365
|
+
:where(.pf-theme-dark) .pf-u-background-color-default-on-lg {
|
366
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
367
|
+
}
|
368
|
+
:where(.pf-theme-dark) .pf-u-background-color-success-on-lg {
|
369
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
370
|
+
}
|
371
|
+
:where(.pf-theme-dark) .pf-u-background-color-info-on-lg {
|
372
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
373
|
+
}
|
374
|
+
:where(.pf-theme-dark) .pf-u-background-color-warning-on-lg {
|
375
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
376
|
+
}
|
377
|
+
:where(.pf-theme-dark) .pf-u-background-color-danger-on-lg {
|
378
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
379
|
+
}
|
380
|
+
}
|
381
|
+
@media screen and (min-width: 1200px) {
|
382
|
+
:where(.pf-theme-dark) .pf-u-background-color-default-on-xl {
|
383
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
384
|
+
}
|
385
|
+
:where(.pf-theme-dark) .pf-u-background-color-success-on-xl {
|
386
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
387
|
+
}
|
388
|
+
:where(.pf-theme-dark) .pf-u-background-color-info-on-xl {
|
389
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
390
|
+
}
|
391
|
+
:where(.pf-theme-dark) .pf-u-background-color-warning-on-xl {
|
392
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
393
|
+
}
|
394
|
+
:where(.pf-theme-dark) .pf-u-background-color-danger-on-xl {
|
395
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
396
|
+
}
|
397
|
+
}
|
398
|
+
@media screen and (min-width: 1450px) {
|
399
|
+
:where(.pf-theme-dark) .pf-u-background-color-default-on-2xl {
|
400
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
401
|
+
}
|
402
|
+
:where(.pf-theme-dark) .pf-u-background-color-success-on-2xl {
|
403
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
404
|
+
}
|
405
|
+
:where(.pf-theme-dark) .pf-u-background-color-info-on-2xl {
|
406
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
407
|
+
}
|
408
|
+
:where(.pf-theme-dark) .pf-u-background-color-warning-on-2xl {
|
409
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
410
|
+
}
|
411
|
+
:where(.pf-theme-dark) .pf-u-background-color-danger-on-2xl {
|
412
|
+
background-color: var(--pf-global--BackgroundColor--100) !important;
|
413
|
+
}
|
314
414
|
}
|
@@ -95,6 +95,7 @@ declare const _default: {
|
|
95
95
|
"backgroundColor_200OnMd": "pf-u-background-color-200-on-md",
|
96
96
|
"backgroundColor_200OnSm": "pf-u-background-color-200-on-sm",
|
97
97
|
"backgroundColor_200OnXl": "pf-u-background-color-200-on-xl",
|
98
|
-
"backgroundColor_200On_2xl": "pf-u-background-color-200-on-2xl"
|
98
|
+
"backgroundColor_200On_2xl": "pf-u-background-color-200-on-2xl",
|
99
|
+
"themeDark": "pf-theme-dark"
|
99
100
|
};
|
100
101
|
export default _default;
|
@@ -97,5 +97,6 @@ exports.default = {
|
|
97
97
|
"backgroundColor_200OnMd": "pf-u-background-color-200-on-md",
|
98
98
|
"backgroundColor_200OnSm": "pf-u-background-color-200-on-sm",
|
99
99
|
"backgroundColor_200OnXl": "pf-u-background-color-200-on-xl",
|
100
|
-
"backgroundColor_200On_2xl": "pf-u-background-color-200-on-2xl"
|
100
|
+
"backgroundColor_200On_2xl": "pf-u-background-color-200-on-2xl",
|
101
|
+
"themeDark": "pf-theme-dark"
|
101
102
|
};
|
@@ -95,5 +95,6 @@ export default {
|
|
95
95
|
"backgroundColor_200OnMd": "pf-u-background-color-200-on-md",
|
96
96
|
"backgroundColor_200OnSm": "pf-u-background-color-200-on-sm",
|
97
97
|
"backgroundColor_200OnXl": "pf-u-background-color-200-on-xl",
|
98
|
-
"backgroundColor_200On_2xl": "pf-u-background-color-200-on-2xl"
|
98
|
+
"backgroundColor_200On_2xl": "pf-u-background-color-200-on-2xl",
|
99
|
+
"themeDark": "pf-theme-dark"
|
99
100
|
};
|
File without changes
|
@@ -942,4 +942,177 @@
|
|
942
942
|
overflow: hidden !important;
|
943
943
|
text-overflow: ellipsis !important;
|
944
944
|
white-space: nowrap !important;
|
945
|
+
}
|
946
|
+
|
947
|
+
:where(.pf-theme-dark) .pf-u-color-300 {
|
948
|
+
color: var(--pf-global--Color--100) !important;
|
949
|
+
}
|
950
|
+
:where(.pf-theme-dark) .pf-u-color-light-100 {
|
951
|
+
color: var(--pf-global--Color-100) !important;
|
952
|
+
}
|
953
|
+
:where(.pf-theme-dark) .pf-u-color-light-200 {
|
954
|
+
color: var(--pf-global--Color-200) !important;
|
955
|
+
}
|
956
|
+
:where(.pf-theme-dark) .pf-u-link-color-visited {
|
957
|
+
color: var(--pf-global--palette--purple-200) !important;
|
958
|
+
}
|
959
|
+
:where(.pf-theme-dark) .pf-u-default-color-300 {
|
960
|
+
color: var(--pf-global--default-color--100) !important;
|
961
|
+
}
|
962
|
+
:where(.pf-theme-dark) .pf-u-success-color-200 {
|
963
|
+
color: var(--pf-global--success-color--100) !important;
|
964
|
+
}
|
965
|
+
:where(.pf-theme-dark) .pf-u-info-color-200 {
|
966
|
+
color: var(--pf-global--info-color--100) !important;
|
967
|
+
}
|
968
|
+
:where(.pf-theme-dark) .pf-u-danger-color-300 {
|
969
|
+
color: var(--pf-global--danger-color--100) !important;
|
970
|
+
}
|
971
|
+
:where(.pf-theme-dark) .pf-u-icon-color-dark {
|
972
|
+
color: var(--pf-global--icon--Color--dark) !important;
|
973
|
+
}
|
974
|
+
@media screen and (min-width: 576px) {
|
975
|
+
:where(.pf-theme-dark) .pf-u-color-300-on-sm {
|
976
|
+
color: var(--pf-global--Color--100) !important;
|
977
|
+
}
|
978
|
+
:where(.pf-theme-dark) .pf-u-color-light-100-on-sm {
|
979
|
+
color: var(--pf-global--Color-100) !important;
|
980
|
+
}
|
981
|
+
:where(.pf-theme-dark) .pf-u-color-light-200-on-sm {
|
982
|
+
color: var(--pf-global--Color-200) !important;
|
983
|
+
}
|
984
|
+
:where(.pf-theme-dark) .pf-u-link-color-visited-on-sm {
|
985
|
+
color: var(--pf-global--palette--purple-200) !important;
|
986
|
+
}
|
987
|
+
:where(.pf-theme-dark) .pf-u-default-color-300-on-sm {
|
988
|
+
color: var(--pf-global--default-color--100) !important;
|
989
|
+
}
|
990
|
+
:where(.pf-theme-dark) .pf-u-success-color-200-on-sm {
|
991
|
+
color: var(--pf-global--success-color--100) !important;
|
992
|
+
}
|
993
|
+
:where(.pf-theme-dark) .pf-u-info-color-200-on-sm {
|
994
|
+
color: var(--pf-global--info-color--100) !important;
|
995
|
+
}
|
996
|
+
:where(.pf-theme-dark) .pf-u-danger-color-300-on-sm {
|
997
|
+
color: var(--pf-global--danger-color--100) !important;
|
998
|
+
}
|
999
|
+
:where(.pf-theme-dark) .pf-u-icon-color-dark-on-sm {
|
1000
|
+
color: var(--pf-global--icon--Color--dark) !important;
|
1001
|
+
}
|
1002
|
+
}
|
1003
|
+
@media screen and (min-width: 768px) {
|
1004
|
+
:where(.pf-theme-dark) .pf-u-color-300-on-md {
|
1005
|
+
color: var(--pf-global--Color--100) !important;
|
1006
|
+
}
|
1007
|
+
:where(.pf-theme-dark) .pf-u-color-light-100-on-md {
|
1008
|
+
color: var(--pf-global--Color-100) !important;
|
1009
|
+
}
|
1010
|
+
:where(.pf-theme-dark) .pf-u-color-light-200-on-md {
|
1011
|
+
color: var(--pf-global--Color-200) !important;
|
1012
|
+
}
|
1013
|
+
:where(.pf-theme-dark) .pf-u-link-color-visited-on-md {
|
1014
|
+
color: var(--pf-global--palette--purple-200) !important;
|
1015
|
+
}
|
1016
|
+
:where(.pf-theme-dark) .pf-u-default-color-300-on-md {
|
1017
|
+
color: var(--pf-global--default-color--100) !important;
|
1018
|
+
}
|
1019
|
+
:where(.pf-theme-dark) .pf-u-success-color-200-on-md {
|
1020
|
+
color: var(--pf-global--success-color--100) !important;
|
1021
|
+
}
|
1022
|
+
:where(.pf-theme-dark) .pf-u-info-color-200-on-md {
|
1023
|
+
color: var(--pf-global--info-color--100) !important;
|
1024
|
+
}
|
1025
|
+
:where(.pf-theme-dark) .pf-u-danger-color-300-on-md {
|
1026
|
+
color: var(--pf-global--danger-color--100) !important;
|
1027
|
+
}
|
1028
|
+
:where(.pf-theme-dark) .pf-u-icon-color-dark-on-md {
|
1029
|
+
color: var(--pf-global--icon--Color--dark) !important;
|
1030
|
+
}
|
1031
|
+
}
|
1032
|
+
@media screen and (min-width: 992px) {
|
1033
|
+
:where(.pf-theme-dark) .pf-u-color-300-on-lg {
|
1034
|
+
color: var(--pf-global--Color--100) !important;
|
1035
|
+
}
|
1036
|
+
:where(.pf-theme-dark) .pf-u-color-light-100-on-lg {
|
1037
|
+
color: var(--pf-global--Color-100) !important;
|
1038
|
+
}
|
1039
|
+
:where(.pf-theme-dark) .pf-u-color-light-200-on-lg {
|
1040
|
+
color: var(--pf-global--Color-200) !important;
|
1041
|
+
}
|
1042
|
+
:where(.pf-theme-dark) .pf-u-link-color-visited-on-lg {
|
1043
|
+
color: var(--pf-global--palette--purple-200) !important;
|
1044
|
+
}
|
1045
|
+
:where(.pf-theme-dark) .pf-u-default-color-300-on-lg {
|
1046
|
+
color: var(--pf-global--default-color--100) !important;
|
1047
|
+
}
|
1048
|
+
:where(.pf-theme-dark) .pf-u-success-color-200-on-lg {
|
1049
|
+
color: var(--pf-global--success-color--100) !important;
|
1050
|
+
}
|
1051
|
+
:where(.pf-theme-dark) .pf-u-info-color-200-on-lg {
|
1052
|
+
color: var(--pf-global--info-color--100) !important;
|
1053
|
+
}
|
1054
|
+
:where(.pf-theme-dark) .pf-u-danger-color-300-on-lg {
|
1055
|
+
color: var(--pf-global--danger-color--100) !important;
|
1056
|
+
}
|
1057
|
+
:where(.pf-theme-dark) .pf-u-icon-color-dark-on-lg {
|
1058
|
+
color: var(--pf-global--icon--Color--dark) !important;
|
1059
|
+
}
|
1060
|
+
}
|
1061
|
+
@media screen and (min-width: 1200px) {
|
1062
|
+
:where(.pf-theme-dark) .pf-u-color-300-on-xl {
|
1063
|
+
color: var(--pf-global--Color--100) !important;
|
1064
|
+
}
|
1065
|
+
:where(.pf-theme-dark) .pf-u-color-light-100-on-xl {
|
1066
|
+
color: var(--pf-global--Color-100) !important;
|
1067
|
+
}
|
1068
|
+
:where(.pf-theme-dark) .pf-u-color-light-200-on-xl {
|
1069
|
+
color: var(--pf-global--Color-200) !important;
|
1070
|
+
}
|
1071
|
+
:where(.pf-theme-dark) .pf-u-link-color-visited-on-xl {
|
1072
|
+
color: var(--pf-global--palette--purple-200) !important;
|
1073
|
+
}
|
1074
|
+
:where(.pf-theme-dark) .pf-u-default-color-300-on-xl {
|
1075
|
+
color: var(--pf-global--default-color--100) !important;
|
1076
|
+
}
|
1077
|
+
:where(.pf-theme-dark) .pf-u-success-color-200-on-xl {
|
1078
|
+
color: var(--pf-global--success-color--100) !important;
|
1079
|
+
}
|
1080
|
+
:where(.pf-theme-dark) .pf-u-info-color-200-on-xl {
|
1081
|
+
color: var(--pf-global--info-color--100) !important;
|
1082
|
+
}
|
1083
|
+
:where(.pf-theme-dark) .pf-u-danger-color-300-on-xl {
|
1084
|
+
color: var(--pf-global--danger-color--100) !important;
|
1085
|
+
}
|
1086
|
+
:where(.pf-theme-dark) .pf-u-icon-color-dark-on-xl {
|
1087
|
+
color: var(--pf-global--icon--Color--dark) !important;
|
1088
|
+
}
|
1089
|
+
}
|
1090
|
+
@media screen and (min-width: 1450px) {
|
1091
|
+
:where(.pf-theme-dark) .pf-u-color-300-on-2xl {
|
1092
|
+
color: var(--pf-global--Color--100) !important;
|
1093
|
+
}
|
1094
|
+
:where(.pf-theme-dark) .pf-u-color-light-100-on-2xl {
|
1095
|
+
color: var(--pf-global--Color-100) !important;
|
1096
|
+
}
|
1097
|
+
:where(.pf-theme-dark) .pf-u-color-light-200-on-2xl {
|
1098
|
+
color: var(--pf-global--Color-200) !important;
|
1099
|
+
}
|
1100
|
+
:where(.pf-theme-dark) .pf-u-link-color-visited-on-2xl {
|
1101
|
+
color: var(--pf-global--palette--purple-200) !important;
|
1102
|
+
}
|
1103
|
+
:where(.pf-theme-dark) .pf-u-default-color-300-on-2xl {
|
1104
|
+
color: var(--pf-global--default-color--100) !important;
|
1105
|
+
}
|
1106
|
+
:where(.pf-theme-dark) .pf-u-success-color-200-on-2xl {
|
1107
|
+
color: var(--pf-global--success-color--100) !important;
|
1108
|
+
}
|
1109
|
+
:where(.pf-theme-dark) .pf-u-info-color-200-on-2xl {
|
1110
|
+
color: var(--pf-global--info-color--100) !important;
|
1111
|
+
}
|
1112
|
+
:where(.pf-theme-dark) .pf-u-danger-color-300-on-2xl {
|
1113
|
+
color: var(--pf-global--danger-color--100) !important;
|
1114
|
+
}
|
1115
|
+
:where(.pf-theme-dark) .pf-u-icon-color-dark-on-2xl {
|
1116
|
+
color: var(--pf-global--icon--Color--dark) !important;
|
1117
|
+
}
|
945
1118
|
}
|
@@ -271,6 +271,7 @@ declare const _default: {
|
|
271
271
|
"textWrapOnSm": "pf-u-text-wrap-on-sm",
|
272
272
|
"textWrapOnXl": "pf-u-text-wrap-on-xl",
|
273
273
|
"textWrapOn_2xl": "pf-u-text-wrap-on-2xl",
|
274
|
+
"themeDark": "pf-theme-dark",
|
274
275
|
"warningColor_100": "pf-u-warning-color-100",
|
275
276
|
"warningColor_100OnLg": "pf-u-warning-color-100-on-lg",
|
276
277
|
"warningColor_100OnMd": "pf-u-warning-color-100-on-md",
|
@@ -273,6 +273,7 @@ exports.default = {
|
|
273
273
|
"textWrapOnSm": "pf-u-text-wrap-on-sm",
|
274
274
|
"textWrapOnXl": "pf-u-text-wrap-on-xl",
|
275
275
|
"textWrapOn_2xl": "pf-u-text-wrap-on-2xl",
|
276
|
+
"themeDark": "pf-theme-dark",
|
276
277
|
"warningColor_100": "pf-u-warning-color-100",
|
277
278
|
"warningColor_100OnLg": "pf-u-warning-color-100-on-lg",
|
278
279
|
"warningColor_100OnMd": "pf-u-warning-color-100-on-md",
|
@@ -271,6 +271,7 @@ export default {
|
|
271
271
|
"textWrapOnSm": "pf-u-text-wrap-on-sm",
|
272
272
|
"textWrapOnXl": "pf-u-text-wrap-on-xl",
|
273
273
|
"textWrapOn_2xl": "pf-u-text-wrap-on-2xl",
|
274
|
+
"themeDark": "pf-theme-dark",
|
274
275
|
"warningColor_100": "pf-u-warning-color-100",
|
275
276
|
"warningColor_100OnLg": "pf-u-warning-color-100-on-lg",
|
276
277
|
"warningColor_100OnMd": "pf-u-warning-color-100-on-md",
|
File without changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "4.74.
|
3
|
+
"version": "4.74.14",
|
4
4
|
"main": "dist/js/index.js",
|
5
5
|
"module": "dist/esm/index.js",
|
6
6
|
"types": "dist/esm/index.d.ts",
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"clean": "rimraf dist css"
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
22
|
-
"@patternfly/patternfly": "4.203.
|
22
|
+
"@patternfly/patternfly": "4.203.2",
|
23
23
|
"camel-case": "^3.0.0",
|
24
24
|
"css": "^2.2.3",
|
25
25
|
"fs-extra": "^6.0.1",
|
@@ -29,5 +29,5 @@
|
|
29
29
|
"typescript": "^4.7.4"
|
30
30
|
},
|
31
31
|
"license": "MIT",
|
32
|
-
"gitHead": "
|
32
|
+
"gitHead": "71e3dd5504c0309222ada3cf612717ac220c29fd"
|
33
33
|
}
|