unicon 3.6.0 → 3.7.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 +11 -0
- data/lib/unicon/icons/actions/editing.rb +2 -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: 1730941dfd2d52909fe3b2cbcf7269792a07eaeb6fc8b53b83dd4d08ed9f552f
|
|
4
|
+
data.tar.gz: 194d071edc441e04b9fecd491d931c8c7f55fc5ef0d7cb45b5f6ae73e170ae82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9dd109cc57e4368d2d627ec2b768888572dcfff1c0bef6ec98b0b5ab13ae12e4a9e29d416da27e27e2018bfd36a7491680f938f146bc26d7979a969f801b9d89
|
|
7
|
+
data.tar.gz: 7719093168d29a2b2770236e9916f5f86e6efd6ce02921c817d090307be183971a51ba68ee780f6c018a86f65db06b54fce2f3bfd0c51e7790f4778b306860c5
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ what decides both whether a reader can take it and what the next version number
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [3.7.0] - 2026-09-17
|
|
9
|
+
|
|
10
|
+
- **Feature.** `:sort_asc` and `:sort_desc` are the order a column is sorted in, beside the
|
|
11
|
+
`:sort` that says only that it can be. Bootstrap calls them `sort-up` and `sort-down`, SF
|
|
12
|
+
Symbols `arrowtriangle.up` and `arrowtriangle.down`, Material `arrow_drop_up` and
|
|
13
|
+
`arrow_drop_down` — each system's own indicator in a table heading. Named for the ordering
|
|
14
|
+
rather than the arrow, since Bootstrap's four sort glyphs point either way with either
|
|
15
|
+
ordering, so an arrow settles nothing; and abbreviated, where the rest of the table is
|
|
16
|
+
spelled out, because `asc` and `desc` are the words a sort is held in everywhere it is
|
|
17
|
+
read from. 319 names now resolve, 140 of them aliases.
|
|
18
|
+
|
|
8
19
|
## [3.6.0] - 2026-09-08
|
|
9
20
|
|
|
10
21
|
- **Feature.** `:expand` and `:collapse` are the two diagonal arrows, parting and meeting:
|
|
@@ -12,6 +12,8 @@ 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
|
+
sort_asc: { bootstrap: 'sort-up', ios: 'arrowtriangle.up', android: 'arrow_drop_up' },
|
|
16
|
+
sort_desc: { bootstrap: 'sort-down', ios: 'arrowtriangle.down', android: 'arrow_drop_down' },
|
|
15
17
|
drag: { bootstrap: 'grip-vertical', ios: 'line.3.horizontal', android: 'drag_indicator' },
|
|
16
18
|
zoom_in: { bootstrap: 'zoom-in', ios: 'plus.magnifyingglass', android: 'zoom_in' },
|
|
17
19
|
zoom_out: { bootstrap: 'zoom-out', ios: 'minus.magnifyingglass', android: 'zoom_out' },
|
data/lib/unicon/version.rb
CHANGED