-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into fix/peer-deps
- Loading branch information
Showing
501 changed files
with
12,236 additions
and
4,182 deletions.
There are no files selected for viewing
This file contains 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,6 @@ | ||
--- | ||
'@twilio-paste/combobox': patch | ||
'@twilio-paste/core': patch | ||
--- | ||
|
||
[Combobox] Render the listbox in a portal to fix a bug where the contents of the listbox are cut off when it placed inside a scrolling container. Adds a new dependency on @radix-ui/react-use-rect. |
This file contains 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,6 @@ | ||
--- | ||
'@twilio-paste/card': patch | ||
'@twilio-paste/core': patch | ||
--- | ||
|
||
[Card] Update styles to align with new Paste Twilio theme |
This file contains 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,6 @@ | ||
--- | ||
'@twilio-paste/side-modal': patch | ||
'@twilio-paste/core': patch | ||
--- | ||
|
||
[Side Modal] Update styles to align with new Paste Twilio theme |
This file contains 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 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 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
3 changes: 2 additions & 1 deletion
3
.storybook/RenderPerformanceProfiler.js → .storybook/RenderPerformanceProfiler.tsx
This file contains 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 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,5 @@ | ||
import * as React from 'react'; | ||
|
||
const Link: React.FC = ({children, ...props}) => <a {...props}>{children}</a>; | ||
|
||
export {Link}; |
This file was deleted.
Oops, something went wrong.
This file contains 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,51 @@ | ||
import type {StorybookConfig} from '@storybook/react-vite'; | ||
import {mergeConfig} from 'vite'; | ||
import path from 'path'; | ||
|
||
const config: StorybookConfig = { | ||
stories: [ | ||
'../packages/**/*.stories.@(js|jsx|ts|tsx|mdx)', | ||
'../performance-benchmarks/**/*.stories.@(js|jsx|ts|tsx|mdx)', | ||
], | ||
addons: [ | ||
'@storybook/addon-links', | ||
'@storybook/addon-essentials', | ||
'@storybook/addon-a11y', | ||
'@storybook/addon-interactions', | ||
'./addons/google-analytics/register', | ||
], | ||
framework: { | ||
name: '@storybook/react-vite', | ||
}, | ||
features: { | ||
interactionsDebugger: true, | ||
}, | ||
staticDirs: ['./static'], | ||
typescript: { | ||
// enable type checking | ||
check: true, | ||
}, | ||
docs: { | ||
autodocs: true, | ||
defaultName: 'Docs', | ||
}, | ||
async viteFinal(config, {configType}) { | ||
const isDev = configType === 'DEVELOPMENT' && process.env.NODE_ENV !== 'test'; | ||
return mergeConfig(config, { | ||
resolve: { | ||
alias: { | ||
gatsby: path.resolve(__dirname, './gatsby'), | ||
'react-dom/client': path.resolve(__dirname, '../node_modules/react-dom/client'), | ||
'react-dom': path.resolve(__dirname, '../node_modules/react-dom/profiling'), | ||
'scheduler/tracing': path.resolve(__dirname, '../node_modules/scheduler/tracing-profiling'), | ||
}, | ||
...(isDev && {mainFields: ['main:dev', 'browser', 'module', 'main']}), | ||
}, | ||
optimizeDeps: { | ||
include: ['@storybook/addon-viewport', 'chromatic/isChromatic', '@emotion/react/jsx-dev-runtime'], | ||
}, | ||
}); | ||
}, | ||
}; | ||
|
||
export default config; |
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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 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 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 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 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
Oops, something went wrong.