unicon 3.5.0 → 3.6.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: fb8b36f40ec650ae3560bb79feca63eb46a70b0e73bb759abc3817b1918c046c
4
- data.tar.gz: a862b1dfcc352ee82e95ec3001297baa9dc0cd1183a924098fc7b3d3c5766e90
3
+ metadata.gz: 01c201df88f22a670e0125d797ab3c89e6cdb14a942e7a7b73f2153e169b38eb
4
+ data.tar.gz: '025886db35f71ad6d6c9fb72aac0ea692e9fa9e4f5267044242d9c51dfd6e76d'
5
5
  SHA512:
6
- metadata.gz: '0968342eed5c08d4866108ebe62f8101ce3c14123cbbfda576fe2fe9d516d82f1d66343f5fd2d676965284e38f5a2359ddade018432ae352b95010274049c5b5'
7
- data.tar.gz: '0726980d57310c6d878189bd7fa691ddfcb0463cd5ee0d65b642afc99c83c92819c92382db33ca42f99f200092a331f4fe65f3a111b4a76a785c0f20dbc9366e'
6
+ metadata.gz: 0fcbebd247d3fa89fca984321dad2641da4ad9264057e59058510d2ebf2fd5ec20c4acd9fb9570f98e316e817b8764646025a4d0f026ab9ae271a2b9d940fcb4
7
+ data.tar.gz: cfea65574377857b1902c7531d2e2a00832a480c98cd7429102887e8853b4c9ad656a3bab33be085cd9f0ac5a21b875839584d5ea1750b8580ea4578b77875ab
data/CHANGELOG.md CHANGED
@@ -5,6 +5,15 @@ what decides both whether a reader can take it and what the next version number
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [3.6.0] - 2026-09-08
9
+
10
+ - **Feature.** `:expand` and `:collapse` are the two diagonal arrows, parting and meeting:
11
+ what a control that shows more of a page, or folds it back, wears. Bootstrap calls them
12
+ `arrows-angle-expand` and `arrows-angle-contract`, SF Symbols
13
+ `arrow.up.left.and.arrow.down.right` and `arrow.down.right.and.arrow.up.left`, Material
14
+ `open_in_full` and `close_fullscreen`. Not `:contract`, which already names a signed
15
+ agreement's signature and stays so. 317 names now resolve, 140 of them aliases.
16
+
8
17
  ## [3.5.0] - 2026-08-21
9
18
 
10
19
  - **Feature.** `:inquiry` borrows the wand, beside the `:reading` and `:prediction`
data/README.md CHANGED
@@ -64,8 +64,8 @@ blank. A concept may be given as a string, so `Unicon['contact']` works too.
64
64
 
65
65
  ```ruby
66
66
  Unicon.icons # => [:account, :airplane, :alarm, :archive, :award, :badge, ...] 132
67
- Unicon.names # => [:account, :add, :add_member, :address, :agent, ...] 315
68
- Unicon.actions # => [:add, :add_member, :close, :confirm, ...] 43
67
+ Unicon.names # => [:account, :add, :add_member, :address, :agent, ...] 317
68
+ Unicon.actions # => [:add, :add_member, :close, :confirm, ...] 45
69
69
  ```
70
70
 
71
71
  - `Unicon.icons` is **one name per distinct picture**. No two entries draw the same
@@ -111,7 +111,7 @@ The cells hold the icon and not its name, so the table stays readable at 132 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 43 action icons are not in the table. They are fetchable — `Unicon[:edit]` answers
114
+ The 45 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
 
@@ -15,6 +15,14 @@ module Unicon
15
15
  point_down: { bootstrap: 'arrow-down', ios: 'arrow.down', android: 'arrow_downward' },
16
16
  point_left: { bootstrap: 'arrow-left', ios: 'arrow.left', android: 'arrow_back' },
17
17
  point_right: { bootstrap: 'arrow-right', ios: 'arrow.right', android: 'arrow_forward' },
18
+ expand: {
19
+ bootstrap: 'arrows-angle-expand', ios: 'arrow.up.left.and.arrow.down.right',
20
+ android: 'open_in_full',
21
+ },
22
+ collapse: {
23
+ bootstrap: 'arrows-angle-contract', ios: 'arrow.down.right.and.arrow.up.left',
24
+ android: 'close_fullscreen',
25
+ },
18
26
  open_menu: { bootstrap: 'list', ios: 'line.3.horizontal', android: 'menu' },
19
27
  truncate: { bootstrap: 'three-dots', ios: 'ellipsis', android: 'more_horiz' },
20
28
  toggle_sidebar: { bootstrap: 'layout-sidebar', ios: 'sidebar.left', android: 'view_sidebar' },
@@ -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.5.0'
3
+ VERSION = '3.6.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.5.0
4
+ version: 3.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - claudiob