Skip to content

Commit 987fb59

Browse files
committed
docs: mention that the id and class attributes are new in v0.18
fixes #203
1 parent 5c751ad commit 987fb59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/official-site/sqlpage/migrations/32_shared_id_class_attributes.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ FROM (VALUES
2121
);
2222

2323
INSERT INTO parameter(component, top_level, name, description, type, optional)
24-
SELECT *, 'id', 'id attribute injected as an anchor in HTML. It can be used for scrolling to this item through links (use "#id" in link url).', 'TEXT', TRUE
24+
SELECT *, 'id', 'id attribute injected as an anchor in HTML. It can be used for scrolling to this item through links (use "#id" in link url). Added in v0.18.0.', 'TEXT', TRUE
2525
FROM (VALUES
2626
('steps', TRUE)
2727
);
2828

2929
INSERT INTO parameter(component, top_level, name, description, type, optional)
30-
SELECT *, 'class', 'class attribute added to the container in HTML. It can be used to apply custom styling to this item through css.', 'TEXT', TRUE
30+
SELECT *, 'class', 'class attribute added to the container in HTML. It can be used to apply custom styling to this item through css. Added in v0.18.0.', 'TEXT', TRUE
3131
FROM (VALUES
3232
('alert', TRUE),
3333
('breadcrumb', TRUE),

0 commit comments

Comments
 (0)