@factorialco/f0-react 1.401.1 → 1.402.3
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/{F0AiChat-CpaeHxvD.js → F0AiChat-Cmir88Ar.js} +239 -237
- package/dist/{F0HILActionConfirmation-D4x8J8fX.js → F0HILActionConfirmation-B3Hwp5tS.js} +1 -1
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +3 -1
- package/dist/experimental.js +3868 -4329
- package/dist/f0.d.ts +247 -14
- package/dist/f0.js +16024 -15586
- package/dist/styles.css +1 -1
- package/dist/{useDataCollectionSource-BUi4l1cD.js → useDataCollectionSource-T2-Pxmlu.js} +11019 -10556
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@factorialco/f0-react",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"main": "dist/f0.js",
|
|
5
|
-
"typings": "dist/f0.d.ts",
|
|
3
|
+
"version": "1.402.3",
|
|
6
4
|
"private": false,
|
|
7
5
|
"files": [
|
|
8
6
|
"assets",
|
|
@@ -17,6 +15,8 @@
|
|
|
17
15
|
"sideEffects": [
|
|
18
16
|
"**/*.css"
|
|
19
17
|
],
|
|
18
|
+
"main": "dist/f0.js",
|
|
19
|
+
"typings": "dist/f0.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@atlaskit/pragmatic-drag-and-drop": "^1.7.4",
|
|
22
22
|
"@atlaskit/pragmatic-drag-and-drop-flourish": "^2.0.4",
|
|
@@ -106,10 +106,10 @@
|
|
|
106
106
|
"@chromatic-com/storybook": "^5.0.0",
|
|
107
107
|
"@commitlint/cli": "^19.7.1",
|
|
108
108
|
"@commitlint/config-conventional": "^19.7.1",
|
|
109
|
-
"@livekit/components-react": "^2.9.19",
|
|
110
109
|
"@emoji-mart/data": "^1.2.1",
|
|
111
110
|
"@emoji-mart/react": "^1.1.1",
|
|
112
111
|
"@emotion/is-prop-valid": "^1.3.1",
|
|
112
|
+
"@livekit/components-react": "^2.9.19",
|
|
113
113
|
"@mdx-js/react": "^3.1.1",
|
|
114
114
|
"@microsoft/api-extractor": "7.52.8",
|
|
115
115
|
"@playwright/test": "^1.57.0",
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"build:prepare": "pnpm run build:types && run-p build-icons",
|
|
236
236
|
"start": "pnpm run dev",
|
|
237
237
|
"size": "pnpm run build && size-limit",
|
|
238
|
-
"build": "tsc --project ./tsconfig-build.json && run-p build-icons && BUILD_TYPES=true vite build -- --tailwind",
|
|
238
|
+
"build": "tsc --project ./tsconfig-build.json && run-p build-icons && NODE_OPTIONS=--max-old-space-size=8192 BUILD_TYPES=true vite build -- --tailwind",
|
|
239
239
|
"build:tsup": "tsup && pnpm run build:tailwind && run-p build-icons",
|
|
240
240
|
"build-icons": "tsc --project ./tsconfig-build-icons.json",
|
|
241
241
|
"build:tailwind": "NODE_ENV=production tailwindcss -i src/styles.css -o ./dist/styles.css --postcss --minify",
|