@papernote/ui 1.10.23 → 1.10.24
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/package.json +1 -1
- package/tailwind.config.js +9 -0
package/package.json
CHANGED
package/tailwind.config.js
CHANGED
|
@@ -4,6 +4,15 @@ export default {
|
|
|
4
4
|
"./index.html",
|
|
5
5
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
6
6
|
],
|
|
7
|
+
// Safelist dynamic classes used in DataGrid column grouping
|
|
8
|
+
// These are applied programmatically and won't be detected by content scanning
|
|
9
|
+
safelist: [
|
|
10
|
+
// Column group color banding (used in DataGrid.tsx)
|
|
11
|
+
'bg-sky-100', 'bg-sky-50', 'bg-sky-100/50',
|
|
12
|
+
'bg-amber-100', 'bg-amber-50', 'bg-amber-100/50',
|
|
13
|
+
'bg-emerald-100', 'bg-emerald-50', 'bg-emerald-100/50',
|
|
14
|
+
'bg-pink-100', 'bg-pink-50', 'bg-pink-100/50',
|
|
15
|
+
],
|
|
7
16
|
theme: {
|
|
8
17
|
extend: {
|
|
9
18
|
colors: {
|