-
Notifications
You must be signed in to change notification settings - Fork 842
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into new-cases-icon
- Loading branch information
Showing
35 changed files
with
770 additions
and
422 deletions.
There are no files selected for viewing
File renamed without changes.
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,8 @@ | ||
# Dependencies | ||
/node_modules | ||
|
||
# Production | ||
/lib | ||
|
||
yarn-debug.log* | ||
yarn-error.log* |
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,42 @@ | ||
# EUI Docusaurus theme | ||
|
||
`@elastic/eui-docusaurus-theme` | ||
|
||
EUI theme for [Docusaurus](https://docusaurus.io/) made for the new EUI [documentation website](https://eui.elastic.co). | ||
|
||
## Installation and usage | ||
|
||
This package is not yet published to npm. | ||
|
||
## Local development | ||
|
||
### Prerequisites | ||
|
||
This package requires Node.js (check current version in [.nvmrc](/.nvmrc)) to be installed | ||
and [corepack](https://nodejs.org/api/corepack.html) to be enabled. | ||
|
||
### Installing dependencies | ||
|
||
Please run `yarn` to install dependencies: | ||
|
||
```shell | ||
yarn | ||
``` | ||
|
||
### Building the package | ||
|
||
```shell | ||
yarn build | ||
``` | ||
|
||
### Building in watch mode | ||
|
||
Run the following command to build this package whenever a file is edited: | ||
|
||
```shell | ||
yarn start | ||
``` | ||
|
||
Please note that this package is configured to do incremental builds and sometimes `tsc` may not update | ||
the `lib` directory with your latest changes if you rename or delete files. | ||
If that's the case please run `yarn build`. |
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,44 @@ | ||
{ | ||
"name": "@elastic/eui-docusaurus-theme", | ||
"version": "0.1.0", | ||
"description": "EUI theme for Docusaurus", | ||
"private": true, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"build": "tsc --build", | ||
"start": "tsc --watch" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/tkajtoch/eui.git", | ||
"directory": "packages/docusaurus-theme" | ||
}, | ||
"devDependencies": { | ||
"@docusaurus/types": "^3.4.0", | ||
"@types/react": "^18", | ||
"@types/react-dom": "^18", | ||
"typescript": "~5.4.5" | ||
}, | ||
"main": "lib/index.js", | ||
"exports": { | ||
"./lib/*": "./lib/*", | ||
"./src/*": "./src/*", | ||
".": { | ||
"default": "./lib/index.js" | ||
} | ||
}, | ||
"dependencies": { | ||
"@docusaurus/core": "^3.4.0", | ||
"@docusaurus/module-type-aliases": "^3.4.0", | ||
"@docusaurus/utils-validation": "^3.4.0", | ||
"@elastic/datemath": "^5.0.3", | ||
"@elastic/eui": "94.5.0", | ||
"@emotion/css": "^11.11.2", | ||
"@emotion/react": "^11.11.4", | ||
"moment": "^2.30.1" | ||
}, | ||
"peerDependencies": { | ||
"react": "^18.0.0", | ||
"react-dom": "^18.0.0" | ||
} | ||
} |
File renamed without changes.
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,13 @@ | ||
import type { Plugin } from '@docusaurus/types'; | ||
|
||
export default function euiDocusaurusTheme(): Plugin<void> { | ||
return { | ||
name: 'eui-docusaurus-theme', | ||
getThemePath() { | ||
return '../lib/theme'; | ||
}, | ||
getTypeScriptThemePath() { | ||
return '../src/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,47 @@ | ||
import { css } from '@emotion/react'; | ||
import { EuiText, EuiLink, UseEuiTheme, EuiThemeProvider, useEuiMemoizedStyles } from '@elastic/eui'; | ||
|
||
const ELASTIC_LICENSE_URL = "https://github.com/elastic/eui/blob/main/licenses/ELASTIC-LICENSE-2.0.md"; | ||
const SSPL_LICENSE_URL = "https://github.com/elastic/eui/blob/main/licenses/SSPL-LICENSE.md"; | ||
|
||
const getFooterStyles = ({ euiTheme }: UseEuiTheme) => { | ||
return { | ||
root: css` | ||
background: #1C1E23; // Color not available in EUI | ||
border-radius: ${euiTheme.size.s} ${euiTheme.size.s} 0 0; | ||
padding: ${euiTheme.size.l}; | ||
text-align: center; | ||
`, | ||
heart: css` | ||
color: ${euiTheme.colors.accent}; | ||
`, | ||
}; | ||
}; | ||
|
||
const Footer = () => { | ||
const styles = useEuiMemoizedStyles(getFooterStyles); | ||
|
||
return ( | ||
<EuiThemeProvider colorMode="inverse"> | ||
<footer css={styles.root}> | ||
<EuiText textAlign="center" size="s"> | ||
EUI is dual-licensed under {' '} | ||
<EuiLink href={ELASTIC_LICENSE_URL}> | ||
Elastic License 2.0 | ||
</EuiLink> | ||
{' and '} | ||
<EuiLink href={SSPL_LICENSE_URL}> | ||
Server Side Public License, v 1 | ||
</EuiLink> | ||
{' | '} | ||
Crafted with <span role="img" aria-label="love" css={styles.heart}>❤</span> by{' '} | ||
<EuiLink href="https://elastic.co"> | ||
Elastic | ||
</EuiLink> | ||
</EuiText> | ||
</footer> | ||
</EuiThemeProvider> | ||
); | ||
}; | ||
|
||
export default Footer; |
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,68 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/tsconfig", | ||
"compilerOptions": { | ||
/* Emit */ | ||
"target": "ES2020", | ||
"lib": ["ESNext", "DOM"], | ||
"declaration": true, | ||
// These two options will be selectively overridden in each project. | ||
// Utility libraries will have source maps on, but plugins will not. | ||
"declarationMap": false, | ||
"sourceMap": false, | ||
"jsx": "react-jsx", | ||
"jsxImportSource": "@emotion/react", | ||
"importHelpers": true, | ||
"noEmitHelpers": true, | ||
// Avoid accidentally using this config to build | ||
"noEmit": true, | ||
|
||
/* Strict Type-Checking Options */ | ||
"allowUnreachableCode": false, | ||
// Too hard to turn on | ||
"exactOptionalPropertyTypes": false, | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitOverride": true, | ||
"noImplicitReturns": true, | ||
// `process.env` is usually accessed as property | ||
"noPropertyAccessFromIndexSignature": false, | ||
"noUncheckedIndexedAccess": true, | ||
/* strict family */ | ||
"strict": true, | ||
"alwaysStrict": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"strictBindCallApply": true, | ||
"strictFunctionTypes": true, | ||
"strictNullChecks": true, | ||
"strictPropertyInitialization": true, | ||
"useUnknownInCatchVariables": true, | ||
/* Handled by ESLint */ | ||
"noUnusedLocals": false, | ||
"noUnusedParameters": false, | ||
"importsNotUsedAsValues": "remove", | ||
|
||
/* Module Resolution */ | ||
"moduleResolution": "Node", | ||
"resolveJsonModule": true, | ||
"allowSyntheticDefaultImports": true, | ||
"esModuleInterop": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"isolatedModules": true, | ||
"allowJs": true, | ||
"skipLibCheck": true, // @types/webpack and webpack/types.d.ts are not the same thing | ||
"types": [ | ||
"@docusaurus/module-type-aliases" | ||
] | ||
}, | ||
"include": ["./**/*", "./**/.eslintrc.js"], | ||
"exclude": [ | ||
"node_modules", | ||
"coverage/**", | ||
"**/lib/**/*", | ||
"website/**", | ||
"**/__mocks__/**/*", | ||
"**/__fixtures__/**/*", | ||
"examples/**", | ||
"packages/create-docusaurus/templates/**" | ||
] | ||
} |
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,17 @@ | ||
{ | ||
"extends": "./tsconfig.base.json", | ||
"compilerOptions": { | ||
"noEmit": false, | ||
"incremental": true, | ||
"moduleResolution": "bundler", | ||
"module": "esnext", | ||
"target": "esnext", | ||
"esModuleInterop": true, | ||
"composite": true, | ||
"rootDir": "src", | ||
"outDir": "lib", | ||
"tsBuildInfoFile": "lib/.tsbuildinfo-client" | ||
}, | ||
"include": ["src/client", "src/components", "src/theme", "src/*.d.ts"], | ||
"exclude": ["**/__tests__/**"] | ||
} |
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,26 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/tsconfig", | ||
"references": [{"path": "./tsconfig.client.json"}], | ||
"compilerOptions": { | ||
"target": "ES2020", | ||
"lib": ["ESNext"], | ||
"declaration": true, | ||
"sourceMap": true, | ||
"jsx": "react-jsx", | ||
"jsxImportSource": "@emotion/react", | ||
"noEmitHelpers": true, | ||
"incremental": true, | ||
"tsBuildInfoFile": "lib/.tsbuildinfo", | ||
"rootDir": "src", | ||
"outDir": "lib", | ||
"esModuleInterop": true, | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"moduleResolution": "Node", | ||
"types": [ | ||
"@docusaurus/module-type-aliases" | ||
] | ||
}, | ||
"include": ["src/**/*"], | ||
"exclude": ["src/client", "src/theme", "**/__tests__/**"] | ||
} |
Binary file added
BIN
+4.75 KB
...es/eui/.loki/reference/chrome_desktop_Forms_EuiFilePicker_Non_Large_Display.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+112 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiFilePicker_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+10.4 KB
...ges/eui/.loki/reference/chrome_mobile_Forms_EuiFilePicker_Non_Large_Display.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+32 Bytes
(100%)
packages/eui/.loki/reference/chrome_mobile_Forms_EuiFilePicker_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,3 @@ | ||
**CSS-in-JS conversions** | ||
|
||
- Converted `EuiFilePicker` to Emotion; Removed `$euiFilePickerTallHeight` |
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 @@ | ||
- Updated `EuiIcon` to feature updated `logoElasticStack` logo for referencing Elastic Stack platform |
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.