forked from sqlpage/SQLPage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path99_shared_id_class_attributes.sql
54 lines (51 loc) · 1.63 KB
/
99_shared_id_class_attributes.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
INSERT INTO parameter(component, top_level, name, description, type, optional)
SELECT *, 'id', 'id attribute added to the container in HTML. It can be used to target this item through css or for scrolling to this item through links (use "#id" in link url).', 'TEXT', TRUE
FROM (VALUES
('alert', TRUE),
('breadcrumb', TRUE),
('chart', TRUE),
('code', TRUE),
('csv', TRUE),
('datagrid', TRUE),
('hero', TRUE),
('list', TRUE),
('list', FALSE),
('map', TRUE),
('tab', FALSE),
('table', TRUE),
('timeline', TRUE),
('timeline', FALSE),
('title', TRUE),
('tracking', TRUE),
('text', TRUE),
('carousel', TRUE)
);
INSERT INTO parameter(component, top_level, name, description, type, optional)
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
FROM (VALUES
('steps', TRUE)
);
INSERT INTO parameter(component, top_level, name, description, type, optional)
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
FROM (VALUES
('alert', TRUE),
('breadcrumb', TRUE),
('button', TRUE),
('card', FALSE),
('chart', TRUE),
('code', TRUE),
('csv', TRUE),
('datagrid', TRUE),
('divider', TRUE),
('form', TRUE),
('list', TRUE),
('list', FALSE),
('map', TRUE),
('tab', FALSE),
('table', TRUE),
('timeline', TRUE),
('timeline', FALSE),
('title', TRUE),
('tracking', TRUE),
('carousel', TRUE)
);