Releases: synthesized-io/docs-ui
Releases · synthesized-io/docs-ui
v2.3
v2.2
What's Changed
🧿 Fixed an issue where anchors were off to page when jumped to various xref
s.
This meant that clicking on section headings would scroll down the page a little too far as seen in the below example.
Full Changelog: v2.1...v2.2
v2.1
What's Changed
🧿 Add tabs and update dependencies by @simonhkswan in #16
Added Tabs to allow for expressing multiple ways of achieving something. An example and output is given below:
[tabs]
====
Python::
+
[,python]
----
from synthesized.metadata.value import String
int_meta = Integer(
name="colA",
num_rows=100,
nan_freq=0.1,
categories=["A", "B", "C"]
)
----
YAML::
+
[,yaml]
----
string:
- name: "colA"
num_rows: 100
nan_freq: 0.1
categories:
- "A"
- "B"
- "C"
----
====

🧿 Tidied up + updated the dependencies in this repo.
- We have a few extra styling packages in main synthesized docs repo. They've been moved to here so that all the css/styling is in the one repo.
- Bumped asciidoctor/core from
v1.5
->v2.2
🧿 Added current docs ui features to ui-preview
It's now possible to quickly see all the UI features provided by this repo with a few commands.
$ npm install -g gulp-cli
$ npm install
$ gulp preview
[01:23:18] Using gulpfile ~/docs-ui/gulpfile.js
[01:23:18] Starting 'preview'...
[01:23:18] Starting 'assemble'...
[01:23:18] Finished 'assemble' after 78 ms
[01:23:18] Starting 'build'...
[01:23:18] Starting 'preview:build-pages'...
[01:23:21] Finished 'preview:build-pages' after 2.65 s
[01:23:21] Finished 'build' after 3.12 s
[01:23:21] Starting 'preview:serve'...
[01:23:21] Starting server...
[01:23:21] Server started http://localhost:5252 and http://192.168.8.150:5252
[01:23:21] Running server
You can visit http://localhost:5252 to see a show case of the features.
Full Changelog: v2.0...v2.1
v2.0
Updated the UI to match Synthesized's new 2023 look...!
v1.0
Update ci.yaml
dev
Update ci.yaml