Compare commits

...

6 Commits

Author SHA1 Message Date
b171eaf3fc 1.0.23 2020-12-01 22:49:45 +00:00
5585d7e304 fix(core): update 2020-12-01 22:49:44 +00:00
02119a1ce4 1.0.22 2020-12-01 22:24:55 +00:00
222f06bda7 fix(core): update 2020-12-01 22:24:54 +00:00
8ee99136cc 1.0.21 2020-09-17 10:35:33 +00:00
faf35c3144 fix(core): update 2020-09-17 10:35:33 +00:00
4 changed files with 1310 additions and 1035 deletions

2245
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-catalog",
"version": "1.0.20",
"version": "1.0.23",
"private": false,
"description": "website for lossless.com",
"main": "dist_ts_web/index.js",
@ -13,10 +13,12 @@
"author": "Lossless GmbH",
"license": "MIT",
"dependencies": {
"@designestate/dees-domtools": "^1.0.47",
"@designestate/dees-wcctools": "^1.0.37",
"@designestate/dees-domtools": "^1.0.79",
"@designestate/dees-wcctools": "^1.0.49",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"lit-element": "^2.4.0",
"typescript": "^4.0.2"
"typescript": "^4.1.2"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",

View File

@ -0,0 +1,89 @@
import { LitElement, html, property, customElement } from 'lit-element';
import * as domtools from '@designestate/dees-domtools';
import { icon, IconDefinition } from "@fortawesome/fontawesome-svg-core";
import { faFacebook, faTwitter, faLinkedin, faMedium } from '@fortawesome/free-brands-svg-icons';
type TBrand = 'facebook' | 'twitter' | 'linkedin' | 'medium';
const brandIcons: {[key: string]: IconDefinition} = {
facebook: faFacebook,
twitter: faTwitter,
linkedin: faLinkedin,
medium: faMedium
};
@customElement('dees-icon')
export class DeesIcon extends LitElement {
public static demo = () => html`
<div style="background: #fff; padding: 10px;">
<dees-icon iconName="visibility"></dees-icon>
<dees-icon brandName="facebook"></dees-icon>
</div>
`;
@property()
public iconName: string;
@property()
public brandName: TBrand;
@property()
public svgSize: number = 20;
constructor() {
super();
domtools.elementBasic.setup();
}
public render() {
return html`
${domtools.elementBasic.styles}
<style>
:host {
display: block;
line-height: inherit;
font-size: inherit;
}
#iconContainer svg {
display: inline-block;
height: ${this.svgSize}px;
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
line-height: inherit;
font-size: inherit;
display: inline-block;
line-height: inherit;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
}
</style>
${this.iconName ? html`<i class="material-icons">${this.iconName}</i>` : html``}
${this.brandName ? html`<div id="iconContainer"></div>` : html``}
`;
}
firstUpdated() {
if (this.brandName && !this.iconName) {
this.shadowRoot.querySelector('#iconContainer').innerHTML = icon(brandIcons[this.brandName]).html[0];
}
}
}

View File

@ -1,6 +1,7 @@
export * from './dees-button';
export * from './dees-form';
export * from './dees-form-submit';
export * from './dees-icon';
export * from './dees-input-checkbox';
export * from './dees-input-dropdown';
export * from './dees-input-quantityselector';