Skip to content

Commit 504e28f

Browse files
authored
Merge pull request #32 from humanspeak/feature-version
Docs: Get them up
2 parents d977090 + 06a706d commit 504e28f

File tree

38 files changed

+7709
-4048
lines changed

38 files changed

+7709
-4048
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Cloudflare Pages - Deploy
2+
3+
permissions:
4+
contents: read
5+
6+
on:
7+
pull_request:
8+
types: [closed]
9+
paths:
10+
- docs/**
11+
- .github/workflows/cloudflare-pages.yml
12+
branches:
13+
- main
14+
15+
jobs:
16+
deploy:
17+
runs-on: ubuntu-latest
18+
name: Deploy
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
with:
23+
persist-credentials: false
24+
25+
- name: Use Node.js - 22
26+
uses: actions/setup-node@v4
27+
with:
28+
node-version: 22
29+
30+
- name: Install Root Dependencies
31+
run: npm ci
32+
33+
- name: Build Package
34+
run: npm run build
35+
36+
- name: Deploy Docs
37+
working-directory: docs
38+
env:
39+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
40+
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
41+
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
42+
run: |
43+
npm ci
44+
npm run deploy

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
> Build and design powerful datagrid experiences while retaining 100% control over styles and markup.
2525
26-
Visit the [documentation](https://svelte-headless-table.bryanmylee.com/) for code examples and API reference, and get started with the [quick start guide](https://svelte-headless-table.bryanmylee.com/docs/getting-started/quick-start)!
26+
Visit the [documentation](https://table.svelte.page/) for code examples and API reference, and get started with the [quick start guide](https://table.svelte.page/docs/getting-started/quick-start)!
2727

2828
## Why Svelte Headless Table?
2929

@@ -45,18 +45,18 @@ Easily extend Svelte Headless Table with complex **sorting**, **filtering**, **g
4545

4646
### Plugin roadmap
4747

48-
- [x] [addSortBy](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-sort-by)
49-
- [x] [addColumnFilters](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-column-filters)
50-
- [x] [addTableFilter](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-table-filter)
51-
- [x] [addColumnOrder](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-column-order)
52-
- [x] [addHiddenColumns](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-hidden-columns)
53-
- [x] [addPagination](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-pagination)
54-
- [x] [addSubRows](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-sub-rows)
55-
- [x] [addGroupBy](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-group-by)
56-
- [x] [addExpandedRows](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-expanded-rows)
57-
- [x] [addSelectedRows](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-selected-rows)
58-
- [x] [addResizedColumns](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-resized-columns)
59-
- [x] [addGridLayout](https://svelte-headless-table.bryanmylee.com/docs/plugins/add-grid-layout)
48+
- [x] [addSortBy](https://table.svelte.page/docs/plugins/add-sort-by)
49+
- [x] [addColumnFilters](https://table.svelte.page/docs/plugins/add-column-filters)
50+
- [x] [addTableFilter](https://table.svelte.page/docs/plugins/add-table-filter)
51+
- [x] [addColumnOrder](https://table.svelte.page/docs/plugins/add-column-order)
52+
- [x] [addHiddenColumns](https://table.svelte.page/docs/plugins/add-hidden-columns)
53+
- [x] [addPagination](https://table.svelte.page/docs/plugins/add-pagination)
54+
- [x] [addSubRows](https://table.svelte.page/docs/plugins/add-sub-rows)
55+
- [x] [addGroupBy](https://table.svelte.page/docs/plugins/add-group-by)
56+
- [x] [addExpandedRows](https://table.svelte.page/docs/plugins/add-expanded-rows)
57+
- [x] [addSelectedRows](https://table.svelte.page/docs/plugins/add-selected-rows)
58+
- [x] [addResizedColumns](https://table.svelte.page/docs/plugins/add-resized-columns)
59+
- [x] [addGridLayout](https://table.svelte.page/docs/plugins/add-grid-layout)
6060

6161
## Examples
6262

@@ -124,4 +124,4 @@ Easily extend Svelte Headless Table with complex **sorting**, **filtering**, **g
124124
</table>
125125
```
126126

127-
For more complex examples with advanced features, visit the [documentation site](https://svelte-headless-table.bryanmylee.com/docs/plugins/overview).
127+
For more complex examples with advanced features, visit the [documentation site](https://table.svelte.page/docs/plugins/overview).

0 commit comments

Comments
 (0)