@assecosolutions/fox-badge
Advanced tools
Comparing version 0.0.1-alpha.7.0.1 to 0.0.1-alpha.7.0.11
module.exports = { | ||
name: 'shared-ui-atoms-fox-badge', | ||
preset: '../../../../../jest.config.js', | ||
preset: '../../../../../jest.preset.js', | ||
globals: { | ||
'ts-jest': { | ||
tsConfig: '<rootDir>/tsconfig.spec.json', | ||
tsconfig: '<rootDir>/tsconfig.spec.json', | ||
}, | ||
@@ -14,2 +13,3 @@ }, | ||
coverageDirectory: '../../../../../coverage/libs/shared/ui/atoms/fox-badge', | ||
displayName: 'shared-ui-atoms-fox-badge', | ||
}; |
import { css } from 'lit-element'; | ||
export const styles = css `:host{--fox-badge-color: var(--fox-white);--fox-badge-background-color: var(--fox-base-client-gradient);--fox-badge-border: none}:host{text-align:center;font-size:12px;font-weight:var(--fox-base-font-weight);color:var(--fox-badge-color);background:var(--fox-badge-background-color);border-radius:10rem;padding:5px 10px;line-height:1;white-space:nowrap;vertical-align:baseline;text-transform:uppercase;border:var(--fox-badge-border)}:host([outline]){--fox-badge-color: red;--fox-badge-background-color: none;--fox-badge-border: 2px solid var(--fox-badge-color)} | ||
export const styles = css `:host{--fox-badge-color: var(--fox-white-color);--fox-badge-background-color: var(--fox-client-base-gradient);--fox-badge-border: none}:host{text-align:center;font-size:12px;font-weight:var(--fox-font-weight-base);color:var(--fox-badge-color);background:var(--fox-badge-background-color);border-radius:10rem;padding:5px 10px;line-height:1;white-space:nowrap;vertical-align:baseline;text-transform:uppercase;border:var(--fox-badge-border)}:host([outline]){--fox-badge-background-color: none;--fox-badge-border: 2px solid var(--fox-badge-color)} | ||
`; | ||
//# sourceMappingURL=FoxBadge.css.js.map |
import { css } from 'lit-element'; | ||
export const styles = css`:host{--fox-badge-color: var(--fox-white);--fox-badge-background-color: var(--fox-base-client-gradient);--fox-badge-border: none}:host{text-align:center;font-size:12px;font-weight:var(--fox-base-font-weight);color:var(--fox-badge-color);background:var(--fox-badge-background-color);border-radius:10rem;padding:5px 10px;line-height:1;white-space:nowrap;vertical-align:baseline;text-transform:uppercase;border:var(--fox-badge-border)}:host([outline]){--fox-badge-color: red;--fox-badge-background-color: none;--fox-badge-border: 2px solid var(--fox-badge-color)} | ||
export const styles = css`:host{--fox-badge-color: var(--fox-white-color);--fox-badge-background-color: var(--fox-client-base-gradient);--fox-badge-border: none}:host{text-align:center;font-size:12px;font-weight:var(--fox-font-weight-base);color:var(--fox-badge-color);background:var(--fox-badge-background-color);border-radius:10rem;padding:5px 10px;line-height:1;white-space:nowrap;vertical-align:baseline;text-transform:uppercase;border:var(--fox-badge-border)}:host([outline]){--fox-badge-background-color: none;--fox-badge-border: 2px solid var(--fox-badge-color)} | ||
`; |
{ | ||
"name": "@assecosolutions/fox-badge", | ||
"version": "0.0.1-alpha.7.0.1", | ||
"version": "0.0.1-alpha.7.0.11", | ||
"public": true, | ||
@@ -5,0 +5,0 @@ "lib": { |
@@ -6,2 +6,3 @@ # 🦊 Fox - Future Open Experience | ||
## Installation | ||
```bash | ||
@@ -12,2 +13,3 @@ npm i @assecosolutions/fox-badge | ||
## Usage | ||
```html | ||
@@ -20,17 +22,16 @@ <script type="module"> | ||
<fox-badge outline>Well done!</fox-badge> | ||
``` | ||
## Further Reading | ||
Please, also check the documentations about the [API](/api/README.md) and our [client](/client/README.md) | ||
Please, also check the documentations about the [API](https://github.com/assecosolutions/fox/blob/master/api/README.md) and our [client](https://github.com/assecosolutions/fox/blob/master/client/README.md) | ||
## Contribute | ||
If you would like to contribute please make sure that you have read our [development guidelines](/docs/3_DEV_GUIDELINES.md). | ||
If you would like to contribute please make sure that you have read our [development guidelines](https://github.com/assecosolutions/fox/blob/master/docs/3_DEV_GUIDELINES.md). | ||
## Maintainer | ||
| ![Burak Topal](https://avatars3.githubusercontent.com/u/17909825?u=1026b9f16dd1c7dbf72b3fe3295c1aa834b81ce4&v=4&s=100 "Burak Topal") | ![Jari Möllenbernd](https://avatars2.githubusercontent.com/u/974638?u=8c61e7d54df0341c68cca59bd8fd0187154d03c8&v=4&s=100 "Jari Möllenbernd") | <img src="https://avatars0.githubusercontent.com/u/17983201?s=100&v=3" width="100" alt="Julia Nissen" /> | | ||
| ![Burak Topal](https://avatars3.githubusercontent.com/u/17909825?u=1026b9f16dd1c7dbf72b3fe3295c1aa834b81ce4&v=4&s=100 'Burak Topal') | ![Jari Möllenbernd](https://avatars2.githubusercontent.com/u/974638?u=8c61e7d54df0341c68cca59bd8fd0187154d03c8&v=4&s=100 'Jari Möllenbernd') | <img src="https://avatars0.githubusercontent.com/u/17983201?s=100&v=3" width="100" alt="Julia Nissen" /> | | ||
| :----------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------: | | ||
| Burak Topal ([@biggisb](https://github.com/Biggisb)) | Jari Möllenbernd ([@jarmee](https://github.com/jarmee)) | Julia Nissen ([@JuliaNssn](https://github.com/JuliaNssn)) | |
{ | ||
"extends": "../../../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"skipLibCheck": true, | ||
"strict": true, | ||
"noImplicitAny": false, | ||
"target": "es2018", | ||
@@ -7,3 +11,2 @@ "module": "esnext", | ||
"lib": ["es2017", "dom"], | ||
"strict": true, | ||
"noUnusedLocals": true, | ||
@@ -20,8 +23,15 @@ "noUnusedParameters": true, | ||
"inlineSources": true, | ||
"rootDir": "./", | ||
"rootDir": "./src", | ||
"declaration": true | ||
}, | ||
"include": ["*.ts"] | ||
"files": [], | ||
"include": [], | ||
"references": [ | ||
{ | ||
"path": "./tsconfig.lib.json" | ||
}, | ||
{ | ||
"path": "./tsconfig.spec.json" | ||
} | ||
] | ||
} | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "../../../../../dist/out-tsc", | ||
"outDir": "../../../../../dist/@assecosolutions/fox-badge", | ||
"types": [] | ||
@@ -6,0 +6,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
10627
177
35
0