glib-web 2.6.1 → 2.6.3
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/app/controllers/glib/home_controller.rb +1 -1
- data/app/helpers/glib/json_ui/action_builder/dialogs.rb +1 -0
- data/app/helpers/glib/json_ui/action_builder/http.rb +1 -0
- data/app/helpers/glib/json_ui/action_builder/snackbars.rb +0 -0
- data/app/helpers/glib/json_ui/view_builder/fields.rb +1 -0
- data/app/views/json_ui/garage/actions/_snackbars.json.jbuilder +0 -0
- data/app/views/json_ui/garage/panels/horizontal.json.jbuilder +11 -7
- 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: a241900fe69f859a9d7fb8505cb6cbbd19039b6eb7a5981a4232a0edff12846b
|
4
|
+
data.tar.gz: b07483bdaa3c5b28db364af08ae9da29547ca239a544d4b6fecd0917c8552b90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89baa1f405ecc6a94a0b027d5dc5b7a142c0850e036a791ec87e1328e0a844c2384604fd307ea2965477edfb3e83e42740c3cfa4f008325ea95ba406e673156c
|
7
|
+
data.tar.gz: fdb78f8e7df61cb16e8259a502b6168efaa525227712b25c52e9d63c59b24aef1925d699a84a3f05ec5f31259842d0f138084126cc14a2f325318cb5864fcc25
|
File without changes
|
File without changes
|
@@ -119,13 +119,17 @@ json_ui_page json do |page|
|
|
119
119
|
|
120
120
|
scroll.spacer height: 20
|
121
121
|
scroll.h1 text: 'Label combo (with onClick)'
|
122
|
-
scroll.panels_horizontal
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
122
|
+
scroll.panels_horizontal \
|
123
|
+
padding: { left: 20, right: 20, top: 10, bottom: 10 },
|
124
|
+
styleClasses: ['rounded-corner'],
|
125
|
+
backgroundColor: '#b3bac2',
|
126
|
+
childViews: ->(panel) do
|
127
|
+
panel.label text: 'Label 1'
|
128
|
+
panel.label backgroundColor: '#ffffff', text: 'Label 2'
|
129
|
+
panel.label text: 'Label 3'
|
130
|
+
end, onClick: ->(action) do
|
131
|
+
action.windows_open url: json_ui_garage_url(path: 'home/blank')
|
132
|
+
end
|
129
133
|
|
130
134
|
scroll.spacer height: 20
|
131
135
|
scroll.h1 text: 'Drag-and-drop support'
|