Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.0.1 #17

Open
wants to merge 37 commits into
base: release/current
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
4c34c5f
Bump version
Feb 17, 2024
fcefc57
Merge pull request #16 from weseek/support/prepare-v1.0.1-RC.0
ryu-sato Feb 17, 2024
706bc83
Set up the required actions before merging in mergify
ryu-sato Feb 17, 2024
62bee9b
update mergify settings
ryu-sato Feb 17, 2024
4f0d6fe
test
ryu-sato Feb 17, 2024
1725cd2
Merge pull request #18 from weseek/support/set-require_branch_protect…
ryu-sato Feb 17, 2024
732371f
add config to approve PR whose owner is github-actions[bot]
ryu-sato Feb 17, 2024
4a0131f
udpate mergify configs
ryu-sato Feb 17, 2024
e820e5a
Merge pull request #19 from weseek/support/set-auto-approval-in-mergi…
ryu-sato Feb 17, 2024
c417bc2
update condition rule
ryu-sato Feb 17, 2024
892da1b
Merge pull request #20 from weseek/support/update-condition-rule-in-m…
ryu-sato Feb 17, 2024
d1734a8
add button and searchPanes extensions, and upgrade DataTable v2
ryu-sato Feb 23, 2024
3ac3d52
fix type error
ryu-sato Feb 23, 2024
bb228fc
build
ryu-sato Feb 23, 2024
69ba574
update features and captures
ryu-sato Feb 23, 2024
be97112
fix
ryu-sato Feb 23, 2024
2e86437
update README.md
ryu-sato Feb 23, 2024
72ffaca
update datatables.net related modules and remove resolution of datata…
ryu-sato Mar 30, 2024
8eb1ed0
add text filter
ryu-sato Mar 30, 2024
921c836
build
ryu-sato Mar 30, 2024
c83d210
update captures
ryu-sato Mar 30, 2024
ae4466b
Merge pull request #21 from weseek/feat/filter-each-column
miya Apr 7, 2024
4e642e9
bump up
miya Apr 8, 2024
0635118
Replace with datatables.net-bs5
miya Apr 8, 2024
f305204
build
miya Apr 8, 2024
7125380
Merge pull request #22 from weseek/support/datatables.net-bs5
ryu-sato Apr 8, 2024
79acd56
use react-sync instead of react hook
ryu-sato Aug 15, 2024
45c91c6
build
ryu-sato Aug 15, 2024
546d52f
modify comment
ryu-sato Aug 15, 2024
f35d924
Update README.md
ryu-sato Aug 16, 2024
6c99f8a
Merge pull request #23 from ryu-sato/feat/automatically-enable-plugin
miya Aug 26, 2024
d535d92
add sourcemap
ryu-sato Oct 14, 2024
e25ce8e
Merge pull request #25 from growilabs/support/add-sourcemap
ryu-sato Oct 14, 2024
a6bfee8
set option to listen any address to vite server
ryu-sato Dec 1, 2024
597810c
Merge pull request #27 from growilabs/support/vite-server-is-now-list…
ryu-sato Dec 1, 2024
b7281ba
add debug setting to launch of vscode
ryu-sato Dec 1, 2024
dd5549d
Merge pull request #28 from growilabs/support/add-debug-setting-to-la…
ryu-sato Dec 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,37 @@
shared:
required_actions_were_succeeded_or_skipped: &required_actions_were_succeeded_or_skipped
- or:
- check-success = check_artifacts_are_latest
- check-skipped = check_artifacts_are_latest
- or:
- check-skipped = lint
- check-success = lint
- or:
- check-skipped = build
- check-success = build
- or:
- check-skipped = check-title
- check-success = check-title
- or:
- check-skipped = labeling
- check-success = labeling

pull_request_rules:
- name: All required actions were succeeded or skipped
conditions:
- and: *required_actions_were_succeeded_or_skipped
actions:
post_check:
title: required-actions-were-succeeded-or-skipped
success_conditions:
- and: *required_actions_were_succeeded_or_skipped
- name: Automatic merge for Preparing next version
conditions:
- author = github-actions[bot]
- label = "type/prepare-next-version"
actions:
review:
type: APPROVE
message: Automatically approving github-actions[bot]
merge:
method: merge
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "msedge",
"request": "launch",
"name": "Launch Edge against localhost",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}"
}
]
}
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## growi-plugin-datatables

This [GROWI](https://github.com/weseek/growi)'s plugin add button whose adapt [DataTable](https://datatables.net/) to table.
This [GROWI](https://github.com/weseek/growi)'s plugin adapt [DataTable](https://datatables.net/) to table.

DataTable is extended by following features.

Expand All @@ -9,11 +9,15 @@ DataTable is extended by following features.
- Numerical values are in natural order
- ex. "2.4m", "4.5m", "10.9m", ... (Ascending)
- Scrolling vertically (Max table height: 500px)
- Extension buttons
- "Column visibility" button: Toggle column visibility
- "SearchPanels" button: Filter rows for each column (by search value, by select value)
- "Copy" button: Copy the table
- "CSV" button: Download the table in CSV format
- "Print" button: Print the table

### before adapt
### After filtering by "carnivore" and sorting by "Name"

![image](https://github.com/weseek/growi-plugin-datatables/assets/32702772/1d045990-11e2-4d32-af79-9bb09b1775e3)
![image](https://github.com/weseek/growi-plugin-datatables/assets/32702772/5491e0af-0150-4189-947e-e3c2acf85293)

### after adapt and search with "carnivore" and sort by "Name"

![image](https://github.com/weseek/growi-plugin-datatables/assets/32702772/b6e43820-66f8-41b9-8f68-21e86c3262e7)
![image](https://github.com/weseek/growi-plugin-datatables/assets/32702772/7e6512b0-9fcd-4c08-94fb-072d35a2f492)
89 changes: 89 additions & 0 deletions dist/assets/client-entry.2331ca5e.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/assets/client-entry.2331ca5e.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/assets/client-entry.52bc2bfa.css

This file was deleted.

Loading