@posiwise/core-styles 1.0.19 → 1.0.21

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posiwise/core-styles",
3
- "version": "1.0.19",
3
+ "version": "1.0.21",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -37,10 +37,10 @@
37
37
  --p-chip-background: var(--first);
38
38
  --p-chip-color: #ffffff;
39
39
 
40
- // PrimeNG Autocomplete dropdown button CSS variables override
41
- --p-autocomplete-dropdown-background: var(--first);
42
- --p-autocomplete-dropdown-color: #ffffff;
43
- --p-autocomplete-dropdown-border-color: var(--first);
40
+ // PrimeNG Autocomplete dropdown trigger flattened 2026-05-22 to a plain p-select-style chevron (was solid var(--first) input-group button)
41
+ --p-autocomplete-dropdown-background: transparent;
42
+ --p-autocomplete-dropdown-color: var(--p-form-field-icon-color, #6b7280);
43
+ --p-autocomplete-dropdown-border-color: transparent;
44
44
 
45
45
  // PrimeNG Autocomplete input border CSS variables override
46
46
  --p-autocomplete-focus-border-color: var(--first);
@@ -492,6 +492,23 @@
492
492
  border-width: 0 !important; // collapse the residual 2px from transparent borders
493
493
  }
494
494
 
495
+ // Non-conformant tables: some Action headers use a bare <th> with no
496
+ // `actions-list-*` class, so the rules above leave the "ACTIONS" header
497
+ // visible while the icons still float (the hybrid state). The Action
498
+ // column is always last, so collapse the last header cell of any table
499
+ // that actually has an Action body cell. (Added 2026-05-22.)
500
+ table:has(td[data-head='Action']) thead tr th:last-child {
501
+ width: 0 !important;
502
+ min-width: 0 !important;
503
+ max-width: 0 !important;
504
+ padding: 0 !important;
505
+ font-size: 0 !important;
506
+ color: transparent !important;
507
+ border-color: transparent !important;
508
+ border-width: 0 !important;
509
+ overflow: hidden !important;
510
+ }
511
+
495
512
  td[data-head='Action'] {
496
513
  position: relative;
497
514
  overflow: visible !important;