@paperless/angular 2.9.0 → 2.9.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/paperless.css +17 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/angular",
3
- "version": "2.9.0",
3
+ "version": "2.9.2",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.3.0 || ^14.0.0 || ^15.0.0 || ^17.0.0",
6
6
  "@angular/common": "^13.3.0 || ^14.0.0 || ^15.0.0",
package/paperless.css CHANGED
@@ -930,14 +930,22 @@
930
930
  }
931
931
  }
932
932
 
933
- @media (prefers-color-scheme: dark) {
934
- .dark\:text-hurricane-200 {
935
- --tw-text-opacity: 1 !important;
936
- color: rgb(163 165 169 / var(--tw-text-opacity, 1)) !important
937
- }
933
+ .dark\:text-hurricane-200:where(:host([data-theme=dark]),:host([data-theme=dark]) *) {
934
+ --tw-text-opacity: 1 !important;
935
+ color: rgb(163 165 169 / var(--tw-text-opacity, 1)) !important
936
+ }
938
937
 
939
- .dark\:text-white {
940
- --tw-text-opacity: 1 !important;
941
- color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important
942
- }
938
+ .dark\:text-white:where(:host([data-theme=dark]),:host([data-theme=dark]) *) {
939
+ --tw-text-opacity: 1 !important;
940
+ color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important
941
+ }
942
+
943
+ .dark\:text-hurricane-200:where([data-theme=dark],[data-theme=dark] *) {
944
+ --tw-text-opacity: 1 !important;
945
+ color: rgb(163 165 169 / var(--tw-text-opacity, 1)) !important
946
+ }
947
+
948
+ .dark\:text-white:where([data-theme=dark],[data-theme=dark] *) {
949
+ --tw-text-opacity: 1 !important;
950
+ color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important
943
951
  }