@startsimpli/funnels 0.1.2

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.
Files changed (41) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +564 -0
  3. package/dist/client-3ESO2NHy.d.ts +310 -0
  4. package/dist/client-CZu03ACp.d.cts +310 -0
  5. package/dist/components/index.cjs +3243 -0
  6. package/dist/components/index.cjs.map +1 -0
  7. package/dist/components/index.css +198 -0
  8. package/dist/components/index.css.map +1 -0
  9. package/dist/components/index.d.cts +726 -0
  10. package/dist/components/index.d.ts +726 -0
  11. package/dist/components/index.js +3196 -0
  12. package/dist/components/index.js.map +1 -0
  13. package/dist/core/index.cjs +500 -0
  14. package/dist/core/index.cjs.map +1 -0
  15. package/dist/core/index.d.cts +359 -0
  16. package/dist/core/index.d.ts +359 -0
  17. package/dist/core/index.js +486 -0
  18. package/dist/core/index.js.map +1 -0
  19. package/dist/hooks/index.cjs +21 -0
  20. package/dist/hooks/index.cjs.map +1 -0
  21. package/dist/hooks/index.d.cts +11 -0
  22. package/dist/hooks/index.d.ts +11 -0
  23. package/dist/hooks/index.js +19 -0
  24. package/dist/hooks/index.js.map +1 -0
  25. package/dist/index-BGDEXbuz.d.cts +434 -0
  26. package/dist/index-BGDEXbuz.d.ts +434 -0
  27. package/dist/index.cjs +4499 -0
  28. package/dist/index.cjs.map +1 -0
  29. package/dist/index.css +198 -0
  30. package/dist/index.css.map +1 -0
  31. package/dist/index.d.cts +99 -0
  32. package/dist/index.d.ts +99 -0
  33. package/dist/index.js +4421 -0
  34. package/dist/index.js.map +1 -0
  35. package/dist/store/index.cjs +391 -0
  36. package/dist/store/index.cjs.map +1 -0
  37. package/dist/store/index.d.cts +225 -0
  38. package/dist/store/index.d.ts +225 -0
  39. package/dist/store/index.js +388 -0
  40. package/dist/store/index.js.map +1 -0
  41. package/package.json +122 -0
package/package.json ADDED
@@ -0,0 +1,122 @@
1
+ {
2
+ "name": "@startsimpli/funnels",
3
+ "version": "0.1.2",
4
+ "description": "Brutally generic filtering pipeline package for any Simpli product",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./core": {
16
+ "types": "./dist/core/index.d.ts",
17
+ "import": "./dist/core/index.js",
18
+ "require": "./dist/core/index.cjs"
19
+ },
20
+ "./components": {
21
+ "types": "./dist/components/index.d.ts",
22
+ "import": "./dist/components/index.js",
23
+ "require": "./dist/components/index.cjs"
24
+ },
25
+ "./components.css": "./dist/components/index.css",
26
+ "./hooks": {
27
+ "types": "./dist/hooks/index.d.ts",
28
+ "import": "./dist/hooks/index.js",
29
+ "require": "./dist/hooks/index.cjs"
30
+ },
31
+ "./store": {
32
+ "types": "./dist/store/index.d.ts",
33
+ "import": "./dist/store/index.js",
34
+ "require": "./dist/store/index.cjs"
35
+ }
36
+ },
37
+ "files": [
38
+ "dist",
39
+ "README.md",
40
+ "LICENSE"
41
+ ],
42
+ "publishConfig": {
43
+ "access": "public"
44
+ },
45
+ "keywords": [
46
+ "funnel",
47
+ "filter",
48
+ "pipeline",
49
+ "generic",
50
+ "entity-processing",
51
+ "react",
52
+ "typescript",
53
+ "zustand",
54
+ "filtering",
55
+ "data-processing",
56
+ "brutally-generic",
57
+ "simpli"
58
+ ],
59
+ "author": "Simpli",
60
+ "license": "MIT",
61
+ "repository": {
62
+ "type": "git",
63
+ "url": "https://github.com/simpli/start-simpli-api",
64
+ "directory": "packages/funnels"
65
+ },
66
+ "bugs": {
67
+ "url": "https://github.com/simpli/start-simpli-api/issues"
68
+ },
69
+ "homepage": "https://github.com/simpli/start-simpli-api/tree/main/packages/funnels#readme",
70
+ "scripts": {
71
+ "build": "tsup",
72
+ "dev": "tsup --watch",
73
+ "type-check": "tsc --noEmit",
74
+ "test": "vitest run",
75
+ "test:watch": "vitest",
76
+ "test:coverage": "vitest run --coverage",
77
+ "clean": "rm -rf dist",
78
+ "storybook": "storybook dev -p 6006",
79
+ "build-storybook": "storybook build",
80
+ "storybook:ci": "storybook build --test"
81
+ },
82
+ "peerDependencies": {
83
+ "react": "^18.0.0 || ^19.0.0",
84
+ "react-dom": "^18.0.0 || ^19.0.0",
85
+ "zustand": "^4.0.0 || ^5.0.0"
86
+ },
87
+ "devDependencies": {
88
+ "@chromatic-com/storybook": "^5.0.1",
89
+ "@storybook/addon-a11y": "^10.2.8",
90
+ "@storybook/addon-docs": "^10.2.8",
91
+ "@storybook/addon-essentials": "^8.6.14",
92
+ "@storybook/addon-interactions": "^8.6.14",
93
+ "@storybook/addon-links": "^10.2.8",
94
+ "@storybook/addon-onboarding": "^10.2.8",
95
+ "@storybook/addon-vitest": "^10.2.8",
96
+ "@storybook/react-vite": "^10.2.8",
97
+ "@testing-library/jest-dom": "^6.9.1",
98
+ "@testing-library/react": "^16.3.2",
99
+ "@testing-library/user-event": "^14.6.1",
100
+ "@types/node": "^20.0.0",
101
+ "@types/react": "^19.2.14",
102
+ "@types/react-dom": "^19.2.3",
103
+ "@vitejs/plugin-react": "^5.1.4",
104
+ "@vitest/browser": "^2.0.0",
105
+ "@vitest/coverage-v8": "^2.0.0",
106
+ "jsdom": "^28.0.0",
107
+ "playwright": "^1.58.2",
108
+ "react": "^19.2.4",
109
+ "react-dom": "^19.2.4",
110
+ "storybook": "^10.2.8",
111
+ "tsup": "^8.5.1",
112
+ "typescript": "^5.9.3",
113
+ "vitest": "^2.0.0",
114
+ "zustand": "^5.0.11"
115
+ },
116
+ "dependencies": {
117
+ "@dnd-kit/core": "^6.1.0",
118
+ "@dnd-kit/sortable": "^8.0.0",
119
+ "@dnd-kit/utilities": "^3.2.2",
120
+ "@xyflow/react": "^12.10.0"
121
+ }
122
+ }