unicon 3.1.0 → 3.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/README.md +1 -1
- data/lib/unicon/icons/actions/editing.rb +1 -0
- data/lib/unicon/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e3bf03043df799333a2f3d7e255f0af0cf4344ccb508f7b5dd928cd61f7c9c87
|
|
4
|
+
data.tar.gz: 80bfdd13500fdb60f40a85140358de20c891ebac6a0220b7073dfc3cc3dd3c23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70ac223950c1c35c846e01dbb33a179f31e4b31765406fe02eda9671846071cb55cf6631d9e3bf55e6fe92d4436df896cead4d5be2807039ecebbe0ef8455b68
|
|
7
|
+
data.tar.gz: c57e473c24dd5c954c69d43432f51144ecc8aba3cc669714e042748d504006715e55a7a487a40305216a7c1a17500c80810afa0166fc71d17b3e3f18a186942a
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
Every entry says whether it is a fix, a feature or a breaking change, since that is
|
|
4
4
|
what decides both whether a reader can take it and what the next version number is.
|
|
5
5
|
|
|
6
|
+
## [Unreleased]
|
|
7
|
+
|
|
8
|
+
## [3.2.0] - 2026-08-19
|
|
9
|
+
|
|
10
|
+
- **Feature.** `:drag` is the grip a row is taken hold of by, which every list that a
|
|
11
|
+
reader puts in order by hand needs and none of the three sets spells alike:
|
|
12
|
+
Bootstrap draws `grip-vertical`, SF Symbols reaches for `line.3.horizontal` — the
|
|
13
|
+
bars iOS has used for a reorder grabber since the first table view — and Material
|
|
14
|
+
names the dots `drag_indicator`. It sits beside `:sort` under editing, since both
|
|
15
|
+
are ways of putting rows in an order and only the hand differs. 308 names now
|
|
16
|
+
resolve.
|
|
17
|
+
|
|
6
18
|
## [3.1.0] - 2026-08-19
|
|
7
19
|
|
|
8
20
|
- **Feature.** `:bookmarked` is the state beside `:bookmark`'s action, so a list can
|
data/README.md
CHANGED
|
@@ -111,7 +111,7 @@ The cells hold the icon and not its name, so the table stays readable at 129 row
|
|
|
111
111
|
name each system uses is on the icon**: hover it, or reach it with a screen reader, and
|
|
112
112
|
`Unicon[:search][:ios]` reads back as `magnifyingglass`.
|
|
113
113
|
|
|
114
|
-
The
|
|
114
|
+
The 43 action icons are not in the table. They are fetchable — `Unicon[:edit]` answers
|
|
115
115
|
— but they name what an app does rather than what it has, and this table is `Unicon.icons`
|
|
116
116
|
drawn out. `Unicon.actions` names them all.
|
|
117
117
|
|
|
@@ -12,6 +12,7 @@ module Unicon
|
|
|
12
12
|
undo: { bootstrap: 'arrow-counterclockwise', ios: 'arrow.uturn.backward', android: 'undo' },
|
|
13
13
|
refresh: { bootstrap: 'arrow-clockwise', ios: 'arrow.clockwise', android: 'refresh' },
|
|
14
14
|
sort: { bootstrap: 'sort-down', ios: 'arrow.up.arrow.down', android: 'sort' },
|
|
15
|
+
drag: { bootstrap: 'grip-vertical', ios: 'line.3.horizontal', android: 'drag_indicator' },
|
|
15
16
|
zoom_in: { bootstrap: 'zoom-in', ios: 'plus.magnifyingglass', android: 'zoom_in' },
|
|
16
17
|
zoom_out: { bootstrap: 'zoom-out', ios: 'minus.magnifyingglass', android: 'zoom_out' },
|
|
17
18
|
add_member: { bootstrap: 'person-plus', ios: 'person.badge.plus', android: 'person_add' },
|
data/lib/unicon/version.rb
CHANGED