[#812,package][xl]: add Table component and story for it

This commit is contained in:
deme
2023-05-01 18:56:22 -03:00
parent 169a92d313
commit 016f3e20e9
15 changed files with 2989 additions and 1264 deletions

View File

@@ -12,14 +12,15 @@
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"build": "tsdx build && yarn build-tailwind",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-tailwind": "NODE_ENV=production npx tailwindcss -o ./dist/tailwind.css --minify"
},
"peerDependencies": {
"react": ">=16"
@@ -36,7 +37,7 @@
"trailingComma": "es5"
},
"name": "components",
"author": "joaommdemenech@gmail.com",
"author": "Datopian",
"module": "dist/components.esm.js",
"size-limit": [
{
@@ -49,22 +50,34 @@
}
],
"devDependencies": {
"papaparse": "^5.4.1",
"@tanstack/react-table": "^8.8.5",
"@heroicons/react": "^2.0.17",
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@size-limit/preset-small-lib": "^8.2.4",
"@storybook/addon-essentials": "^7.0.7",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^7.0.7",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^7.0.7",
"@storybook/cli": "^7.0.7",
"@storybook/react": "^7.0.7",
"@storybook/react-webpack5": "^7.0.7",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"husky": "^8.0.3",
"postcss": "^8.4.23",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"size-limit": "^8.2.4",
"storybook": "^7.0.7",
"tailwindcss": "^3.3.2",
"tsdx": "^0.14.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"