Skip to content

Commit c8d758c

Browse files
rootxukecheng
root
authored and
xukecheng
committed
first commit
0 parents  commit c8d758c

14 files changed

+3024
-0
lines changed

.gitignore

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
.idea
3+
4+
dist
5+
.doc
6+
.build.env
7+
8+
/blueprint-templates
9+
10+
# dependencies
11+
**/node_modules
12+
/.pnp
13+
.pnp.js
14+
15+
# testing
16+
/packages/*/coverage
17+
18+
# production
19+
/packages/*/build
20+
21+
# misc
22+
.DS_Store
23+
.env.local
24+
.env.development.local
25+
.env.test.local
26+
.env.production.local
27+
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
lerna-debug.log*
32+
33+
# yarn cache
34+
.yarn/cache/
35+
.yarn/build-state.yml
36+
.yarn/install-state.gz
37+
.yarn/unplugged
38+
39+
# apitable yml will store your api token, so you need to ignore it
40+
.apitable.yml
41+
42+
# ignore packed files
43+
*.zip
44+
test.xlsx
45+
test.csv
46+
test.xls
47+
~$test.xlsx
48+
widget.config.json_self
49+
widget.config.json_integration
50+
template.xlsx
51+
~$template.xlsx
52+
widget.config.json_template

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 APITABLE
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Import Data From Excel
2+
3+
Supports importing data from .xlsx .xls .csv files into the current table
4+
5+
[Tutorial](https://help.aitable.ai/docs/guide/intro-widget-import-from-excel)

author_icon.png

4.77 KB
Loading

cover.png

13.3 KB
Loading

global.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare module '*.css' {
2+
const content: any;
3+
export default content;
4+
}

package.json

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"version": "0.0.0",
3+
"description": "APITable widget to import data from excel",
4+
"engines": {
5+
"node": ">=8.x"
6+
},
7+
"keywords": [
8+
"AITable",
9+
"widgets",
10+
"AITable widgets"
11+
],
12+
"main": "./dist/index",
13+
"module": "./dist/index",
14+
"types": "./dist/index.d.ts",
15+
"files": [
16+
"dist"
17+
],
18+
"license": "MIT",
19+
"scripts": {
20+
"start": "widget-cli start",
21+
"release": "widget-cli release"
22+
},
23+
"peerDependencies": {
24+
"react": "16.14.0",
25+
"react-dom": "16.14.0"
26+
},
27+
"dependencies": {
28+
"@types/react": "^16.9.43",
29+
"@types/react-dom": "^16.9.8",
30+
"@apitable/components": "latest",
31+
"@apitable/icons": "latest",
32+
"@apitable/widget-sdk": "latest",
33+
"typescript": "4.1.2",
34+
"xlsx": "^0.18.2"
35+
},
36+
"devDependencies": {
37+
"@types/node": "^16.4.10"
38+
}
39+
}

package_icon.png

336 Bytes
Loading

0 commit comments

Comments
 (0)