-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
285 additions
and
22 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
node_modules/ | ||
coverage/ | ||
src/components.ts | ||
src/components.ts |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import externalDeps from 'rollup-plugin-peer-deps-external'; | ||
import typescript from '@rollup/plugin-typescript'; | ||
import resolve from '@rollup/plugin-node-resolve'; | ||
import commonJS from 'rollup-plugin-commonjs'; | ||
|
||
const globals = { | ||
react: 'React', | ||
'react-dom': 'ReactDOM', | ||
'react-query': 'ReactQuery', | ||
}; | ||
|
||
const plugins = [ | ||
externalDeps(), // Prevents packages listed in peerDependencies from being bundled with our component library. | ||
commonJS(), // Convert common js modules to es6. | ||
resolve(), // Locate and bundle third-party dependencies in node_modules. | ||
typescript() // Transpiles our TypeScript code into JavaScript. | ||
]; | ||
|
||
export default { | ||
input: `./src/index.ts`, | ||
output: [ | ||
{ | ||
name: 'index', | ||
file: `dist/index.js`, | ||
format: 'cjs', | ||
sourcemap: true, | ||
}, | ||
{ | ||
name: 'index', | ||
file: `dist/index.es.js`, | ||
format: 'esm', | ||
sourcemap: true, | ||
}, | ||
{ | ||
name: 'index', | ||
file: `dist/index.umd.js`, | ||
format: 'umd', | ||
sourcemap: true, | ||
globals, | ||
}, | ||
], | ||
plugins | ||
}; |
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
Binary file added
BIN
+63.5 KB
packages/components/src/telekom/fonts/TeleNeoWeb/TeleNeoWeb-Ultra.eot
Binary file not shown.
Binary file added
BIN
+65.6 KB
packages/components/src/telekom/fonts/TeleNeoWeb/TeleNeoWeb-Ultra.woff
Binary file not shown.
Binary file added
BIN
+52.5 KB
packages/components/src/telekom/fonts/TeleNeoWeb/TeleNeoWeb-Ultra.woff2
Binary file not shown.
Binary file added
BIN
+66.3 KB
packages/components/src/telekom/fonts/TeleNeoWeb/TeleNeoWeb-UltraItalic.eot
Binary file not shown.
Binary file added
BIN
+68.3 KB
packages/components/src/telekom/fonts/TeleNeoWeb/TeleNeoWeb-UltraItalic.woff
Binary file not shown.
Binary file added
BIN
+54.5 KB
packages/components/src/telekom/fonts/TeleNeoWeb/TeleNeoWeb-UltraItalic.woff2
Binary file not shown.
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.