Skip to content

Commit

Permalink
build v5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nateplusplus committed Aug 18, 2022
1 parent 02fd1a1 commit 133d89a
Show file tree
Hide file tree
Showing 10 changed files with 274 additions and 162 deletions.
14 changes: 3 additions & 11 deletions dist/esm/pushInComposition.d.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,10 @@
import { PushInScene } from './pushInScene';
import { CompositionOptions } from './types';
export declare class PushInComposition {
import PushInBase from './pushInBase';
export declare class PushInComposition extends PushInBase {
scene: PushInScene;
private options;
container?: HTMLElement;
options: CompositionOptions;
constructor(scene: PushInScene, options: CompositionOptions);
/**
* Get the composition ratio based on
* what has been passed in through the JavaScript API
* and/or what has been passed in via HTML data-attributes.
*
* @return {number[] | undefined}
*/
private getRatio;
/**
* Set the aspect ratio based setting.
*/
Expand Down
9 changes: 5 additions & 4 deletions dist/esm/pushInLayer.d.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import { PushInScene } from './pushInScene';
import PushInBase from './pushInBase';
import { LayerOptions, LayerParams } from './types';
export declare class PushInLayer {
private element;
export declare class PushInLayer extends PushInBase {
container: HTMLElement;
private index;
scene: PushInScene;
private options;
options: LayerOptions;
params: LayerParams;
private originalScale;
private ref;
constructor(element: HTMLElement, index: number, scene: PushInScene, options: LayerOptions | null);
constructor(container: HTMLElement, index: number, scene: PushInScene, options: LayerOptions);
/**
* Get the transitions setting, either from the API or HTML attributes.
*
Expand Down
4 changes: 2 additions & 2 deletions dist/esm/pushInScene.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { PushInComposition } from './pushInComposition';
import { PushInLayer } from './pushInLayer';
import { PushIn } from './pushin';
import PushInBase from './pushInBase';
import { SceneOptions } from './types';
export declare class PushInScene {
export declare class PushInScene extends PushInBase {
pushin: PushIn;
container: HTMLElement;
layers: PushInLayer[];
layerDepth: number;
options: SceneOptions;
Expand Down
3 changes: 2 additions & 1 deletion dist/esm/pushin.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { PushInScene } from './pushInScene';
import { PushInOptions } from './types';
import PushInBase from './pushInBase';
/**
* PushIn object
*
* Once new object is created, it will initialize itself and
* bind events to begin interacting with dom.
*/
export declare class PushIn {
export declare class PushIn extends PushInBase {
container: HTMLElement;
scene: PushInScene;
private pushinDebug?;
Expand Down
199 changes: 129 additions & 70 deletions dist/esm/pushin.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/pushin.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 133d89a

Please sign in to comment.