@trackunit/css-tailwind 1.7.66-alpha-4bc6bdb6833.0 → 1.7.73

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": "@trackunit/css-tailwind",
3
- "version": "1.7.66-alpha-4bc6bdb6833.0",
3
+ "version": "1.7.73",
4
4
  "main": "./index.cjs.js",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -9,10 +9,10 @@
9
9
  },
10
10
  "dependencies": {
11
11
  "tailwindcss": "3.4.3",
12
- "@trackunit/css-component-tokens": "1.7.63-alpha-4bc6bdb6833.0",
13
- "@trackunit/css-tailwind-custom-properties-plugin": "1.7.63-alpha-4bc6bdb6833.0",
14
- "@trackunit/ui-design-tokens": "1.7.63-alpha-4bc6bdb6833.0",
15
- "@trackunit/css-core": "1.7.63-alpha-4bc6bdb6833.0",
12
+ "@trackunit/css-component-tokens": "1.7.69",
13
+ "@trackunit/css-tailwind-custom-properties-plugin": "1.7.69",
14
+ "@trackunit/ui-design-tokens": "1.7.69",
15
+ "@trackunit/css-core": "1.7.70",
16
16
  "@tailwindcss/typography": "^0.5.10"
17
17
  },
18
18
  "type": "commonjs",
@@ -684,24 +684,29 @@ tr > th[data-pinned=""] + th[data-pinned="right"] {
684
684
  tr > td[data-pinned=""] + td[data-pinned="right"] {
685
685
  border-left-width: 2px;
686
686
  }
687
- tr:focus-visible,
688
- tr:focus-within {
687
+ .row-focus:has(:focus-visible):not(:has([data-selection-cell] :focus-visible)) {
689
688
  box-shadow: inset 0 0 0 2px rgb(var(--color-primary-600));
690
689
  outline: none !important;
691
690
  }
692
- tr:focus-visible > :is(th, td)[data-pinned="left"],
693
- tr:focus-within > :is(th, td)[data-pinned="left"] {
694
- outline: none !important;
691
+ .row-focus:has(:focus-visible) > td[data-pinned="left"] {
695
692
  box-shadow:
696
693
  inset 2px 0 0 rgb(var(--color-primary-600)),
697
694
  inset 0 2px 0 rgb(var(--color-primary-600)),
698
695
  inset 0 -2px 0 rgb(var(--color-primary-600));
699
696
  }
700
- tr:focus-visible > :is(th, td)[data-pinned="right"],
701
- tr:focus-within > :is(th, td)[data-pinned="right"] {
702
- outline: none !important;
697
+ .row-focus:has(:focus-visible) > td[data-pinned="left"] + td[data-pinned="left"] {
698
+ box-shadow:
699
+ inset 0 2px 0 rgb(var(--color-primary-600)),
700
+ inset 0 -2px 0 rgb(var(--color-primary-600));
701
+ }
702
+ .row-focus:has(:focus-visible) > td[data-pinned="right"] {
703
703
  box-shadow:
704
704
  inset -2px 0 0 rgb(var(--color-primary-600)),
705
705
  inset 0 2px 0 rgb(var(--color-primary-600)),
706
706
  inset 0 -2px 0 rgb(var(--color-primary-600));
707
707
  }
708
+ .row-focus:has(:focus-visible) > td[data-pinned="right"]:has(+ td[data-pinned="right"]) {
709
+ box-shadow:
710
+ inset 0 2px 0 rgb(var(--color-primary-600)),
711
+ inset 0 -2px 0 rgb(var(--color-primary-600));
712
+ }