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/01_documentation.sql
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
55
55
-- top level
56
56
('title', 'Text header at the top of the list of cards.', 'TEXT', TRUE, TRUE),
57
57
('description', 'A short paragraph displayed below the title.', 'TEXT', TRUE, TRUE),
58
-
58
+
('description_md', 'A short paragraph displayed below the title - formatted using markdown.', 'TEXT', TRUE, TRUE),
59
59
('columns', 'The number of columns in the grid of cards. This is just a hint, the grid will adjust dynamically to the user''s screen size, rendering fewer columns if needed to fit the contents.', 'INTEGER', TRUE, TRUE),
60
60
-- item level
61
61
('title', 'Name of the card, displayed at the top.', 'TEXT', FALSE, FALSE),
@@ -219,7 +219,7 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
219
219
('title', 'A name to display at the top of the form. It will be displayed in a larger font size at the top of the form.', 'TEXT', TRUE, TRUE),
220
220
('validate', 'The text to display in the button at the bottom of the form that submits the values.', 'TEXT', TRUE, TRUE),
221
221
-- item level
222
-
('type', 'The type of input to use: text for a simple text field, number for field that accepts only numbers, checkbox or radio for a button that is part of a group specified in the ''name'' parameter. This is set to "text" by default.', 'TEXT', FALSE, TRUE),
222
+
('type', 'The type of input to use: text for a simple text field, textarea for a multi-line text input control, number for field that accepts only numbers, checkbox or radio for a button that is part of a group specified in the ''name'' parameter. This is set to "text" by default.', 'TEXT', FALSE, TRUE),
223
223
('name', 'The name of the input field, that you can use in the target page to get the value the user entered for the field.', 'TEXT', FALSE, FALSE),
224
224
('label', 'A friendly name for the text field to show to the user.', 'TEXT', FALSE, TRUE),
225
225
('placeholder', 'A placeholder text that will be shown in the field when is is empty.', 'TEXT', FALSE, TRUE),
@@ -435,4 +435,4 @@ INSERT INTO example(component, description, properties) VALUES
'{"title": "Easy", "description_md": "You can teach yourself enough SQL to use [**SQLPage**](https://sql.ophir.dev) in a weekend.", "icon": "sofa", "color": "blue", "link": "/"}'||']'
0 commit comments