@tidbcloud/uikit 2.4.5 → 2.4.6
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 +6 -0
- package/dist/theme/theme.cjs +10 -0
- package/dist/theme/theme.mjs +10 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/theme/theme.cjs
CHANGED
|
@@ -1245,6 +1245,16 @@ const theme = createTheme.createTheme({
|
|
|
1245
1245
|
}
|
|
1246
1246
|
return {};
|
|
1247
1247
|
}
|
|
1248
|
+
},
|
|
1249
|
+
Code: {
|
|
1250
|
+
styles: (theme2) => {
|
|
1251
|
+
return {
|
|
1252
|
+
root: {
|
|
1253
|
+
backgroundColor: themeColor(theme2, "carbon", 3),
|
|
1254
|
+
color: themeColor(theme2, "carbon", 8)
|
|
1255
|
+
}
|
|
1256
|
+
};
|
|
1257
|
+
}
|
|
1248
1258
|
}
|
|
1249
1259
|
}
|
|
1250
1260
|
});
|
package/dist/theme/theme.mjs
CHANGED
|
@@ -1243,6 +1243,16 @@ const theme = createTheme({
|
|
|
1243
1243
|
}
|
|
1244
1244
|
return {};
|
|
1245
1245
|
}
|
|
1246
|
+
},
|
|
1247
|
+
Code: {
|
|
1248
|
+
styles: (theme2) => {
|
|
1249
|
+
return {
|
|
1250
|
+
root: {
|
|
1251
|
+
backgroundColor: themeColor(theme2, "carbon", 3),
|
|
1252
|
+
color: themeColor(theme2, "carbon", 8)
|
|
1253
|
+
}
|
|
1254
|
+
};
|
|
1255
|
+
}
|
|
1246
1256
|
}
|
|
1247
1257
|
}
|
|
1248
1258
|
});
|