@signal9/era-ui 1.8.2 → 1.8.4

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.
@@ -117,28 +117,30 @@
117
117
  },
118
118
  // edges: a T-thick strip inset T/2 from each end so it meets the corners
119
119
  {
120
+ // Top edge sits ENTIRELY outside (translate -100% → bottom flush at the
121
+ // top edge, extending upward) so it never overlaps the drag bar below.
120
122
  dir: 'n',
121
123
  cursor: 'cursor-ns-resize',
122
124
  place:
123
- 'top:0;left:calc(var(--era-h-md)/2);right:calc(var(--era-h-md)/2);translate:0 -50%;height:var(--era-h-md)'
125
+ 'top:0;left:calc(var(--era-h-md)/2);right:calc(var(--era-h-md)/2);translate:0 -100%;height:calc(var(--era-h-md)/2)'
124
126
  },
125
127
  {
126
128
  dir: 's',
127
129
  cursor: 'cursor-ns-resize',
128
130
  place:
129
- 'bottom:0;left:calc(var(--era-h-md)/2);right:calc(var(--era-h-md)/2);translate:0 50%;height:var(--era-h-md)'
131
+ 'bottom:0;left:calc(var(--era-h-md)/2);right:calc(var(--era-h-md)/2);translate:0 50%;height:calc(var(--era-h-md)/2)'
130
132
  },
131
133
  {
132
134
  dir: 'w',
133
135
  cursor: 'cursor-ew-resize',
134
136
  place:
135
- 'left:0;top:calc(var(--era-h-md)/2);bottom:calc(var(--era-h-md)/2);translate:-50% 0;width:var(--era-h-md)'
137
+ 'left:0;top:calc(var(--era-h-md)/2);bottom:calc(var(--era-h-md)/2);translate:-50% 0;width:calc(var(--era-h-md)/2)'
136
138
  },
137
139
  {
138
140
  dir: 'e',
139
141
  cursor: 'cursor-ew-resize',
140
142
  place:
141
- 'right:0;top:calc(var(--era-h-md)/2);bottom:calc(var(--era-h-md)/2);translate:50% 0;width:var(--era-h-md)'
143
+ 'right:0;top:calc(var(--era-h-md)/2);bottom:calc(var(--era-h-md)/2);translate:50% 0;width:calc(var(--era-h-md)/2)'
142
144
  }
143
145
  ];
144
146
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signal9/era-ui",
3
- "version": "1.8.2",
3
+ "version": "1.8.4",
4
4
  "scripts": {
5
5
  "dev": "vite dev --host",
6
6
  "build": "vite build && npm run prepack",