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 +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +3 -3
- data/lib/unicon/icons/actions/pointing.rb +8 -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: 01c201df88f22a670e0125d797ab3c89e6cdb14a942e7a7b73f2153e169b38eb
|
|
4
|
+
data.tar.gz: '025886db35f71ad6d6c9fb72aac0ea692e9fa9e4f5267044242d9c51dfd6e76d'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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, ...]
|
|
68
|
-
Unicon.actions # => [:add, :add_member, :close, :confirm, ...]
|
|
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
|
|
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' },
|
data/lib/unicon/version.rb
CHANGED