@ansiversa/components 0.0.91 → 0.0.93

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": "@ansiversa/components",
3
- "version": "0.0.91",
3
+ "version": "0.0.93",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1139,22 +1139,27 @@
1139
1139
  }
1140
1140
 
1141
1141
  .av-table__sort::after {
1142
- content: "";
1142
+ content: "▲\A▼";
1143
1143
  display: inline-block;
1144
- width: 0;
1145
- height: 0;
1146
- border-left: 4px solid transparent;
1147
- border-right: 4px solid transparent;
1148
- border-top: 6px solid var(--ans-muted);
1149
- transform: translateY(1px);
1144
+ white-space: pre;
1145
+ line-height: 0.7;
1146
+ font-size: 0.6rem;
1147
+ color: var(--ans-muted);
1150
1148
  }
1151
1149
 
1152
1150
  .av-table__sort--active::after {
1153
- border-top-color: var(--ans-text);
1151
+ color: transparent;
1152
+ background: linear-gradient(to bottom, var(--ans-text) 0 50%, var(--ans-muted) 50% 100%);
1153
+ -webkit-background-clip: text;
1154
+ background-clip: text;
1154
1155
  }
1155
1156
 
1156
1157
  .av-table__sort--asc::after {
1157
- transform: rotate(180deg);
1158
+ background: linear-gradient(to bottom, var(--ans-text) 0 50%, var(--ans-muted) 50% 100%);
1159
+ }
1160
+
1161
+ .av-table__sort--desc::after {
1162
+ background: linear-gradient(to bottom, var(--ans-muted) 0 50%, var(--ans-text) 50% 100%);
1158
1163
  }
1159
1164
 
1160
1165
  .av-table--sticky thead th {