@bigbinary/neeto-atoms 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +4272 -547
- package/dist/cjs/index.js.map +1 -1
- package/dist/components/DataTable/DataTable.d.ts +2 -0
- package/dist/components/DataTable/components/BulkSelectCallout.d.ts +8 -0
- package/dist/components/DataTable/components/DataTablePagination.d.ts +7 -0
- package/dist/components/DataTable/components/EmptyState.d.ts +7 -0
- package/dist/components/DataTable/components/HeaderCellMenu.d.ts +19 -0
- package/dist/components/DataTable/components/LoadingOverlay.d.ts +1 -0
- package/dist/components/DataTable/components/ResizeHandle.d.ts +6 -0
- package/dist/components/DataTable/components/SelectionCheckbox.d.ts +7 -0
- package/dist/components/DataTable/components/SortIndicator.d.ts +6 -0
- package/dist/components/DataTable/constants.d.ts +12 -0
- package/dist/components/DataTable/hooks/useColumnOrdering.d.ts +13 -0
- package/dist/components/DataTable/hooks/useColumnPinning.d.ts +15 -0
- package/dist/components/DataTable/hooks/useColumnVisibility.d.ts +14 -0
- package/dist/components/DataTable/hooks/useTablePagination.d.ts +18 -0
- package/dist/components/DataTable/hooks/useTableSelection.d.ts +15 -0
- package/dist/components/DataTable/hooks/useTableSort.d.ts +11 -0
- package/dist/components/DataTable/index.d.ts +8 -0
- package/dist/components/DataTable/types.d.ts +64 -0
- package/dist/components/DataTable/utils.d.ts +14 -0
- package/dist/components/Table.d.ts +2 -2
- package/dist/index.css +2 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4266 -548
- package/dist/index.js.map +1 -1
- package/package.json +39 -33
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-atoms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"author": "BigBinary",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"packageManager": "yarn@4.9.2",
|
|
7
6
|
"engines": {
|
|
8
7
|
"node": ">=22.13",
|
|
9
8
|
"npm": ">=9"
|
|
@@ -32,6 +31,7 @@
|
|
|
32
31
|
"storybook": "storybook dev -p 6006",
|
|
33
32
|
"build-storybook": "storybook build",
|
|
34
33
|
"prepare": "husky install",
|
|
34
|
+
"serve": "node .storybook/express",
|
|
35
35
|
"test": "jest"
|
|
36
36
|
},
|
|
37
37
|
"lint-staged": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"eslint --cache --fix"
|
|
44
44
|
]
|
|
45
45
|
},
|
|
46
|
-
"
|
|
46
|
+
"dependencies": {
|
|
47
47
|
"@base-ui/react": "^1.3.0",
|
|
48
48
|
"@bigbinary/neeto-commons-frontend": "4.13.113",
|
|
49
49
|
"@chromatic-com/storybook": "^5.0.1",
|
|
@@ -74,11 +74,6 @@
|
|
|
74
74
|
"@radix-ui/react-toggle": "^1.1.10",
|
|
75
75
|
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
76
76
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
77
|
-
"@rollup/plugin-commonjs": "^29.0.2",
|
|
78
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
79
|
-
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
80
|
-
"@rollup/plugin-replace": "^6.0.3",
|
|
81
|
-
"@rollup/plugin-typescript": "^12.3.0",
|
|
82
77
|
"@storybook/addon-a11y": "^10.2.19",
|
|
83
78
|
"@storybook/addon-docs": "^10.2.19",
|
|
84
79
|
"@storybook/addon-onboarding": "^10.2.19",
|
|
@@ -86,57 +81,36 @@
|
|
|
86
81
|
"@storybook/react-vite": "^10.2.19",
|
|
87
82
|
"@tailwindcss/postcss": "^4.2.2",
|
|
88
83
|
"@tailwindcss/vite": "^4.2.1",
|
|
89
|
-
"@
|
|
90
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
91
|
-
"@testing-library/react": "^16.3.2",
|
|
92
|
-
"@testing-library/user-event": "^14.6.1",
|
|
93
|
-
"@types/identity-obj-proxy": "^3",
|
|
94
|
-
"@types/jest": "^30.0.0",
|
|
84
|
+
"@tanstack/react-table": "^8",
|
|
95
85
|
"@types/node": "^24.12.0",
|
|
96
86
|
"@types/ramda": "^0",
|
|
97
87
|
"@types/react": "^19.2.14",
|
|
98
88
|
"@types/react-dom": "^19.2.3",
|
|
99
|
-
"@types/rollup-plugin-peer-deps-external": "^2",
|
|
100
|
-
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
101
|
-
"@typescript-eslint/parser": "^8.57.1",
|
|
102
89
|
"@vitejs/plugin-react": "^5",
|
|
103
90
|
"class-variance-authority": "^0.7.1",
|
|
104
91
|
"clsx": "^2.1.1",
|
|
105
92
|
"cmdk": "^1.1.1",
|
|
106
93
|
"date-fns": "^4.1.0",
|
|
107
94
|
"embla-carousel-react": "^8.6.0",
|
|
108
|
-
"
|
|
109
|
-
"eslint-plugin-storybook": "^10.2.19",
|
|
110
|
-
"husky": "^9.1.7",
|
|
111
|
-
"identity-obj-proxy": "^3.0.0",
|
|
95
|
+
"express": "^4.18.2",
|
|
112
96
|
"input-otp": "^1.4.2",
|
|
113
|
-
"jest": "^30.3.0",
|
|
114
|
-
"jest-environment-jsdom": "^30.3.0",
|
|
115
|
-
"lint-staged": "^16.4.0",
|
|
116
97
|
"lucide-react": "^0.577.0",
|
|
117
98
|
"next-themes": "^0.4.6",
|
|
118
99
|
"postcss": "^8.5.8",
|
|
119
|
-
"prettier": "^3.8.1",
|
|
120
100
|
"radix-ui": "^1.4.3",
|
|
121
101
|
"ramda": "^0.32.0",
|
|
122
102
|
"react": "^18.2.0",
|
|
123
103
|
"react-day-picker": "^9.14.0",
|
|
124
104
|
"react-dom": "^18.2.0",
|
|
125
105
|
"react-hook-form": "^7.72.0",
|
|
106
|
+
"react-is": "^18.3.1",
|
|
126
107
|
"react-resizable-panels": "^4.7.5",
|
|
127
108
|
"recharts": "3.8.0",
|
|
128
|
-
"rollup": "^4.59.0",
|
|
129
|
-
"rollup-plugin-cleaner": "^1.0.0",
|
|
130
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
131
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
132
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
133
|
-
"rollup-plugin-styles": "^4.0.0",
|
|
134
109
|
"shadcn": "^4.1.0",
|
|
135
110
|
"sonner": "^2.0.7",
|
|
136
111
|
"storybook": "^10.2.19",
|
|
137
112
|
"tailwind-merge": "^3.5.0",
|
|
138
113
|
"tailwindcss": "^4.2.1",
|
|
139
|
-
"ts-jest": "^29.4.6",
|
|
140
114
|
"ts-node": "^10.9.2",
|
|
141
115
|
"tw-animate-css": "^1.4.0",
|
|
142
116
|
"typescript": "~5.9.3",
|
|
@@ -144,8 +118,40 @@
|
|
|
144
118
|
"vite": "^6.4.1",
|
|
145
119
|
"zod": "^4.3.6"
|
|
146
120
|
},
|
|
121
|
+
"devDependencies": {
|
|
122
|
+
"@rollup/plugin-commonjs": "^29.0.2",
|
|
123
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
124
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
125
|
+
"@rollup/plugin-replace": "^6.0.3",
|
|
126
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
127
|
+
"@testing-library/dom": "^10.4.1",
|
|
128
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
129
|
+
"@testing-library/react": "^16.3.2",
|
|
130
|
+
"@testing-library/user-event": "^14.6.1",
|
|
131
|
+
"@types/identity-obj-proxy": "^3",
|
|
132
|
+
"@types/jest": "^30.0.0",
|
|
133
|
+
"@types/rollup-plugin-peer-deps-external": "^2",
|
|
134
|
+
"@typescript-eslint/eslint-plugin": "^8.57.1",
|
|
135
|
+
"@typescript-eslint/parser": "^8.57.1",
|
|
136
|
+
"eslint": "^8",
|
|
137
|
+
"eslint-plugin-storybook": "^10.2.19",
|
|
138
|
+
"husky": "^9.1.7",
|
|
139
|
+
"identity-obj-proxy": "^3.0.0",
|
|
140
|
+
"jest": "^30.3.0",
|
|
141
|
+
"jest-environment-jsdom": "^30.3.0",
|
|
142
|
+
"lint-staged": "^16.4.0",
|
|
143
|
+
"prettier": "^3.8.1",
|
|
144
|
+
"rollup": "^4.59.0",
|
|
145
|
+
"rollup-plugin-cleaner": "^1.0.0",
|
|
146
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
147
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
148
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
149
|
+
"rollup-plugin-styles": "^4.0.0",
|
|
150
|
+
"ts-jest": "^29.4.6"
|
|
151
|
+
},
|
|
147
152
|
"peerDependencies": {
|
|
148
153
|
"react": "^18.2.0",
|
|
149
154
|
"react-dom": "^18.2.0"
|
|
150
|
-
}
|
|
155
|
+
},
|
|
156
|
+
"packageManager": "yarn@4.9.2"
|
|
151
157
|
}
|