shop-components 0.1.66 → 0.1.67

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.
@@ -1,7 +1,6 @@
1
1
  import StepViewer, { Props } from './index';
2
2
  declare const _default: {
3
3
  title: string;
4
- tags: string[];
5
4
  render: (args: Props) => StepViewer;
6
5
  argTypes: {
7
6
  files: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shop-components",
3
- "version": "0.1.66",
3
+ "version": "0.1.67",
4
4
  "description": "Shop components",
5
5
  "main": "dist/shop-components.umd.js",
6
6
  "module": "dist/shop-components.mjs",
@@ -1,14 +0,0 @@
1
- import { LitElement, PropertyValues } from 'lit';
2
- export interface Props {
3
- e3dx: string;
4
- file: File[];
5
- }
6
- export default class SmapViewer extends LitElement {
7
- container: HTMLDivElement | undefined;
8
- constructor();
9
- protected firstUpdated(_changedProperties: PropertyValues): void;
10
- e3dx: string;
11
- file: File[];
12
- protected render(): unknown;
13
- static styles: import("lit").CSSResult;
14
- }
@@ -1,22 +0,0 @@
1
- import ModelViewer, { Props } from './index';
2
- declare const _default: {
3
- title: string;
4
- tags: string[];
5
- render: (args: Props) => ModelViewer;
6
- argTypes: {
7
- e3dx: {
8
- control: string;
9
- description: string;
10
- };
11
- file: {
12
- control: string;
13
- };
14
- };
15
- };
16
- export default _default;
17
- export declare const Primary: {
18
- args: {
19
- e3dx: string;
20
- file: never[];
21
- };
22
- };
@@ -1,25 +0,0 @@
1
- import { LitElement, PropertyValues } from 'lit';
2
- import { Scene3D } from './scene';
3
- export interface Props {
4
- test: string;
5
- count: number;
6
- onChange: () => {};
7
- }
8
- export declare class TestViewer extends LitElement {
9
- scene: Scene3D;
10
- container: HTMLDivElement | undefined;
11
- drag: HTMLButtonElement | undefined;
12
- constructor();
13
- protected firstUpdated(_changedProperties: PropertyValues): void;
14
- protected updated(_changedProperties: PropertyValues): void;
15
- disconnectedCallback(): void;
16
- test: string;
17
- count: number;
18
- theme: undefined | string;
19
- onChange: undefined | Function;
20
- usePathTracing: boolean;
21
- progressBar: HTMLDivElement | undefined;
22
- cancel: () => void;
23
- protected render(): unknown;
24
- static styles: import("lit").CSSResult;
25
- }
@@ -1,20 +0,0 @@
1
- import { PerspectiveCamera, Scene, WebGLRenderer } from 'three';
2
- import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls';
3
- import { WebGLPathTracer } from 'three-gpu-pathtracer';
4
- export declare class Scene3D {
5
- readonly maxSample = 1024;
6
- sampleCount: number;
7
- renderer: WebGLRenderer;
8
- camera: PerspectiveCamera;
9
- scene: Scene;
10
- controls: OrbitControls;
11
- _usePathTracing: boolean;
12
- pathTracer: WebGLPathTracer;
13
- usePathTracing: boolean;
14
- constructor();
15
- resize: () => void;
16
- private _loadEnv;
17
- generateBVH(): void;
18
- appendTo(parent: any): void;
19
- ticker: () => void;
20
- }