-
Notifications
You must be signed in to change notification settings - Fork 556
feat(chat): include in UMD build #6793
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 7 commits
562ee47
a25f9ce
77aca45
b94ad4b
4276e15
3834d9f
752540e
26d65e7
b7e1292
3d46672
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| // Placeholder export for 'zod' module | ||
| export const ZodFirstPartyTypeKind = {}; | ||
| export const toJSONSchema = {}; | ||
| export const safeParseAsync = {}; | ||
| export const z = new Proxy( | ||
|
||
| {}, | ||
| { | ||
| get: (_, name) => | ||
| name === '~standard' | ||
| ? { validate: (value) => Promise.resolve({ issues: null, value }) } | ||
| : function () { | ||
| return this; | ||
| }, | ||
| } | ||
| ); | ||
|
|
||
| // Placeholder export for 'react' module | ||
| export const cloneElement = {}; | ||
| export const createElement = {}; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28367,6 +28367,13 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: | |
| hash-base "^2.0.0" | ||
| inherits "^2.0.1" | ||
|
|
||
| [email protected]: | ||
| version "2.2.0" | ||
| resolved "https://registry.yarnpkg.com/rollup-plugin-alias/-/rollup-plugin-alias-2.2.0.tgz#5004a2bc542a2eebb45b5a0fff8c6f540439decc" | ||
| integrity sha512-9ZK410qeFed4gGrHoojBpxLsHF74vPgsheGg9JRW5RbALAxqdvJbd357mSqWBqUrBfRVnZnNUXTZdYLxxQEA5A== | ||
| dependencies: | ||
| slash "^3.0.0" | ||
|
|
||
| [email protected]: | ||
| version "4.3.3" | ||
| resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.3.3.tgz#7eb5ac16d9b5831c3fd5d97e8df77ba25c72a2aa" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.