You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/official-site/sqlpage/migrations/18_button.sql
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
20
20
('space_after', 'Whether there should be extra space to the right of the button. In a line of buttons, this will put the buttons before this one on the left, and the ones after on the right.', 'BOOLEAN', FALSE, TRUE),
21
21
('icon_after', 'Name of an icon to display after the text in the button', 'ICON', FALSE, TRUE),
22
22
('icon', 'Name of an icon to be displayed on the left side of the button.', 'ICON', FALSE, TRUE),
23
+
('narrow', 'Whether to trim horizontal padding.', 'BOOLEAN', FALSE, TRUE),
23
24
('form', 'Identifier (id) of the form to which the button should submit.', 'TEXT', FALSE, TRUE),
24
25
('rel', '"nofollow" when the contents of the target link are not endorsed, "noopener" when the target is not trusted, and "noreferrer" to hide where the user came from when they open the link.', 'TEXT', FALSE, TRUE),
25
26
('target', '"_blank" to open the link in a new tab, "_self" to open it in the same tab, "_parent" to open it in the parent frame, or "_top" to open it in the full body of the window.', 'TEXT', FALSE, TRUE),
@@ -49,7 +50,8 @@ INSERT INTO example(component, description, properties) VALUES
0 commit comments