Skip to content

Commit

Permalink
Update to lastest stencil
Browse files Browse the repository at this point in the history
  • Loading branch information
alesgenova committed Sep 28, 2018
1 parent 30db0b4 commit 7726155
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 31 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "split-me",
"version": "1.0.0",
"version": "1.0.1",
"description": "Universal web component to create arbitrary split layouts ",
"module": "dist/esm/index.js",
"main": "dist/index.js",
Expand All @@ -20,10 +20,10 @@
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"@stencil/core": "^0.12.4",
"@stencil/core": "^0.13.2",
"@types/jest": "^23.3.2",
"@types/lodash.throttle": "^4.1.4",
"husky": "^1.0.0-rc.15",
"husky": "^1.0.1",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0"
Expand Down
49 changes: 21 additions & 28 deletions src/components.d.ts
Original file line number Diff line number Diff line change
@@ -1,68 +1,61 @@
/**
* This is an autogenerated file created by the Stencil compiler.
* It contains typing information for all components that exist in this project.
*/
/* tslint:disable */
/**
* This is an autogenerated file created by the Stencil compiler.
* It contains typing information for all components that exist in this project.
*/

import '@stencil/core';




export namespace Components {

interface SplitMe {
'd': 'horizontal' | 'vertical';
'fixed': boolean;
'maxSizes': string;
'minSizes': string;
'n': number;
'sizes': string;
'throttle': number;
d: 'horizontal' | 'vertical';
fixed: boolean;
maxSizes: string;
minSizes: string;
n: number;
sizes: string;
throttle: number;
}
interface SplitMeAttributes extends StencilHTMLAttributes {
'd'?: 'horizontal' | 'vertical';
'fixed'?: boolean;
'maxSizes'?: string;
'minSizes'?: string;
'n'?: number;
'onSlotResized'?: (event: CustomEvent) => void;
'sizes'?: string;
'throttle'?: number;
d?: 'horizontal' | 'vertical';
fixed?: boolean;
maxSizes?: string;
minSizes?: string;
n?: number;
onSlotResized?: (event: CustomEvent) => void;
sizes?: string;
throttle?: number;
}
}

declare global {
interface StencilElementInterfaces {
'SplitMe': Components.SplitMe;
SplitMe: Components.SplitMe;
}

interface StencilIntrinsicElements {
'split-me': Components.SplitMeAttributes;
}


interface HTMLSplitMeElement extends Components.SplitMe, HTMLStencilElement {}
var HTMLSplitMeElement: {
prototype: HTMLSplitMeElement;
new (): HTMLSplitMeElement;
};

interface HTMLElementTagNameMap {
'split-me': HTMLSplitMeElement
'split-me': HTMLSplitMeElement;
}

interface ElementTagNameMap {
'split-me': HTMLSplitMeElement;
}


export namespace JSX {
export interface Element {}
export interface IntrinsicElements extends StencilIntrinsicElements {
[tagName: string]: any;
}
}
export interface HTMLAttributes extends StencilHTMLAttributes {}

}

0 comments on commit 7726155

Please sign in to comment.