-
Notifications
You must be signed in to change notification settings - Fork 557
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
562ee47
feat(chat): include in UMD build
Haroenv a25f9ce
removed eventsource-stream mock, and implemented proper one for zod
aymeric-giraudet 77aca45
increase bundlesize limits
aymeric-giraudet b94ad4b
fix storybook build
aymeric-giraudet 4276e15
Merge branch 'master' into feat/chat-in-umd
aymeric-giraudet 3834d9f
bundlesize again
aymeric-giraudet 752540e
storybook
aymeric-giraudet 26d65e7
Merge branch 'master' into feat/chat-in-umd
aymeric-giraudet b7e1292
storybook build ?
aymeric-giraudet 3d46672
support IE11 by mocking each function instead of using proxy
aymeric-giraudet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,97 @@ | ||
| // Placeholder export for 'zod' module | ||
| export const ZodFirstPartyTypeKind = {}; | ||
| export const toJSONSchema = {}; | ||
| export const safeParseAsync = {}; | ||
| export const z = { | ||
| string() { | ||
| return this; | ||
| }, | ||
| instanceof() { | ||
| return this; | ||
| }, | ||
| custom() { | ||
| return this; | ||
| }, | ||
| object() { | ||
| return this; | ||
| }, | ||
| array() { | ||
| return this; | ||
| }, | ||
| union() { | ||
| return this; | ||
| }, | ||
| literal() { | ||
| return this; | ||
| }, | ||
| lazy() { | ||
| return this; | ||
| }, | ||
| null() { | ||
| return this; | ||
| }, | ||
| number() { | ||
| return this; | ||
| }, | ||
| boolean() { | ||
| return this; | ||
| }, | ||
| record() { | ||
| return this; | ||
| }, | ||
| optional() { | ||
| return this; | ||
| }, | ||
| unknown() { | ||
| return this; | ||
| }, | ||
| discriminatedUnion() { | ||
| return this; | ||
| }, | ||
| strictObject() { | ||
| return this; | ||
| }, | ||
| startsWith() { | ||
| return this; | ||
| }, | ||
| looseObject() { | ||
| return this; | ||
| }, | ||
| loose() { | ||
| return this; | ||
| }, | ||
| base64() { | ||
| return this; | ||
| }, | ||
| extend() { | ||
| return this; | ||
| }, | ||
| default() { | ||
| return this; | ||
| }, | ||
| or() { | ||
| return this; | ||
| }, | ||
| int() { | ||
| return this; | ||
| }, | ||
| merge() { | ||
| return this; | ||
| }, | ||
| strict() { | ||
| return this; | ||
| }, | ||
| enum() { | ||
| return this; | ||
| }, | ||
| never() { | ||
| return this; | ||
| }, | ||
| '~standard': { | ||
| validate: (value) => Promise.resolve({ issues: null, value }), | ||
| }, | ||
| }; | ||
|
|
||
| // Placeholder export for 'react' module | ||
| export const cloneElement = {}; | ||
| export const createElement = {}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28343,6 +28343,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" | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.