Skip to content

Commit

Permalink
Merge pull request #167 from VisActor/release/0.9.2
Browse files Browse the repository at this point in the history
[Auto release] release 0.9.2
  • Loading branch information
fangsmile committed Jul 26, 2023
2 parents 1762a21 + 1e1ea44 commit 5e68271
Show file tree
Hide file tree
Showing 82 changed files with 2,445 additions and 772 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ jobs:
NODE_OPTIONS: "--max_old_space_size=4096"
run: node common/scripts/install-run-rush.js build --only tag:package

- name: Run Bugserver
working-directory: ./packages/vtable
env:
BUG_SERVER_TOKEN: ${{ secrets.BUG_SERVER_TOKEN }}
run: node ../../common/scripts/install-run-rushx.js ci
# - name: Run Bugserver
# working-directory: ./packages/vtable
# env:
# BUG_SERVER_TOKEN: ${{ secrets.BUG_SERVER_TOKEN }}
# run: node ../../common/scripts/install-run-rushx.js ci

- name: Publish to npm
env:
Expand Down
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,32 +99,28 @@ const columns =[
];

const option = {
parentElement: document.getElementById(Table_CONTAINER_DOM_ID),
parentElement: document.getElementById(CONTAINER_ID),
records:[
{
{
"230517143221027": "CA-2018-156720",
"230517143221030": "JM-15580",
"230517143221032": "Bagged Rubber Bands",
"230517143221040": "3.024",
"230517143221041": "-0.605"
},
{
},
{
"230517143221027": "CA-2018-115427",
"230517143221030": "EB-13975",
"230517143221032": "GBC Binding covers",
"230517143221040": "20.72",
"230517143221041": "6.475"
},
...
},
// ...
],
columns,
widthMode:'standard'
};
const tableInstance = new VTable.ListTable(option);




```

##
Expand Down
13 changes: 6 additions & 7 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,26 +97,25 @@ const columns =[
];

const option = {
parentElement: document.getElementById(Table_CONTAINER_DOM_ID),
parentElement: document.getElementById(CONTAINER_ID),
records:[
{
{
"230517143221027": "CA-2018-156720",
"230517143221030": "JM-15580",
"230517143221032": "Bagged Rubber Bands",
"230517143221040": "3.024",
"230517143221041": "-0.605"
},
{
},
{
"230517143221027": "CA-2018-115427",
"230517143221030": "EB-13975",
"230517143221032": "GBC Binding covers",
"230517143221040": "20.72",
"230517143221041": "6.475"
},
...
},
// ...
],
columns,
widthMode:'standard'
};
const tableInstance = new VTable.ListTable(option);

Expand Down
1 change: 1 addition & 0 deletions common/autoinstallers/lint/commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'header-min-length': [2, 'always', 16],
'not-allowed-chars': [2, 'always']
},
plugins: [
Expand Down
150 changes: 83 additions & 67 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions packages/vtable/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"name": "@visactor/vtable",
"entries": [
{
"version": "0.9.2",
"tag": "@visactor/vtable_v0.9.2",
"date": "Wed, 26 Jul 2023 03:47:00 GMT",
"comments": {
"patch": [
{
"comment": "refactor: chart type handle with transpose or indicator in row\n\n"
}
]
}
},
{
"version": "0.9.1",
"tag": "@visactor/vtable_v0.9.1",
Expand Down
11 changes: 10 additions & 1 deletion packages/vtable/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Change Log - @visactor/vtable

This log was last generated on Wed, 05 Jul 2023 06:55:19 GMT and should not be manually modified.
This log was last generated on Wed, 26 Jul 2023 03:47:00 GMT and should not be manually modified.

## 0.9.2
Wed, 26 Jul 2023 03:47:00 GMT

### Patches

- refactor: chart type handle with transpose or indicator in row



## 0.9.1
Wed, 05 Jul 2023 06:55:19 GMT
Expand Down
Loading

0 comments on commit 5e68271

Please sign in to comment.