@trebired/frontend 11.2.0 → 11.3.0
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/CHANGELOG.md +6 -0
- package/dist/actions/styles/index.scss +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to `@trebired/frontend` will be documented here.
|
|
|
4
4
|
|
|
5
5
|
This project follows semantic versioning once published.
|
|
6
6
|
|
|
7
|
+
## 11.3.0
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Every action trigger now shows a pointer cursor. `[data-<prefix>-action-trigger]`, `[data-<prefix>-href]`, and `[data-<prefix>-external-href]` get `cursor: pointer` from the actions system, so any element wired as a trigger looks clickable without the application restating it. Descendants inherit the cursor, which matters because the base reset gives `p` and headings `cursor: default` and they would otherwise show an arrow inside a clickable row. A trigger marked `aria-disabled="true"` gets `cursor: not-allowed`.
|
|
12
|
+
|
|
7
13
|
## 11.2.0
|
|
8
14
|
|
|
9
15
|
### Added
|
|
@@ -163,3 +163,21 @@
|
|
|
163
163
|
transform: rotate(calc(var(--r) + 180deg));
|
|
164
164
|
}
|
|
165
165
|
}
|
|
166
|
+
|
|
167
|
+
#{ns.data("action-trigger")},
|
|
168
|
+
#{ns.data("href")},
|
|
169
|
+
#{ns.data("external-href")} {
|
|
170
|
+
cursor: pointer;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
#{ns.data("action-trigger")} *,
|
|
174
|
+
#{ns.data("href")} *,
|
|
175
|
+
#{ns.data("external-href")} * {
|
|
176
|
+
cursor: inherit;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
#{ns.data("action-trigger")}[aria-disabled="true"],
|
|
180
|
+
#{ns.data("href")}[aria-disabled="true"],
|
|
181
|
+
#{ns.data("external-href")}[aria-disabled="true"] {
|
|
182
|
+
cursor: not-allowed;
|
|
183
|
+
}
|