@texturehq/edges 1.19.1 → 1.20.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/dist/styles.css CHANGED
@@ -1575,6 +1575,9 @@
1575
1575
  .mr-2 {
1576
1576
  margin-right: var(--spacing-2);
1577
1577
  }
1578
+ .mb-0\.5 {
1579
+ margin-bottom: calc(var(--spacing) * 0.5);
1580
+ }
1578
1581
  .mb-1 {
1579
1582
  margin-bottom: var(--spacing-1);
1580
1583
  }
@@ -1812,6 +1815,9 @@
1812
1815
  .min-h-\[20px\] {
1813
1816
  min-height: 20px;
1814
1817
  }
1818
+ .min-h-\[32px\] {
1819
+ min-height: 32px;
1820
+ }
1815
1821
  .min-h-\[44px\] {
1816
1822
  min-height: 44px;
1817
1823
  }
@@ -1827,6 +1833,9 @@
1827
1833
  .min-h-\[280px\] {
1828
1834
  min-height: 280px;
1829
1835
  }
1836
+ .min-h-\[300px\] {
1837
+ min-height: 300px;
1838
+ }
1830
1839
  .min-h-\[320px\] {
1831
1840
  min-height: 320px;
1832
1841
  }
@@ -2081,6 +2090,9 @@
2081
2090
  .min-w-\[180px\] {
2082
2091
  min-width: 180px;
2083
2092
  }
2093
+ .min-w-\[200px\] {
2094
+ min-width: 200px;
2095
+ }
2084
2096
  .min-w-\[208px\] {
2085
2097
  min-width: 208px;
2086
2098
  }
@@ -2312,6 +2324,9 @@
2312
2324
  .grid-cols-\[1fr_auto\] {
2313
2325
  grid-template-columns: 1fr auto;
2314
2326
  }
2327
+ .grid-cols-\[1fr_auto_auto\] {
2328
+ grid-template-columns: 1fr auto auto;
2329
+ }
2315
2330
  .grid-cols-\[3rem_1fr\] {
2316
2331
  grid-template-columns: 3rem 1fr;
2317
2332
  }
@@ -2498,6 +2513,10 @@
2498
2513
  -moz-column-gap: var(--spacing-0);
2499
2514
  column-gap: var(--spacing-0);
2500
2515
  }
2516
+ .gap-x-1 {
2517
+ -moz-column-gap: var(--spacing-1);
2518
+ column-gap: var(--spacing-1);
2519
+ }
2501
2520
  .gap-x-2 {
2502
2521
  -moz-column-gap: var(--spacing-2);
2503
2522
  column-gap: var(--spacing-2);
@@ -2610,12 +2629,12 @@
2610
2629
  .overflow-y-auto {
2611
2630
  overflow-y: auto;
2612
2631
  }
2613
- .overflow-y-hidden {
2614
- overflow-y: hidden;
2615
- }
2616
2632
  .overscroll-contain {
2617
2633
  overscroll-behavior: contain;
2618
2634
  }
2635
+ .\!rounded-none {
2636
+ border-radius: var(--radius-none) !important;
2637
+ }
2619
2638
  .rounded {
2620
2639
  border-radius: 0.25rem;
2621
2640
  }
@@ -2911,6 +2930,12 @@
2911
2930
  .border-transparent {
2912
2931
  border-color: transparent;
2913
2932
  }
2933
+ .border-white\/30 {
2934
+ border-color: color-mix(in srgb, #ffffff 30%, transparent);
2935
+ @supports (color: color-mix(in lab, red, red)) {
2936
+ border-color: color-mix(in oklab, var(--color-white) 30%, transparent);
2937
+ }
2938
+ }
2914
2939
  .border-yellow-200 {
2915
2940
  border-color: var(--color-yellow-200);
2916
2941
  }
@@ -3031,6 +3056,9 @@
3031
3056
  .bg-border-muted {
3032
3057
  background-color: var(--color-border-muted);
3033
3058
  }
3059
+ .bg-brand-light {
3060
+ background-color: var(--color-brand-light);
3061
+ }
3034
3062
  .bg-brand-primary {
3035
3063
  background-color: var(--color-brand-primary);
3036
3064
  }
@@ -3808,21 +3836,51 @@
3808
3836
  .text-brand-primary {
3809
3837
  color: var(--color-brand-primary);
3810
3838
  }
3839
+ .text-brand-primary\/90 {
3840
+ color: color-mix(in srgb, #444ae1 90%, transparent);
3841
+ @supports (color: color-mix(in lab, red, red)) {
3842
+ color: color-mix(in oklab, var(--color-brand-primary) 90%, transparent);
3843
+ }
3844
+ }
3811
3845
  .text-current {
3812
3846
  color: currentcolor;
3813
3847
  }
3814
3848
  .text-feedback-error-text {
3815
3849
  color: var(--color-feedback-error-text);
3816
3850
  }
3851
+ .text-feedback-error-text\/90 {
3852
+ color: color-mix(in srgb, #b91c1c 90%, transparent);
3853
+ @supports (color: color-mix(in lab, red, red)) {
3854
+ color: color-mix(in oklab, var(--color-feedback-error-text) 90%, transparent);
3855
+ }
3856
+ }
3817
3857
  .text-feedback-info-text {
3818
3858
  color: var(--color-feedback-info-text);
3819
3859
  }
3860
+ .text-feedback-info-text\/90 {
3861
+ color: color-mix(in srgb, #2563eb 90%, transparent);
3862
+ @supports (color: color-mix(in lab, red, red)) {
3863
+ color: color-mix(in oklab, var(--color-feedback-info-text) 90%, transparent);
3864
+ }
3865
+ }
3820
3866
  .text-feedback-success-text {
3821
3867
  color: var(--color-feedback-success-text);
3822
3868
  }
3869
+ .text-feedback-success-text\/90 {
3870
+ color: color-mix(in srgb, #065f46 90%, transparent);
3871
+ @supports (color: color-mix(in lab, red, red)) {
3872
+ color: color-mix(in oklab, var(--color-feedback-success-text) 90%, transparent);
3873
+ }
3874
+ }
3823
3875
  .text-feedback-warning-text {
3824
3876
  color: var(--color-feedback-warning-text);
3825
3877
  }
3878
+ .text-feedback-warning-text\/90 {
3879
+ color: color-mix(in srgb, #92400e 90%, transparent);
3880
+ @supports (color: color-mix(in lab, red, red)) {
3881
+ color: color-mix(in oklab, var(--color-feedback-warning-text) 90%, transparent);
3882
+ }
3883
+ }
3826
3884
  .text-gray-300 {
3827
3885
  color: var(--color-gray-300);
3828
3886
  }
@@ -3952,6 +4010,12 @@
3952
4010
  .text-white {
3953
4011
  color: var(--color-white);
3954
4012
  }
4013
+ .text-white\/90 {
4014
+ color: color-mix(in srgb, #ffffff 90%, transparent);
4015
+ @supports (color: color-mix(in lab, red, red)) {
4016
+ color: color-mix(in oklab, var(--color-white) 90%, transparent);
4017
+ }
4018
+ }
3955
4019
  .text-yellow-500 {
3956
4020
  color: var(--color-yellow-500);
3957
4021
  }
@@ -3996,6 +4060,9 @@
3996
4060
  text-decoration-color: color-mix(in oklab, var(--color-text-link-default) 30%, transparent);
3997
4061
  }
3998
4062
  }
4063
+ .decoration-dotted {
4064
+ text-decoration-style: dotted;
4065
+ }
3999
4066
  .decoration-1 {
4000
4067
  text-decoration-thickness: 1px;
4001
4068
  }
@@ -4127,6 +4194,9 @@
4127
4194
  --tw-ring-color: color-mix(in oklab, var(--color-black) 5%, transparent);
4128
4195
  }
4129
4196
  }
4197
+ .ring-border-default {
4198
+ --tw-ring-color: var(--color-border-default);
4199
+ }
4130
4200
  .ring-border-muted {
4131
4201
  --tw-ring-color: var(--color-border-muted);
4132
4202
  }
@@ -4806,6 +4876,26 @@
4806
4876
  }
4807
4877
  }
4808
4878
  }
4879
+ .hover\:bg-white\/10 {
4880
+ &:hover {
4881
+ @media (hover: hover) {
4882
+ background-color: color-mix(in srgb, #ffffff 10%, transparent);
4883
+ @supports (color: color-mix(in lab, red, red)) {
4884
+ background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
4885
+ }
4886
+ }
4887
+ }
4888
+ }
4889
+ .hover\:bg-white\/90 {
4890
+ &:hover {
4891
+ @media (hover: hover) {
4892
+ background-color: color-mix(in srgb, #ffffff 90%, transparent);
4893
+ @supports (color: color-mix(in lab, red, red)) {
4894
+ background-color: color-mix(in oklab, var(--color-white) 90%, transparent);
4895
+ }
4896
+ }
4897
+ }
4898
+ }
4809
4899
  .hover\:font-semibold {
4810
4900
  &:hover {
4811
4901
  @media (hover: hover) {
@@ -4866,6 +4956,16 @@
4866
4956
  }
4867
4957
  }
4868
4958
  }
4959
+ .hover\:text-white\/80 {
4960
+ &:hover {
4961
+ @media (hover: hover) {
4962
+ color: color-mix(in srgb, #ffffff 80%, transparent);
4963
+ @supports (color: color-mix(in lab, red, red)) {
4964
+ color: color-mix(in oklab, var(--color-white) 80%, transparent);
4965
+ }
4966
+ }
4967
+ }
4968
+ }
4869
4969
  .hover\:underline {
4870
4970
  &:hover {
4871
4971
  @media (hover: hover) {
@@ -5049,6 +5149,11 @@
5049
5149
  outline-style: none;
5050
5150
  }
5051
5151
  }
5152
+ .active\:bg-background-muted {
5153
+ &:active {
5154
+ background-color: var(--color-background-muted);
5155
+ }
5156
+ }
5052
5157
  .disabled\:cursor-not-allowed {
5053
5158
  &:disabled {
5054
5159
  cursor: not-allowed;
@@ -5255,6 +5360,16 @@
5255
5360
  grid-column: 1 / -1;
5256
5361
  }
5257
5362
  }
5363
+ .sm\:block {
5364
+ @media (width >= 40rem) {
5365
+ display: block;
5366
+ }
5367
+ }
5368
+ .sm\:flex {
5369
+ @media (width >= 40rem) {
5370
+ display: flex;
5371
+ }
5372
+ }
5258
5373
  .sm\:grid {
5259
5374
  @media (width >= 40rem) {
5260
5375
  display: grid;
@@ -5265,6 +5380,11 @@
5265
5380
  display: none;
5266
5381
  }
5267
5382
  }
5383
+ .sm\:inline {
5384
+ @media (width >= 40rem) {
5385
+ display: inline;
5386
+ }
5387
+ }
5268
5388
  .sm\:max-w-\[300px\] {
5269
5389
  @media (width >= 40rem) {
5270
5390
  max-width: 300px;
@@ -6252,11 +6372,6 @@
6252
6372
  color: var(--color-blue-200);
6253
6373
  }
6254
6374
  }
6255
- .dark\:text-gray-100 {
6256
- @media (prefers-color-scheme: dark) {
6257
- color: var(--color-gray-100);
6258
- }
6259
- }
6260
6375
  .dark\:text-gray-300 {
6261
6376
  @media (prefers-color-scheme: dark) {
6262
6377
  color: var(--color-gray-300);
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.19.1",
3
- "generatedAt": "2025-11-13T15:17:14.791Z",
2
+ "version": "1.20.0",
3
+ "generatedAt": "2025-11-14T21:18:25.919Z",
4
4
  "categories": {
5
5
  "hooks": {
6
6
  "description": "React hooks for common functionality like breakpoints, debouncing, local storage, and media queries",
package/package.json CHANGED
@@ -1,174 +1,176 @@
1
1
  {
2
- "name": "@texturehq/edges",
3
- "version": "1.19.1",
4
- "author": "Nicholas Brown <nick@texturehq.com>",
5
- "description": "A shared component library for Texture",
6
- "type": "module",
7
- "main": "./dist/index.js",
8
- "module": "./dist/index.js",
9
- "types": "./dist/index.d.ts",
10
- "sideEffects": false,
11
- "files": [
12
- "dist/**",
13
- "templates/**",
14
- "scripts/**"
15
- ],
16
- "exports": {
17
- ".": {
18
- "types": "./dist/index.d.ts",
19
- "react-server": "./dist/server.js",
20
- "import": "./dist/index.js",
21
- "default": "./dist/index.js"
22
- },
23
- "./server": {
24
- "types": "./dist/server.d.ts",
25
- "import": "./dist/server.js",
26
- "default": "./dist/server.js"
27
- },
28
- "./rhf": {
29
- "types": "./dist/rhf/index.d.ts",
30
- "import": "./dist/rhf/index.js",
31
- "default": "./dist/rhf/index.js"
32
- },
33
- "./form": {
34
- "types": "./dist/form/index.d.ts",
35
- "import": "./dist/form/index.js",
36
- "default": "./dist/form/index.js"
37
- },
38
- "./styles.css": "./dist/styles.css",
39
- "./dist/styles.css": "./dist/styles.css",
40
- "./theme.css": "./dist/theme.css",
41
- "./dist/theme.css": "./dist/theme.css"
42
- },
43
- "scripts": {
44
- "dev": "yarn watch",
45
- "watch": "tsup --watch",
46
- "build": "yarn tokens:build && tsup && yarn build:post",
47
- "build:post": "postcss src/styles.css -o dist/styles.css && node scripts/copy-assets.js && node scripts/generate-edges-docs.js",
48
- "tokens:build": "node style-dictionary.config.mjs && node scripts/generate-viz-runtime.js",
49
- "tokens:build:tailwind": "node style-dictionary.config.mjs",
50
- "tokens:watch": "nodemon --watch tokens --ext json --exec 'yarn tokens:build'",
51
- "tokens:watch:tailwind": "nodemon --watch tokens --ext json --exec 'yarn tokens:build:tailwind'",
52
- "tokens:validate": "node scripts/validate-tokens.js",
53
- "build:yalc": "yarn build && npx yalc publish && npx yalc push",
54
- "dev:yalc": "yarn build && npx yalc publish && npx yalc push && echo 'Package updated! Run in target project: yarn install && yarn dev'",
55
- "dev:yalc:force": "yarn build && npx yalc publish && npx yalc push && echo 'Package updated! Run in target project: rm -rf .vite && yarn cache clean && yarn dev --force'",
56
- "clean": "rm -rf dist",
57
- "lint": "biome check src/",
58
- "lint:quiet": "biome check --reporter=github src/",
59
- "lint:fix": "biome check --write src/",
60
- "format": "biome format --write src/",
61
- "format:check": "biome format src/",
62
- "test": "vitest run",
63
- "test:watch": "vitest",
64
- "test:coverage": "vitest run --coverage",
65
- "test:ui": "vitest --ui",
66
- "storybook": "VITE_MAPBOX_ACCESS_TOKEN=pk.eyJ1IjoidmljdG9yLXRleHR1cmUiLCJhIjoiY2x1cXM5dnVqMDFvYTJrcWszbnZmdGo4cCJ9.uEu0gqmITLtBMKEVW0aFtA storybook dev -p 6010 --no-open",
67
- "build-storybook": "storybook build",
68
- "postinstall": "node scripts/setup-cursor-rules.js || echo \"! setup-cursor-rules: non-fatal error\""
69
- },
70
- "peerDependencies": {
71
- "@hookform/resolvers": "^3.x",
72
- "next": "*",
73
- "react": "^19.0.0",
74
- "react-dom": "^19.0.0",
75
- "react-hook-form": "^7.x",
76
- "zod": "^3.x"
77
- },
78
- "peerDependenciesMeta": {
79
- "@hookform/resolvers": {
80
- "optional": true
81
- },
82
- "react-hook-form": {
83
- "optional": true
84
- },
85
- "zod": {
86
- "optional": true
87
- }
88
- },
89
- "dependencies": {
90
- "@phosphor-icons/react": "^2.1.7",
91
- "@tanstack/react-virtual": "^3.13.12",
92
- "@tiptap/core": "^3.4.5",
93
- "@tiptap/extension-link": "^3.4.5",
94
- "@tiptap/pm": "^3.4.5",
95
- "@tiptap/react": "^3.4.5",
96
- "@tiptap/starter-kit": "^3.4.5",
97
- "@types/react-map-gl": "6.1.6",
98
- "@visx/axis": "^3.10.1",
99
- "@visx/brush": "^3.12.0",
100
- "@visx/curve": "^3.3.0",
101
- "@visx/drag": "^3.12.0",
102
- "@visx/event": "^3.3.0",
103
- "@visx/gradient": "^3.3.0",
104
- "@visx/pattern": "^3.12.0",
105
- "@visx/responsive": "^3.10.2",
106
- "@visx/scale": "^3.5.0",
107
- "@visx/shape": "^3.5.0",
108
- "@visx/tooltip": "^3.3.0",
109
- "@visx/zoom": "^3.12.0",
110
- "ace-builds": "^1.43.3",
111
- "d3-array": "^3.2.4",
112
- "date-fns": "^4.1.0",
113
- "file-saver": "^2.0.5",
114
- "filestack-react": "^6.0.0",
115
- "framer-motion": "^12.23.18",
116
- "fuse.js": "^7.0.0",
117
- "lucide-react": "^0.544.0",
118
- "luxon": "^3.4.4",
119
- "mapbox-gl": "3.7.0",
120
- "next-intl": "^4.0.2",
121
- "papaparse": "^5.5.3",
122
- "react-ace": "^14.0.1",
123
- "react-aria-components": "^1.7.1",
124
- "react-colorful": "^5.6.1",
125
- "react-map-gl": "7.1.7",
126
- "react-stately": "^3.35.0",
127
- "tailwind-merge": "^3.2.0"
128
- },
129
- "devDependencies": {
130
- "@biomejs/biome": "^2.2.4",
131
- "@hookform/resolvers": "^3.9.0",
132
- "@storybook/addon-essentials": "^8.6.14",
133
- "@storybook/addon-interactions": "^8.6.14",
134
- "@storybook/addon-styling-webpack": "^1.0.1",
135
- "@storybook/addon-themes": "^8.6.14",
136
- "@storybook/blocks": "^8.6.14",
137
- "@storybook/react": "^8.6.14",
138
- "@storybook/react-vite": "^8.6.14",
139
- "@storybook/test": "^8.6.14",
140
- "@tailwindcss/postcss": "^4.1.14",
141
- "@testing-library/dom": "^10.4.0",
142
- "@testing-library/jest-dom": "^6.4.2",
143
- "@testing-library/react": "^16.3.0",
144
- "@testing-library/user-event": "^14.5.2",
145
- "@types/file-saver": "^2.0.7",
146
- "@types/luxon": "^3.7.1",
147
- "@types/node": "^20.11.30",
148
- "@types/papaparse": "^5.3.16",
149
- "@types/react": "^19.2.2",
150
- "@types/react-dom": "^19.2.1",
151
- "@vitejs/plugin-react": "^4.2.1",
152
- "@vitest/coverage-v8": "^3.1.1",
153
- "@vitest/ui": "^3.1.1",
154
- "acorn": "^8.15.0",
155
- "acorn-jsx": "^5.3.2",
156
- "autoprefixer": "^10.4.19",
157
- "jsdom": "^24.0.0",
158
- "postcss": "^8.5.6",
159
- "postcss-cli": "^11.0.0",
160
- "react": "19.2.0",
161
- "react-dom": "19.2.0",
162
- "react-hook-form": "^7.53.0",
163
- "storybook": "^8.6.14",
164
- "style-dictionary": "^5.0.4",
165
- "tailwindcss": "^4.1.14",
166
- "tsup": "^8.0.2",
167
- "typescript": "~5.9.2",
168
- "vite": "^5.1.6",
169
- "vite-plugin-svgr": "^4.3.0",
170
- "vitest": "^3.1.1",
171
- "yalc": "^1.0.0-pre.53",
172
- "zod": "^3.23.8"
173
- }
2
+ "name": "@texturehq/edges",
3
+ "version": "1.20.0",
4
+ "author": "Nicholas Brown <nick@texturehq.com>",
5
+ "description": "A shared component library for Texture",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "sideEffects": false,
11
+ "files": [
12
+ "dist/**",
13
+ "templates/**",
14
+ "scripts/**"
15
+ ],
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/index.d.ts",
19
+ "react-server": "./dist/server.js",
20
+ "import": "./dist/index.js",
21
+ "default": "./dist/index.js"
22
+ },
23
+ "./server": {
24
+ "types": "./dist/server.d.ts",
25
+ "import": "./dist/server.js",
26
+ "default": "./dist/server.js"
27
+ },
28
+ "./rhf": {
29
+ "types": "./dist/rhf/index.d.ts",
30
+ "import": "./dist/rhf/index.js",
31
+ "default": "./dist/rhf/index.js"
32
+ },
33
+ "./form": {
34
+ "types": "./dist/form/index.d.ts",
35
+ "import": "./dist/form/index.js",
36
+ "default": "./dist/form/index.js"
37
+ },
38
+ "./styles.css": "./dist/styles.css",
39
+ "./dist/styles.css": "./dist/styles.css",
40
+ "./theme.css": "./dist/theme.css",
41
+ "./dist/theme.css": "./dist/theme.css"
42
+ },
43
+ "scripts": {
44
+ "dev": "yarn watch",
45
+ "watch": "tsup --watch",
46
+ "build": "yarn tokens:build && tsup && yarn build:post",
47
+ "build:post": "postcss src/styles.css -o dist/styles.css && node scripts/copy-assets.js && node scripts/generate-edges-docs.js",
48
+ "tokens:build": "node style-dictionary.config.mjs && node scripts/generate-viz-runtime.js",
49
+ "tokens:build:tailwind": "node style-dictionary.config.mjs",
50
+ "tokens:watch": "nodemon --watch tokens --ext json --exec 'yarn tokens:build'",
51
+ "tokens:watch:tailwind": "nodemon --watch tokens --ext json --exec 'yarn tokens:build:tailwind'",
52
+ "tokens:validate": "node scripts/validate-tokens.js",
53
+ "build:yalc": "yarn build && npx yalc publish && npx yalc push",
54
+ "dev:yalc": "yarn build && npx yalc publish && npx yalc push && echo 'Package updated! Run in target project: yarn install && yarn dev'",
55
+ "dev:yalc:force": "yarn build && npx yalc publish && npx yalc push && echo 'Package updated! Run in target project: rm -rf .vite && yarn cache clean && yarn dev --force'",
56
+ "clean": "rm -rf dist",
57
+ "lint": "biome check src/",
58
+ "lint:quiet": "biome check --reporter=github src/",
59
+ "lint:fix": "biome check --write src/",
60
+ "format": "biome format --write src/",
61
+ "format:check": "biome format src/",
62
+ "test": "vitest run",
63
+ "test:watch": "vitest",
64
+ "test:coverage": "vitest run --coverage",
65
+ "test:ui": "vitest --ui",
66
+ "storybook": "VITE_MAPBOX_ACCESS_TOKEN=pk.eyJ1IjoidmljdG9yLXRleHR1cmUiLCJhIjoiY2x1cXM5dnVqMDFvYTJrcWszbnZmdGo4cCJ9.uEu0gqmITLtBMKEVW0aFtA storybook dev -p 6010 --no-open",
67
+ "build-storybook": "storybook build",
68
+ "postinstall": "node scripts/setup-cursor-rules.js || echo \"! setup-cursor-rules: non-fatal error\""
69
+ },
70
+ "peerDependencies": {
71
+ "@hookform/resolvers": "^3.x",
72
+ "next": "*",
73
+ "react": "^19.0.0",
74
+ "react-dom": "^19.0.0",
75
+ "react-hook-form": "^7.x",
76
+ "zod": "^3.x"
77
+ },
78
+ "peerDependenciesMeta": {
79
+ "@hookform/resolvers": {
80
+ "optional": true
81
+ },
82
+ "react-hook-form": {
83
+ "optional": true
84
+ },
85
+ "zod": {
86
+ "optional": true
87
+ }
88
+ },
89
+ "dependencies": {
90
+ "@phosphor-icons/react": "^2.1.7",
91
+ "@tanstack/react-virtual": "^3.13.12",
92
+ "@tiptap/core": "^3.4.5",
93
+ "@tiptap/extension-link": "^3.4.5",
94
+ "@tiptap/pm": "^3.4.5",
95
+ "@tiptap/react": "^3.4.5",
96
+ "@tiptap/starter-kit": "^3.4.5",
97
+ "@types/react-map-gl": "6.1.6",
98
+ "@visx/axis": "^3.10.1",
99
+ "@visx/brush": "^3.12.0",
100
+ "@visx/curve": "^3.3.0",
101
+ "@visx/drag": "^3.12.0",
102
+ "@visx/event": "^3.3.0",
103
+ "@visx/gradient": "^3.3.0",
104
+ "@visx/pattern": "^3.12.0",
105
+ "@visx/responsive": "^3.10.2",
106
+ "@visx/scale": "^3.5.0",
107
+ "@visx/shape": "^3.5.0",
108
+ "@visx/tooltip": "^3.3.0",
109
+ "@visx/zoom": "^3.12.0",
110
+ "ace-builds": "^1.43.3",
111
+ "chance": "^1.1.13",
112
+ "d3-array": "^3.2.4",
113
+ "date-fns": "^4.1.0",
114
+ "file-saver": "^2.0.5",
115
+ "filestack-react": "^6.0.0",
116
+ "framer-motion": "^12.23.18",
117
+ "fuse.js": "^7.0.0",
118
+ "lucide-react": "^0.544.0",
119
+ "luxon": "^3.4.4",
120
+ "mapbox-gl": "3.7.0",
121
+ "next-intl": "^4.0.2",
122
+ "papaparse": "^5.5.3",
123
+ "react-ace": "^14.0.1",
124
+ "react-aria-components": "^1.7.1",
125
+ "react-colorful": "^5.6.1",
126
+ "react-map-gl": "7.1.7",
127
+ "react-stately": "^3.35.0",
128
+ "tailwind-merge": "^3.2.0"
129
+ },
130
+ "devDependencies": {
131
+ "@biomejs/biome": "^2.2.4",
132
+ "@hookform/resolvers": "^3.9.0",
133
+ "@storybook/addon-essentials": "^8.6.14",
134
+ "@storybook/addon-interactions": "^8.6.14",
135
+ "@storybook/addon-styling-webpack": "^1.0.1",
136
+ "@storybook/addon-themes": "^8.6.14",
137
+ "@storybook/blocks": "^8.6.14",
138
+ "@storybook/react": "^8.6.14",
139
+ "@storybook/react-vite": "^8.6.14",
140
+ "@storybook/test": "^8.6.14",
141
+ "@tailwindcss/postcss": "^4.1.14",
142
+ "@testing-library/dom": "^10.4.0",
143
+ "@testing-library/jest-dom": "^6.4.2",
144
+ "@testing-library/react": "^16.3.0",
145
+ "@testing-library/user-event": "^14.5.2",
146
+ "@types/chance": "^1.1.7",
147
+ "@types/file-saver": "^2.0.7",
148
+ "@types/luxon": "^3.7.1",
149
+ "@types/node": "^20.11.30",
150
+ "@types/papaparse": "^5.3.16",
151
+ "@types/react": "^19.2.2",
152
+ "@types/react-dom": "^19.2.1",
153
+ "@vitejs/plugin-react": "^4.2.1",
154
+ "@vitest/coverage-v8": "^3.1.1",
155
+ "@vitest/ui": "^3.1.1",
156
+ "acorn": "^8.15.0",
157
+ "acorn-jsx": "^5.3.2",
158
+ "autoprefixer": "^10.4.19",
159
+ "jsdom": "^24.0.0",
160
+ "postcss": "^8.5.6",
161
+ "postcss-cli": "^11.0.0",
162
+ "react": "19.2.0",
163
+ "react-dom": "19.2.0",
164
+ "react-hook-form": "^7.53.0",
165
+ "storybook": "^8.6.14",
166
+ "style-dictionary": "^5.0.4",
167
+ "tailwindcss": "^4.1.14",
168
+ "tsup": "^8.0.2",
169
+ "typescript": "~5.9.2",
170
+ "vite": "^5.1.6",
171
+ "vite-plugin-svgr": "^4.3.0",
172
+ "vitest": "^3.1.1",
173
+ "yalc": "^1.0.0-pre.53",
174
+ "zod": "^3.23.8"
175
+ }
174
176
  }