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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c9635070a63b840e20b7e51755198697296718e535e14edea34b74cb2d6bc8e
4
- data.tar.gz: f35612aac948fbdb438db33c70e188896ff1800617bd678359d6c2c7cc98b502
3
+ metadata.gz: e3bf03043df799333a2f3d7e255f0af0cf4344ccb508f7b5dd928cd61f7c9c87
4
+ data.tar.gz: 80bfdd13500fdb60f40a85140358de20c891ebac6a0220b7073dfc3cc3dd3c23
5
5
  SHA512:
6
- metadata.gz: 3f87101bc6811b27daec39c94b22e03874d8d30f738fbc6afbaf788cf58cf480e2aa053919baa228f713177bbcc161f0bceebb73060dad7a5595c1168c098f8b
7
- data.tar.gz: 11980bc5228bb31e91ee1cc1ca1051aaef7eea0dd1e45f6cc0446cae2eecf83838e502a37a8abdae48e0cf2c1e13009733d4a7a99a4547e7a74ac08f4189587a
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 42 action icons are not in the table. They are fetchable — `Unicon[:edit]` answers
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' },
@@ -1,4 +1,4 @@
1
1
  module Unicon
2
2
  # Version of the gem, read by the gemspec and by hosts checking compatibility.
3
- VERSION = '3.1.0'
3
+ VERSION = '3.2.0'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicon
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - claudiob