@tidbcloud/uikit 2.4.10 → 2.4.11
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 -2
- package/dist/theme/theme.mjs +10 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/theme/theme.cjs
CHANGED
|
@@ -649,8 +649,6 @@ const theme = createTheme.createTheme({
|
|
|
649
649
|
}
|
|
650
650
|
},
|
|
651
651
|
pill: {
|
|
652
|
-
backgroundColor: themeColor(theme2, "carbon", 3),
|
|
653
|
-
color: themeColor(theme2, "carbon", 8),
|
|
654
652
|
borderRadius: theme2.radius.sm
|
|
655
653
|
},
|
|
656
654
|
section: {
|
|
@@ -1255,6 +1253,16 @@ const theme = createTheme.createTheme({
|
|
|
1255
1253
|
}
|
|
1256
1254
|
};
|
|
1257
1255
|
}
|
|
1256
|
+
},
|
|
1257
|
+
Pill: {
|
|
1258
|
+
styles: (theme2) => {
|
|
1259
|
+
return {
|
|
1260
|
+
root: {
|
|
1261
|
+
backgroundColor: themeColor(theme2, "carbon", 3),
|
|
1262
|
+
color: themeColor(theme2, "carbon", 8)
|
|
1263
|
+
}
|
|
1264
|
+
};
|
|
1265
|
+
}
|
|
1258
1266
|
}
|
|
1259
1267
|
}
|
|
1260
1268
|
});
|
package/dist/theme/theme.mjs
CHANGED
|
@@ -647,8 +647,6 @@ const theme = createTheme({
|
|
|
647
647
|
}
|
|
648
648
|
},
|
|
649
649
|
pill: {
|
|
650
|
-
backgroundColor: themeColor(theme2, "carbon", 3),
|
|
651
|
-
color: themeColor(theme2, "carbon", 8),
|
|
652
650
|
borderRadius: theme2.radius.sm
|
|
653
651
|
},
|
|
654
652
|
section: {
|
|
@@ -1253,6 +1251,16 @@ const theme = createTheme({
|
|
|
1253
1251
|
}
|
|
1254
1252
|
};
|
|
1255
1253
|
}
|
|
1254
|
+
},
|
|
1255
|
+
Pill: {
|
|
1256
|
+
styles: (theme2) => {
|
|
1257
|
+
return {
|
|
1258
|
+
root: {
|
|
1259
|
+
backgroundColor: themeColor(theme2, "carbon", 3),
|
|
1260
|
+
color: themeColor(theme2, "carbon", 8)
|
|
1261
|
+
}
|
|
1262
|
+
};
|
|
1263
|
+
}
|
|
1256
1264
|
}
|
|
1257
1265
|
}
|
|
1258
1266
|
});
|