Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
6cff321
Initial plan
Copilot Jul 26, 2025
89d463f
Complete English documentation with interactive examples and GitHub P…
Copilot Jul 26, 2025
941ce39
Add comprehensive English documentation with .md files and extensive …
Copilot Jul 26, 2025
f36810f
Massively expand documentation with comprehensive advanced guides and…
Copilot Jul 26, 2025
7c24310
Add comprehensive table operations demo with frozen columns, sorting,…
Copilot Jul 26, 2025
1f48a52
Complete table operations demo with working offline version and full …
Copilot Jul 26, 2025
a8ad6b7
Add osvm.ai disclaimer to all English documentation HTML pages
Copilot Jul 26, 2025
31da7c3
Merge pull request #2 from 0xrinegade/copilot/fix-1
0xrinegade Jul 26, 2025
1ae10e5
Create static.yml
0xrinegade Jul 26, 2025
cd86246
Initial plan
Copilot Jul 28, 2025
e245210
Add russian-demo and docs/ru structure with initial translations
Copilot Jul 28, 2025
3eb46b5
Complete Russian demo and documentation structure with key translations
Copilot Jul 28, 2025
fba6c4f
Complete Russian translation of docs/ru/core/table-types.md
Copilot Jul 28, 2025
f7d266d
Translate FAQ file about VChart chart edge truncation
Copilot Jul 28, 2025
cbbf30b
Translate three additional FAQ files to Russian
Copilot Jul 28, 2025
e31ef53
Translate FAQ about copying selected cells functionality
Copilot Jul 28, 2025
ba738d2
Translate API documentation event and icon files to Russian
Copilot Jul 28, 2025
459e220
Continue systematic Russian translation of documentation files
Copilot Jul 28, 2025
c95e874
Translate Russian contributing documentation files
Copilot Jul 28, 2025
8581e2c
Continue Russian translation of contributing files
Copilot Jul 28, 2025
74202c5
Complete translation of key Russian contributing files
Copilot Jul 28, 2025
6db4c14
Translate all Russian documentation files
Copilot Jul 28, 2025
43783d7
Complete comprehensive Russian translation of demo files
Copilot Jul 28, 2025
0f12fc1
Fix incorrect code translation and preserve JavaScript/TypeScript syntax
Copilot Jul 28, 2025
c417104
Merge pull request #4 from 0xrinegade/copilot/fix-3
0xrinegade Jul 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
43 changes: 43 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["develop"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './english-demo'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,24 @@ const option = {
const tableInstance = new VTable.ListTable(option);
```

## 📚 English Documentation & Examples

For comprehensive English documentation with live examples, check out our new dedicated English demo section:

**🎯 [English Demo & Examples](./english-demo/index.html)** - Complete interactive examples covering:
- Basic table setup and configuration
- Color themes and custom styling
- Interactive behavior (sorting, filtering, selection)
- Advanced features (progress bars, pivot tables, charts)
- Performance optimization for large datasets
- Event handling and customization guides

### Quick Links:
- **[Main Demo Page](./english-demo/index.html)** - All examples in one comprehensive page
- **[Color Themes Example](./english-demo/examples/color-themes.html)** - Advanced styling and theming
- **[Interactive Behavior](./english-demo/examples/interactive-behavior.html)** - User interaction features
- **[Performance & Advanced Features](./english-demo/examples/performance-advanced.html)** - Large datasets and complex features

##

[More demos and detailed tutorials](https://visactor.io/vtable)
Expand Down
Loading