Skip to content

Commit

Permalink
Update Scenario Selector documentation with 4.0 features (#1216)
Browse files Browse the repository at this point in the history
* - Added Filtering, Sorting and Searching section in the Scenario Selector doc page.
- Added actual MUI icons to be used in the doc body text (added to the table control doc page).
- Tiny doc adjustement in the metric control formatting paragraph.
- Tiny doc change in the toggle control.
- Force UTF-8 encoding in Markdown generation.
- Release Notes updated.
- Copy front-end code for Core elements
  • Loading branch information
FabienLelaquais authored Nov 27, 2024
1 parent 3e66623 commit f406fd1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/fetch_source_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ def copy(item: str, src: str, dst: str, rel_path: str):
shutil.copytree(os.path.join(fe_src_dir, "src"), os.path.join(frontend_dir, "src"))
for f in [f for f in os.listdir(fe_src_dir) if f.endswith(".md") or f.endswith(".json")]:
shutil.copy(os.path.join(fe_src_dir, f), os.path.join(frontend_dir, f))
core_fe_src_dir = os.path.join(src_path, "frontend", "taipy")
shutil.copytree(os.path.join(core_fe_src_dir, "src"), os.path.join(frontend_dir, "core_src"))

# Copy INSTALLATION.md, CONTRIBUTING.md, and CODE_OF_CONDUCT.md
if not os.path.isdir(taipy_documentation_files_dir):
Expand Down

0 comments on commit f406fd1

Please sign in to comment.