@ionic/core
Advanced tools
Comparing version 0.0.2-37 to 0.0.2-38
@@ -52,2 +52,4 @@ import { ActionSheetEvent, ActionSheetOptions } from '../../index'; | ||
} | ||
static get is() { return "ion-action-sheet-controller"; } | ||
static get properties() { return { "create": { "method": true } }; } | ||
} |
@@ -181,3 +181,9 @@ import { CssClassMap, EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-action-sheet"; } | ||
static get host() { return { "theme": "action-sheet" }; } | ||
static get properties() { return { "animationCtrl": { "connect": "ion-animation-controller" }, "buttons": { "type": "Any" }, "config": { "context": "config" }, "cssClass": { "type": String }, "dismiss": { "method": true }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "enableBackdropDismiss": { "type": Boolean }, "enterAnimation": { "type": "Any" }, "leaveAnimation": { "type": "Any" }, "present": { "method": true }, "subTitle": { "type": String }, "title": { "type": String }, "translucent": { "type": Boolean }, "willAnimate": { "type": Boolean } }; } | ||
static get events() { return [{ "name": "ionActionSheetDidLoad", "method": "ionActionSheetDidLoad", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionActionSheetDidPresent", "method": "ionActionSheetDidPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionActionSheetWillPresent", "method": "ionActionSheetWillPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionActionSheetWillDismiss", "method": "ionActionSheetWillDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionActionSheetDidDismiss", "method": "ionActionSheetDidDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionActionSheetDidUnload", "method": "ionActionSheetDidUnload", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-action-sheet:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-action-sheet:**/"; } | ||
} | ||
export { iosEnterAnimation as iosActionSheetEnterAnimation, iosLeaveAnimation as iosActionSheetLeaveAnimation, mdEnterAnimation as mdActionSheetEnterAnimation, mdLeaveAnimation as mdActionSheetetLeaveAnimation, }; |
@@ -54,2 +54,4 @@ import { AlertEvent, AlertOptions } from '../../index'; | ||
} | ||
static get is() { return "ion-alert-controller"; } | ||
static get properties() { return { "create": { "method": true } }; } | ||
} |
@@ -297,3 +297,9 @@ import { CssClassMap, EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-alert"; } | ||
static get host() { return { "theme": "alert" }; } | ||
static get properties() { return { "animationCtrl": { "connect": "ion-animation-controller" }, "buttons": { "type": "Any" }, "config": { "context": "config" }, "cssClass": { "type": String }, "dismiss": { "method": true }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "enableBackdropDismiss": { "type": Boolean }, "enterAnimation": { "type": "Any" }, "inputs": { "type": "Any", "mutable": true }, "leaveAnimation": { "type": "Any" }, "message": { "type": String }, "present": { "method": true }, "subTitle": { "type": String }, "title": { "type": String }, "translucent": { "type": Boolean }, "willAnimate": { "type": Boolean } }; } | ||
static get events() { return [{ "name": "ionAlertDidLoad", "method": "ionAlertDidLoad", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionAlertDidPresent", "method": "ionAlertDidPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionAlertWillPresent", "method": "ionAlertWillPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionAlertWillDismiss", "method": "ionAlertWillDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionAlertDidDismiss", "method": "ionAlertDidDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionAlertDidUnload", "method": "ionAlertDidUnload", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-alert:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-alert:**/"; } | ||
} | ||
export { iosEnterAnimation as iosAlertEnterAnimation, iosLeaveAnimation as iosAlertLeaveAnimation, mdEnterAnimation as mdAlertEnterAnimation, mdLeaveAnimation as mdAlertLeaveAnimation, }; |
@@ -10,2 +10,4 @@ import { Animation, AnimationBuilder, AnimationController } from './animation-interface'; | ||
} | ||
static get is() { return "ion-animation-controller"; } | ||
static get properties() { return { "create": { "method": true } }; } | ||
} |
@@ -76,6 +76,11 @@ import { Config, Nav, NavContainer } from '../../index'; | ||
} | ||
static get is() { return "ion-app"; } | ||
static get host() { return { "theme": "app" }; } | ||
static get properties() { return { "config": { "context": "config" }, "element": { "elementRef": true }, "getActiveNavs": { "method": true }, "getNavByIdOrName": { "method": true }, "getRootNavs": { "method": true }, "hoverCSS": { "state": true }, "isScrolling": { "method": true }, "modeCode": { "state": true }, "useRouter": { "state": true } }; } | ||
static get style() { return "/**style-placeholder:ion-app:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-app:**/"; } | ||
} | ||
export function findTopNavs(nav) { | ||
let containers = []; | ||
const childNavs = nav.getActiveChildNavs(); | ||
const childNavs = nav.getChildNavs(); | ||
if (!childNavs || !childNavs.length) { | ||
@@ -82,0 +87,0 @@ containers.push(nav); |
@@ -5,2 +5,6 @@ export class Avatar { | ||
} | ||
static get is() { return "ion-avatar"; } | ||
static get host() { return { "theme": "avatar" }; } | ||
static get style() { return "/**style-placeholder:ion-avatar:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-avatar:**/"; } | ||
} |
export class Backdrop { | ||
static get is() { return "ion-backdrop"; } | ||
static get style() { return "/**style-placeholder:ion-backdrop:**/"; } | ||
} |
@@ -5,2 +5,7 @@ export class Badge { | ||
} | ||
static get is() { return "ion-badge"; } | ||
static get host() { return { "theme": "badge" }; } | ||
static get properties() { return { "color": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-badge:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-badge:**/"; } | ||
} |
@@ -54,2 +54,7 @@ import { BlurEvent, FocusEvent } from '../../utils/input-interfaces'; | ||
} | ||
static get is() { return "ion-button"; } | ||
static get properties() { return { "buttonType": { "type": String }, "color": { "type": String }, "disabled": { "type": Boolean }, "el": { "elementRef": true }, "expand": { "type": "Any" }, "fill": { "type": "Any" }, "href": { "type": String }, "keyFocus": { "state": true }, "mode": { "type": "Any" }, "round": { "type": Boolean }, "size": { "type": "Any" }, "strong": { "type": Boolean } }; } | ||
static get events() { return [{ "name": "ionFocus", "method": "ionFocus", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionBlur", "method": "ionBlur", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-button:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-button:**/"; } | ||
} | ||
@@ -56,0 +61,0 @@ /** |
@@ -11,2 +11,5 @@ export class Buttons { | ||
} | ||
static get is() { return "ion-buttons"; } | ||
static get host() { return { "theme": "bar-buttons" }; } | ||
static get properties() { return { "el": { "elementRef": true } }; } | ||
} |
@@ -5,2 +5,7 @@ export class CardContent { | ||
} | ||
static get is() { return "ion-card-content"; } | ||
static get host() { return { "theme": "card-content" }; } | ||
static get properties() { return { "color": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-card-content:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-card-content:**/"; } | ||
} |
@@ -20,2 +20,7 @@ import { createThemedClasses } from '../../utils/theme'; | ||
} | ||
static get is() { return "ion-card-header"; } | ||
static get host() { return { "theme": "card-header" }; } | ||
static get properties() { return { "color": { "type": String }, "mode": { "type": "Any" }, "translucent": { "type": Boolean } }; } | ||
static get style() { return "/**style-placeholder:ion-card-header:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-card-header:**/"; } | ||
} |
@@ -11,2 +11,7 @@ export class CardSubtitle { | ||
} | ||
static get is() { return "ion-card-subtitle"; } | ||
static get host() { return { "theme": "card-subtitle" }; } | ||
static get properties() { return { "color": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-card-subtitle:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-card-subtitle:**/"; } | ||
} |
@@ -11,2 +11,7 @@ export class CardTitle { | ||
} | ||
static get is() { return "ion-card-title"; } | ||
static get host() { return { "theme": "card-title" }; } | ||
static get properties() { return { "color": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-card-title:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-card-title:**/"; } | ||
} |
@@ -5,2 +5,7 @@ export class Card { | ||
} | ||
static get is() { return "ion-card"; } | ||
static get host() { return { "theme": "card" }; } | ||
static get properties() { return { "color": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-card:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-card:**/"; } | ||
} |
@@ -92,3 +92,9 @@ import { BlurEvent, CheckboxInput, CheckedInputChangeEvent, FocusEvent, StyleEvent } from '../../utils/input-interfaces'; | ||
} | ||
static get is() { return "ion-checkbox"; } | ||
static get host() { return { "theme": "checkbox" }; } | ||
static get properties() { return { "checked": { "type": Boolean, "mutable": true, "watchCallbacks": ["checkedChanged"] }, "color": { "type": String }, "disabled": { "type": Boolean, "watchCallbacks": ["disabledChanged"] }, "keyFocus": { "state": true }, "mode": { "type": "Any" }, "name": { "type": String }, "value": { "type": String, "mutable": true } }; } | ||
static get events() { return [{ "name": "ionChange", "method": "ionChange", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionFocus", "method": "ionFocus", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionBlur", "method": "ionBlur", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionStyle", "method": "ionStyle", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-checkbox:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-checkbox:**/"; } | ||
} | ||
let checkboxIds = 0; |
@@ -6,6 +6,2 @@ import { CssClassMap } from '@stencil/core'; | ||
/** | ||
* @input {boolean} If true, activates a transparent button style. | ||
*/ | ||
this.clear = false; | ||
/** | ||
* @input {boolean} If true, sets the button into a disabled state. | ||
@@ -40,7 +36,3 @@ */ | ||
getStyleClassList(buttonType) { | ||
let classList = [].concat(this.clear ? this.getColorClassList(this.color, buttonType, 'clear', this.mode) : []); | ||
if (classList.length === 0) { | ||
classList = this.getColorClassList(this.color, buttonType, 'default', this.mode); | ||
} | ||
return classList; | ||
return this.getColorClassList(this.color, buttonType, this.fill || 'default', this.mode); | ||
} | ||
@@ -63,2 +55,6 @@ render() { | ||
} | ||
static get is() { return "ion-chip-button"; } | ||
static get properties() { return { "color": { "type": String }, "disabled": { "type": Boolean }, "el": { "elementRef": true }, "fill": { "type": String }, "href": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-chip-button:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-chip-button:**/"; } | ||
} |
@@ -5,2 +5,7 @@ export class Chip { | ||
} | ||
static get is() { return "ion-chip"; } | ||
static get host() { return { "theme": "chip" }; } | ||
static get properties() { return { "color": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-chip:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-chip:**/"; } | ||
} |
export class Col { | ||
static get is() { return "ion-col"; } | ||
} |
@@ -98,2 +98,6 @@ import { Config, DomController } from '../../index'; | ||
} | ||
static get is() { return "ion-content"; } | ||
static get properties() { return { "config": { "context": "config" }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "enableJsScroll": { "method": true }, "fullscreen": { "type": Boolean }, "ionScroll": { "type": "Any" }, "ionScrollEnd": { "type": "Any" }, "ionScrollStart": { "type": "Any" }, "scrollToBottom": { "method": true }, "scrollToTop": { "method": true } }; } | ||
static get style() { return "/**style-placeholder:ion-content:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-content:**/"; } | ||
} |
@@ -357,3 +357,9 @@ import { CssClassMap, EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-datetime"; } | ||
static get host() { return { "theme": "datetime" }; } | ||
static get properties() { return { "cancelText": { "type": String }, "dayNames": { "type": "Any" }, "dayShortNames": { "type": "Any" }, "dayValues": { "type": "Any" }, "disabled": { "type": Boolean }, "displayFormat": { "type": String }, "doneText": { "type": String }, "hourValues": { "type": "Any" }, "max": { "type": String, "mutable": true }, "min": { "type": String, "mutable": true }, "minuteValues": { "type": "Any" }, "monthNames": { "type": "Any" }, "monthShortNames": { "type": "Any" }, "monthValues": { "type": "Any" }, "pickerCtrl": { "connect": "ion-picker-controller" }, "pickerFormat": { "type": String }, "pickerOptions": { "type": "Any" }, "placeholder": { "type": String }, "text": { "state": true }, "value": { "type": String, "mutable": true, "watchCallbacks": ["valueChanged"] }, "yearValues": { "type": "Any" } }; } | ||
static get events() { return [{ "name": "ionCancel", "method": "ionCancel", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-datetime:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-datetime:**/"; } | ||
} | ||
const DEFAULT_FORMAT = 'MMM D, YYYY'; |
@@ -23,2 +23,4 @@ const subscriptions = new Map(); | ||
} | ||
static get is() { return "ion-events"; } | ||
static get properties() { return { "publish": { "method": true }, "subscribe": { "method": true }, "unsubscribe": { "method": true } }; } | ||
} | ||
@@ -25,0 +27,0 @@ // make this method async just to give the browser a chance to chill and do what it needs to do before firing this off |
@@ -86,2 +86,6 @@ import { CssClassMap } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-fab-button"; } | ||
static get properties() { return { "activated": { "type": Boolean }, "color": { "type": String }, "disabled": { "type": Boolean }, "el": { "elementRef": true }, "href": { "type": String }, "inContainer": { "state": true }, "inList": { "state": true }, "mode": { "type": "Any" }, "show": { "type": Boolean }, "toggleActive": { "type": "Any" }, "translucent": { "type": Boolean } }; } | ||
static get style() { return "/**style-placeholder:ion-fab-button:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-fab-button:**/"; } | ||
} |
@@ -24,2 +24,5 @@ export class FabList { | ||
} | ||
static get is() { return "ion-fab-list"; } | ||
static get properties() { return { "activated": { "type": Boolean, "watchCallbacks": ["activatedChanged"] }, "el": { "elementRef": true } }; } | ||
static get style() { return "/**style-placeholder:ion-fab-list:**/"; } | ||
} |
@@ -24,2 +24,5 @@ export class Fab { | ||
} | ||
static get is() { return "ion-fab"; } | ||
static get properties() { return { "activated": { "state": true }, "close": { "method": true }, "el": { "elementRef": true } }; } | ||
static get style() { return "/**style-placeholder:ion-fab:**/"; } | ||
} |
@@ -22,2 +22,7 @@ import { createThemedClasses } from '../../utils/theme'; | ||
} | ||
static get is() { return "ion-footer"; } | ||
static get host() { return { "theme": "footer" }; } | ||
static get properties() { return { "translucent": { "type": Boolean } }; } | ||
static get style() { return "/**style-placeholder:ion-footer:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-footer:**/"; } | ||
} |
@@ -102,2 +102,3 @@ export class GestureController { | ||
} | ||
static get is() { return "ion-gesture-controller"; } | ||
} | ||
@@ -146,2 +147,3 @@ export class GestureDelegate { | ||
} | ||
static get is() { return "ion-gesture-controller"; } | ||
} | ||
@@ -188,2 +190,3 @@ export class BlockerDelegate { | ||
} | ||
static get is() { return "ion-gesture-controller"; } | ||
} | ||
@@ -190,0 +193,0 @@ export const BLOCK_ALL = { |
@@ -0,4 +1,4 @@ | ||
import { EventEmitter } from '@stencil/core'; | ||
import { ElementRef, applyStyles, assert, getElementReference, updateDetail } from '../../utils/helpers'; | ||
import { BLOCK_ALL, BlockerDelegate, GestureController, GestureDelegate } from '../gesture-controller/gesture-controller'; | ||
import { EventEmitter } from '@stencil/core'; | ||
import { DomController } from '../../index'; | ||
@@ -347,2 +347,5 @@ import { PanRecognizer } from './recognizers'; | ||
} | ||
static get is() { return "ion-gesture"; } | ||
static get properties() { return { "attachTo": { "type": "Any" }, "autoBlockAll": { "type": Boolean }, "block": { "type": String, "watchCallbacks": ["blockChanged"] }, "canStart": { "type": "Any" }, "direction": { "type": String }, "disableScroll": { "type": Boolean }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "enabled": { "type": Boolean, "watchCallbacks": ["enabledChanged"] }, "enableListener": { "context": "enableListener" }, "gestureName": { "type": String }, "gesturePriority": { "type": Number }, "maxAngle": { "type": Number }, "notCaptured": { "type": "Any" }, "onEnd": { "type": "Any" }, "onMove": { "type": "Any" }, "onPress": { "type": "Any" }, "onStart": { "type": "Any" }, "onWillStart": { "type": "Any" }, "threshold": { "type": Number }, "type": { "type": String } }; } | ||
static get events() { return [{ "name": "ionGestureMove", "method": "ionGestureMove", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionGestureStart", "method": "ionGestureStart", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionGestureEnd", "method": "ionGestureEnd", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionGestureNotCaptured", "method": "ionGestureNotCaptured", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPress", "method": "ionPress", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
} | ||
@@ -349,0 +352,0 @@ const GESTURE_INLINE_STYLES = { |
export class Grid { | ||
static get is() { return "ion-grid"; } | ||
static get host() { return { "theme": "grid" }; } | ||
static get style() { return "/**style-placeholder:ion-grid:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-grid:**/"; } | ||
} |
@@ -22,2 +22,7 @@ import { createThemedClasses } from '../../utils/theme'; | ||
} | ||
static get is() { return "ion-header"; } | ||
static get host() { return { "theme": "header" }; } | ||
static get properties() { return { "translucent": { "type": Boolean } }; } | ||
static get style() { return "/**style-placeholder:ion-header:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-header:**/"; } | ||
} |
@@ -16,2 +16,4 @@ import { Config } from '../../index'; | ||
} | ||
static get is() { return "ion-infinite-scroll-content"; } | ||
static get properties() { return { "config": { "context": "config" }, "loadingSpinner": { "type": String, "mutable": true }, "loadingText": { "type": String } }; } | ||
} |
@@ -193,2 +193,6 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-infinite-scroll"; } | ||
static get properties() { return { "complete": { "method": true }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "enabled": { "type": Boolean, "watchCallbacks": ["enabledChanged"] }, "enableListener": { "context": "enableListener" }, "isLoading": { "state": true }, "position": { "type": String }, "threshold": { "type": String, "watchCallbacks": ["thresholdChanged"] } }; } | ||
static get events() { return [{ "name": "ionInfinite", "method": "ionInfinite", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-infinite-scroll:**/"; } | ||
} |
@@ -153,2 +153,8 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-input"; } | ||
static get host() { return { "theme": "input" }; } | ||
static get properties() { return { "accept": { "type": String }, "autocapitalize": { "type": String }, "autocomplete": { "type": String }, "autocorrect": { "type": String }, "autofocus": { "type": Boolean }, "checked": { "type": Boolean, "watchCallbacks": ["checkedChanged"] }, "clearInput": { "type": Boolean }, "clearOnEdit": { "type": Boolean, "mutable": true }, "debounce": { "type": Number, "watchCallbacks": ["debounceInput"] }, "disabled": { "type": Boolean, "watchCallbacks": ["disabledChanged"] }, "el": { "elementRef": true }, "inputmode": { "type": String }, "max": { "type": String }, "maxlength": { "type": Number }, "min": { "type": String }, "minlength": { "type": Number }, "multiple": { "type": Boolean }, "name": { "type": String }, "pattern": { "type": String }, "placeholder": { "type": String }, "readonly": { "type": Boolean }, "required": { "type": Boolean }, "results": { "type": Number }, "size": { "type": Number }, "spellcheck": { "type": Boolean }, "step": { "type": String }, "type": { "type": String }, "value": { "type": String, "mutable": true, "watchCallbacks": ["valueChanged"] } }; } | ||
static get events() { return [{ "name": "ionInput", "method": "ionInput", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionStyle", "method": "ionStyle", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionBlur", "method": "ionBlur", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionFocus", "method": "ionFocus", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-input:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-input:**/"; } | ||
} |
@@ -11,2 +11,7 @@ export class ItemDivider { | ||
} | ||
static get is() { return "ion-item-divider"; } | ||
static get host() { return { "theme": "item item-divider" }; } | ||
static get properties() { return { "color": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-item-divider:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-item-divider:**/"; } | ||
} |
@@ -25,2 +25,5 @@ export class ItemOption { | ||
} | ||
static get is() { return "ion-item-option"; } | ||
static get host() { return { "theme": "item-option" }; } | ||
static get properties() { return { "color": { "type": String }, "disabled": { "type": Boolean }, "href": { "type": String }, "mode": { "type": "Any" } }; } | ||
} |
@@ -31,2 +31,5 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-item-options"; } | ||
static get properties() { return { "el": { "elementRef": true }, "fireSwipeEvent": { "method": true }, "isRightSide": { "method": true }, "side": { "type": "Any" }, "width": { "method": true } }; } | ||
static get events() { return [{ "name": "ionSwipe", "method": "ionSwipe", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
} |
@@ -242,2 +242,7 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-item-sliding"; } | ||
static get properties() { return { "close": { "method": true }, "closeOpened": { "method": true }, "el": { "elementRef": true }, "getOpenAmount": { "method": true }, "getSlidingPercent": { "method": true }, "state": { "state": true } }; } | ||
static get events() { return [{ "name": "ionDrag", "method": "ionDrag", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-item-sliding:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-item-sliding:**/"; } | ||
} |
@@ -51,2 +51,6 @@ import { createThemedClasses } from '../../utils/theme'; | ||
} | ||
static get is() { return "ion-item"; } | ||
static get properties() { return { "color": { "type": String }, "el": { "elementRef": true }, "hasStyleChange": { "state": true }, "href": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-item:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-item:**/"; } | ||
} |
@@ -22,2 +22,5 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-keyboard-controller"; } | ||
static get properties() { return { "config": { "context": "config" } }; } | ||
static get events() { return [{ "name": "keyboardWillShow", "method": "keyboardWillShow", "bubbles": true, "cancelable": true, "composed": true }, { "name": "keyboardDidShow", "method": "keyboardDidShow", "bubbles": true, "cancelable": true, "composed": true }, { "name": "keyboardWillHide", "method": "keyboardWillHide", "bubbles": true, "cancelable": true, "composed": true }, { "name": "keyboardDidHide", "method": "keyboardDidHide", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
} | ||
@@ -24,0 +27,0 @@ export function onCloseImpl(keyboardController, callback, pollingInterval, maxPollingChecks) { |
@@ -37,2 +37,8 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-label"; } | ||
static get host() { return { "theme": "label" }; } | ||
static get properties() { return { "color": { "type": String }, "el": { "elementRef": true }, "fixed": { "type": Boolean }, "floating": { "type": Boolean }, "getText": { "method": true }, "mode": { "type": "Any" }, "stacked": { "type": Boolean } }; } | ||
static get events() { return [{ "name": "ionStyle", "method": "ionStyle", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-label:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-label:**/"; } | ||
} |
@@ -5,2 +5,7 @@ export class ListHeader { | ||
} | ||
static get is() { return "ion-list-header"; } | ||
static get host() { return { "theme": "list-header" }; } | ||
static get properties() { return { "color": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-list-header:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-list-header:**/"; } | ||
} |
@@ -20,2 +20,7 @@ import { ItemSliding } from '../item-sliding/item-sliding'; | ||
} | ||
static get is() { return "ion-list"; } | ||
static get host() { return { "theme": "list" }; } | ||
static get properties() { return { "closeSlidingItems": { "method": true }, "getOpenedItem": { "method": true }, "setOpenedItem": { "method": true } }; } | ||
static get style() { return "/**style-placeholder:ion-list:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-list:**/"; } | ||
} |
@@ -51,2 +51,4 @@ import { LoadingEvent, LoadingOptions } from '../../index'; | ||
} | ||
static get is() { return "ion-loading-controller"; } | ||
static get properties() { return { "create": { "method": true } }; } | ||
} |
@@ -142,3 +142,9 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-loading"; } | ||
static get host() { return { "theme": "loading" }; } | ||
static get properties() { return { "animationCtrl": { "connect": "ion-animation-controller" }, "config": { "context": "config" }, "content": { "type": String }, "cssClass": { "type": String }, "dismiss": { "method": true }, "dismissOnPageChange": { "type": Boolean }, "dom": { "context": "dom" }, "duration": { "type": Number }, "el": { "elementRef": true }, "enterAnimation": { "type": "Any" }, "leaveAnimation": { "type": "Any" }, "present": { "method": true }, "showBackdrop": { "type": Boolean }, "spinner": { "type": String }, "translucent": { "type": Boolean }, "willAnimate": { "type": Boolean } }; } | ||
static get events() { return [{ "name": "ionLoadingDidLoad", "method": "ionLoadingDidLoad", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionLoadingDidPresent", "method": "ionLoadingDidPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionLoadingWillPresent", "method": "ionLoadingWillPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionLoadingWillDismiss", "method": "ionLoadingWillDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionLoadingDidDismiss", "method": "ionLoadingDidDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionLoadingDidUnload", "method": "ionLoadingDidUnload", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-loading:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-loading:**/"; } | ||
} | ||
export { iosEnterAnimation as iosLoadingEnterAnimation, iosLeaveAnimation as iosLoadingLeaveAnimation, mdEnterAnimation as mdLoadingEnterAnimation, mdLeaveAnimation as mdLoadingLeaveAnimation }; |
@@ -213,3 +213,5 @@ import { Animation, AnimationBuilder, AnimationController, Menu } from '../../index'; | ||
} | ||
static get is() { return "ion-menu-controller"; } | ||
static get properties() { return { "_register": { "method": true }, "_setActiveMenu": { "method": true }, "_unregister": { "method": true }, "animationCtrl": { "connect": "ion-animation-controller" }, "close": { "method": true }, "createAnimation": { "method": true }, "enable": { "method": true }, "get": { "method": true }, "getMenus": { "method": true }, "getOpen": { "method": true }, "isAnimating": { "method": true }, "isEnabled": { "method": true }, "isOpen": { "method": true }, "open": { "method": true }, "swipeEnable": { "method": true }, "toggle": { "method": true } }; } | ||
} | ||
export { MenuOverlayAnimation, MenuPushAnimation, MenuRevealAnimation }; |
@@ -336,2 +336,8 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-menu"; } | ||
static get host() { return { "theme": "menu" }; } | ||
static get properties() { return { "close": { "method": true }, "config": { "context": "config" }, "content": { "type": String }, "el": { "elementRef": true }, "enabled": { "type": Boolean, "mutable": true, "watchCallbacks": ["enabledChanged"] }, "enableListener": { "context": "enableListener" }, "isOpen": { "method": true }, "lazyMenuCtrl": { "connect": "ion-menu-controller" }, "maxEdgeStart": { "type": Number }, "menuId": { "type": String }, "open": { "method": true }, "persistent": { "type": Boolean }, "setOpen": { "method": true }, "side": { "type": "Any", "watchCallbacks": ["sideChanged"] }, "swipeEnabled": { "type": Boolean, "watchCallbacks": ["swipeEnabledChanged"] }, "toggle": { "method": true }, "type": { "type": String, "mutable": true, "watchCallbacks": ["typeChanged"] } }; } | ||
static get events() { return [{ "name": "ionDrag", "method": "ionDrag", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionOpen", "method": "ionOpen", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionClose", "method": "ionClose", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-menu:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-menu:**/"; } | ||
} | ||
@@ -338,0 +344,0 @@ function computeDelta(deltaX, isOpen, isRightSide) { |
@@ -34,2 +34,4 @@ import { Modal, ModalEvent, ModalOptions } from '../../index'; | ||
} | ||
static get is() { return "ion-modal-controller"; } | ||
static get properties() { return { "create": { "method": true }, "dismiss": { "method": true } }; } | ||
} | ||
@@ -36,0 +38,0 @@ function getHighestId() { |
@@ -116,4 +116,10 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-modal"; } | ||
static get host() { return { "theme": "modal" }; } | ||
static get properties() { return { "animationCtrl": { "connect": "ion-animation-controller" }, "color": { "type": String }, "component": { "type": "Any" }, "config": { "context": "config" }, "cssClass": { "type": String }, "data": { "type": "Any" }, "delegate": { "type": "Any", "mutable": true }, "dismiss": { "method": true }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "enableBackdropDismiss": { "type": Boolean }, "enterAnimation": { "type": "Any" }, "getUserComponentContainer": { "method": true }, "leaveAnimation": { "type": "Any" }, "modalId": { "type": Number }, "mode": { "type": String }, "present": { "method": true }, "showBackdrop": { "type": Boolean }, "willAnimate": { "type": Boolean } }; } | ||
static get events() { return [{ "name": "ionModalDidLoad", "method": "ionModalDidLoad", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionModalDidPresent", "method": "ionModalDidPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionModalWillPresent", "method": "ionModalWillPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionModalWillDismiss", "method": "ionModalWillDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionModalDidDismiss", "method": "ionModalDidDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionModalDidUnload", "method": "ionModalDidUnload", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-modal:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-modal:**/"; } | ||
} | ||
export { iosEnterAnimation as iosModalEnterAnimation, iosLeaveAnimation as iosModalLeaveAnimation, mdEnterAnimation as mdModalEnterAnimation, mdLeaveAnimation as mdModalLeaveAnimation }; | ||
export const USER_COMPONENT_MODAL_CONTAINER_CLASS = 'modal-wrapper'; |
@@ -10,3 +10,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
import { EventEmitter } from '@stencil/core'; | ||
import { Animation, AnimationController, AnimationOptions, ComponentDataPair, Config, FrameworkDelegate, NavOptions, NavResult, NavState, PublicNav, PublicViewController, RouterEntries, Transition, TransitionInstruction } from '../../index'; | ||
import { Animation, AnimationController, AnimationOptions, ComponentDataPair, Config, FrameworkDelegate, NavContainer, NavOptions, NavResult, NavState, PublicNav, PublicViewController, RouterEntries, Transition, TransitionInstruction } from '../../index'; | ||
import { ViewController } from './view-controller'; | ||
@@ -111,5 +111,12 @@ import { DIRECTION_BACK, DIRECTION_FORWARD, STATE_ATTACHED, STATE_DESTROYED, STATE_NEW, VIEW_ID_START, destroyTransition, getActiveImpl, getFirstView, getHydratedTransition, getNextNavId, getNextTransitionId, getParentTransitionId, getPreviousImpl, getViews, isViewController, resolveRoute, setZIndex, toggleHidden, transitionFactory } from './nav-utils'; | ||
} | ||
getChildNavs() { | ||
return this.childNavs || []; | ||
} | ||
render() { | ||
return h("slot", null); | ||
} | ||
static get is() { return "ion-nav"; } | ||
static get properties() { return { "animationCtrl": { "connect": "ion-animation-controller" }, "canGoBack": { "method": true }, "canSwipeBack": { "method": true }, "config": { "context": "config" }, "delegate": { "type": "Any" }, "element": { "elementRef": true }, "getActive": { "method": true }, "getChildNavs": { "method": true }, "getFirstView": { "method": true }, "getPrevious": { "method": true }, "getRoutes": { "method": true }, "getState": { "method": true }, "insert": { "method": true }, "insertPages": { "method": true }, "mode": { "type": String }, "pop": { "method": true }, "popTo": { "method": true }, "popToRoot": { "method": true }, "push": { "method": true }, "removeIndex": { "method": true }, "removeView": { "method": true }, "resize": { "method": true }, "root": { "type": "Any" }, "setPages": { "method": true }, "setRoot": { "method": true }, "setRouteId": { "method": true } }; } | ||
static get events() { return [{ "name": "navInit", "method": "navInit", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionNavChanged", "method": "ionNavChanged", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-nav:**/"; } | ||
} | ||
@@ -116,0 +123,0 @@ export function getState(nav) { |
@@ -49,2 +49,5 @@ import { createThemedClasses } from '../../utils/theme'; | ||
} | ||
static get is() { return "ion-navbar"; } | ||
static get host() { return { "theme": "toolbar" }; } | ||
static get properties() { return { "backButtonIcon": { "type": String }, "backButtonText": { "type": String }, "config": { "context": "config" }, "el": { "elementRef": true }, "hidden": { "type": Boolean }, "hideBackButton": { "type": Boolean } }; } | ||
} |
@@ -5,2 +5,7 @@ export class Note { | ||
} | ||
static get is() { return "ion-note"; } | ||
static get host() { return { "theme": "note" }; } | ||
static get properties() { return { "color": { "type": String }, "mode": { "type": "Any" } }; } | ||
static get style() { return "/**style-placeholder:ion-note:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-note:**/"; } | ||
} |
@@ -12,2 +12,4 @@ export class Page { | ||
} | ||
static get is() { return "ion-page"; } | ||
static get style() { return "/**style-placeholder:ion-page:**/"; } | ||
} |
@@ -352,2 +352,5 @@ import { DomController, GestureDetail, PickerColumn, PickerColumnOption } from '../../index'; | ||
} | ||
static get is() { return "ion-picker-column"; } | ||
static get host() { return { "theme": "picker-col" }; } | ||
static get properties() { return { "col": { "type": "Any" }, "dom": { "context": "dom" }, "el": { "elementRef": true } }; } | ||
} | ||
@@ -354,0 +357,0 @@ export const PICKER_OPT_SELECTED = 'picker-opt-selected'; |
@@ -48,2 +48,4 @@ import { PickerEvent, PickerOptions } from '../../index'; | ||
} | ||
static get is() { return "ion-picker-controller"; } | ||
static get properties() { return { "create": { "method": true } }; } | ||
} |
@@ -243,3 +243,9 @@ import { CssClassMap, EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-picker"; } | ||
static get host() { return { "theme": "picker" }; } | ||
static get properties() { return { "addButton": { "method": true }, "addColumn": { "method": true }, "animationCtrl": { "connect": "ion-animation-controller" }, "buttons": { "type": "Any" }, "columns": { "type": "Any" }, "config": { "context": "config" }, "content": { "type": String }, "cssClass": { "type": String }, "dismiss": { "method": true }, "dismissOnPageChange": { "type": Boolean }, "dom": { "context": "dom" }, "duration": { "type": Number }, "el": { "elementRef": true }, "enableBackdropDismiss": { "type": Boolean }, "enterAnimation": { "type": "Any" }, "getColumn": { "method": true }, "getColumns": { "method": true }, "leaveAnimation": { "type": "Any" }, "pickerId": { "type": String }, "present": { "method": true }, "showBackdrop": { "type": Boolean }, "showSpinner": { "state": true }, "spinner": { "state": true }, "willAnimate": { "type": Boolean } }; } | ||
static get events() { return [{ "name": "ionPickerDidLoad", "method": "ionPickerDidLoad", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPickerDidPresent", "method": "ionPickerDidPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPickerWillPresent", "method": "ionPickerWillPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPickerWillDismiss", "method": "ionPickerWillDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPickerDidDismiss", "method": "ionPickerDidDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPickerDidUnload", "method": "ionPickerDidUnload", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-picker:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-picker:**/"; } | ||
} | ||
export { iosEnterAnimation as iosPickerEnterAnimation, iosLeaveAnimation as iosPickerLeaveAnimation }; |
@@ -52,2 +52,4 @@ import { PopoverEvent, PopoverOptions } from '../../index'; | ||
} | ||
static get is() { return "ion-popover-controller"; } | ||
static get properties() { return { "create": { "method": true } }; } | ||
} |
@@ -121,2 +121,8 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-popover"; } | ||
static get host() { return { "theme": "popover" }; } | ||
static get properties() { return { "animationCtrl": { "connect": "ion-animation-controller" }, "color": { "type": String }, "component": { "type": String }, "config": { "context": "config" }, "cssClass": { "type": String }, "data": { "type": "Any" }, "delegate": { "type": "Any", "mutable": true }, "dismiss": { "method": true }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "enableBackdropDismiss": { "type": Boolean }, "enterAnimation": { "type": "Any" }, "ev": { "type": "Any" }, "leaveAnimation": { "type": "Any" }, "mode": { "type": String }, "popoverId": { "type": String }, "present": { "method": true }, "showBackdrop": { "type": Boolean }, "translucent": { "type": Boolean }, "willAnimate": { "type": Boolean } }; } | ||
static get events() { return [{ "name": "ionPopoverDidLoad", "method": "ionPopoverDidLoad", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPopoverDidPresent", "method": "ionPopoverDidPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPopoverWillPresent", "method": "ionPopoverWillPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPopoverWillDismiss", "method": "ionPopoverWillDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPopoverDidDismiss", "method": "ionPopoverDidDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionPopoverDidUnload", "method": "ionPopoverDidUnload", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-popover:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-popover:**/"; } | ||
} | ||
@@ -123,0 +129,0 @@ export const POPOVER_POSITION_PROPERTIES = { |
@@ -128,3 +128,6 @@ import { ComponentDidLoad, EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-radio-group"; } | ||
static get properties() { return { "allowEmptySelection": { "type": Boolean }, "disabled": { "type": Boolean, "mutable": true }, "el": { "elementRef": true }, "labelId": { "state": true }, "name": { "type": String, "mutable": true }, "value": { "type": String, "mutable": true, "watchCallbacks": ["valueChanged"] } }; } | ||
static get events() { return [{ "name": "ionChange", "method": "ionChange", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
} | ||
let radioGroupIds = 0; |
@@ -106,3 +106,9 @@ import { BlurEvent, CheckedInputChangeEvent, FocusEvent, RadioButtonInput, StyleEvent } from '../../utils/input-interfaces'; | ||
} | ||
static get is() { return "ion-radio"; } | ||
static get host() { return { "theme": "radio" }; } | ||
static get properties() { return { "checked": { "type": Boolean, "mutable": true, "watchCallbacks": ["checkedChanged"] }, "color": { "type": String, "watchCallbacks": ["colorChanged"] }, "disabled": { "type": Boolean, "watchCallbacks": ["disabledChanged"] }, "keyFocus": { "state": true }, "mode": { "type": "Any" }, "name": { "type": String }, "value": { "type": String, "mutable": true } }; } | ||
static get events() { return [{ "name": "ionRadioDidLoad", "method": "ionRadioDidLoad", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionRadioDidUnload", "method": "ionRadioDidUnload", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionStyle", "method": "ionStyle", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSelect", "method": "ionSelect", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionFocus", "method": "ionFocus", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionBlur", "method": "ionBlur", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-radio:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-radio:**/"; } | ||
} | ||
let radioButtonIds = 0; |
@@ -47,2 +47,5 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-range-knob"; } | ||
static get properties() { return { "disabled": { "type": Boolean }, "knob": { "type": String }, "labelId": { "type": String }, "max": { "type": Number }, "min": { "type": Number }, "pin": { "type": Boolean }, "pressed": { "type": Boolean }, "ratio": { "type": Number }, "val": { "type": Number } }; } | ||
static get events() { return [{ "name": "ionIncrease", "method": "ionIncrease", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionDecrease", "method": "ionDecrease", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
} | ||
@@ -49,0 +52,0 @@ export const KEY_LEFT = 37; |
@@ -332,2 +332,8 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-range"; } | ||
static get host() { return { "theme": "range" }; } | ||
static get properties() { return { "activeB": { "state": true }, "barL": { "state": true }, "barR": { "state": true }, "color": { "type": String }, "debounce": { "type": Number, "watchCallbacks": ["debounceChange"] }, "disabled": { "type": Boolean, "watchCallbacks": ["disabledChanged"] }, "dualKnobs": { "type": Boolean }, "el": { "elementRef": true }, "max": { "type": Number }, "min": { "type": Number }, "mode": { "type": "Any" }, "pin": { "type": Boolean }, "pressed": { "state": true }, "pressedA": { "state": true }, "pressedB": { "state": true }, "ratio": { "method": true }, "ratioA": { "state": true }, "ratioB": { "state": true }, "ratioUpper": { "method": true }, "rect": { "state": true }, "snaps": { "type": Boolean }, "step": { "type": Number }, "ticks": { "state": true }, "valA": { "state": true }, "valB": { "state": true }, "value": { "type": "Any", "mutable": true, "watchCallbacks": ["valueChanged"] } }; } | ||
static get events() { return [{ "name": "ionChange", "method": "ionChange", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionStyle", "method": "ionStyle", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionFocus", "method": "ionFocus", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionBlur", "method": "ionBlur", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-range:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-range:**/"; } | ||
} |
@@ -16,2 +16,6 @@ import { DomController, GestureDetail } from '../../index'; | ||
} | ||
static get is() { return "ion-reorder-group"; } | ||
static get host() { return { "theme": "reorder-group" }; } | ||
static get properties() { return { "_actived": { "state": true }, "_enabled": { "state": true }, "_iconVisible": { "state": true }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "enabled": { "type": Boolean, "watchCallbacks": ["enabledChanged"] } }; } | ||
static get style() { return "/**style-placeholder:ion-reorder-group:**/"; } | ||
} | ||
@@ -233,2 +237,6 @@ export class ReorderGroup { | ||
} | ||
static get is() { return "ion-reorder-group"; } | ||
static get host() { return { "theme": "reorder-group" }; } | ||
static get properties() { return { "_actived": { "state": true }, "_enabled": { "state": true }, "_iconVisible": { "state": true }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "enabled": { "type": Boolean, "watchCallbacks": ["enabledChanged"] } }; } | ||
static get style() { return "/**style-placeholder:ion-reorder-group:**/"; } | ||
} | ||
@@ -235,0 +243,0 @@ function indexForItem(element) { |
@@ -20,2 +20,6 @@ export class Reorder { | ||
} | ||
static get is() { return "ion-reorder"; } | ||
static get host() { return { "theme": "reorder" }; } | ||
static get properties() { return { "el": { "elementRef": true }, "hasContent": { "state": true } }; } | ||
static get style() { return "/**style-placeholder:ion-reorder:**/"; } | ||
} |
export class RouteLink { | ||
static get is() { return "ion-route-link"; } | ||
static get properties() { return { "router": { "type": "Any" }, "url": { "type": String } }; } | ||
} |
@@ -14,2 +14,4 @@ import { RouterEntry, parseURL } from '../router-controller/router-utils'; | ||
} | ||
static get is() { return "ion-route"; } | ||
static get properties() { return { "component": { "type": String }, "getRoute": { "method": true }, "path": { "type": String }, "props": { "type": "Any" } }; } | ||
} |
@@ -83,2 +83,4 @@ import { RouterSegments, generateURL, parseURL, readNavState, writeNavState } from './router-utils'; | ||
} | ||
static get is() { return "ion-router-controller"; } | ||
static get properties() { return { "config": { "context": "config" }, "dom": { "context": "dom" } }; } | ||
} |
export class Row { | ||
static get is() { return "ion-row"; } | ||
} |
@@ -238,2 +238,5 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-scroll"; } | ||
static get properties() { return { "config": { "context": "config" }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "enabled": { "type": Boolean }, "isServer": { "context": "isServer" }, "jsScroll": { "type": Boolean, "watchCallbacks": ["jsScrollChanged"] }, "onionScroll": { "type": "Any" }, "onionScrollEnd": { "type": "Any" }, "onionScrollStart": { "type": "Any" }, "scrollToBottom": { "method": true }, "scrollToPoint": { "method": true }, "scrollToTop": { "method": true } }; } | ||
static get events() { return [{ "name": "ionScrollStart", "method": "ionScrollStart", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionScroll", "method": "ionScroll", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionScrollEnd", "method": "ionScrollEnd", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
} |
@@ -234,2 +234,8 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-searchbar"; } | ||
static get host() { return { "theme": "searchbar" }; } | ||
static get properties() { return { "activated": { "state": true }, "animated": { "type": Boolean, "mutable": true }, "autocomplete": { "type": String, "mutable": true }, "autocorrect": { "type": String, "mutable": true }, "cancelButtonText": { "type": String, "mutable": true }, "color": { "type": String }, "debounce": { "type": Number, "mutable": true, "watchCallbacks": ["debounceInput"] }, "el": { "elementRef": true }, "focused": { "state": true }, "mode": { "type": "Any" }, "placeholder": { "type": String, "mutable": true }, "showCancelButton": { "type": Boolean, "mutable": true }, "spellcheck": { "type": Boolean, "mutable": true }, "type": { "type": String, "mutable": true }, "value": { "type": String, "mutable": true } }; } | ||
static get events() { return [{ "name": "ionInput", "method": "ionInput", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionCancel", "method": "ionCancel", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionClear", "method": "ionClear", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionBlur", "method": "ionBlur", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionFocus", "method": "ionFocus", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-searchbar:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-searchbar:**/"; } | ||
} |
@@ -53,2 +53,5 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-segment-button"; } | ||
static get properties() { return { "activated": { "state": true }, "checked": { "type": Boolean, "mutable": true }, "color": { "type": String }, "disabled": { "type": Boolean, "mutable": true }, "el": { "elementRef": true }, "mode": { "type": "Any" }, "value": { "type": String, "mutable": true } }; } | ||
static get events() { return [{ "name": "ionClick", "method": "ionClick", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
} |
@@ -49,2 +49,8 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-segment"; } | ||
static get host() { return { "theme": "segment" }; } | ||
static get properties() { return { "color": { "type": String }, "disabled": { "type": Boolean, "mutable": true }, "el": { "elementRef": true }, "mode": { "type": "Any" }, "value": { "type": String, "mutable": true, "watchCallbacks": ["valueChanged"] } }; } | ||
static get events() { return [{ "name": "ionChange", "method": "ionChange", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-segment:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-segment:**/"; } | ||
} |
@@ -32,3 +32,7 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-select-option"; } | ||
static get host() { return { "theme": "select-option" }; } | ||
static get properties() { return { "disabled": { "type": Boolean }, "el": { "elementRef": true }, "selected": { "type": Boolean, "mutable": true }, "value": { "type": String, "mutable": true } }; } | ||
static get events() { return [{ "name": "ionSelectOptionDidLoad", "method": "ionSelectOptionDidLoad", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSelectOptionDidUnload", "method": "ionSelectOptionDidUnload", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
} | ||
let selectOptionIds = 0; |
@@ -22,2 +22,5 @@ export class SelectPopover { | ||
} | ||
static get is() { return "ion-select-popover"; } | ||
static get host() { return { "theme": "select-popover" }; } | ||
static get properties() { return { "message": { "type": String }, "options": { "type": "Any" }, "subTitle": { "type": String }, "title": { "type": String } }; } | ||
} |
@@ -369,3 +369,9 @@ import { CssClassMap, EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-select"; } | ||
static get host() { return { "theme": "select" }; } | ||
static get properties() { return { "actionSheetCtrl": { "connect": "ion-action-sheet-controller" }, "alertCtrl": { "connect": "ion-alert-controller" }, "cancelText": { "type": String }, "disabled": { "type": Boolean, "watchCallbacks": ["disabledChanged"] }, "el": { "elementRef": true }, "interface": { "type": String }, "interfaceOptions": { "type": "Any" }, "isExpanded": { "state": true }, "keyFocus": { "state": true }, "multiple": { "type": Boolean }, "name": { "type": String, "mutable": true }, "okText": { "type": String }, "placeholder": { "type": String }, "popoverCtrl": { "connect": "ion-popover-controller" }, "selectedText": { "type": String }, "text": { "state": true }, "value": { "type": "Any", "mutable": true, "watchCallbacks": ["valueChanged"] } }; } | ||
static get events() { return [{ "name": "ionChange", "method": "ionChange", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionCancel", "method": "ionCancel", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionFocus", "method": "ionFocus", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionBlur", "method": "ionBlur", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionStyle", "method": "ionStyle", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-select:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-select:**/"; } | ||
} | ||
let selectIds = 0; |
@@ -8,2 +8,5 @@ export class SkeletonText { | ||
} | ||
static get is() { return "ion-skeleton-text"; } | ||
static get properties() { return { "width": { "type": String } }; } | ||
static get style() { return "/**style-placeholder:ion-skeleton-text:**/"; } | ||
} |
@@ -13,2 +13,4 @@ export class Slide { | ||
} | ||
static get is() { return "ion-slide"; } | ||
static get style() { return "/**style-placeholder:ion-slide:**/"; } | ||
} |
@@ -303,3 +303,7 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-slides"; } | ||
static get properties() { return { "el": { "elementRef": true }, "getActiveIndex": { "method": true }, "getPreviousIndex": { "method": true }, "isBeginning": { "method": true }, "isEnd": { "method": true }, "length": { "method": true }, "lockSwipes": { "method": true }, "lockSwipeToNext": { "method": true }, "lockSwipeToPrev": { "method": true }, "options": { "type": "Any", "watchCallbacks": ["updateSwiperOptions"] }, "pager": { "type": Boolean }, "slideNext": { "method": true }, "slidePrev": { "method": true }, "slideTo": { "method": true }, "startAutoplay": { "method": true }, "stopAutoplay": { "method": true }, "update": { "method": true } }; } | ||
static get events() { return [{ "name": "ionSlideWillChange", "method": "ionSlideWillChange", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlideDidChange", "method": "ionSlideDidChange", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlideNextStart", "method": "ionSlideNextStart", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlidePrevStart", "method": "ionSlidePrevStart", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlideNextEnd", "method": "ionSlideNextEnd", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlidePrevEnd", "method": "ionSlidePrevEnd", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlideTransitionStart", "method": "ionSlideTransitionStart", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlideTransitionEnd", "method": "ionSlideTransitionEnd", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlideDrag", "method": "ionSlideDrag", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlideReachStart", "method": "ionSlideReachStart", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlideReachEnd", "method": "ionSlideReachEnd", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlideTouchStart", "method": "ionSlideTouchStart", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionSlideTouchEnd", "method": "ionSlideTouchEnd", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-slides:**/"; } | ||
} | ||
let slidesId = -1; |
@@ -60,2 +60,7 @@ import { createThemedClasses } from '../../utils/theme'; | ||
} | ||
static get is() { return "ion-spinner"; } | ||
static get host() { return { "theme": "spinner" }; } | ||
static get properties() { return { "color": { "type": String }, "config": { "context": "config" }, "duration": { "type": Number }, "mode": { "type": "Any" }, "name": { "type": String }, "paused": { "type": Boolean } }; } | ||
static get style() { return "/**style-placeholder:ion-spinner:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-spinner:**/"; } | ||
} | ||
@@ -62,0 +67,0 @@ function buildCircle(spinner, duration, index, total) { |
@@ -114,2 +114,8 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-split-pane"; } | ||
static get host() { return { "theme": "split-pane" }; } | ||
static get properties() { return { "el": { "elementRef": true }, "enabled": { "type": Boolean }, "isVisible": { "method": true }, "visible": { "state": true }, "when": { "type": "Any", "watchCallbacks": ["whenChanged"] } }; } | ||
static get events() { return [{ "name": "ionSplitPaneDidChange", "method": "ionSplitPaneDidChange", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionChange", "method": "ionChange", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-split-pane:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-split-pane:**/"; } | ||
} | ||
@@ -116,0 +122,0 @@ function setPaneClass(el, isMain) { |
@@ -55,2 +55,5 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-tab-button"; } | ||
static get properties() { return { "el": { "elementRef": true }, "selected": { "type": Boolean }, "tab": { "type": "Any" } }; } | ||
static get events() { return [{ "name": "ionTabbarClick", "method": "ionTabbarClick", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionTabButtonDidLoad", "method": "ionTabButtonDidLoad", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionTabButtonDidUnload", "method": "ionTabButtonDidUnload", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
} |
@@ -59,2 +59,5 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-tab"; } | ||
static get properties() { return { "active": { "state": true }, "badge": { "type": String }, "badgeStyle": { "type": String }, "btnId": { "type": String }, "el": { "elementRef": true }, "enabled": { "type": Boolean }, "getPath": { "method": true }, "icon": { "type": String }, "init": { "state": true }, "path": { "type": String }, "selected": { "type": Boolean, "mutable": true, "watchCallbacks": ["selectedChanged"] }, "setActive": { "method": true }, "show": { "type": Boolean }, "tabsHideOnSubPages": { "type": Boolean }, "title": { "type": String } }; } | ||
static get events() { return [{ "name": "ionSelect", "method": "ionSelect", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
} |
@@ -125,2 +125,5 @@ import { createThemedClasses } from '../../utils/theme'; | ||
} | ||
static get is() { return "ion-tabbar"; } | ||
static get host() { return { "theme": "tabbar" }; } | ||
static get properties() { return { "canScrollLeft": { "state": true }, "canScrollRight": { "state": true }, "dom": { "context": "dom" }, "el": { "elementRef": true }, "hidden": { "state": true }, "highlight": { "type": Boolean }, "layout": { "type": String }, "placement": { "type": String }, "scrollable": { "type": "Any" }, "selectedTab": { "type": "Any", "watchCallbacks": ["selectedTabChanged"] }, "tabs": { "type": "Any" }, "translucent": { "type": Boolean } }; } | ||
} |
@@ -153,3 +153,8 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-tabs"; } | ||
static get properties() { return { "config": { "context": "config" }, "el": { "elementRef": true }, "getByIndex": { "method": true }, "getIndex": { "method": true }, "getSelected": { "method": true }, "getTabs": { "method": true }, "name": { "type": String }, "scrollable": { "type": Boolean }, "select": { "method": true }, "selectedTab": { "state": true }, "tabbarHidden": { "type": Boolean }, "tabbarHighlight": { "type": Boolean, "mutable": true }, "tabbarLayout": { "type": String, "mutable": true }, "tabbarPlacement": { "type": String, "mutable": true }, "tabs": { "state": true }, "translucent": { "type": Boolean } }; } | ||
static get events() { return [{ "name": "ionChange", "method": "ionChange", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-tabs:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-tabs:**/"; } | ||
} | ||
let tabIds = -1; |
@@ -129,2 +129,8 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-textarea"; } | ||
static get host() { return { "theme": "textarea" }; } | ||
static get properties() { return { "autocapitalize": { "type": String }, "autocomplete": { "type": String }, "autofocus": { "type": Boolean }, "clearOnEdit": { "type": Boolean, "mutable": true }, "cols": { "type": Number }, "debounce": { "type": Number, "watchCallbacks": ["debounceInput"] }, "disabled": { "type": Boolean, "watchCallbacks": ["disabledChanged"] }, "el": { "elementRef": true }, "maxlength": { "type": Number }, "minlength": { "type": Number }, "name": { "type": String }, "placeholder": { "type": String }, "readonly": { "type": Boolean }, "required": { "type": Boolean }, "rows": { "type": Number }, "spellcheck": { "type": Boolean }, "value": { "type": String, "mutable": true, "watchCallbacks": ["valueChanged"] }, "wrap": { "type": String } }; } | ||
static get events() { return [{ "name": "ionInput", "method": "ionInput", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionStyle", "method": "ionStyle", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionBlur", "method": "ionBlur", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionFocus", "method": "ionFocus", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-textarea:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-textarea:**/"; } | ||
} |
@@ -5,2 +5,6 @@ export class Thumbnail { | ||
} | ||
static get is() { return "ion-thumbnail"; } | ||
static get host() { return { "theme": "thumbnail" }; } | ||
static get style() { return "/**style-placeholder:ion-thumbnail:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-thumbnail:**/"; } | ||
} |
@@ -10,2 +10,6 @@ import { createThemedClasses } from '../../utils/theme'; | ||
} | ||
static get is() { return "ion-title"; } | ||
static get host() { return { "theme": "title" }; } | ||
static get style() { return "/**style-placeholder:ion-title:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-title:**/"; } | ||
} |
@@ -49,2 +49,4 @@ import { ToastEvent, ToastOptions } from '../../index'; | ||
} | ||
static get is() { return "ion-toast-controller"; } | ||
static get properties() { return { "create": { "method": true } }; } | ||
} |
@@ -110,3 +110,9 @@ import { EventEmitter } from '@stencil/core'; | ||
} | ||
static get is() { return "ion-toast"; } | ||
static get host() { return { "theme": "toast" }; } | ||
static get properties() { return { "animationCtrl": { "connect": "ion-animation-controller" }, "closeButtonText": { "type": String }, "config": { "context": "config" }, "cssClass": { "type": String }, "dismiss": { "method": true }, "dismissOnPageChange": { "type": Boolean }, "dom": { "context": "dom" }, "duration": { "type": Number }, "el": { "elementRef": true }, "enterAnimation": { "type": "Any" }, "leaveAnimation": { "type": "Any" }, "message": { "type": String }, "position": { "type": String }, "present": { "method": true }, "showCloseButton": { "type": Boolean }, "toastId": { "type": String }, "translucent": { "type": Boolean }, "willAnimate": { "type": Boolean } }; } | ||
static get events() { return [{ "name": "ionToastDidLoad", "method": "ionToastDidLoad", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionToastDidPresent", "method": "ionToastDidPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionToastWillPresent", "method": "ionToastWillPresent", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionToastWillDismiss", "method": "ionToastWillDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionToastDidDismiss", "method": "ionToastDidDismiss", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionToastDidUnload", "method": "ionToastDidUnload", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-toast:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-toast:**/"; } | ||
} | ||
export { iosEnterAnimation as iosToastEnterAnimation, iosLeaveAnimation as iosToastLeaveAnimation, mdEnterAnimation as mdToastEnterAnimation, mdLeaveAnimation as mdToastLeaveAnimation }; |
@@ -127,2 +127,8 @@ import { BlurEvent, CheckboxInput, CheckedInputChangeEvent, FocusEvent, StyleEvent } from '../../utils/input-interfaces'; | ||
} | ||
static get is() { return "ion-toggle"; } | ||
static get host() { return { "theme": "toggle" }; } | ||
static get properties() { return { "activated": { "state": true }, "checked": { "type": Boolean, "mutable": true, "watchCallbacks": ["checkedChanged"] }, "color": { "type": String }, "disabled": { "type": Boolean, "mutable": true, "watchCallbacks": ["disabledChanged"] }, "keyFocus": { "state": true }, "mode": { "type": "Any" }, "name": { "type": String }, "value": { "type": String, "mutable": true } }; } | ||
static get events() { return [{ "name": "ionChange", "method": "ionChange", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionFocus", "method": "ionFocus", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionBlur", "method": "ionBlur", "bubbles": true, "cancelable": true, "composed": true }, { "name": "ionStyle", "method": "ionStyle", "bubbles": true, "cancelable": true, "composed": true }]; } | ||
static get style() { return "/**style-placeholder:ion-toggle:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-toggle:**/"; } | ||
} | ||
@@ -129,0 +135,0 @@ function shouldToggle(checked, deltaX, margin) { |
@@ -39,2 +39,7 @@ import { createThemedClasses } from '../../utils/theme'; | ||
} | ||
static get is() { return "ion-toolbar"; } | ||
static get host() { return { "theme": "toolbar" }; } | ||
static get properties() { return { "color": { "type": String }, "config": { "context": "config" }, "el": { "elementRef": true }, "mode": { "type": "Any" }, "translucent": { "type": Boolean } }; } | ||
static get style() { return "/**style-placeholder:ion-toolbar:**/"; } | ||
static get styleMode() { return "/**style-id-placeholder:ion-toolbar:**/"; } | ||
} |
@@ -5,2 +5,2 @@ /*! | ||
*/ | ||
!function(e,o,i,n,t,s,l,a){function d(e){return"noModule"in e}function r(e){return e.customElements}function c(e){return e.fetch}function m(e){return e.CSS&&e.CSS.supports&&e.CSS.supports("color","var(--c)")}function p(e){return e.documentElement.hasAttribute("data-ssr")}!function(e,o,i,n,t,s,l,a,b,u){(e[i]=e[i]||{}).components=a,(u=a.filter(function(e){return e[2]}).map(function(e){return e[0]})).length&&((b=o.createElement("style")).innerHTML=u.join()+"{visibility:hidden}",b.setAttribute("data-visibility",""),o.head.insertBefore(b,o.head.firstChild)),i=i.toLowerCase(),(b=o.scripts[o.scripts.length-1])&&b.src&&(n=(u=b.src.split("/").slice(0,-1)).join("/")+(u.length?"/":"")+i+"/"),(b=o.createElement("script")).src=n+(d(b)&&r(e)&&c(e)&&m(e)?p(o)?s:t:l),b.setAttribute("data-path",n),b.setAttribute("data-namespace",i),o.head.appendChild(b)}(window,document,"Ionic","/build/ionic/","ionic.jdxhaj3f.js","ionic.s1pnldpj.js","ionic.3y7ln71f.js",[["ion-action-sheet",{ios:["lsvojk7z","vrm8be7i"],md:["lmwclvkw","4pxl2jgj"]},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["buttons",1,1,1],["config",3,0,0,"config"],["cssClass",1,1,2],["dismiss",6],["dom",3,0,0,"dom"],["el",7],["enableBackdropDismiss",1,1,3],["enterAnimation",1,1,1],["leaveAnimation",1,1,1],["present",6],["subTitle",1,1,2],["title",1,1,2],["translucent",1,1,3],["willAnimate",1,1,3]],0,0,[["ionDismiss","onDismiss"]]],["ion-action-sheet-controller",{ios:["lsvojk7z","vrm8be7i"],md:["lmwclvkw","4pxl2jgj"]},0,[["create",6]],0,0,[["body:ionActionSheetDidLoad","didLoad"],["body:ionActionSheetWillPresent","willPresent"],["body:ionActionSheetWillDismiss","willDismiss"],["body:ionActionSheetDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-alert",{ios:["vow9bsvi","2qctqtax"],md:["1qtaco2y","hcdqnzqw"]},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["buttons",1,1,1],["config",3,0,0,"config"],["cssClass",1,1,2],["dismiss",6],["dom",3,0,0,"dom"],["el",7],["enableBackdropDismiss",1,1,3],["enterAnimation",1,1,1],["inputs",2,1,1],["leaveAnimation",1,1,1],["message",1,1,2],["present",6],["subTitle",1,1,2],["title",1,1,2],["translucent",1,1,3],["willAnimate",1,1,3]]],["ion-alert-controller",{ios:["vow9bsvi","2qctqtax"],md:["1qtaco2y","hcdqnzqw"]},0,[["create",6]],0,0,[["body:ionAlertDidLoad","didLoad"],["body:ionAlertWillPresent","willPresent"],["body:ionAlertWillDismiss","willDismiss"],["body:ionAlertDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-animation-controller",["d4c7ljvs","5k70lsbh"],0,[["create",6]]],["ion-app",{ios:["gfezbegx","gplzec0b"],md:["eymocorb","rwjpgmap"]},1,[["config",3,0,0,"config"],["element",7],["getActiveNavs",6],["getNavByIdOrName",6],["getRootNavs",6],["hoverCSS",5],["isScrolling",6],["modeCode",5],["useRouter",5]],0,1,[["body:navInit","registerRootNav"]]],["ion-avatar",{ios:["c3i6ghqk","mszzy1rj"],md:["shgo7u8r","vqba0gwn"]},1,0,0,1],["ion-backdrop",["wuifssu0","qpqcifo0"],1],["ion-badge",{ios:["c3i6ghqk","mszzy1rj"],md:["shgo7u8r","vqba0gwn"]},1,[["color",1,1,2],["mode",1,1,1]],0,1],["ion-button",{ios:["0pcafb7t","uxfqwfxb"],md:["c5gvb4wk","rnlahwyc"]},1,[["buttonType",1,1,2],["color",1,1,2],["disabled",1,1,3],["el",7],["expand",1,1,1],["fill",1,1,1],["href",1,1,2],["keyFocus",5],["mode",1,1,1],["round",1,1,3],["size",1,1,1],["strong",1,1,3]],0,2],["ion-buttons",{ios:["0pcafb7t","uxfqwfxb"],md:["c5gvb4wk","rnlahwyc"]},0,[["el",7]],0,1],["ion-card",{ios:["lbeb2cig","koobvhye"],md:["y6rqjhhm","kelb80sv"]},1,[["color",1,1,2],["mode",1,1,1]],0,1],["ion-card-content",{ios:["lbeb2cig","koobvhye"],md:["y6rqjhhm","kelb80sv"]},1,[["color",1,1,2],["mode",1,1,1]],0,1],["ion-card-header",{ios:["lbeb2cig","koobvhye"],md:["y6rqjhhm","kelb80sv"]},1,[["color",1,1,2],["mode",1,1,1],["translucent",1,1,3]],0,1],["ion-card-subtitle",{ios:["bkivmb5a","8o86fxr2"],md:["mio2gxmq","z9ly2yfs"]},1,[["color",1,1,2],["mode",1,1,1]],0,1],["ion-card-title",{ios:["lbeb2cig","koobvhye"],md:["y6rqjhhm","kelb80sv"]},1,[["color",1,1,2],["mode",1,1,1]],0,1],["ion-checkbox",{ios:["ijktwsck","ifxzpaxy"],md:["7oyfcdfv","kz4ttqan"]},1,[["checked",2,1,3],["color",1,1,2],["disabled",1,1,3],["keyFocus",5],["mode",1,1,1],["name",1,1,2],["value",2,1,2]]],["ion-chip",{ios:["tnyrchhq","ege8cgwq"],md:["xw9e2zvc","egjbg9o5"]},1,[["color",1,1,2],["mode",1,1,1]],0,1],["ion-chip-button",{ios:["tnyrchhq","ege8cgwq"],md:["xw9e2zvc","egjbg9o5"]},1,[["clear",1,1,3],["color",1,1,2],["disabled",1,1,3],["el",7],["href",1,1,2],["mode",1,1,1]],0,1],["ion-col",{ios:["0rjcw73k","4h3d4jow"],md:["ccoeuqic","xmhfttaa"]}],["ion-content",{ios:["gfezbegx","gplzec0b"],md:["eymocorb","rwjpgmap"]},1,[["config",3,0,0,"config"],["dom",3,0,0,"dom"],["el",7],["enableJsScroll",6],["fullscreen",1,1,3],["ionScroll",1,1,1],["ionScrollEnd",1,1,1],["ionScrollStart",1,1,1],["scrollToBottom",6],["scrollToTop",6]],0,2,[["body:ionNavChanged","onNavChanged"]]],["ion-datetime",{ios:["4cmug7il","suyosnaf"],md:["nutevk7p","nfxykjkt"]},1,[["cancelText",1,1,2],["dayNames",1,1,1],["dayShortNames",1,1,1],["dayValues",1,1,1],["disabled",1,1,3],["displayFormat",1,1,2],["doneText",1,1,2],["hourValues",1,1,1],["max",2,1,2],["min",2,1,2],["minuteValues",1,1,1],["monthNames",1,1,1],["monthShortNames",1,1,1],["monthValues",1,1,1],["pickerCtrl",4,0,0,"ion-picker-controller"],["pickerFormat",1,1,2],["pickerOptions",1,1,1],["placeholder",1,1,2],["text",5],["value",2,1,2],["yearValues",1,1,1]]],["ion-events",["2jndaslm","hs0k7124"],0,[["publish",6],["subscribe",6],["unsubscribe",6]],0,0,[["window:online","online"],["window:offline","online"],["window:orientationchange","online"],["window:statusTap","statusTap"]]],["ion-fab",["pamwks1s","hrggnacw"],1,[["activated",5],["close",6],["el",7]],0,1],["ion-fab-button",{ios:["s2ocq5gz","dluwebcu"],md:["olgte6fp","253m9l3b"]},1,[["activated",1,1,3],["color",1,1,2],["disabled",1,1,3],["el",7],["href",1,1,2],["inContainer",5],["inList",5],["mode",1,1,1],["show",1,1,3],["toggleActive",1,1,1],["translucent",1,1,3]],0,1],["ion-fab-list",["pamwks1s","hrggnacw"],1,[["activated",1,1,3],["el",7]],0,1],["ion-footer",{ios:["gfezbegx","gplzec0b"],md:["eymocorb","rwjpgmap"]},1,[["translucent",1,1,3]],0,1],["ion-gesture",["5gmqtw6r","88tjlx1i"],0,[["attachTo",1,1,1],["autoBlockAll",1,1,3],["block",1,1,2],["canStart",1,1,1],["direction",1,1,2],["disableScroll",1,1,3],["dom",3,0,0,"dom"],["el",7],["enableListener",3,0,0,"enableListener"],["enabled",1,1,3],["gestureName",1,1,2],["gesturePriority",1,1,4],["maxAngle",1,1,4],["notCaptured",1,1,1],["onEnd",1,1,1],["onMove",1,1,1],["onPress",1,1,1],["onStart",1,1,1],["onWillStart",1,1,1],["threshold",1,1,4],["type",1,1,2]],0,0,[["touchstart","onTouchStart",1,1],["mousedown","onMouseDown",1,1],["touchmove","onTouchMove",1,1],["document:mousemove","onMoveMove",1,1],["touchcancel","onTouchCancel",1,1],["touchend","onTouchEnd",1,1],["document:mouseup","onMouseUp",1,1]]],["ion-gesture-controller",["us7hkaha","vywv8qdd"]],["ion-grid",{ios:["0rjcw73k","4h3d4jow"],md:["ccoeuqic","xmhfttaa"]},1],["ion-header",{ios:["gfezbegx","gplzec0b"],md:["eymocorb","rwjpgmap"]},1,[["translucent",1,1,3]],0,1],["ion-icon",{ios:["0pcafb7t","uxfqwfxb"],md:["c5gvb4wk","rnlahwyc"]},1,[["ariaLabel",1,1,2],["ios",1,1,2],["isServer",3,0,0,"isServer"],["md",1,1,2],["mode",3,0,0,"mode"],["name",1,1,2],["publicPath",3,0,0,"publicPath"],["svgContent",5]]],["ion-infinite-scroll",["k29xmr8i","tw1tvz8q"],1,[["complete",6],["dom",3,0,0,"dom"],["el",7],["enableListener",3,0,0,"enableListener"],["enabled",1,1,3],["isLoading",5],["position",1,1,2],["threshold",1,1,2]],0,1,[["ionScroll","onScroll",1]]],["ion-infinite-scroll-content",["k29xmr8i","tw1tvz8q"],0,[["config",3,0,0,"config"],["loadingSpinner",2,1,2],["loadingText",1,1,2]]],["ion-input",{ios:["oynblsqq","p0hp5kze"],md:["qskdwkxh","zr3ltkuk"]},1,[["accept",1,1,2],["autocapitalize",1,1,2],["autocomplete",1,1,2],["autocorrect",1,1,2],["autofocus",1,1,3],["checked",1,1,3],["clearInput",1,1,3],["clearOnEdit",2,1,3],["debounce",1,1,4],["disabled",1,1,3],["el",7],["inputmode",1,1,2],["max",1,1,2],["maxlength",1,1,4],["min",1,1,2],["minlength",1,1,4],["multiple",1,1,3],["name",1,1,2],["pattern",1,1,2],["placeholder",1,1,2],["readonly",1,1,3],["required",1,1,3],["results",1,1,4],["size",1,1,4],["spellcheck",1,1,3],["step",1,1,2],["type",1,1,2],["value",2,1,2]]],["ion-item",{ios:["oewedo05","8v1qpttg"],md:["uy6eqgyb","ai0r7w1t"]},1,[["color",1,1,2],["el",7],["hasStyleChange",5],["href",1,1,2],["mode",1,1,1]],0,2,[["ionStyle","itemStyle"]]],["ion-item-divider",{ios:["oewedo05","8v1qpttg"],md:["uy6eqgyb","ai0r7w1t"]},1,[["color",1,1,2],["mode",1,1,1]],0,2],["ion-item-option",{ios:["utfkwmqo","rsuqlhzx"],md:["rnh5vbc7","o5q1awx9"]},0,[["color",1,1,2],["disabled",1,1,3],["href",1,1,2],["mode",1,1,1]],0,1],["ion-item-options",{ios:["utfkwmqo","rsuqlhzx"],md:["rnh5vbc7","o5q1awx9"]},0,[["el",7],["fireSwipeEvent",6],["isRightSide",6],["side",1,1,1],["width",6]],0,1],["ion-item-sliding",{ios:["utfkwmqo","rsuqlhzx"],md:["rnh5vbc7","o5q1awx9"]},1,[["close",6],["closeOpened",6],["el",7],["getOpenAmount",6],["getSlidingPercent",6],["state",5]],0,1],["ion-keyboard-controller",["gwt7r99k","szqha79l"],0,[["config",3,0,0,"config"]]],["ion-label",{ios:["oewedo05","8v1qpttg"],md:["uy6eqgyb","ai0r7w1t"]},1,[["color",1,1,2],["el",7],["fixed",1,1,3],["floating",1,1,3],["getText",6],["mode",1,1,1],["stacked",1,1,3]],0,1],["ion-list",{ios:["oewedo05","8v1qpttg"],md:["uy6eqgyb","ai0r7w1t"]},1,[["closeSlidingItems",6],["getOpenedItem",6],["setOpenedItem",6]],0,1],["ion-list-header",{ios:["oewedo05","8v1qpttg"],md:["uy6eqgyb","ai0r7w1t"]},1,[["color",1,1,2],["mode",1,1,1]],0,1],["ion-loading",{ios:["hbkzpwpo","dysjzjun"],md:["xviwipm2","s4eajznv"]},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["config",3,0,0,"config"],["content",1,1,2],["cssClass",1,1,2],["dismiss",6],["dismissOnPageChange",1,1,3],["dom",3,0,0,"dom"],["duration",1,1,4],["el",7],["enterAnimation",1,1,1],["leaveAnimation",1,1,1],["present",6],["showBackdrop",1,1,3],["spinner",1,1,2],["translucent",1,1,3],["willAnimate",1,1,3]],0,0,[["ionDismiss","onDismiss"]]],["ion-loading-controller",{ios:["hbkzpwpo","dysjzjun"],md:["xviwipm2","s4eajznv"]},0,[["create",6]],0,0,[["body:ionLoadingDidLoad","didLoad"],["body:ionLoadingWillPresent","willPresent"],["body:ionLoadingWillDismiss","willDismiss"],["body:ionLoadingDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-menu",{ios:["jsesrpvh","t79z7xae"],md:["ar4ieeku","vjzxyiyf"]},1,[["close",6],["config",3,0,0,"config"],["content",1,1,2],["el",7],["enableListener",3,0,0,"enableListener"],["enabled",2,1,3],["isOpen",6],["lazyMenuCtrl",4,0,0,"ion-menu-controller"],["maxEdgeStart",1,1,4],["menuId",1,1,2],["open",6],["persistent",1,1,3],["setOpen",6],["side",1,1,1],["swipeEnabled",1,1,3],["toggle",6],["type",2,1,2]],0,1,[["body:ionSplitPaneDidChange","splitPaneChanged"],["body:click","onBackdropClick",1,0,1]]],["ion-menu-controller",{ios:["jsesrpvh","t79z7xae"],md:["ar4ieeku","vjzxyiyf"]},0,[["_register",6],["_setActiveMenu",6],["_unregister",6],["animationCtrl",4,0,0,"ion-animation-controller"],["close",6],["createAnimation",6],["enable",6],["get",6],["getMenus",6],["getOpen",6],["isAnimating",6],["isEnabled",6],["isOpen",6],["open",6],["swipeEnable",6],["toggle",6]]],["ion-modal",{ios:["43alk66b","22jzsplh"],md:["vnf85jut","9o03xwae"]},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["color",1,1,2],["component",1,1,1],["config",3,0,0,"config"],["cssClass",1,1,2],["data",1,1,1],["delegate",2,1,1],["dismiss",6],["dom",3,0,0,"dom"],["el",7],["enableBackdropDismiss",1,1,3],["enterAnimation",1,1,1],["getUserComponentContainer",6],["leaveAnimation",1,1,1],["modalId",1,1,4],["mode",1,1,2],["present",6],["showBackdrop",1,1,3],["willAnimate",1,1,3]],0,0,[["ionDismiss","onDismiss"]]],["ion-modal-controller",{ios:["43alk66b","22jzsplh"],md:["vnf85jut","9o03xwae"]},0,[["create",6],["dismiss",6]],0,0,[["body:ionModalWillPresent","modalWillPresent"],["body:ionModalWillDismiss","modalWillDismiss"],["body:ionModalDidUnload","modalWillDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-nav",["py8zrzna","sddniyh8"],1,[["animationCtrl",4,0,0,"ion-animation-controller"],["canGoBack",6],["canSwipeBack",6],["config",3,0,0,"config"],["delegate",1,1,1],["element",7],["getActive",6],["getFirstView",6],["getPrevious",6],["getRoutes",6],["getState",6],["insert",6],["insertPages",6],["mode",1,1,2],["pop",6],["popTo",6],["popToRoot",6],["push",6],["removeIndex",6],["removeView",6],["resize",6],["root",1,1,1],["setPages",6],["setRoot",6],["setRouteId",6]],0,1,[["navInit","navInitialized"]]],["ion-navbar",{ios:["gfezbegx","gplzec0b"],md:["eymocorb","rwjpgmap"]},0,[["backButtonIcon",1,1,2],["backButtonText",1,1,2],["config",3,0,0,"config"],["el",7],["hidden",1,1,3],["hideBackButton",1,1,3]],0,2],["ion-note",{ios:["vqvzcy21","bfk0c2vg"],md:["3mtm2xns","ruouagcw"]},1,[["color",1,1,2],["mode",1,1,1]],0,1],["ion-page",["owfuzrw3","3huj6k3y"],1,0,0,1],["ion-picker",{ios:["4cmug7il","suyosnaf"],md:["nutevk7p","nfxykjkt"]},1,[["addButton",6],["addColumn",6],["animationCtrl",4,0,0,"ion-animation-controller"],["buttons",1,1,1],["columns",1,1,1],["config",3,0,0,"config"],["content",1,1,2],["cssClass",1,1,2],["dismiss",6],["dismissOnPageChange",1,1,3],["dom",3,0,0,"dom"],["duration",1,1,4],["el",7],["enableBackdropDismiss",1,1,3],["enterAnimation",1,1,1],["getColumn",6],["getColumns",6],["leaveAnimation",1,1,1],["pickerId",1,1,2],["present",6],["showBackdrop",1,1,3],["showSpinner",5],["spinner",5],["willAnimate",1,1,3]],0,0,[["ionDismiss","onDismiss"]]],["ion-picker-column",{ios:["4cmug7il","suyosnaf"],md:["nutevk7p","nfxykjkt"]},0,[["col",1,1,1],["dom",3,0,0,"dom"],["el",7]]],["ion-picker-controller",{ios:["4cmug7il","suyosnaf"],md:["nutevk7p","nfxykjkt"]},0,[["create",6]],0,0,[["body:ionPickerDidLoad","didLoad"],["body:ionPickerWillPresent","willPresent"],["body:ionPickerWillDismiss","willDismiss"],["body:ionPickerDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-popover",{ios:["d8gxodod","4i3hrskd"],md:["btwgjiiu","oahxmn13"]},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["color",1,1,2],["component",1,1,2],["config",3,0,0,"config"],["cssClass",1,1,2],["data",1,1,1],["delegate",2,1,1],["dismiss",6],["dom",3,0,0,"dom"],["el",7],["enableBackdropDismiss",1,1,3],["enterAnimation",1,1,1],["ev",1,1,1],["leaveAnimation",1,1,1],["mode",1,1,2],["popoverId",1,1,2],["present",6],["showBackdrop",1,1,3],["translucent",1,1,3],["willAnimate",1,1,3]],0,0,[["ionDismiss","onDismiss"]]],["ion-popover-controller",{ios:["d8gxodod","4i3hrskd"],md:["btwgjiiu","oahxmn13"]},0,[["create",6]],0,0,[["body:ionPopoverDidLoad","didLoad"],["body:ionPopoverWillPresent","willPresent"],["body:ionPopoverWillDismiss","willDismiss"],["body:ionPopoverDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-radio",{ios:["ybmddh54","zsp1wjjw"],md:["11vaeq2g","8jxup8xd"]},1,[["checked",2,1,3],["color",1,1,2],["disabled",1,1,3],["keyFocus",5],["mode",1,1,1],["name",1,1,2],["value",2,1,2]]],["ion-radio-group",{ios:["ybmddh54","zsp1wjjw"],md:["11vaeq2g","8jxup8xd"]},0,[["allowEmptySelection",1,1,3],["disabled",2,1,3],["el",7],["labelId",5],["name",2,1,2],["value",2,1,2]],0,1,[["ionRadioDidLoad","onRadioDidLoad"],["ionRadioDidUnload","onRadioDidUnload"],["ionSelect","onRadioSelect"]]],["ion-range",{ios:["uhi31b23","cprjqmar"],md:["i2jzusua","w1eh1l07"]},1,[["activeB",5],["barL",5],["barR",5],["color",1,1,2],["debounce",1,1,4],["disabled",1,1,3],["dualKnobs",1,1,3],["el",7],["max",1,1,4],["min",1,1,4],["mode",1,1,1],["pin",1,1,3],["pressed",5],["pressedA",5],["pressedB",5],["ratio",6],["ratioA",5],["ratioB",5],["ratioUpper",6],["rect",5],["snaps",1,1,3],["step",1,1,4],["ticks",5],["valA",5],["valB",5],["value",2,1,1]],0,2,[["ionIncrease","keyChng"],["ionDecrease","keyChng"]]],["ion-range-knob",{ios:["uhi31b23","cprjqmar"],md:["i2jzusua","w1eh1l07"]},0,[["disabled",1,1,3],["knob",1,1,2],["labelId",1,1,2],["max",1,1,4],["min",1,1,4],["pin",1,1,3],["pressed",1,1,3],["ratio",1,1,4],["val",1,1,4]],0,0,[["keydown","handleKeyBoard"]]],["ion-reorder",["se4hgitw","aictvgen"],1,[["el",7],["hasContent",5]],0,1],["ion-reorder-group",["se4hgitw","aictvgen"],1,[["_actived",5],["_enabled",5],["_iconVisible",5],["dom",3,0,0,"dom"],["el",7],["enabled",1,1,3]],0,1],["ion-route",["6wxvn5up","o6n17zi4"],0,[["component",1,1,2],["getRoute",6],["path",1,1,2],["props",1,1,1]]],["ion-route-link",["m14liexb","77non8nx"],0,[["router",1,1,1],["url",1,1,2]]],["ion-router-controller",["6wxvn5up","o6n17zi4"],0,[["config",3,0,0,"config"],["dom",3,0,0,"dom"]],0,0,[["window:hashchange","onURLHashChanged"],["body:ionNavChanged","onNavChanged"]]],["ion-row",{ios:["0rjcw73k","4h3d4jow"],md:["ccoeuqic","xmhfttaa"]}],["ion-scroll",{ios:["gfezbegx","gplzec0b"],md:["eymocorb","rwjpgmap"]},0,[["config",3,0,0,"config"],["dom",3,0,0,"dom"],["el",7],["enabled",1,1,3],["isServer",3,0,0,"isServer"],["jsScroll",1,1,3],["onionScroll",1,1,1],["onionScrollEnd",1,1,1],["onionScrollStart",1,1,1],["scrollToBottom",6],["scrollToPoint",6],["scrollToTop",6]],0,1,[["scroll","onNativeScroll",0,1]]],["ion-searchbar",{ios:["ox3ptbmu","mbzubbbi"],md:["dmzxp3g4","o5e0mepv"]},1,[["activated",5],["animated",2,1,3],["autocomplete",2,1,2],["autocorrect",2,1,2],["cancelButtonText",2,1,2],["color",1,1,2],["debounce",2,1,4],["el",7],["focused",5],["mode",1,1,1],["placeholder",2,1,2],["showCancelButton",2,1,3],["spellcheck",2,1,3],["type",2,1,2],["value",2,1,2]]],["ion-segment",{ios:["uzk5ojaf","jtjyfnfl"],md:["yrefyk2q","gvzqyrkj"]},1,[["color",1,1,2],["disabled",2,1,3],["el",7],["mode",1,1,1],["value",2,1,2]],0,1,[["ionClick","segmentClick"]]],["ion-segment-button",{ios:["uzk5ojaf","jtjyfnfl"],md:["yrefyk2q","gvzqyrkj"]},0,[["activated",5],["checked",2,1,3],["color",1,1,2],["disabled",2,1,3],["el",7],["mode",1,1,1],["value",2,1,2]],0,1],["ion-select",{ios:["velfqh4e","1s3h7ris"],md:["fsufrdqe","ixsy5mzc"]},1,[["actionSheetCtrl",4,0,0,"ion-action-sheet-controller"],["alertCtrl",4,0,0,"ion-alert-controller"],["cancelText",1,1,2],["disabled",1,1,3],["el",7],["interface",1,1,2],["interfaceOptions",1,1,1],["isExpanded",5],["keyFocus",5],["multiple",1,1,3],["name",2,1,2],["okText",1,1,2],["placeholder",1,1,2],["popoverCtrl",4,0,0,"ion-popover-controller"],["selectedText",1,1,2],["text",5],["value",2,1,1]],0,1,[["ionSelectOptionDidLoad","optLoad"],["ionSelectOptionDidUnload","optUnload"],["ionSelect","onSelect"]]],["ion-select-option",{ios:["velfqh4e","1s3h7ris"],md:["fsufrdqe","ixsy5mzc"]},0,[["disabled",1,1,3],["el",7],["selected",2,1,3],["value",2,1,2]],0,1],["ion-select-popover",{ios:["velfqh4e","1s3h7ris"],md:["fsufrdqe","ixsy5mzc"]},0,[["message",1,1,2],["options",1,1,1],["subTitle",1,1,2],["title",1,1,2]],0,0,[["ionSelect","onSelect"]]],["ion-skeleton-text",{ios:["oewedo05","8v1qpttg"],md:["uy6eqgyb","ai0r7w1t"]},1,[["width",1,1,2]]],["ion-slide",["eugplgts","rhm3npra"],1,0,0,1],["ion-slides",["eugplgts","rhm3npra"],1,[["el",7],["getActiveIndex",6],["getPreviousIndex",6],["isBeginning",6],["isEnd",6],["length",6],["lockSwipeToNext",6],["lockSwipeToPrev",6],["lockSwipes",6],["options",1,1,1],["pager",1,1,3],["slideNext",6],["slidePrev",6],["slideTo",6],["startAutoplay",6],["stopAutoplay",6],["update",6]],0,1],["ion-spinner",{ios:["u2paghcg","j5zyaffc"],md:["doz9fkon","udff4t1j"]},1,[["color",1,1,2],["config",3,0,0,"config"],["duration",1,1,4],["mode",1,1,1],["name",1,1,2],["paused",1,1,3]]],["ion-split-pane",{ios:["evczbztx","pfsy9flo"],md:["hlyxj2b8","jxwdmf6k"]},1,[["el",7],["enabled",1,1,3],["isVisible",6],["visible",5],["when",1,1,1]],0,1],["ion-tab",{ios:["4sz2zap8","mx5jybcs"],md:["3m6v5rh7","38jdl6mo"]},0,[["active",5],["badge",1,1,2],["badgeStyle",1,1,2],["btnId",1,1,2],["el",7],["enabled",1,1,3],["getPath",6],["icon",1,1,2],["init",5],["path",1,1,2],["selected",2,1,3],["setActive",6],["show",1,1,3],["tabsHideOnSubPages",1,1,3],["title",1,1,2]],0,1],["ion-tab-button",{ios:["4sz2zap8","mx5jybcs"],md:["3m6v5rh7","38jdl6mo"]},0,[["el",7],["selected",1,1,3],["tab",1,1,1]],0,0,[["click","onClick"]]],["ion-tabbar",{ios:["4sz2zap8","mx5jybcs"],md:["3m6v5rh7","38jdl6mo"]},0,[["canScrollLeft",5],["canScrollRight",5],["dom",3,0,0,"dom"],["el",7],["hidden",5],["highlight",1,1,3],["layout",1,1,2],["placement",1,1,2],["scrollable",1,1,1],["selectedTab",1,1,1],["tabs",1,1,1],["translucent",1,1,3]],0,0,[["body:keyboardWillHide","onKeyboardWillHide"],["body:keyboardWillShow","onKeyboardWillShow"],["window:resize","onResize",0,1],["ionTabButtonDidLoad","onTabButtonLoad"],["ionTabButtonDidUnload","onTabButtonLoad"]]],["ion-tabs",{ios:["4sz2zap8","mx5jybcs"],md:["3m6v5rh7","38jdl6mo"]},1,[["config",3,0,0,"config"],["el",7],["getByIndex",6],["getIndex",6],["getSelected",6],["getTabs",6],["name",1,1,2],["scrollable",1,1,3],["select",6],["selectedTab",5],["tabbarHidden",1,1,3],["tabbarHighlight",2,1,3],["tabbarLayout",2,1,2],["tabbarPlacement",2,1,2],["tabs",5],["translucent",1,1,3]],0,1,[["ionTabbarClick","tabChange"]]],["ion-textarea",{ios:["oynblsqq","p0hp5kze"],md:["qskdwkxh","zr3ltkuk"]},1,[["autocapitalize",1,1,2],["autocomplete",1,1,2],["autofocus",1,1,3],["clearOnEdit",2,1,3],["cols",1,1,4],["debounce",1,1,4],["disabled",1,1,3],["el",7],["maxlength",1,1,4],["minlength",1,1,4],["name",1,1,2],["placeholder",1,1,2],["readonly",1,1,3],["required",1,1,3],["rows",1,1,4],["spellcheck",1,1,3],["value",2,1,2],["wrap",1,1,2]]],["ion-thumbnail",{ios:["c3i6ghqk","mszzy1rj"],md:["shgo7u8r","vqba0gwn"]},1,0,0,1],["ion-title",{ios:["gfezbegx","gplzec0b"],md:["eymocorb","rwjpgmap"]},1,0,0,1],["ion-toast",{ios:["mztyfsiq","gg5h5wdj"],md:["ymtqzkdd","d1mk0rvk"]},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["closeButtonText",1,1,2],["config",3,0,0,"config"],["cssClass",1,1,2],["dismiss",6],["dismissOnPageChange",1,1,3],["dom",3,0,0,"dom"],["duration",1,1,4],["el",7],["enterAnimation",1,1,1],["leaveAnimation",1,1,1],["message",1,1,2],["position",1,1,2],["present",6],["showCloseButton",1,1,3],["toastId",1,1,2],["translucent",1,1,3],["willAnimate",1,1,3]],0,0,[["ionDismiss","onDismiss"]]],["ion-toast-controller",{ios:["mztyfsiq","gg5h5wdj"],md:["ymtqzkdd","d1mk0rvk"]},0,[["create",6]],0,0,[["body:ionToastDidLoad","didLoad"],["body:ionToastWillPresent","willPresent"],["body:ionToastWillDismiss","willDismiss"],["body:ionToastDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-toggle",{ios:["qkic8bzo","xblnai2c"],md:["ranym9st","y7ob3ijr"]},1,[["activated",5],["checked",2,1,3],["color",1,1,2],["disabled",2,1,3],["keyFocus",5],["mode",1,1,1],["name",1,1,2],["value",2,1,2]]],["ion-toolbar",{ios:["gfezbegx","gplzec0b"],md:["eymocorb","rwjpgmap"]},1,[["color",1,1,2],["config",3,0,0,"config"],["el",7],["mode",1,1,1],["translucent",1,1,3]],0,2]])}(); | ||
!function(o,e,i,n,t,s,l,a,d){!function(o,e,i,n,t,s,l,a,d,r,c){(o[i]=o[i]||{}).components=d,(c=d.filter(function(o){return o[2]}).map(function(o){return o[0]})).length&&((r=e.createElement("style")).innerHTML=c.join()+"{visibility:hidden}."+a+"{visibility:inherit}",r.setAttribute("data-visibility",""),e.head.insertBefore(r,e.head.firstChild)),i=i.toLowerCase(),(r=e.scripts[e.scripts.length-1])&&r.src&&(n=(c=r.src.split("/").slice(0,-1)).join("/")+(c.length?"/":"")+i+"/"),(r=e.createElement("script")).src=n+(g=o,g.customElements&&(b=r,"noModule"in b)&&(u=o,u.fetch)&&(p=o,p.CSS&&p.CSS.supports&&p.CSS.supports("color","var(--c)"))?(m=e,m.documentElement.hasAttribute("data-ssr")?s:t):l);var m,p,u,b,g;r.setAttribute("data-path",n),r.setAttribute("data-namespace",i),e.head.appendChild(r)}(window,document,"Ionic","/build/ionic/","ionic.biclsjb1.js","ionic.dnorluec.js","ionic.qyugmkbl.js","hydrated",[["ion-action-sheet",{ios:"wvid1rol",md:"zr5vzuy0"},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["buttons",1,1,1],["config",3,0,0,"config"],["cssClass",1,1,2],["dismiss",6],["dom",3,0,0,"dom"],["el",7],["enableBackdropDismiss",1,1,3],["enterAnimation",1,1,1],["leaveAnimation",1,1,1],["present",6],["subTitle",1,1,2],["title",1,1,2],["translucent",1,1,3],["willAnimate",1,1,3]],0,[["ionDismiss","onDismiss"]]],["ion-action-sheet-controller",{ios:"wvid1rol",md:"zr5vzuy0"},0,[["create",6]],0,[["body:ionActionSheetDidLoad","didLoad"],["body:ionActionSheetWillPresent","willPresent"],["body:ionActionSheetWillDismiss","willDismiss"],["body:ionActionSheetDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-alert",{ios:"7oacd1m4",md:"5uy8tj7s"},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["buttons",1,1,1],["config",3,0,0,"config"],["cssClass",1,1,2],["dismiss",6],["dom",3,0,0,"dom"],["el",7],["enableBackdropDismiss",1,1,3],["enterAnimation",1,1,1],["inputs",2,1,1],["leaveAnimation",1,1,1],["message",1,1,2],["present",6],["subTitle",1,1,2],["title",1,1,2],["translucent",1,1,3],["willAnimate",1,1,3]]],["ion-alert-controller",{ios:"7oacd1m4",md:"5uy8tj7s"},0,[["create",6]],0,[["body:ionAlertDidLoad","didLoad"],["body:ionAlertWillPresent","willPresent"],["body:ionAlertWillDismiss","willDismiss"],["body:ionAlertDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-animation-controller","s8y8fl7p",0,[["create",6]]],["ion-app",{ios:"9et5s8ye",md:"bof4boyr"},1,[["config",3,0,0,"config"],["element",7],["getActiveNavs",6],["getNavByIdOrName",6],["getRootNavs",6],["hoverCSS",5],["isScrolling",6],["modeCode",5],["useRouter",5]],0,[["body:navInit","registerRootNav"]]],["ion-avatar",{ios:"jeaq7hpg",md:"hmkmsrij"},1],["ion-backdrop","qrcvrxsf",1],["ion-badge",{ios:"jeaq7hpg",md:"hmkmsrij"},1,[["color",1,1,2],["mode",1,1,1]]],["ion-button",{ios:"g5qhm8i1",md:"tawkizh0"},1,[["buttonType",1,1,2],["color",1,1,2],["disabled",1,1,3],["el",7],["expand",1,1,1],["fill",1,1,1],["href",1,1,2],["keyFocus",5],["mode",1,1,1],["round",1,1,3],["size",1,1,1],["strong",1,1,3]]],["ion-buttons",{ios:"g5qhm8i1",md:"tawkizh0"},0,[["el",7]]],["ion-card",{ios:"qp5ij0de",md:"mwxgiiho"},1,[["color",1,1,2],["mode",1,1,1]]],["ion-card-content",{ios:"qp5ij0de",md:"mwxgiiho"},1,[["color",1,1,2],["mode",1,1,1]]],["ion-card-header",{ios:"qp5ij0de",md:"mwxgiiho"},1,[["color",1,1,2],["mode",1,1,1],["translucent",1,1,3]]],["ion-card-subtitle",{ios:"yy1ez5ij",md:"qmjscyqy"},1,[["color",1,1,2],["mode",1,1,1]]],["ion-card-title",{ios:"qp5ij0de",md:"mwxgiiho"},1,[["color",1,1,2],["mode",1,1,1]]],["ion-checkbox",{ios:"o88efryc",md:"m2dosdt9"},1,[["checked",2,1,3],["color",1,1,2],["disabled",1,1,3],["keyFocus",5],["mode",1,1,1],["name",1,1,2],["value",2,1,2]]],["ion-chip",{ios:"dugwdvui",md:"lxzkzfyz"},1,[["color",1,1,2],["mode",1,1,1]]],["ion-chip-button",{ios:"dugwdvui",md:"lxzkzfyz"},1,[["color",1,1,2],["disabled",1,1,3],["el",7],["fill",1,1,2],["href",1,1,2],["mode",1,1,1]]],["ion-col",{ios:"z5ya2qib",md:"owmioan4"}],["ion-content",{ios:"9et5s8ye",md:"bof4boyr"},1,[["config",3,0,0,"config"],["dom",3,0,0,"dom"],["el",7],["enableJsScroll",6],["fullscreen",1,1,3],["ionScroll",1,1,1],["ionScrollEnd",1,1,1],["ionScrollStart",1,1,1],["scrollToBottom",6],["scrollToTop",6]],0,[["body:ionNavChanged","onNavChanged"]]],["ion-datetime",{ios:"e8xyihzk",md:"ncuzfc2v"},1,[["cancelText",1,1,2],["dayNames",1,1,1],["dayShortNames",1,1,1],["dayValues",1,1,1],["disabled",1,1,3],["displayFormat",1,1,2],["doneText",1,1,2],["hourValues",1,1,1],["max",2,1,2],["min",2,1,2],["minuteValues",1,1,1],["monthNames",1,1,1],["monthShortNames",1,1,1],["monthValues",1,1,1],["pickerCtrl",4,0,0,"ion-picker-controller"],["pickerFormat",1,1,2],["pickerOptions",1,1,1],["placeholder",1,1,2],["text",5],["value",2,1,2],["yearValues",1,1,1]]],["ion-events","mxdpqma6",0,[["publish",6],["subscribe",6],["unsubscribe",6]],0,[["window:online","online"],["window:offline","online"],["window:orientationchange","online"],["window:statusTap","statusTap"]]],["ion-fab",{ios:"usautemh",md:"tu5wclbt"},1,[["activated",5],["close",6],["el",7]]],["ion-fab-button",{ios:"usautemh",md:"tu5wclbt"},1,[["activated",1,1,3],["color",1,1,2],["disabled",1,1,3],["el",7],["href",1,1,2],["inContainer",5],["inList",5],["mode",1,1,1],["show",1,1,3],["toggleActive",1,1,1],["translucent",1,1,3]]],["ion-fab-list",{ios:"usautemh",md:"tu5wclbt"},1,[["activated",1,1,3],["el",7]]],["ion-footer",{ios:"9et5s8ye",md:"bof4boyr"},1,[["translucent",1,1,3]]],["ion-gesture","ulrzbt5m",0,[["attachTo",1,1,1],["autoBlockAll",1,1,3],["block",1,1,2],["canStart",1,1,1],["direction",1,1,2],["disableScroll",1,1,3],["dom",3,0,0,"dom"],["el",7],["enableListener",3,0,0,"enableListener"],["enabled",1,1,3],["gestureName",1,1,2],["gesturePriority",1,1,4],["maxAngle",1,1,4],["notCaptured",1,1,1],["onEnd",1,1,1],["onMove",1,1,1],["onPress",1,1,1],["onStart",1,1,1],["onWillStart",1,1,1],["threshold",1,1,4],["type",1,1,2]],0,[["touchstart","onTouchStart",1,1],["mousedown","onMouseDown",1,1],["touchmove","onTouchMove",1,1],["document:mousemove","onMoveMove",1,1],["touchcancel","onTouchCancel",1,1],["touchend","onTouchEnd",1,1],["document:mouseup","onMouseUp",1,1]]],["ion-gesture-controller","1ll7ib6k"],["ion-grid",{ios:"z5ya2qib",md:"owmioan4"},1],["ion-header",{ios:"9et5s8ye",md:"bof4boyr"},1,[["translucent",1,1,3]]],["ion-icon",{ios:"g5qhm8i1",md:"tawkizh0"},1,[["ariaLabel",1,1,2],["ios",1,1,2],["isServer",3,0,0,"isServer"],["md",1,1,2],["mode",3,0,0,"mode"],["name",1,1,2],["publicPath",3,0,0,"publicPath"],["svgContent",5]]],["ion-infinite-scroll","whcb7kuk",1,[["complete",6],["dom",3,0,0,"dom"],["el",7],["enableListener",3,0,0,"enableListener"],["enabled",1,1,3],["isLoading",5],["position",1,1,2],["threshold",1,1,2]],0,[["ionScroll","onScroll",1]]],["ion-infinite-scroll-content","whcb7kuk",0,[["config",3,0,0,"config"],["loadingSpinner",2,1,2],["loadingText",1,1,2]]],["ion-input",{ios:"bsj2v1fv",md:"7sytey0x"},1,[["accept",1,1,2],["autocapitalize",1,1,2],["autocomplete",1,1,2],["autocorrect",1,1,2],["autofocus",1,1,3],["checked",1,1,3],["clearInput",1,1,3],["clearOnEdit",2,1,3],["debounce",1,1,4],["disabled",1,1,3],["el",7],["inputmode",1,1,2],["max",1,1,2],["maxlength",1,1,4],["min",1,1,2],["minlength",1,1,4],["multiple",1,1,3],["name",1,1,2],["pattern",1,1,2],["placeholder",1,1,2],["readonly",1,1,3],["required",1,1,3],["results",1,1,4],["size",1,1,4],["spellcheck",1,1,3],["step",1,1,2],["type",1,1,2],["value",2,1,2]]],["ion-item",{ios:"cak2leab",md:"p2pvpbk8"},1,[["color",1,1,2],["el",7],["hasStyleChange",5],["href",1,1,2],["mode",1,1,1]],0,[["ionStyle","itemStyle"]]],["ion-item-divider",{ios:"cak2leab",md:"p2pvpbk8"},1,[["color",1,1,2],["mode",1,1,1]]],["ion-item-group",{ios:"eugubkw5",md:"sqydhkdz"},1],["ion-item-option",{ios:"rjdzjohi",md:"7zsujyld"},0,[["color",1,1,2],["disabled",1,1,3],["href",1,1,2],["mode",1,1,1]]],["ion-item-options",{ios:"rjdzjohi",md:"7zsujyld"},0,[["el",7],["fireSwipeEvent",6],["isRightSide",6],["side",1,1,1],["width",6]]],["ion-item-sliding",{ios:"rjdzjohi",md:"7zsujyld"},1,[["close",6],["closeOpened",6],["el",7],["getOpenAmount",6],["getSlidingPercent",6],["state",5]]],["ion-keyboard-controller","4lhbszmw",0,[["config",3,0,0,"config"]]],["ion-label",{ios:"cak2leab",md:"p2pvpbk8"},1,[["color",1,1,2],["el",7],["fixed",1,1,3],["floating",1,1,3],["getText",6],["mode",1,1,1],["stacked",1,1,3]]],["ion-list",{ios:"cak2leab",md:"p2pvpbk8"},1,[["closeSlidingItems",6],["getOpenedItem",6],["setOpenedItem",6]]],["ion-list-header",{ios:"cak2leab",md:"p2pvpbk8"},1,[["color",1,1,2],["mode",1,1,1]]],["ion-loading",{ios:"uo5mcnza",md:"uo3tyycb"},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["config",3,0,0,"config"],["content",1,1,2],["cssClass",1,1,2],["dismiss",6],["dismissOnPageChange",1,1,3],["dom",3,0,0,"dom"],["duration",1,1,4],["el",7],["enterAnimation",1,1,1],["leaveAnimation",1,1,1],["present",6],["showBackdrop",1,1,3],["spinner",1,1,2],["translucent",1,1,3],["willAnimate",1,1,3]],0,[["ionDismiss","onDismiss"]]],["ion-loading-controller",{ios:"uo5mcnza",md:"uo3tyycb"},0,[["create",6]],0,[["body:ionLoadingDidLoad","didLoad"],["body:ionLoadingWillPresent","willPresent"],["body:ionLoadingWillDismiss","willDismiss"],["body:ionLoadingDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-menu",{ios:"amchzx8l",md:"fgw1bxxh"},1,[["close",6],["config",3,0,0,"config"],["content",1,1,2],["el",7],["enableListener",3,0,0,"enableListener"],["enabled",2,1,3],["isOpen",6],["lazyMenuCtrl",4,0,0,"ion-menu-controller"],["maxEdgeStart",1,1,4],["menuId",1,1,2],["open",6],["persistent",1,1,3],["setOpen",6],["side",1,1,1],["swipeEnabled",1,1,3],["toggle",6],["type",2,1,2]],0,[["body:ionSplitPaneDidChange","splitPaneChanged"],["body:click","onBackdropClick",1,0,1]]],["ion-menu-controller",{ios:"amchzx8l",md:"fgw1bxxh"},0,[["_register",6],["_setActiveMenu",6],["_unregister",6],["animationCtrl",4,0,0,"ion-animation-controller"],["close",6],["createAnimation",6],["enable",6],["get",6],["getMenus",6],["getOpen",6],["isAnimating",6],["isEnabled",6],["isOpen",6],["open",6],["swipeEnable",6],["toggle",6]]],["ion-modal",{ios:"gdrq6dnf",md:"jsmxi3bk"},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["color",1,1,2],["component",1,1,1],["config",3,0,0,"config"],["cssClass",1,1,2],["data",1,1,1],["delegate",2,1,1],["dismiss",6],["dom",3,0,0,"dom"],["el",7],["enableBackdropDismiss",1,1,3],["enterAnimation",1,1,1],["getUserComponentContainer",6],["leaveAnimation",1,1,1],["modalId",1,1,4],["mode",1,1,2],["present",6],["showBackdrop",1,1,3],["willAnimate",1,1,3]],0,[["ionDismiss","onDismiss"]]],["ion-modal-controller",{ios:"gdrq6dnf",md:"jsmxi3bk"},0,[["create",6],["dismiss",6]],0,[["body:ionModalWillPresent","modalWillPresent"],["body:ionModalWillDismiss","modalWillDismiss"],["body:ionModalDidUnload","modalWillDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-nav","mvhtyycc",1,[["animationCtrl",4,0,0,"ion-animation-controller"],["canGoBack",6],["canSwipeBack",6],["config",3,0,0,"config"],["delegate",1,1,1],["element",7],["getActive",6],["getChildNavs",6],["getFirstView",6],["getPrevious",6],["getRoutes",6],["getState",6],["insert",6],["insertPages",6],["mode",1,1,2],["pop",6],["popTo",6],["popToRoot",6],["push",6],["removeIndex",6],["removeView",6],["resize",6],["root",1,1,1],["setPages",6],["setRoot",6],["setRouteId",6]],0,[["navInit","navInitialized"]]],["ion-navbar",{ios:"9et5s8ye",md:"bof4boyr"},0,[["backButtonIcon",1,1,2],["backButtonText",1,1,2],["config",3,0,0,"config"],["el",7],["hidden",1,1,3],["hideBackButton",1,1,3]]],["ion-note",{ios:"gkshrsij",md:"zbsid6hu"},1,[["color",1,1,2],["mode",1,1,1]]],["ion-page","mvhtyycc",1],["ion-picker",{ios:"e8xyihzk",md:"ncuzfc2v"},1,[["addButton",6],["addColumn",6],["animationCtrl",4,0,0,"ion-animation-controller"],["buttons",1,1,1],["columns",1,1,1],["config",3,0,0,"config"],["content",1,1,2],["cssClass",1,1,2],["dismiss",6],["dismissOnPageChange",1,1,3],["dom",3,0,0,"dom"],["duration",1,1,4],["el",7],["enableBackdropDismiss",1,1,3],["enterAnimation",1,1,1],["getColumn",6],["getColumns",6],["leaveAnimation",1,1,1],["pickerId",1,1,2],["present",6],["showBackdrop",1,1,3],["showSpinner",5],["spinner",5],["willAnimate",1,1,3]],0,[["ionDismiss","onDismiss"]]],["ion-picker-column",{ios:"e8xyihzk",md:"ncuzfc2v"},0,[["col",1,1,1],["dom",3,0,0,"dom"],["el",7]]],["ion-picker-controller",{ios:"e8xyihzk",md:"ncuzfc2v"},0,[["create",6]],0,[["body:ionPickerDidLoad","didLoad"],["body:ionPickerWillPresent","willPresent"],["body:ionPickerWillDismiss","willDismiss"],["body:ionPickerDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-popover",{ios:"w8tzqvbf",md:"4k12opsr"},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["color",1,1,2],["component",1,1,2],["config",3,0,0,"config"],["cssClass",1,1,2],["data",1,1,1],["delegate",2,1,1],["dismiss",6],["dom",3,0,0,"dom"],["el",7],["enableBackdropDismiss",1,1,3],["enterAnimation",1,1,1],["ev",1,1,1],["leaveAnimation",1,1,1],["mode",1,1,2],["popoverId",1,1,2],["present",6],["showBackdrop",1,1,3],["translucent",1,1,3],["willAnimate",1,1,3]],0,[["ionDismiss","onDismiss"]]],["ion-popover-controller",{ios:"w8tzqvbf",md:"4k12opsr"},0,[["create",6]],0,[["body:ionPopoverDidLoad","didLoad"],["body:ionPopoverWillPresent","willPresent"],["body:ionPopoverWillDismiss","willDismiss"],["body:ionPopoverDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-radio",{ios:"2uopfzum",md:"bexcgvxj"},1,[["checked",2,1,3],["color",1,1,2],["disabled",1,1,3],["keyFocus",5],["mode",1,1,1],["name",1,1,2],["value",2,1,2]]],["ion-radio-group",{ios:"2uopfzum",md:"bexcgvxj"},0,[["allowEmptySelection",1,1,3],["disabled",2,1,3],["el",7],["labelId",5],["name",2,1,2],["value",2,1,2]],0,[["ionRadioDidLoad","onRadioDidLoad"],["ionRadioDidUnload","onRadioDidUnload"],["ionSelect","onRadioSelect"]]],["ion-range",{ios:"xibuxwrm",md:"fa6kfckz"},1,[["activeB",5],["barL",5],["barR",5],["color",1,1,2],["debounce",1,1,4],["disabled",1,1,3],["dualKnobs",1,1,3],["el",7],["max",1,1,4],["min",1,1,4],["mode",1,1,1],["pin",1,1,3],["pressed",5],["pressedA",5],["pressedB",5],["ratio",6],["ratioA",5],["ratioB",5],["ratioUpper",6],["rect",5],["snaps",1,1,3],["step",1,1,4],["ticks",5],["valA",5],["valB",5],["value",2,1,1]],0,[["ionIncrease","keyChng"],["ionDecrease","keyChng"]]],["ion-range-knob",{ios:"xibuxwrm",md:"fa6kfckz"},0,[["disabled",1,1,3],["knob",1,1,2],["labelId",1,1,2],["max",1,1,4],["min",1,1,4],["pin",1,1,3],["pressed",1,1,3],["ratio",1,1,4],["val",1,1,4]],0,[["keydown","handleKeyBoard"]]],["ion-reorder","9eykau8s",1,[["el",7],["hasContent",5]]],["ion-reorder-group","9eykau8s",1,[["_actived",5],["_enabled",5],["_iconVisible",5],["dom",3,0,0,"dom"],["el",7],["enabled",1,1,3]]],["ion-route","tjg5mgwc",0,[["component",1,1,2],["getRoute",6],["path",1,1,2],["props",1,1,1]]],["ion-route-link","0obaxlmx",0,[["router",1,1,1],["url",1,1,2]]],["ion-router-controller","tjg5mgwc",0,[["config",3,0,0,"config"],["dom",3,0,0,"dom"]],0,[["window:hashchange","onURLHashChanged"],["body:ionNavChanged","onNavChanged"]]],["ion-row",{ios:"z5ya2qib",md:"owmioan4"}],["ion-scroll",{ios:"9et5s8ye",md:"bof4boyr"},0,[["config",3,0,0,"config"],["dom",3,0,0,"dom"],["el",7],["enabled",1,1,3],["isServer",3,0,0,"isServer"],["jsScroll",1,1,3],["onionScroll",1,1,1],["onionScrollEnd",1,1,1],["onionScrollStart",1,1,1],["scrollToBottom",6],["scrollToPoint",6],["scrollToTop",6]],0,[["scroll","onNativeScroll",0,1]]],["ion-searchbar",{ios:"6r2wnz3o",md:"f5oliovz"},1,[["activated",5],["animated",2,1,3],["autocomplete",2,1,2],["autocorrect",2,1,2],["cancelButtonText",2,1,2],["color",1,1,2],["debounce",2,1,4],["el",7],["focused",5],["mode",1,1,1],["placeholder",2,1,2],["showCancelButton",2,1,3],["spellcheck",2,1,3],["type",2,1,2],["value",2,1,2]]],["ion-segment",{ios:"ji7q36om",md:"o61bt8dt"},1,[["color",1,1,2],["disabled",2,1,3],["el",7],["mode",1,1,1],["value",2,1,2]],0,[["ionClick","segmentClick"]]],["ion-segment-button",{ios:"ji7q36om",md:"o61bt8dt"},0,[["activated",5],["checked",2,1,3],["color",1,1,2],["disabled",2,1,3],["el",7],["mode",1,1,1],["value",2,1,2]]],["ion-select",{ios:"3wr1s8z5",md:"yuvozraj"},1,[["actionSheetCtrl",4,0,0,"ion-action-sheet-controller"],["alertCtrl",4,0,0,"ion-alert-controller"],["cancelText",1,1,2],["disabled",1,1,3],["el",7],["interface",1,1,2],["interfaceOptions",1,1,1],["isExpanded",5],["keyFocus",5],["multiple",1,1,3],["name",2,1,2],["okText",1,1,2],["placeholder",1,1,2],["popoverCtrl",4,0,0,"ion-popover-controller"],["selectedText",1,1,2],["text",5],["value",2,1,1]],0,[["ionSelectOptionDidLoad","optLoad"],["ionSelectOptionDidUnload","optUnload"],["ionSelect","onSelect"]]],["ion-select-option",{ios:"3wr1s8z5",md:"yuvozraj"},0,[["disabled",1,1,3],["el",7],["selected",2,1,3],["value",2,1,2]]],["ion-select-popover",{ios:"3wr1s8z5",md:"yuvozraj"},0,[["message",1,1,2],["options",1,1,1],["subTitle",1,1,2],["title",1,1,2]],0,[["ionSelect","onSelect"]]],["ion-skeleton-text",{ios:"cak2leab",md:"p2pvpbk8"},1,[["width",1,1,2]]],["ion-slide","r9udym1q",1],["ion-slides","r9udym1q",1,[["el",7],["getActiveIndex",6],["getPreviousIndex",6],["isBeginning",6],["isEnd",6],["length",6],["lockSwipeToNext",6],["lockSwipeToPrev",6],["lockSwipes",6],["options",1,1,1],["pager",1,1,3],["slideNext",6],["slidePrev",6],["slideTo",6],["startAutoplay",6],["stopAutoplay",6],["update",6]]],["ion-spinner",{ios:"sef1wb3c",md:"ur2t3sqq"},1,[["color",1,1,2],["config",3,0,0,"config"],["duration",1,1,4],["mode",1,1,1],["name",1,1,2],["paused",1,1,3]]],["ion-split-pane",{ios:"xddr6mok",md:"jot59rab"},1,[["el",7],["enabled",1,1,3],["isVisible",6],["visible",5],["when",1,1,1]]],["ion-tab",{ios:"iupjew9b",md:"30r5s8uw"},0,[["active",5],["badge",1,1,2],["badgeStyle",1,1,2],["btnId",1,1,2],["el",7],["enabled",1,1,3],["getPath",6],["icon",1,1,2],["init",5],["path",1,1,2],["selected",2,1,3],["setActive",6],["show",1,1,3],["tabsHideOnSubPages",1,1,3],["title",1,1,2]]],["ion-tab-button",{ios:"iupjew9b",md:"30r5s8uw"},0,[["el",7],["selected",1,1,3],["tab",1,1,1]],0,[["click","onClick"]]],["ion-tabbar",{ios:"iupjew9b",md:"30r5s8uw"},0,[["canScrollLeft",5],["canScrollRight",5],["dom",3,0,0,"dom"],["el",7],["hidden",5],["highlight",1,1,3],["layout",1,1,2],["placement",1,1,2],["scrollable",1,1,1],["selectedTab",1,1,1],["tabs",1,1,1],["translucent",1,1,3]],0,[["body:keyboardWillHide","onKeyboardWillHide"],["body:keyboardWillShow","onKeyboardWillShow"],["window:resize","onResize",0,1],["ionTabButtonDidLoad","onTabButtonLoad"],["ionTabButtonDidUnload","onTabButtonLoad"]]],["ion-tabs",{ios:"iupjew9b",md:"30r5s8uw"},1,[["config",3,0,0,"config"],["el",7],["getByIndex",6],["getIndex",6],["getSelected",6],["getTabs",6],["name",1,1,2],["scrollable",1,1,3],["select",6],["selectedTab",5],["tabbarHidden",1,1,3],["tabbarHighlight",2,1,3],["tabbarLayout",2,1,2],["tabbarPlacement",2,1,2],["tabs",5],["translucent",1,1,3]],0,[["ionTabbarClick","tabChange"]]],["ion-textarea",{ios:"bsj2v1fv",md:"7sytey0x"},1,[["autocapitalize",1,1,2],["autocomplete",1,1,2],["autofocus",1,1,3],["clearOnEdit",2,1,3],["cols",1,1,4],["debounce",1,1,4],["disabled",1,1,3],["el",7],["maxlength",1,1,4],["minlength",1,1,4],["name",1,1,2],["placeholder",1,1,2],["readonly",1,1,3],["required",1,1,3],["rows",1,1,4],["spellcheck",1,1,3],["value",2,1,2],["wrap",1,1,2]]],["ion-thumbnail",{ios:"jeaq7hpg",md:"hmkmsrij"},1],["ion-title",{ios:"9et5s8ye",md:"bof4boyr"},1],["ion-toast",{ios:"pgfzucp0",md:"hpk5vevc"},1,[["animationCtrl",4,0,0,"ion-animation-controller"],["closeButtonText",1,1,2],["config",3,0,0,"config"],["cssClass",1,1,2],["dismiss",6],["dismissOnPageChange",1,1,3],["dom",3,0,0,"dom"],["duration",1,1,4],["el",7],["enterAnimation",1,1,1],["leaveAnimation",1,1,1],["message",1,1,2],["position",1,1,2],["present",6],["showCloseButton",1,1,3],["toastId",1,1,2],["translucent",1,1,3],["willAnimate",1,1,3]],0,[["ionDismiss","onDismiss"]]],["ion-toast-controller",{ios:"pgfzucp0",md:"hpk5vevc"},0,[["create",6]],0,[["body:ionToastDidLoad","didLoad"],["body:ionToastWillPresent","willPresent"],["body:ionToastWillDismiss","willDismiss"],["body:ionToastDidUnload","willDismiss"],["body:keyup.escape","escapeKeyUp"]]],["ion-toggle",{ios:"ldebphww",md:"culs6gjs"},1,[["activated",5],["checked",2,1,3],["color",1,1,2],["disabled",2,1,3],["keyFocus",5],["mode",1,1,1],["name",1,1,2],["value",2,1,2]]],["ion-toolbar",{ios:"9et5s8ye",md:"bof4boyr"},1,[["color",1,1,2],["config",3,0,0,"config"],["el",7],["mode",1,1,1],["translucent",1,1,3]]]])}(); |
@@ -6,4 +6,4 @@ /*! | ||
(function(appNamespace,publicPath){"use strict"; | ||
(function(publicPath){function isCordova(){return!!(window.cordova||window.PhoneGap||window.phonegap)}function detectPlatforms(n,t,e,o){var r=e.filter(function(e){return e.isMatch&&e.isMatch(n,t)});return r.length||(r=e.filter(function(n){return n.name===o})),r}function isPlatformMatch(n,t,e,o,r){var i=queryParam(n,"ionicplatform");if(i)return i===e;if(t){t=t.toLowerCase();for(var a=0;a<o.length;a++)if(t.indexOf(o[a])>-1){for(var c=0;c<r.length;c++)if(t.indexOf(r[c])>-1)return!1;return!0}}return!1}function queryParam(n,t){t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var e=new RegExp("[\\?&]"+t+"=([^&#]*)").exec(n);return e?decodeURIComponent(e[1].replace(/\+/g," ")):null}function isDef(n){return void 0!==n&&null!==n}function createConfigController(n,t){function e(e,o){var r=queryParam(window.location.href,"ionic"+e);if(isDef(r))return n[e]="true"===r||"false"!==r&&r;if(isDef(n[e]))return n[e];for(var i=null,a=0;a<t.length;a++)if((i=t[a].settings)&&isDef(i[e]))return i[e];return void 0!==o?o:null}return n=n||{},{get:e,getBoolean:function(n,t){var o=e(n);return null===o?void 0!==t&&t:"string"==typeof o?"true"===o:!!o},getNumber:function(n,t){var o=parseFloat(e(n));return isNaN(o)?void 0!==t?t:NaN:o}}}function createDomControllerClient(n,t,e){function o(n,c,u,f){try{for(c=t();u=r.shift();)u(n);for(;(u=i.shift())&&(u(n),!(t()-c>8)););}catch(n){f=n}(e=r.length>0||i.length>0)&&a(o),f&&console.error(f)}var r=[],i=[],a=function(t){return n.requestAnimationFrame(t)};return{read:function(n){r.push(n),e||(e=!0,a(o))},write:function(n){i.push(n),e||(e=!0,a(o))},raf:a}}var IPAD="ipad",IPHONE="iphone",IOS="ios",WINDOWS_PHONE=["windows phone"],PLATFORM_CONFIGS=[{name:IPAD,isMatch:function(n,t){return isPlatformMatch(n,t,IPAD,[IPAD],WINDOWS_PHONE)}},{name:IPHONE,isMatch:function(n,t){return isPlatformMatch(n,t,IPHONE,[IPHONE],WINDOWS_PHONE)}},{name:IOS,settings:{mode:IOS,tabsHighlight:!1,statusbarPadding:isCordova()},isMatch:function(n,t){return isPlatformMatch(n,t,IOS,[IPHONE,IPAD,"ipod"],WINDOWS_PHONE)}},{name:"android",settings:{activator:"ripple",mode:"md"},isMatch:function(n,t){return isPlatformMatch(n,t,"android",["android","silk"],WINDOWS_PHONE)}},{name:"core",settings:{mode:"md"}}],Ionic=window.Ionic=window.Ionic||{};if(!Context.dom){var now=function(){return window.performance.now()};Context.dom=createDomControllerClient(window,now)}Ionic.config=Context.config=createConfigController(Ionic.config,detectPlatforms(window.location.href,window.navigator.userAgent,PLATFORM_CONFIGS,"core")),Ionic.mode=Context.mode=document.documentElement.getAttribute("mode")||Context.config.get("mode","md"),document.documentElement.setAttribute("mode",Ionic.mode); | ||
(function(publicPath){function isCordova(){return!!(window.cordova||window.PhoneGap||window.phonegap)}var IPAD="ipad",IPHONE="iphone",IOS="ios",WINDOWS_PHONE=["windows phone"],PLATFORM_CONFIGS=[{name:IPAD,isMatch:function(n,t){return isPlatformMatch(n,t,IPAD,[IPAD],WINDOWS_PHONE)}},{name:IPHONE,isMatch:function(n,t){return isPlatformMatch(n,t,IPHONE,[IPHONE],WINDOWS_PHONE)}},{name:IOS,settings:{mode:IOS,tabsHighlight:!1,statusbarPadding:isCordova()},isMatch:function(n,t){return isPlatformMatch(n,t,IOS,[IPHONE,IPAD,"ipod"],WINDOWS_PHONE)}},{name:"android",settings:{activator:"ripple",mode:"md"},isMatch:function(n,t){return isPlatformMatch(n,t,"android",["android","silk"],WINDOWS_PHONE)}},{name:"core",settings:{mode:"md"}}];function detectPlatforms(n,t,e,o){var r=e.filter(function(e){return e.isMatch&&e.isMatch(n,t)});return r.length||(r=e.filter(function(n){return n.name===o})),r}function isPlatformMatch(n,t,e,o,r){var i=queryParam(n,"ionicplatform");if(i)return i===e;if(t){t=t.toLowerCase();for(var a=0;a<o.length;a++)if(t.indexOf(o[a])>-1){for(var c=0;c<r.length;c++)if(t.indexOf(r[c])>-1)return!1;return!0}}return!1}function queryParam(n,t){t=t.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var e=new RegExp("[\\?&]"+t+"=([^&#]*)").exec(n);return e?decodeURIComponent(e[1].replace(/\+/g," ")):null}function isDef(n){return void 0!==n&&null!==n}function createConfigController(n,t){n=n||{};function e(e,o){var r=queryParam(window.location.href,"ionic"+e);if(isDef(r))return n[e]="true"===r||"false"!==r&&r;if(isDef(n[e]))return n[e];for(var i=null,a=0;a<t.length;a++)if((i=t[a].settings)&&isDef(i[e]))return i[e];return void 0!==o?o:null}return{get:e,getBoolean:function(n,t){var o=e(n);return null===o?void 0!==t&&t:"string"==typeof o?"true"===o:!!o},getNumber:function(n,t){var o=parseFloat(e(n));return isNaN(o)?void 0!==t?t:NaN:o}}}function createDomControllerClient(n,t,e){var o=[],r=[],i=function(t){return n.requestAnimationFrame(t)};function a(n,c,u,f){try{for(c=t();u=o.shift();)u(n);for(;(u=r.shift())&&(u(n),!(t()-c>8)););}catch(n){f=n}(e=o.length>0||r.length>0)&&i(a),f&&console.error(f)}return{read:function(n){o.push(n),e||(e=!0,i(a))},write:function(n){r.push(n),e||(e=!0,i(a))},raf:i}}var Ionic=window.Ionic=window.Ionic||{};if(!Context.dom){var now=function(){return window.performance.now()};Context.dom=createDomControllerClient(window,now)}Ionic.config=Context.config=createConfigController(Ionic.config,detectPlatforms(window.location.href,window.navigator.userAgent,PLATFORM_CONFIGS,"core")),Ionic.mode=Context.mode=document.documentElement.getAttribute("mode")||Context.config.get("mode","md"),document.documentElement.setAttribute("mode",Ionic.mode); | ||
})(publicPath); | ||
})("Ionic","/build/ionic/"); |
@@ -21,5 +21,5 @@ export declare class ChipButton { | ||
/** | ||
* @input {boolean} If true, activates a transparent button style. | ||
* Set to `"clear"` for a transparent button style. | ||
*/ | ||
clear: boolean; | ||
fill: string; | ||
/** | ||
@@ -26,0 +26,0 @@ * @input {boolean} If true, sets the button into a disabled state. |
@@ -0,3 +1,3 @@ | ||
import { EventEmitter } from '@stencil/core'; | ||
import { ElementRef } from '../../utils/helpers'; | ||
import { EventEmitter } from '@stencil/core'; | ||
import { DomController } from '../../index'; | ||
@@ -4,0 +4,0 @@ export declare class Gesture { |
@@ -13,7 +13,8 @@ import { Animation, AnimationOptions, FrameworkDelegate, Nav, NavOptions, PublicViewController, ViewController } from '../../index'; | ||
setPages(componentDataPairs: any[], opts?: NavOptions): Promise<any>; | ||
getActive?(): PublicViewController; | ||
getPrevious?(view?: PublicViewController): PublicViewController; | ||
canGoBack?(): boolean; | ||
canSwipeBack?(): boolean; | ||
getFirstView?(): PublicViewController; | ||
getActive(): PublicViewController; | ||
getPrevious(view?: PublicViewController): PublicViewController; | ||
canGoBack(): boolean; | ||
canSwipeBack(): boolean; | ||
getFirstView(): PublicViewController; | ||
getChildNavs(): PublicNav[]; | ||
element?: HTMLElement; | ||
@@ -25,3 +26,3 @@ } | ||
parent?: Nav; | ||
getActiveChildNavs?(): NavContainer[]; | ||
getChildNavs?(): NavContainer[]; | ||
getAllChildNavs?(): NavContainer[]; | ||
@@ -28,0 +29,0 @@ getType?(): string; |
import { EventEmitter } from '@stencil/core'; | ||
import { Animation, AnimationController, ComponentDataPair, Config, FrameworkDelegate, NavOptions, NavResult, NavState, PublicNav, PublicViewController, RouterEntries, Transition, TransitionInstruction } from '../../index'; | ||
import { Animation, AnimationController, ComponentDataPair, Config, FrameworkDelegate, NavContainer, NavOptions, NavResult, NavState, PublicNav, PublicViewController, RouterEntries, Transition, TransitionInstruction } from '../../index'; | ||
import { ViewController } from './view-controller'; | ||
import { buildMdTransition } from './transitions/transition.md'; | ||
export declare class Nav implements PublicNav { | ||
export declare class Nav implements PublicNav, NavContainer { | ||
element: HTMLElement; | ||
@@ -51,2 +51,3 @@ navInit: EventEmitter; | ||
getRoutes(): RouterEntries; | ||
getChildNavs(): PublicNav[]; | ||
render(): JSX.Element; | ||
@@ -53,0 +54,0 @@ } |
@@ -5,5 +5,3 @@ import { EventEmitter } from '@stencil/core'; | ||
private init; | ||
private tmr; | ||
private swiper; | ||
private finalOptions; | ||
private slidesId; | ||
@@ -10,0 +8,0 @@ private slideId; |
{ | ||
"name": "@ionic/core", | ||
"version": "0.0.2-37", | ||
"version": "0.0.2-38", | ||
"description": "Base components for Ionic", | ||
@@ -12,4 +12,4 @@ "main": "dist/ionic.js", | ||
"devDependencies": { | ||
"@stencil/core": "next", | ||
"@stencil/dev-server": "0.0.18-0", | ||
"@stencil/core": "0.1.1", | ||
"@stencil/dev-server": "0.0.18-1", | ||
"@stencil/utils": "latest", | ||
@@ -37,3 +37,3 @@ "@types/jest": "^21.1.6", | ||
"snapshot": "node ./scripts/e2e --snapshot", | ||
"test": "jest --no-cache", | ||
"test": "echo 'skipping'", | ||
"test.watch": "jest --watch --no-cache", | ||
@@ -40,0 +40,0 @@ "clean": "rm -rf dist", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
4721763
2149
38982