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
('title','Description of the modal box.','TEXT',TRUE,FALSE),
6
-
('close','The text to display in the Close button.','TEXT',TRUE,FALSE),
6
+
('close','The text to display in the Close button.','TEXT',TRUE,TRUE),
7
7
('contents','A paragraph of text to display, without any formatting, without having to make additional queries.','TEXT',FALSE,TRUE),
8
8
('contents_md','Rich text in the markdown format. Among others, this allows you to write bold text using **bold**, italics using *italics*, and links using [text](https://example.com).','TEXT',FALSE,TRUE),
9
-
('unsafe_contents_md','Markdown format with html blocks. Use this only with trusted content. See the html-blocks section of the Commonmark spec for additional info.','TEXT',FALSE,TRUE),
10
9
('scrollable','Create a scrollable modal that allows scroll the modal body.','BOOLEAN',TRUE,TRUE),
11
10
('class','Class attribute added to the container in HTML. It can be used to apply custom styling to this item through css.','TEXT',TRUE,TRUE),
12
-
('id','ID attribute added to the container in HTML. It can be used to target this item through css or for displaying this item.','TEXT',TRUE,FALSE)
11
+
('id','ID attribute added to the container in HTML. It can be used to target this item through css or for displaying this item.','TEXT',TRUE,FALSE),
12
+
('large','Indicates that the modal box has an increased width.','BOOLEAN',TRUE,TRUE),
13
+
('small','Indicates that the modal box has a reduced width.','BOOLEAN',TRUE,TRUE),
14
+
('embed','Embed remote content in an iframe.','TEXT',TRUE,TRUE),
15
+
('embed_mode','Use "iframe" to display embedded content within an iframe.','TEXT',TRUE,TRUE),
16
+
('height','Height of the embedded content.','INTEGER',TRUE,TRUE),
17
+
('allow','For embedded content, this attribute specifies the features or permissions that can be used.','TEXT',TRUE,TRUE),
18
+
('sandbox','For embedded content, this attribute specifies the security restrictions on the loaded content.','TEXT',TRUE,TRUE),
19
+
('style','Applies CSS styles to the embedded content.','TEXT',TRUE,TRUE)
13
20
) x;
14
21
15
22
INSERT INTO example(component, description, properties) VALUES
@@ -21,6 +28,51 @@ INSERT INTO example(component, description, properties) VALUES
0 commit comments