simple-table-core 3.0.13 → 3.3.0
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/README.md +22 -0
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/src/core/SimpleTableVanilla.d.ts +25 -0
- package/dist/cjs/src/core/rendering/RenderOrchestrator.d.ts +4 -0
- package/dist/cjs/src/core/rendering/SectionRenderer.d.ts +42 -0
- package/dist/cjs/src/core/rendering/TableRenderer.d.ts +4 -0
- package/dist/cjs/src/index.d.ts +2 -1
- package/dist/cjs/src/managers/AnimationCoordinator.d.ts +142 -0
- package/dist/cjs/src/types/AnimationsConfig.d.ts +14 -0
- package/dist/cjs/src/types/SimpleTableConfig.d.ts +2 -0
- package/dist/cjs/src/types/SimpleTableProps.d.ts +2 -0
- package/dist/cjs/src/types/TableRow.d.ts +9 -0
- package/dist/cjs/src/utils/bodyCell/types.d.ts +6 -0
- package/dist/cjs/src/utils/bodyCellRenderer.d.ts +2 -1
- package/dist/cjs/src/utils/headerCell/styling.d.ts +2 -0
- package/dist/cjs/src/utils/rowProcessing.d.ts +10 -0
- package/dist/cjs/src/utils/rowUtils.d.ts +25 -0
- package/dist/cjs/stories/examples/BasicExample.d.ts +1 -0
- package/dist/cjs/stories/examples/sales-example/SalesExample.d.ts +3 -0
- package/dist/cjs/stories/tests/32-ThemesTests.stories.d.ts +19 -0
- package/dist/cjs/stories/tests/41-CellAnimationsTests.stories.d.ts +237 -0
- package/dist/cjs/stories/tests/42-CellAnimationsVirtualizationTests.stories.d.ts +251 -0
- package/dist/cjs/styles.css +1 -1
- package/dist/index.es.js +1 -1
- package/dist/src/core/SimpleTableVanilla.d.ts +25 -0
- package/dist/src/core/rendering/RenderOrchestrator.d.ts +4 -0
- package/dist/src/core/rendering/SectionRenderer.d.ts +42 -0
- package/dist/src/core/rendering/TableRenderer.d.ts +4 -0
- package/dist/src/index.d.ts +2 -1
- package/dist/src/managers/AnimationCoordinator.d.ts +142 -0
- package/dist/src/types/AnimationsConfig.d.ts +14 -0
- package/dist/src/types/SimpleTableConfig.d.ts +2 -0
- package/dist/src/types/SimpleTableProps.d.ts +2 -0
- package/dist/src/types/TableRow.d.ts +9 -0
- package/dist/src/utils/bodyCell/types.d.ts +6 -0
- package/dist/src/utils/bodyCellRenderer.d.ts +2 -1
- package/dist/src/utils/headerCell/styling.d.ts +2 -0
- package/dist/src/utils/rowProcessing.d.ts +10 -0
- package/dist/src/utils/rowUtils.d.ts +25 -0
- package/dist/stories/examples/BasicExample.d.ts +1 -0
- package/dist/stories/examples/sales-example/SalesExample.d.ts +3 -0
- package/dist/stories/tests/32-ThemesTests.stories.d.ts +19 -0
- package/dist/stories/tests/41-CellAnimationsTests.stories.d.ts +237 -0
- package/dist/stories/tests/42-CellAnimationsVirtualizationTests.stories.d.ts +251 -0
- package/dist/styles.css +1 -1
- package/package.json +27 -3
- package/src/styles/base.css +15 -0
- package/src/styles/themes/frost.css +3 -2
- package/src/styles/themes/modern-dark.css +3 -2
- package/src/styles/themes/modern-light.css +4 -3
- package/src/styles/themes/theme-custom.css +4 -3
package/README.md
CHANGED
|
@@ -30,6 +30,28 @@ Simple Table provides first-class adapters for the most popular frameworks:
|
|
|
30
30
|
npm install simple-table-core
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
+
Pick the install command for your stack:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# React
|
|
37
|
+
npm install @simple-table/react
|
|
38
|
+
|
|
39
|
+
# Vue 3 / Nuxt
|
|
40
|
+
npm install @simple-table/vue
|
|
41
|
+
|
|
42
|
+
# Angular 17+
|
|
43
|
+
npm install @simple-table/angular
|
|
44
|
+
|
|
45
|
+
# Svelte / SvelteKit
|
|
46
|
+
npm install @simple-table/svelte
|
|
47
|
+
|
|
48
|
+
# Solid / Solid Start
|
|
49
|
+
npm install @simple-table/solid
|
|
50
|
+
|
|
51
|
+
# Vanilla JS / TypeScript / web components
|
|
52
|
+
npm install simple-table-core
|
|
53
|
+
```
|
|
54
|
+
|
|
33
55
|
**[Follow our Quick Start Guide](https://www.simple-table.com/docs/quick-start)** for step-by-step instructions and live examples.
|
|
34
56
|
|
|
35
57
|
## Features
|