shop-components 0.0.5 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,11 +5,10 @@ export interface Props {
5
5
  count: number;
6
6
  onChange: () => {};
7
7
  }
8
- export default class DeviceViewer extends LitElement {
8
+ export declare class DeviceViewer extends LitElement {
9
9
  scene: Scene3D;
10
10
  container: HTMLDivElement | undefined;
11
11
  drag: HTMLButtonElement | undefined;
12
- createRenderRoot(): this;
13
12
  constructor();
14
13
  protected firstUpdated(_changedProperties: PropertyValues): void;
15
14
  protected updated(_changedProperties: PropertyValues): void;
@@ -1,4 +1,4 @@
1
- import DeviceViewer, { Props } from './index';
1
+ import { DeviceViewer, Props } from './index';
2
2
  declare const _default: {
3
3
  title: string;
4
4
  tags: string[];
@@ -10,6 +10,7 @@ import EventEmitter from 'eventemitter3';
10
10
  import Stats from 'stats-fps.js';
11
11
  import { Slot } from './slot';
12
12
  import { DeviceLines } from './lines';
13
+ import './style.styl';
13
14
  interface Logo {
14
15
  name: string;
15
16
  target: Object3D;
@@ -0,0 +1,8 @@
1
+ import { LitElement } from 'lit';
2
+ export interface SlotItemProps {
3
+ name: string;
4
+ }
5
+ export declare class SlotItem extends LitElement {
6
+ constructor(props: SlotItemProps);
7
+ protected render(): unknown;
8
+ }