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: CHANGELOG.md
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,17 @@
1
1
# CHANGELOG.md
2
2
3
-
## 0.14.0 (unreleased)
3
+
## 0.14.0 (2023-10-19)
4
4
5
+
- Better support for time series in the [chart](https://sql.ophir.dev/documentation.sql?component=chart#component) component. You can now use the `time` top-attribute to display a time series chart
6
+
with smart x-axis labels.
7
+
-**New component**: [button](https://sql.ophir.dev/documentation.sql?component=button#component). This allows you to create rows of buttons that allow navigation between pages.
5
8
- Better error messages for Microsoft SQL Server. SQLPage now displays the line number of the error, which is especially useful for debugging long migration scripts.
6
9
- Many improvements in the official website and the documentation.
7
10
- Most notably, the documentation now has syntax highlighting on code blocks (using [prism](https://prismjs.com/) with a custom theme made for tabler). This also illustrates the usage of external javascript and css libraries in SQLPage. See [the shell component documentation](https://sql.ophir.dev/documentation.sql?component=shell#component).
8
11
- Better display of example queries in the documentation, with smart indentation that makes it easier to read.
9
-
-CLarify some ambiguous error messages:
12
+
-Clarify some ambiguous error messages:
10
13
- make it clearer whether the error comes from SQLPage or from the database
11
14
- specific tokenization errors are now displayed as such
12
-
- Better support for time series in the [chart](https://sql.ophir.dev/documentation.sql?component=chart#component) component. You can now use the `time` top-attribute to display a time series chart
13
-
with smart x-axis labels.
14
15
15
16
## 0.13.0 (2023-10-16)
16
17
- New [timeline](https://sql.ophir.dev/documentation.sql?component=timeline#component) component to display a timeline of events.
-- Top-level parameters (for the whole button list)
10
+
('justify', 'The horizontal alignment of the button list (e.g., start, end, center, between).', 'TEXT', TRUE, TRUE),
11
+
('size', 'The size of the buttons (e.g., sm, lg).', 'TEXT', TRUE, TRUE),
12
+
('shape', 'Shape of the buttons (e.g., pill, square)', 'TEXT', TRUE, TRUE),
13
+
-- Item-level parameters (for each button)
14
+
('link', 'The URL to which the button should navigate when clicked.', 'URL', FALSE, TRUE),
15
+
('color', 'The color of the button (e.g., red, green, blue, but also primary, warning, danger, orange, etc.).', 'TEXT', FALSE, TRUE),
16
+
('title', 'The text displayed on the button.', 'TEXT', FALSE, TRUE),
17
+
('disabled', 'Whether the button is disabled or not.', 'BOOLEAN', FALSE, TRUE),
18
+
('outline', 'Outline color of the button (e.g. red, purple, ...)', 'TEXT', FALSE, TRUE),
19
+
('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),
20
+
('icon', 'An icon (from tabler-icons) to be displayed on the left side of the button.', 'TEXT', FALSE, TRUE)
21
+
) x;
22
+
23
+
-- Inserting example information for the button component
24
+
INSERT INTO example(component, description, properties) VALUES
0 commit comments