diff --git a/dev/src/lit-element/lit-element.js b/dev/src/lit-element/lit-element.js index 7d2fbc20..3b2cdabc 100644 --- a/dev/src/lit-element/lit-element.js +++ b/dev/src/lit-element/lit-element.js @@ -4,8 +4,15 @@ import { customElement, LitElement } from "lit-element"; export class MyElement extends LitElement { @property() myBoolean = true; + /** + * @private + */ myString = "hello"; + /** + * @protected + * @type {string} + */ myProp = "hejsa"; static get properties() { diff --git a/src/analyze/analyze-components.ts b/src/analyze/analyze-components.ts index 8a451aa7..42ea5fdf 100644 --- a/src/analyze/analyze-components.ts +++ b/src/analyze/analyze-components.ts @@ -9,6 +9,7 @@ import { parseComponentDefinitions } from "./parse/parse-definitions"; import { parseGlobalEvents } from "./parse/parse-global-events"; import { ComponentDefinition } from "./types/component-definition"; import { ComponentDiagnostic } from "./types/component-diagnostic"; +import { ComponentMemberVisibilityKind } from "./types/component-member"; import { EventDeclaration } from "./types/event-types"; const DEFAULT_FLAVORS = [new LitElementFlavor(), new CustomElementFlavor(), new JsDocFlavor(), new StencilFlavor()]; @@ -28,6 +29,7 @@ export interface AnalyzeComponentsOptions { */ export interface AnalyzeComponentsConfig { diagnostics?: boolean; + visibility?: ComponentMemberVisibilityKind; analyzeLibDom?: boolean; excludedDeclarationNames?: string[]; } diff --git a/src/analyze/flavors/custom-element/custom-element-flavor.ts b/src/analyze/flavors/custom-element/custom-element-flavor.ts index c54aa4e3..a670b8f6 100644 --- a/src/analyze/flavors/custom-element/custom-element-flavor.ts +++ b/src/analyze/flavors/custom-element/custom-element-flavor.ts @@ -1,6 +1,7 @@ import { Node } from "typescript"; import { ComponentMember } from "../../types/component-member"; import { EventDeclaration } from "../../types/event-types"; +import { isNodeInLibDom } from "../../util/ast-util"; import { ParseComponentFlavor, ParseComponentMembersContext, @@ -32,4 +33,10 @@ export class CustomElementFlavor implements ParseComponentFlavor { visitGlobalEvents(node: Node, context: ParseVisitContextGlobalEvents): void { visitGlobalEvents(node, context); } + + isNodeInLib(node: Node) { + if (isNodeInLibDom(node)) { + return true; + } + } } diff --git a/src/analyze/flavors/custom-element/parse-declaration-members.ts b/src/analyze/flavors/custom-element/parse-declaration-members.ts index c32fb170..d56596ea 100644 --- a/src/analyze/flavors/custom-element/parse-declaration-members.ts +++ b/src/analyze/flavors/custom-element/parse-declaration-members.ts @@ -1,7 +1,7 @@ import { SimpleTypeKind, toSimpleType } from "ts-simple-type"; import { BinaryExpression, ExpressionStatement, Node, ReturnStatement } from "typescript"; import { ComponentMember } from "../../types/component-member"; -import { hasModifier, hasPublicSetter, isPropertyRequired, isPropNamePublic } from "../../util/ast-util"; +import { hasModifier, isPropertyRequired, isNamePrivate, getMemberVisibility, isMemberAndWritable } from "../../util/ast-util"; import { getJsDoc } from "../../util/js-doc-util"; import { resolveNodeValue } from "../../util/resolve-node-value"; import { relaxType } from "../../util/type-util"; @@ -26,6 +26,7 @@ export function parseDeclarationMembers(node: Node, context: ParseComponentMembe members.push({ kind: "attribute", attrName, + visibility: isNamePrivate(attrName) ? "private" : "public", type: { kind: SimpleTypeKind.ANY }, node: attrNameNode }); @@ -38,17 +39,19 @@ export function parseDeclarationMembers(node: Node, context: ParseComponentMembe } // class { myProp = "hello"; } - else if ((ts.isPropertyDeclaration(node) || ts.isPropertySignature(node)) && hasPublicSetter(node, ts)) { + else if ((ts.isPropertyDeclaration(node) || ts.isPropertySignature(node)) && isMemberAndWritable(node, ts)) { const { name, initializer } = node; if (ts.isIdentifier(name) || ts.isStringLiteralLike(name)) { // Find default value based on initializer const def = "initializer" in node && node.initializer != null ? resolveNodeValue(initializer, context) : undefined; + const propName = name.text; return [ { kind: "property", - propName: name.text, + propName, + visibility: getMemberVisibility(node, ts), type: checker.getTypeAtLocation(node), required: isPropertyRequired(node, context.checker), default: def, @@ -61,10 +64,13 @@ export function parseDeclarationMembers(node: Node, context: ParseComponentMembe // class { 'hello'?: number } else if (ts.isConditionalExpression(node) && (ts.isStringLiteralLike(node.condition) || ts.isIdentifier(node.condition))) { + const propName = node.condition.text; + return [ { kind: "property", - propName: node.condition.text, + propName, + visibility: isNamePrivate(propName) ? "private" : "public", type: checker.getTypeAtLocation(node), jsDoc: getJsDoc(node, ts), node @@ -73,16 +79,18 @@ export function parseDeclarationMembers(node: Node, context: ParseComponentMembe } // class { set myProp(value: string) { ... } } - else if (ts.isSetAccessor(node) && hasPublicSetter(node, ts)) { + else if (ts.isSetAccessor(node) && isMemberAndWritable(node, ts)) { const { name, parameters } = node; if (ts.isIdentifier(name) && parameters.length > 0) { const parameter = parameters[0]; + const propName = name.text; return [ { kind: "property", - propName: name.text, + propName, + visibility: getMemberVisibility(node, ts), type: context.checker.getTypeAtLocation(parameter), jsDoc: getJsDoc(node, ts), required: false, @@ -114,13 +122,14 @@ export function parseDeclarationMembers(node: Node, context: ParseComponentMembe const parsedClassField = classFieldDeclaration == null ? undefined : parseDeclarationMembers(classFieldDeclaration, context); - if (isPropNamePublic(propName) && (classFieldDeclaration == null || parsedClassField != null)) { + if (classFieldDeclaration == null || parsedClassField != null) { const simpleType = relaxType(toSimpleType(checker.getTypeAtLocation(right), checker)); members.push({ kind: "property", propName, default: resolveNodeValue(right, context), + visibility: isNamePrivate(propName) ? "private" : "public", type: simpleType, jsDoc: getJsDoc(assignment.parent, ts), required: false, diff --git a/src/analyze/flavors/js-doc/parse-declaration-members.ts b/src/analyze/flavors/js-doc/parse-declaration-members.ts index b38dd3af..87c12913 100644 --- a/src/analyze/flavors/js-doc/parse-declaration-members.ts +++ b/src/analyze/flavors/js-doc/parse-declaration-members.ts @@ -1,6 +1,7 @@ import { SimpleTypeKind } from "ts-simple-type"; import { Node } from "typescript"; import { ComponentMember, ComponentMemberAttribute, ComponentMemberProperty } from "../../types/component-member"; +import { isNamePrivate } from "../../util/ast-util"; import { parseJsDocTypeString } from "../../util/js-doc-util"; import { ParseComponentMembersContext } from "../parse-component-flavor"; import { parseJsDocForNode } from "./helper"; @@ -18,10 +19,13 @@ export function parseDeclarationMembers(node: Node, context: ParseComponentMembe node, ["prop", "property"], (tagNode, parsed) => { - if (parsed.name != null) { + const propName = parsed.name; + + if (propName != null) { return { kind: "property", - propName: parsed.name, + propName, + visibility: isNamePrivate(propName) ? "private" : "public", jsDoc: parsed.comment != null ? { comment: parsed.comment } : undefined, type: (parsed.type && parseJsDocTypeString(parsed.type)) || { kind: SimpleTypeKind.ANY }, node: tagNode @@ -35,10 +39,12 @@ export function parseDeclarationMembers(node: Node, context: ParseComponentMembe node, ["attr", "attribute"], (tagNode, parsed) => { - if (parsed.name != null) { + const attrName = parsed.name; + if (attrName != null) { return { kind: "attribute", - attrName: parsed.name, + attrName, + visibility: isNamePrivate(attrName) ? "private" : "public", jsDoc: parsed.comment && { comment: parsed.comment }, type: (parsed.type && parseJsDocTypeString(parsed.type)) || { kind: SimpleTypeKind.ANY }, node: tagNode diff --git a/src/analyze/flavors/lit-element/lit-element-flavor.ts b/src/analyze/flavors/lit-element/lit-element-flavor.ts index 9d8d6e23..8ed02004 100644 --- a/src/analyze/flavors/lit-element/lit-element-flavor.ts +++ b/src/analyze/flavors/lit-element/lit-element-flavor.ts @@ -12,4 +12,13 @@ export class LitElementFlavor implements ParseComponentFlavor { parseDeclarationMembers(node: Node, context: ParseComponentMembersContext): ComponentMember[] | undefined { return parseDeclarationMembers(node, context); } + + isNodeInLib(node: Node, context: ParseComponentMembersContext) { + if (context.ts.isClassLike(node)) { + const name = (node.name != null && node.name.text) || ""; + if (["LitElement", "PolymerElement", "Polymer.Element"].includes(name)) { + return true; + } + } + } } diff --git a/src/analyze/flavors/lit-element/parse-declaration-members.ts b/src/analyze/flavors/lit-element/parse-declaration-members.ts index 35616d44..0deb6d29 100644 --- a/src/analyze/flavors/lit-element/parse-declaration-members.ts +++ b/src/analyze/flavors/lit-element/parse-declaration-members.ts @@ -1,7 +1,7 @@ import { isAssignableToSimpleTypeKind, SimpleType, SimpleTypeKind, toSimpleType, toTypeString } from "ts-simple-type"; import { Node, PropertyLikeDeclaration, PropertySignature, ReturnStatement, SetAccessorDeclaration } from "typescript"; import { ComponentMember } from "../../types/component-member"; -import { hasModifier, hasPublicSetter, isPropertyRequired, isPropNamePublic } from "../../util/ast-util"; +import { getMemberVisibility, hasModifier, isMemberAndWritable, isNamePrivate, isPropertyRequired } from "../../util/ast-util"; import { isValidAttributeName } from "../../util/is-valid-attribute-name"; import { getJsDoc, getJsDocType } from "../../util/js-doc-util"; import { resolveNodeValue } from "../../util/resolve-node-value"; @@ -36,7 +36,7 @@ export function parseDeclarationMembers(node: Node, context: ParseComponentMembe } // @property({type: String}) myProp = "hello"; - else if ((ts.isSetAccessorDeclaration(node) || ts.isPropertyDeclaration(node) || ts.isPropertySignature(node)) && hasPublicSetter(node, ts)) { + else if ((ts.isSetAccessorDeclaration(node) || ts.isPropertyDeclaration(node) || ts.isPropertySignature(node)) && isMemberAndWritable(node, ts)) { return parsePropertyDecorator(node, context); } } @@ -101,6 +101,7 @@ function parsePropertyDecorator( attrName, type, node, + visibility: getMemberVisibility(node, ts), default: def || litConfig.default, required, jsDoc @@ -156,7 +157,7 @@ function parseStaticProperties(returnStatement: ReturnStatement, context: Flavor for (const propNode of returnStatement.expression.properties) { // Get propName const propName = propNode.name != null && ts.isIdentifier(propNode.name) ? propNode.name.text : undefined; - if (propName == null || !isPropNamePublic(propName)) { + if (propName == null) { continue; } @@ -203,6 +204,7 @@ function parseStaticProperties(returnStatement: ReturnStatement, context: Flavor members.push({ kind: "property", type, + visibility: isNamePrivate(propName) ? "private" : "public", propName: propName, attrName: emitAttribute ? attrName : undefined, jsDoc, diff --git a/src/analyze/flavors/parse-component-flavor.ts b/src/analyze/flavors/parse-component-flavor.ts index 713a7b81..db588cef 100644 --- a/src/analyze/flavors/parse-component-flavor.ts +++ b/src/analyze/flavors/parse-component-flavor.ts @@ -11,9 +11,9 @@ export interface FlavorVisitContext { checker: TypeChecker; ts: typeof tsModule; config: AnalyzeComponentsConfig; + features?: FlavorVisitContextFeatures; emitContinue?(): void; emitDiagnostics(diagnostic: ComponentDiagnostic): void; - features?: FlavorVisitContextFeatures; } export interface FlavorVisitContextFeatures { @@ -53,4 +53,6 @@ export interface ParseComponentFlavor { parseDeclarationCSSProps?(node: Node, context: ParseComponentMembersContext): ComponentCSSProperty[] | undefined; visitGlobalEvents?(node: Node, context: ParseVisitContextGlobalEvents): void; + + isNodeInLib?(node: Node, context: ParseComponentMembersContext): boolean | undefined; } diff --git a/src/analyze/flavors/stencil/parse-declaration-members.ts b/src/analyze/flavors/stencil/parse-declaration-members.ts index 6d0f6bc4..5286063e 100644 --- a/src/analyze/flavors/stencil/parse-declaration-members.ts +++ b/src/analyze/flavors/stencil/parse-declaration-members.ts @@ -1,5 +1,6 @@ import { Node } from "typescript"; import { ComponentMember } from "../../types/component-member"; +import { isNamePrivate } from "../../util/ast-util"; import { ParseComponentMembersContext } from "../parse-component-flavor"; /** @@ -20,10 +21,12 @@ export function parseDeclarationMembers(node: Node, context: ParseComponentMembe if (ts.isPropertyDeclaration(node) || ts.isPropertySignature(node) || ts.isConditionalExpression(node)) { const name = ts.isConditionalExpression(node) ? node.condition : node.name; if (ts.isIdentifier(name) || ts.isStringLiteralLike(name)) { + const attrName = name.text; return [ { kind: "attribute", - attrName: name.text, + attrName, + visibility: isNamePrivate(attrName) ? "private" : "public", type: checker.getTypeAtLocation(node), node } diff --git a/src/analyze/flavors/stencil/stencil-flavor.ts b/src/analyze/flavors/stencil/stencil-flavor.ts index f07d3ba1..68cbf1c4 100644 --- a/src/analyze/flavors/stencil/stencil-flavor.ts +++ b/src/analyze/flavors/stencil/stencil-flavor.ts @@ -10,4 +10,10 @@ export class StencilFlavor implements ParseComponentFlavor { visitComponentDefinitions(node: Node, context: VisitComponentDefinitionContext): void { visitComponentDefinitions(node, context); } + + isNodeInLib(node: Node) { + if (node.getSourceFile().fileName.endsWith("stencil.core.d.ts")) { + return true; + } + } } diff --git a/src/analyze/parse/expand-from-js-doc.ts b/src/analyze/parse/expand-from-js-doc.ts index 321304a7..0e893e5c 100644 --- a/src/analyze/parse/expand-from-js-doc.ts +++ b/src/analyze/parse/expand-from-js-doc.ts @@ -26,6 +26,12 @@ export function expandMemberFromJsDoc(member: ComponentMember): ComponentMember newMember.deprecated = deprecatedTag.comment || true; } + // Check "@private" and "@protected + const visibilityTag = member.jsDoc.tags.find(t => t.tag === "private" || t.tag === "protected"); + if (visibilityTag != null) { + newMember.visibility = visibilityTag.tag === "private" ? "private" : "protected"; + } + // Check "@prop {Number} myProp - My comment" if (newMember.kind === "property" && newMember.attrName == null) { const attrNameTag = member.jsDoc.tags.find(t => ["attr", "attribute"].includes(t.tag)); diff --git a/src/analyze/parse/merge-declarations.ts b/src/analyze/parse/merge-declarations.ts index f3a9df91..b84d9e64 100644 --- a/src/analyze/parse/merge-declarations.ts +++ b/src/analyze/parse/merge-declarations.ts @@ -3,10 +3,11 @@ import { Type, TypeChecker } from "typescript"; import { FlavorVisitContext } from "../flavors/parse-component-flavor"; import { ComponentCSSProperty } from "../types/component-css-property"; import { ComponentDeclaration } from "../types/component-declaration"; -import { ComponentMember, ComponentMemberAttribute, ComponentMemberProperty } from "../types/component-member"; +import { ComponentMember, ComponentMemberAttribute, ComponentMemberProperty, ComponentMemberVisibilityKind } from "../types/component-member"; import { ComponentSlot } from "../types/component-slot"; import { EventDeclaration } from "../types/event-types"; import { JsDoc } from "../types/js-doc"; +import { compareVisibility } from "../util/component-util"; import { mergeJsDocs } from "./merge-js-docs"; /** @@ -196,7 +197,8 @@ function mergeAttrIntoProp(prop: ComponentMemberProperty, attr: ComponentMemberA default: attr.default || prop.default, required: attr.required || prop.required, jsDoc: attr.jsDoc || prop.jsDoc, - attrName: attr.attrName + attrName: attr.attrName, + visibility: mergeVisibility(attr.visibility, prop.visibility) }; } @@ -211,7 +213,8 @@ function mergeMemberIntoMember !isDeclarationExcluded(node, context)) + .filter(node => !isDeclarationNameExcluded(node, context)) .map(n => getJsDoc(n, context.ts)); const jsDoc = mergeJsDocs(mainJsDoc, inheritedJsDocs); // Expand members using jsdoc annotations and merge all members. const mergedMembers = mergeMembers(expandMembersFromJsDoc(members), context); + const visibleMembers = mergedMembers.filter(member => compareVisibility(member.visibility, context.config.visibility || "public") >= 0); + // Merge slots, events and css properties const mergedSlots = mergeSlots(slots); const mergedEvents = mergeEvents(events); @@ -101,7 +104,7 @@ export function parseComponentDeclaration(declarationNode: Node, flavors: ParseC return { node: declarationNode, - members: mergedMembers, + members: visibleMembers, slots: mergedSlots, events: mergedEvents, cssProperties: mergedCSSProps, @@ -117,11 +120,11 @@ export function parseComponentDeclaration(declarationNode: Node, flavors: ParseC * @param node * @param context */ -function isDeclarationExcluded(node: Node, context: FlavorVisitContext): boolean { - if (!context.ts.isClassLike(node) && !context.ts.isInterfaceDeclaration(node)) return false; - +function isDeclarationNameExcluded(node: Node, context: FlavorVisitContext): boolean { if (context.config.excludedDeclarationNames == null) return false; + if (!context.ts.isClassLike(node) && !context.ts.isInterfaceDeclaration(node)) return false; + const name = (node.name != null && node.name.text) || ""; // Test if the name is excluded @@ -139,8 +142,16 @@ function visitComponentDeclaration(node: Node, flavors: ParseComponentFlavor[], const { ts } = context; - // Skip visiting it's children if this name is excluded - if (isDeclarationExcluded(node, context)) { + if (context.config.analyzeLibDom !== true) { + // Skip visiting it's children if this declaration is in lib + const libResult = executeFirstFlavor(flavors, "isNodeInLib", node, context); + if (libResult != null) { + if (!libResult.shouldContinue) return; + } + } + + // Skip visiting it's children if this declaration is excluded from the config + if (isDeclarationNameExcluded(node, context)) { return; } @@ -199,7 +210,8 @@ function executeFirstFlavor< | keyof ParseComponentFlavor & "parseDeclarationMembers" | "parseDeclarationEvents" | "parseDeclarationSlots" - | "parseDeclarationCSSProps", + | "parseDeclarationCSSProps" + | "isNodeInLib", Return extends ReturnType> >( flavors: ParseComponentFlavor[], @@ -243,21 +255,6 @@ function visitInheritedComponentDeclarations( ) { const { ts } = context; - /*function go (n: Type) { - if ("instantiations" in t) { - const tt = t as ConditionalRoot; - console.log(`ConditionalRoot: instantiations`); - tt.instantiations!.forEach((value, key) => { - console.log(key, context.checker.typeToString(value)); - go(value); - }); - } - } - - const t = context.checker.getTypeAtLocation(node); - console.log("Type: ", context.checker.typeToString(t)); - go(t);*/ - if (node.heritageClauses != null) { for (const heritage of node.heritageClauses || []) { // class Test implements MyBase @@ -282,7 +279,7 @@ function resolveAndExtendHeritage(node: Node, flavors: ParseComponentFlavor[], c const { ts } = context; // Emit extends name - context.emitInherit(node.getText()); + context.emitInherit(context.ts.isCallExpression(node) ? node.expression.getText() : node.getText()); if (ts.isCallExpression(node)) { // Mixins @@ -340,7 +337,5 @@ function extendWithDeclarationNode(declaration: Node, flavors: ParseComponentFla context.emitInheritNode(declaration); } - if (context.config.analyzeLibDom || !isNodeInLibDom(declaration)) { - visitComponentDeclaration(declaration, flavors, context); - } + visitComponentDeclaration(declaration, flavors, context); } diff --git a/src/analyze/types/component-member.ts b/src/analyze/types/component-member.ts index 1a2d24c8..e148b2e2 100644 --- a/src/analyze/types/component-member.ts +++ b/src/analyze/types/component-member.ts @@ -4,10 +4,13 @@ import { JsDoc } from "./js-doc"; export type ComponentMemberKind = "property" | "attribute" | "method"; +export type ComponentMemberVisibilityKind = "public" | "protected" | "private"; + export interface ComponentMemberBase { kind: ComponentMemberKind; node: Node; type: Type | SimpleType; + visibility: ComponentMemberVisibilityKind; deprecated?: boolean | string; jsDoc?: JsDoc; } diff --git a/src/analyze/util/ast-util.ts b/src/analyze/util/ast-util.ts index 6b2a4a16..00bd5623 100644 --- a/src/analyze/util/ast-util.ts +++ b/src/analyze/util/ast-util.ts @@ -13,6 +13,7 @@ import { SyntaxKind, TypeChecker } from "typescript"; +import { ComponentMemberVisibilityKind } from "../types/component-member"; export interface AstContext { ts: typeof tsModule; @@ -55,11 +56,21 @@ function isAliasSymbol(symbol: Symbol, ts: typeof tsModule): boolean { } /** - * Returns if a name is public (doesn't start with "_"); + * Returns if a name is private (starts with "_" or "#"); * @param name */ -export function isPropNamePublic(name: string): boolean { - return !name.startsWith("_") && !name.startsWith("#"); +export function isNamePrivate(name: string): boolean { + return name.startsWith("_") || name.startsWith("#"); +} + +/** + * Returns if a node is not readable and static. + * This function is used because modifiers have not been added to the output yet. + * @param node + * @param ts + */ +export function isMemberAndWritable(node: PropertyDeclaration | PropertySignature | SetAccessorDeclaration, ts: typeof tsModule): boolean { + return !hasModifier(node, ts.SyntaxKind.ReadonlyKeyword) && !hasModifier(node, ts.SyntaxKind.StaticKeyword); } /** @@ -67,14 +78,17 @@ export function isPropNamePublic(name: string): boolean { * @param node * @param ts */ -export function hasPublicSetter(node: PropertyDeclaration | PropertySignature | SetAccessorDeclaration, ts: typeof tsModule): boolean { - return ( - !hasModifier(node, ts.SyntaxKind.ProtectedKeyword) && - !hasModifier(node, ts.SyntaxKind.PrivateKeyword) && - !hasModifier(node, ts.SyntaxKind.ReadonlyKeyword) && - !hasModifier(node, ts.SyntaxKind.StaticKeyword) && - (ts.isIdentifier(node.name) ? isPropNamePublic(node.name.text) : true) - ); +export function getMemberVisibility( + node: PropertyDeclaration | PropertySignature | SetAccessorDeclaration | Node, + ts: typeof tsModule +): ComponentMemberVisibilityKind { + if (hasModifier(node, ts.SyntaxKind.PrivateKeyword) || ("name" in node && ts.isIdentifier(node.name) && isNamePrivate(node.name.text))) { + return "private"; + } else if (hasModifier(node, ts.SyntaxKind.ProtectedKeyword)) { + return "protected"; + } else { + return "public"; + } } /** diff --git a/src/analyze/util/component-util.ts b/src/analyze/util/component-util.ts new file mode 100644 index 00000000..fc07d42b --- /dev/null +++ b/src/analyze/util/component-util.ts @@ -0,0 +1,18 @@ +import { ComponentMemberVisibilityKind } from "../types/component-member"; + +const VISIBILITY_TO_NUMBER: Record = { + private: 1, + protected: 2, + public: 3 +}; + +/** + * Returns if visibilityA is greater than, less than or equals to visibilityB + * @param visibilityA + * @param visibilityB + */ +export function compareVisibility(visibilityA: ComponentMemberVisibilityKind, visibilityB: ComponentMemberVisibilityKind): number { + const a = VISIBILITY_TO_NUMBER[visibilityA]; + const b = VISIBILITY_TO_NUMBER[visibilityB]; + return a === b ? 0 : a > b ? 1 : -1; +} diff --git a/src/cli/transformer/markdown/markdown-transformer.ts b/src/cli/transformer/markdown/markdown-transformer.ts index ffceeb96..b3a6cfab 100644 --- a/src/cli/transformer/markdown/markdown-transformer.ts +++ b/src/cli/transformer/markdown/markdown-transformer.ts @@ -145,7 +145,7 @@ function memberPropertySection(members: ComponentMemberProperty[], checker: Type // Add properties as rows one by one for (const member of members) { - const propName = markdownHighlight(member.propName); + const propName = markdownHighlight(member.propName) + " - " + member.visibility; const attrName = (member.attrName && markdownHighlight(member.attrName)) || ""; const type = markdownHighlight(toTypeString(member.type, checker)); const def = (member.default !== undefined ? JSON.stringify(member.default) : "") || (member.required && "**required**") || ""; diff --git a/test/flavors/jsdoc/visibility-test.ts b/test/flavors/jsdoc/visibility-test.ts new file mode 100644 index 00000000..ff07da1a --- /dev/null +++ b/test/flavors/jsdoc/visibility-test.ts @@ -0,0 +1,86 @@ +import test from "ava"; +import { analyzeComponentsInCode } from "../../helpers/analyze-text"; +import { getComponentProp } from "../../helpers/util"; + +test("jsdoc: Property with default visibility", t => { + const { result } = analyzeComponentsInCode(` + /** + * @element + */ + class MyElement extends HTMLElement { + myProp = "foo"; + } + `); + + const { members } = result.componentDefinitions[0].declaration; + + const prop = getComponentProp(members, "myProp"); + t.truthy(prop); + t.is(prop!.visibility, "public"); +}); + +test("jsdoc: Property with @private jsdoc", t => { + const { result } = analyzeComponentsInCode( + ` + /** + * @element + */ + class MyElement extends HTMLElement { + /** + * @private + */ + myProp = "foo"; + } + `, + { visibility: "private" } + ); + + const { members } = result.componentDefinitions[0].declaration; + + const prop = getComponentProp(members, "myProp"); + t.truthy(prop); + t.is(prop!.visibility, "private"); +}); + +test("jsdoc: Property that starts with underscore (private)", t => { + const { result } = analyzeComponentsInCode( + ` + /** + * @element + */ + class MyElement extends HTMLElement { + _myProp = "foo"; + } + `, + { visibility: "private" } + ); + + const { members } = result.componentDefinitions[0].declaration; + + const prop = getComponentProp(members, "_myProp"); + t.truthy(prop); + t.is(prop!.visibility, "private"); +}); + +test("jsdoc: Property with @protected jsdoc", t => { + const { result } = analyzeComponentsInCode( + ` + /** + * @element + */ + class MyElement extends HTMLElement { + /** + * @protected + */ + myProp = "foo"; + } + `, + { visibility: "private" } + ); + + const { members } = result.componentDefinitions[0].declaration; + + const prop = getComponentProp(members, "myProp"); + t.truthy(prop); + t.is(prop!.visibility, "protected"); +}); diff --git a/test/helpers/analyze-text.ts b/test/helpers/analyze-text.ts index 41c8b253..5ebf5d06 100644 --- a/test/helpers/analyze-text.ts +++ b/test/helpers/analyze-text.ts @@ -11,7 +11,7 @@ import { sys, TypeChecker } from "typescript"; -import { analyzeComponents, AnalyzeComponentsResult } from "../../src/analyze/analyze-components"; +import { analyzeComponents, AnalyzeComponentsConfig, AnalyzeComponentsResult } from "../../src/analyze/analyze-components"; // tslint:disable:no-any @@ -26,9 +26,13 @@ export type TestFile = ITestFile | string; /** * Analyzes components in code * @param {ITestFile[]|TestFile} inputFiles + * @param config * @returns {Promise<{fileName: string, result: AnalyzeComponentsResult}[]>} */ -export function analyzeComponentsInCode(inputFiles: TestFile[] | TestFile): { result: AnalyzeComponentsResult; checker: TypeChecker } { +export function analyzeComponentsInCode( + inputFiles: TestFile[] | TestFile, + config?: AnalyzeComponentsConfig +): { result: AnalyzeComponentsResult; checker: TypeChecker } { const cwd = process.cwd(); const files: ITestFile[] = (Array.isArray(inputFiles) ? inputFiles : [inputFiles]) @@ -110,6 +114,6 @@ export function analyzeComponentsInCode(inputFiles: TestFile[] | TestFile): { re return { checker, - result: analyzeComponents(entrySourceFile, { checker }) + result: analyzeComponents(entrySourceFile, { checker, config }) }; } diff --git a/test/snapshots/results/test/snapshots/lion-web-components.ts.md b/test/snapshots/results/test/snapshots/lion-web-components.ts.md index 89039106..aa2561be 100644 --- a/test/snapshots/results/test/snapshots/lion-web-components.ts.md +++ b/test/snapshots/results/test/snapshots/lion-web-components.ts.md @@ -24,18 +24,14 @@ Generated by [AVA](https://ava.li). '{NODE}', '{NODE}', '{NODE}', - '{NODE}', - '{NODE}', ], inherits: [ - 'DelegateMixin(SlotMixin(LionLitElement))', - 'SlotMixin(LionLitElement)', + 'DelegateMixin', + 'SlotMixin', 'LionLitElement', - 'ElementMixin(LitElement)', + 'ElementMixin', 'LitElement', - 'UpdatingElement', - 'HTMLElement', - 'DomHelpersMixin(superclass)', + 'DomHelpersMixin', 'superclass', ], jsDoc: { @@ -60,6 +56,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'role', @@ -72,6 +69,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'tabindex', @@ -84,6 +82,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'NUMBER', }, + visibility: 'public', }, ], node: '{NODE}', @@ -259,55 +258,24 @@ Generated by [AVA](https://ava.li). '{NODE}', '{NODE}', '{NODE}', - '{NODE}', - '{NODE}', ], inherits: [ - `FormControlMixin(␊ - InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - ),␊ - )`, - `InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - )`, - `FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - )`, - `ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - )`, - 'CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))))', - 'ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))', - 'DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))', - 'SlotMixin(ObserverMixin(LionLitElement))', - 'ObserverMixin(LionLitElement)', + 'FormControlMixin', + 'InteractionStateMixin', + 'FormatMixin', + 'ValidateMixin', + 'CssClassMixin', + 'ElementMixin', + 'DelegateMixin', + 'SlotMixin', + 'ObserverMixin', 'LionLitElement', - 'ElementMixin(LitElement)', 'LitElement', - 'UpdatingElement', - 'HTMLElement', - 'DomHelpersMixin(superclass)', + 'DomHelpersMixin', 'superclass', - 'CssClassMixin(ObserverMixin(LocalizeMixin(SlotMixin(superclass))))', - 'ObserverMixin(LocalizeMixin(SlotMixin(superclass)))', - 'LocalizeMixin(SlotMixin(superclass))', - 'SlotMixin(superclass)', - 'EventMixin(ObserverMixin(superclass))', - 'ObserverMixin(superclass)', - 'CssClassMixin(FocusMixin(ObserverMixin(superclass)))', - 'FocusMixin(ObserverMixin(superclass))', - 'DelegateMixin(superclass)', + 'LocalizeMixin', + 'EventMixin', + 'FocusMixin', ], jsDoc: { comment: `LionField: wraps components input, textarea and select and potentially others␊ @@ -353,6 +321,7 @@ Generated by [AVA](https://ava.li). kind: 'ANY', }, }, + visibility: 'public', }, { attrName: 'error', @@ -365,6 +334,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'errorState', @@ -376,6 +346,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'errorShow', @@ -387,6 +358,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningValidators', @@ -399,6 +371,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warning', @@ -411,6 +384,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warningState', @@ -422,6 +396,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningShow', @@ -433,6 +408,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoValidators', @@ -445,6 +421,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'info', @@ -457,6 +434,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'infoState', @@ -468,6 +446,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoShow', @@ -479,6 +458,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successValidators', @@ -491,6 +471,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'success', @@ -503,6 +484,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'successState', @@ -514,6 +496,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successShow', @@ -525,6 +508,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'invalid', @@ -536,6 +520,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'message', @@ -547,6 +532,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'defaultSuccessFeedback', @@ -558,6 +544,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'modelValue', @@ -582,6 +569,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'formattedValue', @@ -603,6 +591,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'serializedValue', @@ -629,6 +618,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOn', @@ -641,6 +631,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOptions', @@ -654,6 +645,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', name: undefined, }, + visibility: 'public', }, { attrName: 'touched', @@ -666,6 +658,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'dirty', @@ -678,6 +671,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'prefilled', @@ -690,6 +684,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { default: 'blur', @@ -701,6 +696,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'label', @@ -716,6 +712,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'help-text', @@ -731,6 +728,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'submitted', @@ -742,6 +740,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: undefined, @@ -750,6 +749,7 @@ Generated by [AVA](https://ava.li). node: '{NODE}', propName: 'value', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -925,55 +925,24 @@ Generated by [AVA](https://ava.li). '{NODE}', '{NODE}', '{NODE}', - '{NODE}', - '{NODE}', ], inherits: [ - `FormControlMixin(␊ - InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - ),␊ - )`, - `InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - )`, - `FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - )`, - `ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - )`, - 'CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))))', - 'ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))', - 'DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))', - 'SlotMixin(ObserverMixin(LionLitElement))', - 'ObserverMixin(LionLitElement)', + 'FormControlMixin', + 'InteractionStateMixin', + 'FormatMixin', + 'ValidateMixin', + 'CssClassMixin', + 'ElementMixin', + 'DelegateMixin', + 'SlotMixin', + 'ObserverMixin', 'LionLitElement', - 'ElementMixin(LitElement)', 'LitElement', - 'UpdatingElement', - 'HTMLElement', - 'DomHelpersMixin(superclass)', + 'DomHelpersMixin', 'superclass', - 'CssClassMixin(ObserverMixin(LocalizeMixin(SlotMixin(superclass))))', - 'ObserverMixin(LocalizeMixin(SlotMixin(superclass)))', - 'LocalizeMixin(SlotMixin(superclass))', - 'SlotMixin(superclass)', - 'EventMixin(ObserverMixin(superclass))', - 'ObserverMixin(superclass)', - 'CssClassMixin(FocusMixin(ObserverMixin(superclass)))', - 'FocusMixin(ObserverMixin(superclass))', - 'DelegateMixin(superclass)', + 'LocalizeMixin', + 'EventMixin', + 'FocusMixin', ], jsDoc: { comment: `LionField: wraps components input, textarea and select and potentially others␊ @@ -1019,6 +988,7 @@ Generated by [AVA](https://ava.li). kind: 'ANY', }, }, + visibility: 'public', }, { attrName: 'error', @@ -1031,6 +1001,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'errorState', @@ -1042,6 +1013,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'errorShow', @@ -1053,6 +1025,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningValidators', @@ -1065,6 +1038,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warning', @@ -1077,6 +1051,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warningState', @@ -1088,6 +1063,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningShow', @@ -1099,6 +1075,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoValidators', @@ -1111,6 +1088,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'info', @@ -1123,6 +1101,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'infoState', @@ -1134,6 +1113,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoShow', @@ -1145,6 +1125,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successValidators', @@ -1157,6 +1138,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'success', @@ -1169,6 +1151,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'successState', @@ -1180,6 +1163,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successShow', @@ -1191,6 +1175,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'invalid', @@ -1202,6 +1187,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'message', @@ -1213,6 +1199,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'defaultSuccessFeedback', @@ -1224,6 +1211,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'modelValue', @@ -1248,6 +1236,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'formattedValue', @@ -1269,6 +1258,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'serializedValue', @@ -1295,6 +1285,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOn', @@ -1307,6 +1298,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOptions', @@ -1320,6 +1312,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', name: undefined, }, + visibility: 'public', }, { attrName: 'touched', @@ -1332,6 +1325,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'dirty', @@ -1344,6 +1338,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'prefilled', @@ -1356,6 +1351,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { default: 'blur', @@ -1367,6 +1363,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'label', @@ -1382,6 +1379,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'help-text', @@ -1397,6 +1395,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'submitted', @@ -1408,6 +1407,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: undefined, @@ -1416,6 +1416,7 @@ Generated by [AVA](https://ava.li). node: '{NODE}', propName: 'value', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1592,56 +1593,25 @@ Generated by [AVA](https://ava.li). '{NODE}', '{NODE}', '{NODE}', - '{NODE}', - '{NODE}', ], inherits: [ 'LionField', - `FormControlMixin(␊ - InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - ),␊ - )`, - `InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - )`, - `FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - )`, - `ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - )`, - 'CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))))', - 'ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))', - 'DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))', - 'SlotMixin(ObserverMixin(LionLitElement))', - 'ObserverMixin(LionLitElement)', + 'FormControlMixin', + 'InteractionStateMixin', + 'FormatMixin', + 'ValidateMixin', + 'CssClassMixin', + 'ElementMixin', + 'DelegateMixin', + 'SlotMixin', + 'ObserverMixin', 'LionLitElement', - 'ElementMixin(LitElement)', 'LitElement', - 'UpdatingElement', - 'HTMLElement', - 'DomHelpersMixin(superclass)', + 'DomHelpersMixin', 'superclass', - 'CssClassMixin(ObserverMixin(LocalizeMixin(SlotMixin(superclass))))', - 'ObserverMixin(LocalizeMixin(SlotMixin(superclass)))', - 'LocalizeMixin(SlotMixin(superclass))', - 'SlotMixin(superclass)', - 'EventMixin(ObserverMixin(superclass))', - 'ObserverMixin(superclass)', - 'CssClassMixin(FocusMixin(ObserverMixin(superclass)))', - 'FocusMixin(ObserverMixin(superclass))', - 'DelegateMixin(superclass)', + 'LocalizeMixin', + 'EventMixin', + 'FocusMixin', ], jsDoc: { comment: 'LionInput: extension of lion-field with native input element in place and user friendly API', @@ -1687,6 +1657,7 @@ Generated by [AVA](https://ava.li). kind: 'ANY', }, }, + visibility: 'public', }, { attrName: 'error', @@ -1699,6 +1670,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'errorState', @@ -1710,6 +1682,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'errorShow', @@ -1721,6 +1694,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningValidators', @@ -1733,6 +1707,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warning', @@ -1745,6 +1720,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warningState', @@ -1756,6 +1732,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningShow', @@ -1767,6 +1744,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoValidators', @@ -1779,6 +1757,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'info', @@ -1791,6 +1770,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'infoState', @@ -1802,6 +1782,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoShow', @@ -1813,6 +1794,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successValidators', @@ -1825,6 +1807,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'success', @@ -1837,6 +1820,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'successState', @@ -1848,6 +1832,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successShow', @@ -1859,6 +1844,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'invalid', @@ -1870,6 +1856,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'message', @@ -1881,6 +1868,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'defaultSuccessFeedback', @@ -1892,6 +1880,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'modelValue', @@ -1916,6 +1905,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'formattedValue', @@ -1937,6 +1927,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'serializedValue', @@ -1963,6 +1954,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOn', @@ -1975,6 +1967,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOptions', @@ -1988,6 +1981,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', name: undefined, }, + visibility: 'public', }, { attrName: 'touched', @@ -2000,6 +1994,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'dirty', @@ -2012,6 +2007,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'prefilled', @@ -2024,6 +2020,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { default: 'blur', @@ -2035,6 +2032,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'label', @@ -2050,6 +2048,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'help-text', @@ -2065,6 +2064,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'submitted', @@ -2076,6 +2076,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: undefined, @@ -2084,6 +2085,7 @@ Generated by [AVA](https://ava.li). node: '{NODE}', propName: 'value', type: '{TYPE}', + visibility: 'public', }, { attrName: 'readonly', @@ -2104,6 +2106,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, ], node: '{NODE}', @@ -2280,56 +2283,25 @@ Generated by [AVA](https://ava.li). '{NODE}', '{NODE}', '{NODE}', - '{NODE}', - '{NODE}', ], inherits: [ 'LionField', - `FormControlMixin(␊ - InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - ),␊ - )`, - `InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - )`, - `FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - )`, - `ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - )`, - 'CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))))', - 'ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))', - 'DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))', - 'SlotMixin(ObserverMixin(LionLitElement))', - 'ObserverMixin(LionLitElement)', + 'FormControlMixin', + 'InteractionStateMixin', + 'FormatMixin', + 'ValidateMixin', + 'CssClassMixin', + 'ElementMixin', + 'DelegateMixin', + 'SlotMixin', + 'ObserverMixin', 'LionLitElement', - 'ElementMixin(LitElement)', 'LitElement', - 'UpdatingElement', - 'HTMLElement', - 'DomHelpersMixin(superclass)', + 'DomHelpersMixin', 'superclass', - 'CssClassMixin(ObserverMixin(LocalizeMixin(SlotMixin(superclass))))', - 'ObserverMixin(LocalizeMixin(SlotMixin(superclass)))', - 'LocalizeMixin(SlotMixin(superclass))', - 'SlotMixin(superclass)', - 'EventMixin(ObserverMixin(superclass))', - 'ObserverMixin(superclass)', - 'CssClassMixin(FocusMixin(ObserverMixin(superclass)))', - 'FocusMixin(ObserverMixin(superclass))', - 'DelegateMixin(superclass)', + 'LocalizeMixin', + 'EventMixin', + 'FocusMixin', ], jsDoc: { comment: 'LionInput: extension of lion-field with native input element in place and user friendly API', @@ -2375,6 +2347,7 @@ Generated by [AVA](https://ava.li). kind: 'ANY', }, }, + visibility: 'public', }, { attrName: 'error', @@ -2387,6 +2360,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'errorState', @@ -2398,6 +2372,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'errorShow', @@ -2409,6 +2384,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningValidators', @@ -2421,6 +2397,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warning', @@ -2433,6 +2410,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warningState', @@ -2444,6 +2422,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningShow', @@ -2455,6 +2434,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoValidators', @@ -2467,6 +2447,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'info', @@ -2479,6 +2460,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'infoState', @@ -2490,6 +2472,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoShow', @@ -2501,6 +2484,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successValidators', @@ -2513,6 +2497,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'success', @@ -2525,6 +2510,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'successState', @@ -2536,6 +2522,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successShow', @@ -2547,6 +2534,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'invalid', @@ -2558,6 +2546,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'message', @@ -2569,6 +2558,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'defaultSuccessFeedback', @@ -2580,6 +2570,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'modelValue', @@ -2604,6 +2595,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'formattedValue', @@ -2625,6 +2617,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'serializedValue', @@ -2651,6 +2644,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOn', @@ -2663,6 +2657,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOptions', @@ -2676,6 +2671,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', name: undefined, }, + visibility: 'public', }, { attrName: 'touched', @@ -2688,6 +2684,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'dirty', @@ -2700,6 +2697,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'prefilled', @@ -2712,6 +2710,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { default: 'blur', @@ -2723,6 +2722,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'label', @@ -2738,6 +2738,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'help-text', @@ -2753,6 +2754,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'submitted', @@ -2764,6 +2766,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: undefined, @@ -2772,6 +2775,7 @@ Generated by [AVA](https://ava.li). node: '{NODE}', propName: 'value', type: '{TYPE}', + visibility: 'public', }, { attrName: 'readonly', @@ -2792,6 +2796,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, ], node: '{NODE}', @@ -2969,58 +2974,26 @@ Generated by [AVA](https://ava.li). '{NODE}', '{NODE}', '{NODE}', - '{NODE}', - '{NODE}', ], inherits: [ - 'ObserverMixin(LionInput)', + 'ObserverMixin', 'LionInput', 'LionField', - `FormControlMixin(␊ - InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - ),␊ - )`, - `InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - )`, - `FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - )`, - `ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - )`, - 'CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))))', - 'ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))', - 'DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))', - 'SlotMixin(ObserverMixin(LionLitElement))', - 'ObserverMixin(LionLitElement)', + 'FormControlMixin', + 'InteractionStateMixin', + 'FormatMixin', + 'ValidateMixin', + 'CssClassMixin', + 'ElementMixin', + 'DelegateMixin', + 'SlotMixin', 'LionLitElement', - 'ElementMixin(LitElement)', 'LitElement', - 'UpdatingElement', - 'HTMLElement', - 'DomHelpersMixin(superclass)', + 'DomHelpersMixin', 'superclass', - 'CssClassMixin(ObserverMixin(LocalizeMixin(SlotMixin(superclass))))', - 'ObserverMixin(LocalizeMixin(SlotMixin(superclass)))', - 'LocalizeMixin(SlotMixin(superclass))', - 'SlotMixin(superclass)', - 'EventMixin(ObserverMixin(superclass))', - 'ObserverMixin(superclass)', - 'CssClassMixin(FocusMixin(ObserverMixin(superclass)))', - 'FocusMixin(ObserverMixin(superclass))', - 'DelegateMixin(superclass)', + 'LocalizeMixin', + 'EventMixin', + 'FocusMixin', ], jsDoc: { comment: 'LionTextarea: extension of lion-field with native input element in place and user friendly API', @@ -3076,6 +3049,7 @@ Generated by [AVA](https://ava.li). kind: 'ANY', }, }, + visibility: 'public', }, { attrName: 'error', @@ -3088,6 +3062,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'errorState', @@ -3099,6 +3074,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'errorShow', @@ -3110,6 +3086,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningValidators', @@ -3122,6 +3099,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warning', @@ -3134,6 +3112,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warningState', @@ -3145,6 +3124,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningShow', @@ -3156,6 +3136,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoValidators', @@ -3168,6 +3149,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'info', @@ -3180,6 +3162,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'infoState', @@ -3191,6 +3174,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoShow', @@ -3202,6 +3186,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successValidators', @@ -3214,6 +3199,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'success', @@ -3226,6 +3212,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'successState', @@ -3237,6 +3224,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successShow', @@ -3248,6 +3236,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'invalid', @@ -3259,6 +3248,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'message', @@ -3270,6 +3260,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'defaultSuccessFeedback', @@ -3281,6 +3272,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'modelValue', @@ -3305,6 +3297,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'formattedValue', @@ -3326,6 +3319,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'serializedValue', @@ -3352,6 +3346,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOn', @@ -3364,6 +3359,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOptions', @@ -3377,6 +3373,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', name: undefined, }, + visibility: 'public', }, { attrName: 'touched', @@ -3389,6 +3386,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'dirty', @@ -3401,6 +3399,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'prefilled', @@ -3413,6 +3412,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { default: 'blur', @@ -3424,6 +3424,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'label', @@ -3439,6 +3440,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'help-text', @@ -3454,6 +3456,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'submitted', @@ -3465,6 +3468,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: undefined, @@ -3473,6 +3477,7 @@ Generated by [AVA](https://ava.li). node: '{NODE}', propName: 'value', type: '{TYPE}', + visibility: 'public', }, { attrName: 'readonly', @@ -3493,6 +3498,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { default: 2, @@ -3504,6 +3510,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'NUMBER', }, + visibility: 'public', }, { attrName: 'max-rows', @@ -3516,6 +3523,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'NUMBER', }, + visibility: 'public', }, ], node: '{NODE}', @@ -3693,58 +3701,26 @@ Generated by [AVA](https://ava.li). '{NODE}', '{NODE}', '{NODE}', - '{NODE}', - '{NODE}', ], inherits: [ - 'ObserverMixin(LionInput)', + 'ObserverMixin', 'LionInput', 'LionField', - `FormControlMixin(␊ - InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - ),␊ - )`, - `InteractionStateMixin(␊ - FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - ),␊ - )`, - `FormatMixin(␊ - ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - ),␊ - )`, - `ValidateMixin(␊ - CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))),␊ - )`, - 'CssClassMixin(ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))))', - 'ElementMixin(DelegateMixin(SlotMixin(ObserverMixin(LionLitElement))))', - 'DelegateMixin(SlotMixin(ObserverMixin(LionLitElement)))', - 'SlotMixin(ObserverMixin(LionLitElement))', - 'ObserverMixin(LionLitElement)', + 'FormControlMixin', + 'InteractionStateMixin', + 'FormatMixin', + 'ValidateMixin', + 'CssClassMixin', + 'ElementMixin', + 'DelegateMixin', + 'SlotMixin', 'LionLitElement', - 'ElementMixin(LitElement)', 'LitElement', - 'UpdatingElement', - 'HTMLElement', - 'DomHelpersMixin(superclass)', + 'DomHelpersMixin', 'superclass', - 'CssClassMixin(ObserverMixin(LocalizeMixin(SlotMixin(superclass))))', - 'ObserverMixin(LocalizeMixin(SlotMixin(superclass)))', - 'LocalizeMixin(SlotMixin(superclass))', - 'SlotMixin(superclass)', - 'EventMixin(ObserverMixin(superclass))', - 'ObserverMixin(superclass)', - 'CssClassMixin(FocusMixin(ObserverMixin(superclass)))', - 'FocusMixin(ObserverMixin(superclass))', - 'DelegateMixin(superclass)', + 'LocalizeMixin', + 'EventMixin', + 'FocusMixin', ], jsDoc: { comment: 'LionTextarea: extension of lion-field with native input element in place and user friendly API', @@ -3800,6 +3776,7 @@ Generated by [AVA](https://ava.li). kind: 'ANY', }, }, + visibility: 'public', }, { attrName: 'error', @@ -3812,6 +3789,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'errorState', @@ -3823,6 +3801,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'errorShow', @@ -3834,6 +3813,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningValidators', @@ -3846,6 +3826,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warning', @@ -3858,6 +3839,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'warningState', @@ -3869,6 +3851,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'warningShow', @@ -3880,6 +3863,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoValidators', @@ -3892,6 +3876,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'info', @@ -3904,6 +3889,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'infoState', @@ -3915,6 +3901,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'infoShow', @@ -3926,6 +3913,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successValidators', @@ -3938,6 +3926,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'success', @@ -3950,6 +3939,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'successState', @@ -3961,6 +3951,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'successShow', @@ -3972,6 +3963,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'invalid', @@ -3983,6 +3975,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'message', @@ -3994,6 +3987,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'defaultSuccessFeedback', @@ -4005,6 +3999,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'modelValue', @@ -4029,6 +4024,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', members: [], }, + visibility: 'public', }, { attrName: 'formattedValue', @@ -4050,6 +4046,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'serializedValue', @@ -4076,6 +4073,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOn', @@ -4088,6 +4086,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'formatOptions', @@ -4101,6 +4100,7 @@ Generated by [AVA](https://ava.li). kind: 'OBJECT', name: undefined, }, + visibility: 'public', }, { attrName: 'touched', @@ -4113,6 +4113,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'dirty', @@ -4125,6 +4126,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: 'prefilled', @@ -4137,6 +4139,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { default: 'blur', @@ -4148,6 +4151,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'label', @@ -4163,6 +4167,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'help-text', @@ -4178,6 +4183,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'STRING', }, + visibility: 'public', }, { attrName: 'submitted', @@ -4189,6 +4195,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { attrName: undefined, @@ -4197,6 +4204,7 @@ Generated by [AVA](https://ava.li). node: '{NODE}', propName: 'value', type: '{TYPE}', + visibility: 'public', }, { attrName: 'readonly', @@ -4217,6 +4225,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { default: 2, @@ -4228,6 +4237,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'NUMBER', }, + visibility: 'public', }, { attrName: 'max-rows', @@ -4240,6 +4250,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'NUMBER', }, + visibility: 'public', }, ], node: '{NODE}', diff --git a/test/snapshots/results/test/snapshots/lion-web-components.ts.snap b/test/snapshots/results/test/snapshots/lion-web-components.ts.snap index 81b4c4c1..a6bea34d 100644 Binary files a/test/snapshots/results/test/snapshots/lion-web-components.ts.snap and b/test/snapshots/results/test/snapshots/lion-web-components.ts.snap differ diff --git a/test/snapshots/results/test/snapshots/lit-element-mwc.ts.md b/test/snapshots/results/test/snapshots/lit-element-mwc.ts.md index 7ca37ac5..ff652e2a 100644 --- a/test/snapshots/results/test/snapshots/lit-element-mwc.ts.md +++ b/test/snapshots/results/test/snapshots/lit-element-mwc.ts.md @@ -18,13 +18,9 @@ Generated by [AVA](https://ava.li). events: [], inheritNodes: [ '{NODE}', - '{NODE}', - '{NODE}', ], inherits: [ 'LitElement', - 'UpdatingElement', - 'HTMLElement', ], jsDoc: undefined, members: [ @@ -36,6 +32,7 @@ Generated by [AVA](https://ava.li). propName: 'raised', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -45,6 +42,7 @@ Generated by [AVA](https://ava.li). propName: 'unelevated', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -54,6 +52,7 @@ Generated by [AVA](https://ava.li). propName: 'outlined', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -63,6 +62,7 @@ Generated by [AVA](https://ava.li). propName: 'dense', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -72,6 +72,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -81,6 +82,7 @@ Generated by [AVA](https://ava.li). propName: 'trailingIcon', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -90,6 +92,7 @@ Generated by [AVA](https://ava.li). propName: 'icon', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -99,6 +102,7 @@ Generated by [AVA](https://ava.li). propName: 'label', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', diff --git a/test/snapshots/results/test/snapshots/lit-element-mwc.ts.snap b/test/snapshots/results/test/snapshots/lit-element-mwc.ts.snap index 0841ce53..05721187 100644 Binary files a/test/snapshots/results/test/snapshots/lit-element-mwc.ts.snap and b/test/snapshots/results/test/snapshots/lit-element-mwc.ts.snap differ diff --git a/test/snapshots/results/test/snapshots/polymer-app-layout.ts.md b/test/snapshots/results/test/snapshots/polymer-app-layout.ts.md index 8592de59..d6892462 100644 --- a/test/snapshots/results/test/snapshots/polymer-app-layout.ts.md +++ b/test/snapshots/results/test/snapshots/polymer-app-layout.ts.md @@ -95,6 +95,7 @@ Generated by [AVA](https://ava.li). propName: 'rootPath', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -104,6 +105,7 @@ Generated by [AVA](https://ava.li). propName: 'importPath', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -113,6 +115,7 @@ Generated by [AVA](https://ava.li). propName: 'root', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -122,6 +125,7 @@ Generated by [AVA](https://ava.li). propName: '$', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -131,6 +135,7 @@ Generated by [AVA](https://ava.li). propName: 'isAttached', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -140,6 +145,7 @@ Generated by [AVA](https://ava.li). propName: 'bubbles', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -149,6 +155,7 @@ Generated by [AVA](https://ava.li). propName: 'cancelable', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -158,6 +165,7 @@ Generated by [AVA](https://ava.li). propName: 'composed', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -171,6 +179,7 @@ Generated by [AVA](https://ava.li). propName: 'opened', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -184,6 +193,7 @@ Generated by [AVA](https://ava.li). propName: 'persistent', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -197,6 +207,7 @@ Generated by [AVA](https://ava.li). propName: 'transitionDuration', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -212,6 +223,7 @@ Generated by [AVA](https://ava.li). propName: 'align', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -225,6 +237,7 @@ Generated by [AVA](https://ava.li). propName: 'swipeOpen', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -238,6 +251,7 @@ Generated by [AVA](https://ava.li). propName: 'noFocusTrap', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -251,6 +265,7 @@ Generated by [AVA](https://ava.li). propName: 'disableSwipe', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -355,6 +370,7 @@ Generated by [AVA](https://ava.li). propName: 'rootPath', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -364,6 +380,7 @@ Generated by [AVA](https://ava.li). propName: 'importPath', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -373,6 +390,7 @@ Generated by [AVA](https://ava.li). propName: 'root', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -382,6 +400,7 @@ Generated by [AVA](https://ava.li). propName: '$', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -391,6 +410,7 @@ Generated by [AVA](https://ava.li). propName: 'isAttached', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -400,6 +420,7 @@ Generated by [AVA](https://ava.li). propName: 'bubbles', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -409,6 +430,7 @@ Generated by [AVA](https://ava.li). propName: 'cancelable', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -418,6 +440,7 @@ Generated by [AVA](https://ava.li). propName: 'composed', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', diff --git a/test/snapshots/results/test/snapshots/polymer-app-layout.ts.snap b/test/snapshots/results/test/snapshots/polymer-app-layout.ts.snap index 4b41a604..bcd92f94 100644 Binary files a/test/snapshots/results/test/snapshots/polymer-app-layout.ts.snap and b/test/snapshots/results/test/snapshots/polymer-app-layout.ts.snap differ diff --git a/test/snapshots/results/test/snapshots/polymer-paper-button.ts.md b/test/snapshots/results/test/snapshots/polymer-paper-button.ts.md index 96802fac..63ff42c9 100644 --- a/test/snapshots/results/test/snapshots/polymer-paper-button.ts.md +++ b/test/snapshots/results/test/snapshots/polymer-paper-button.ts.md @@ -130,6 +130,7 @@ Generated by [AVA](https://ava.li). propName: 'keyEventTarget', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -144,6 +145,7 @@ Generated by [AVA](https://ava.li). propName: 'stopKeyboardEventPropagation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: undefined, @@ -154,6 +156,7 @@ Generated by [AVA](https://ava.li). propName: 'keyBindings', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -168,6 +171,7 @@ Generated by [AVA](https://ava.li). propName: 'toggles', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -181,6 +185,7 @@ Generated by [AVA](https://ava.li). propName: 'active', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -195,6 +200,7 @@ Generated by [AVA](https://ava.li). propName: 'ariaActiveAttribute', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -208,6 +214,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -222,6 +229,7 @@ Generated by [AVA](https://ava.li). propName: 'noink', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -231,6 +239,7 @@ Generated by [AVA](https://ava.li). propName: 'hostAttributes', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -240,6 +249,7 @@ Generated by [AVA](https://ava.li). propName: 'rootPath', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -249,6 +259,7 @@ Generated by [AVA](https://ava.li). propName: 'importPath', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -258,6 +269,7 @@ Generated by [AVA](https://ava.li). propName: 'root', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -267,6 +279,7 @@ Generated by [AVA](https://ava.li). propName: '$', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -276,6 +289,7 @@ Generated by [AVA](https://ava.li). propName: 'isAttached', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -285,6 +299,7 @@ Generated by [AVA](https://ava.li). propName: 'bubbles', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -294,6 +309,7 @@ Generated by [AVA](https://ava.li). propName: 'cancelable', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -303,6 +319,7 @@ Generated by [AVA](https://ava.li). propName: 'composed', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -316,6 +333,7 @@ Generated by [AVA](https://ava.li). propName: 'raised', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', diff --git a/test/snapshots/results/test/snapshots/polymer-paper-button.ts.snap b/test/snapshots/results/test/snapshots/polymer-paper-button.ts.snap index 5edc2f2b..22509158 100644 Binary files a/test/snapshots/results/test/snapshots/polymer-paper-button.ts.snap and b/test/snapshots/results/test/snapshots/polymer-paper-button.ts.snap differ diff --git a/test/snapshots/results/test/snapshots/stencil-ionic.ts.md b/test/snapshots/results/test/snapshots/stencil-ionic.ts.md index 350a2cba..bac9679a 100644 --- a/test/snapshots/results/test/snapshots/stencil-ionic.ts.md +++ b/test/snapshots/results/test/snapshots/stencil-ionic.ts.md @@ -40,42 +40,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonActionSheetDidDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonActionSheetDidPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonActionSheetWillDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonActionSheetWillPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -90,6 +97,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'backdropDismiss', @@ -104,6 +112,7 @@ Generated by [AVA](https://ava.li). propName: 'backdropDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'buttons', @@ -118,6 +127,7 @@ Generated by [AVA](https://ava.li). propName: 'buttons', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cssClass', @@ -132,6 +142,7 @@ Generated by [AVA](https://ava.li). propName: 'cssClass', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -145,6 +156,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'enterAnimation', @@ -159,6 +171,7 @@ Generated by [AVA](https://ava.li). propName: 'enterAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'header', @@ -173,6 +186,7 @@ Generated by [AVA](https://ava.li). propName: 'header', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'keyboardClose', @@ -187,6 +201,7 @@ Generated by [AVA](https://ava.li). propName: 'keyboardClose', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'leaveAnimation', @@ -201,6 +216,7 @@ Generated by [AVA](https://ava.li). propName: 'leaveAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -215,6 +231,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -228,6 +245,7 @@ Generated by [AVA](https://ava.li). propName: 'onDidDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -241,6 +259,7 @@ Generated by [AVA](https://ava.li). propName: 'onWillDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -250,6 +269,7 @@ Generated by [AVA](https://ava.li). propName: 'overlayIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -263,6 +283,7 @@ Generated by [AVA](https://ava.li). propName: 'present', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'subHeader', @@ -277,6 +298,7 @@ Generated by [AVA](https://ava.li). propName: 'subHeader', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'translucent', @@ -291,6 +313,7 @@ Generated by [AVA](https://ava.li). propName: 'translucent', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -329,18 +352,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -354,6 +380,7 @@ Generated by [AVA](https://ava.li). propName: 'create', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -367,6 +394,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -380,6 +408,7 @@ Generated by [AVA](https://ava.li). propName: 'getTop', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -418,42 +447,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonAlertDidDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonAlertDidPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonAlertWillDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonAlertWillPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -468,6 +504,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'backdropDismiss', @@ -482,6 +519,7 @@ Generated by [AVA](https://ava.li). propName: 'backdropDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'buttons', @@ -496,6 +534,7 @@ Generated by [AVA](https://ava.li). propName: 'buttons', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cssClass', @@ -510,6 +549,7 @@ Generated by [AVA](https://ava.li). propName: 'cssClass', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -523,6 +563,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'enterAnimation', @@ -537,6 +578,7 @@ Generated by [AVA](https://ava.li). propName: 'enterAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'header', @@ -551,6 +593,7 @@ Generated by [AVA](https://ava.li). propName: 'header', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'inputs', @@ -565,6 +608,7 @@ Generated by [AVA](https://ava.li). propName: 'inputs', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'keyboardClose', @@ -579,6 +623,7 @@ Generated by [AVA](https://ava.li). propName: 'keyboardClose', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'leaveAnimation', @@ -593,6 +638,7 @@ Generated by [AVA](https://ava.li). propName: 'leaveAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'message', @@ -607,6 +653,7 @@ Generated by [AVA](https://ava.li). propName: 'message', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -621,6 +668,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -634,6 +682,7 @@ Generated by [AVA](https://ava.li). propName: 'onDidDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -647,6 +696,7 @@ Generated by [AVA](https://ava.li). propName: 'onWillDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -656,6 +706,7 @@ Generated by [AVA](https://ava.li). propName: 'overlayIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -669,6 +720,7 @@ Generated by [AVA](https://ava.li). propName: 'present', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'subHeader', @@ -683,6 +735,7 @@ Generated by [AVA](https://ava.li). propName: 'subHeader', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'translucent', @@ -697,6 +750,7 @@ Generated by [AVA](https://ava.li). propName: 'translucent', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -735,18 +789,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -760,6 +817,7 @@ Generated by [AVA](https://ava.li). propName: 'create', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -773,6 +831,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -786,6 +845,7 @@ Generated by [AVA](https://ava.li). propName: 'getTop', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -824,18 +884,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -850,6 +913,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'href', @@ -864,6 +928,7 @@ Generated by [AVA](https://ava.li). propName: 'href', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'routerDirection', @@ -878,6 +943,7 @@ Generated by [AVA](https://ava.li). propName: 'routerDirection', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -916,18 +982,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -966,18 +1035,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1016,18 +1088,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -1042,6 +1117,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'defaultHref', @@ -1056,6 +1132,7 @@ Generated by [AVA](https://ava.li). propName: 'defaultHref', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'icon', @@ -1070,6 +1147,7 @@ Generated by [AVA](https://ava.li). propName: 'icon', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -1084,6 +1162,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'text', @@ -1098,6 +1177,7 @@ Generated by [AVA](https://ava.li). propName: 'text', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1136,24 +1216,28 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBackdropTap', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'stopPropagation', @@ -1168,6 +1252,7 @@ Generated by [AVA](https://ava.li). propName: 'stopPropagation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'tappable', @@ -1182,6 +1267,7 @@ Generated by [AVA](https://ava.li). propName: 'tappable', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'visible', @@ -1196,6 +1282,7 @@ Generated by [AVA](https://ava.li). propName: 'visible', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1234,18 +1321,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -1260,6 +1350,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -1274,6 +1365,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1312,30 +1404,35 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'buttonType', @@ -1350,6 +1447,7 @@ Generated by [AVA](https://ava.li). propName: 'buttonType', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -1364,6 +1462,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -1378,6 +1477,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'expand', @@ -1392,6 +1492,7 @@ Generated by [AVA](https://ava.li). propName: 'expand', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'fill', @@ -1406,6 +1507,7 @@ Generated by [AVA](https://ava.li). propName: 'fill', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'href', @@ -1420,6 +1522,7 @@ Generated by [AVA](https://ava.li). propName: 'href', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -1434,6 +1537,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'routerDirection', @@ -1448,6 +1552,7 @@ Generated by [AVA](https://ava.li). propName: 'routerDirection', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'shape', @@ -1462,6 +1567,7 @@ Generated by [AVA](https://ava.li). propName: 'shape', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'size', @@ -1476,6 +1582,7 @@ Generated by [AVA](https://ava.li). propName: 'size', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'strong', @@ -1490,6 +1597,7 @@ Generated by [AVA](https://ava.li). propName: 'strong', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'type', @@ -1504,6 +1612,7 @@ Generated by [AVA](https://ava.li). propName: 'type', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1542,18 +1651,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1592,18 +1704,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'button', @@ -1618,6 +1733,7 @@ Generated by [AVA](https://ava.li). propName: 'button', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -1632,6 +1748,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -1646,6 +1763,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'href', @@ -1660,6 +1778,7 @@ Generated by [AVA](https://ava.li). propName: 'href', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -1674,6 +1793,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'routerDirection', @@ -1688,6 +1808,7 @@ Generated by [AVA](https://ava.li). propName: 'routerDirection', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'type', @@ -1702,6 +1823,7 @@ Generated by [AVA](https://ava.li). propName: 'type', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1740,18 +1862,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -1766,6 +1891,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1804,18 +1930,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -1830,6 +1959,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -1844,6 +1974,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'translucent', @@ -1858,6 +1989,7 @@ Generated by [AVA](https://ava.li). propName: 'translucent', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1896,18 +2028,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -1922,6 +2057,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -1936,6 +2072,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -1974,18 +2111,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -2000,6 +2140,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -2014,6 +2155,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -2052,36 +2194,42 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'checked', @@ -2096,6 +2244,7 @@ Generated by [AVA](https://ava.li). propName: 'checked', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -2110,6 +2259,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -2124,6 +2274,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'indeterminate', @@ -2138,6 +2289,7 @@ Generated by [AVA](https://ava.li). propName: 'indeterminate', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -2152,6 +2304,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'name', @@ -2166,6 +2319,7 @@ Generated by [AVA](https://ava.li). propName: 'name', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -2180,6 +2334,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -2218,18 +2373,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -2244,6 +2402,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -2258,6 +2417,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'outline', @@ -2272,6 +2432,7 @@ Generated by [AVA](https://ava.li). propName: 'outline', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -2310,18 +2471,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'offset', @@ -2336,6 +2500,7 @@ Generated by [AVA](https://ava.li). propName: 'offset', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'offsetLg', @@ -2350,6 +2515,7 @@ Generated by [AVA](https://ava.li). propName: 'offsetLg', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'offsetMd', @@ -2364,6 +2530,7 @@ Generated by [AVA](https://ava.li). propName: 'offsetMd', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'offsetSm', @@ -2378,6 +2545,7 @@ Generated by [AVA](https://ava.li). propName: 'offsetSm', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'offsetXl', @@ -2392,6 +2560,7 @@ Generated by [AVA](https://ava.li). propName: 'offsetXl', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'offsetXs', @@ -2406,6 +2575,7 @@ Generated by [AVA](https://ava.li). propName: 'offsetXs', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pull', @@ -2420,6 +2590,7 @@ Generated by [AVA](https://ava.li). propName: 'pull', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pullLg', @@ -2434,6 +2605,7 @@ Generated by [AVA](https://ava.li). propName: 'pullLg', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pullMd', @@ -2448,6 +2620,7 @@ Generated by [AVA](https://ava.li). propName: 'pullMd', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pullSm', @@ -2462,6 +2635,7 @@ Generated by [AVA](https://ava.li). propName: 'pullSm', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pullXl', @@ -2476,6 +2650,7 @@ Generated by [AVA](https://ava.li). propName: 'pullXl', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pullXs', @@ -2490,6 +2665,7 @@ Generated by [AVA](https://ava.li). propName: 'pullXs', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'push', @@ -2504,6 +2680,7 @@ Generated by [AVA](https://ava.li). propName: 'push', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pushLg', @@ -2518,6 +2695,7 @@ Generated by [AVA](https://ava.li). propName: 'pushLg', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pushMd', @@ -2532,6 +2710,7 @@ Generated by [AVA](https://ava.li). propName: 'pushMd', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pushSm', @@ -2546,6 +2725,7 @@ Generated by [AVA](https://ava.li). propName: 'pushSm', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pushXl', @@ -2560,6 +2740,7 @@ Generated by [AVA](https://ava.li). propName: 'pushXl', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pushXs', @@ -2574,6 +2755,7 @@ Generated by [AVA](https://ava.li). propName: 'pushXs', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'size', @@ -2588,6 +2770,7 @@ Generated by [AVA](https://ava.li). propName: 'size', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'sizeLg', @@ -2602,6 +2785,7 @@ Generated by [AVA](https://ava.li). propName: 'sizeLg', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'sizeMd', @@ -2616,6 +2800,7 @@ Generated by [AVA](https://ava.li). propName: 'sizeMd', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'sizeSm', @@ -2630,6 +2815,7 @@ Generated by [AVA](https://ava.li). propName: 'sizeSm', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'sizeXl', @@ -2644,6 +2830,7 @@ Generated by [AVA](https://ava.li). propName: 'sizeXl', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'sizeXs', @@ -2658,6 +2845,7 @@ Generated by [AVA](https://ava.li). propName: 'sizeXs', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -2696,36 +2884,42 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonScroll', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonScrollEnd', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonScrollStart', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -2740,6 +2934,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'forceOverscroll', @@ -2754,6 +2949,7 @@ Generated by [AVA](https://ava.li). propName: 'forceOverscroll', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'fullscreen', @@ -2768,6 +2964,7 @@ Generated by [AVA](https://ava.li). propName: 'fullscreen', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -2781,6 +2978,7 @@ Generated by [AVA](https://ava.li). propName: 'getScrollElement', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -2794,6 +2992,7 @@ Generated by [AVA](https://ava.li). propName: 'scrollByPoint', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'scrollEvents', @@ -2808,6 +3007,7 @@ Generated by [AVA](https://ava.li). propName: 'scrollEvents', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -2821,6 +3021,7 @@ Generated by [AVA](https://ava.li). propName: 'scrollToBottom', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -2834,6 +3035,7 @@ Generated by [AVA](https://ava.li). propName: 'scrollToPoint', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -2847,6 +3049,7 @@ Generated by [AVA](https://ava.li). propName: 'scrollToTop', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'scrollX', @@ -2861,6 +3064,7 @@ Generated by [AVA](https://ava.li). propName: 'scrollX', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'scrollY', @@ -2875,6 +3079,7 @@ Generated by [AVA](https://ava.li). propName: 'scrollY', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -2913,42 +3118,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonCancel', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'cancelText', @@ -2963,6 +3175,7 @@ Generated by [AVA](https://ava.li). propName: 'cancelText', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'dayNames', @@ -2977,6 +3190,7 @@ Generated by [AVA](https://ava.li). propName: 'dayNames', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'dayShortNames', @@ -2991,6 +3205,7 @@ Generated by [AVA](https://ava.li). propName: 'dayShortNames', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'dayValues', @@ -3005,6 +3220,7 @@ Generated by [AVA](https://ava.li). propName: 'dayValues', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -3019,6 +3235,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'displayFormat', @@ -3033,6 +3250,7 @@ Generated by [AVA](https://ava.li). propName: 'displayFormat', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'doneText', @@ -3047,6 +3265,7 @@ Generated by [AVA](https://ava.li). propName: 'doneText', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'hourValues', @@ -3061,6 +3280,7 @@ Generated by [AVA](https://ava.li). propName: 'hourValues', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'max', @@ -3075,6 +3295,7 @@ Generated by [AVA](https://ava.li). propName: 'max', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'min', @@ -3089,6 +3310,7 @@ Generated by [AVA](https://ava.li). propName: 'min', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'minuteValues', @@ -3103,6 +3325,7 @@ Generated by [AVA](https://ava.li). propName: 'minuteValues', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -3117,6 +3340,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'monthNames', @@ -3131,6 +3355,7 @@ Generated by [AVA](https://ava.li). propName: 'monthNames', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'monthShortNames', @@ -3145,6 +3370,7 @@ Generated by [AVA](https://ava.li). propName: 'monthShortNames', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'monthValues', @@ -3159,6 +3385,7 @@ Generated by [AVA](https://ava.li). propName: 'monthValues', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'name', @@ -3173,6 +3400,7 @@ Generated by [AVA](https://ava.li). propName: 'name', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -3186,6 +3414,7 @@ Generated by [AVA](https://ava.li). propName: 'open', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pickerFormat', @@ -3200,6 +3429,7 @@ Generated by [AVA](https://ava.li). propName: 'pickerFormat', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pickerOptions', @@ -3214,6 +3444,7 @@ Generated by [AVA](https://ava.li). propName: 'pickerOptions', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'placeholder', @@ -3228,6 +3459,7 @@ Generated by [AVA](https://ava.li). propName: 'placeholder', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'readonly', @@ -3242,6 +3474,7 @@ Generated by [AVA](https://ava.li). propName: 'readonly', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -3256,6 +3489,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'yearValues', @@ -3270,6 +3504,7 @@ Generated by [AVA](https://ava.li). propName: 'yearValues', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -3308,18 +3543,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'activated', @@ -3334,6 +3572,7 @@ Generated by [AVA](https://ava.li). propName: 'activated', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -3347,6 +3586,7 @@ Generated by [AVA](https://ava.li). propName: 'close', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'edge', @@ -3361,6 +3601,7 @@ Generated by [AVA](https://ava.li). propName: 'edge', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'horizontal', @@ -3375,6 +3616,7 @@ Generated by [AVA](https://ava.li). propName: 'horizontal', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'vertical', @@ -3389,6 +3631,7 @@ Generated by [AVA](https://ava.li). propName: 'vertical', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -3427,30 +3670,35 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'activated', @@ -3465,6 +3713,7 @@ Generated by [AVA](https://ava.li). propName: 'activated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -3479,6 +3728,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -3493,6 +3743,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'href', @@ -3507,6 +3758,7 @@ Generated by [AVA](https://ava.li). propName: 'href', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -3521,6 +3773,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'routerDirection', @@ -3535,6 +3788,7 @@ Generated by [AVA](https://ava.li). propName: 'routerDirection', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'show', @@ -3549,6 +3803,7 @@ Generated by [AVA](https://ava.li). propName: 'show', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'size', @@ -3563,6 +3818,7 @@ Generated by [AVA](https://ava.li). propName: 'size', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'translucent', @@ -3577,6 +3833,7 @@ Generated by [AVA](https://ava.li). propName: 'translucent', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'type', @@ -3591,6 +3848,7 @@ Generated by [AVA](https://ava.li). propName: 'type', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -3629,18 +3887,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'activated', @@ -3655,6 +3916,7 @@ Generated by [AVA](https://ava.li). propName: 'activated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'side', @@ -3669,6 +3931,7 @@ Generated by [AVA](https://ava.li). propName: 'side', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -3707,18 +3970,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -3733,6 +3999,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'translucent', @@ -3747,6 +4014,7 @@ Generated by [AVA](https://ava.li). propName: 'translucent', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -3785,18 +4053,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'fixed', @@ -3811,6 +4082,7 @@ Generated by [AVA](https://ava.li). propName: 'fixed', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -3849,18 +4121,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -3875,6 +4150,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'translucent', @@ -3889,6 +4165,7 @@ Generated by [AVA](https://ava.li). propName: 'translucent', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -3927,36 +4204,42 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonError', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonImgDidLoad', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonImgWillLoad', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'alt', @@ -3971,6 +4254,7 @@ Generated by [AVA](https://ava.li). propName: 'alt', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'src', @@ -3985,6 +4269,7 @@ Generated by [AVA](https://ava.li). propName: 'src', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -4023,24 +4308,28 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonInfinite', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -4054,6 +4343,7 @@ Generated by [AVA](https://ava.li). propName: 'complete', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -4068,6 +4358,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'position', @@ -4082,6 +4373,7 @@ Generated by [AVA](https://ava.li). propName: 'position', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'threshold', @@ -4096,6 +4388,7 @@ Generated by [AVA](https://ava.li). propName: 'threshold', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -4134,18 +4427,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'loadingSpinner', @@ -4160,6 +4456,7 @@ Generated by [AVA](https://ava.li). propName: 'loadingSpinner', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'loadingText', @@ -4174,6 +4471,7 @@ Generated by [AVA](https://ava.li). propName: 'loadingText', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -4212,42 +4510,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonInput', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'accept', @@ -4262,6 +4567,7 @@ Generated by [AVA](https://ava.li). propName: 'accept', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'autocapitalize', @@ -4276,6 +4582,7 @@ Generated by [AVA](https://ava.li). propName: 'autocapitalize', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'autocomplete', @@ -4290,6 +4597,7 @@ Generated by [AVA](https://ava.li). propName: 'autocomplete', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'autocorrect', @@ -4304,6 +4612,7 @@ Generated by [AVA](https://ava.li). propName: 'autocorrect', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'autofocus', @@ -4318,6 +4627,7 @@ Generated by [AVA](https://ava.li). propName: 'autofocus', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'clearInput', @@ -4332,6 +4642,7 @@ Generated by [AVA](https://ava.li). propName: 'clearInput', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'clearOnEdit', @@ -4346,6 +4657,7 @@ Generated by [AVA](https://ava.li). propName: 'clearOnEdit', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -4360,6 +4672,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'debounce', @@ -4374,6 +4687,7 @@ Generated by [AVA](https://ava.li). propName: 'debounce', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -4388,6 +4702,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -4401,6 +4716,7 @@ Generated by [AVA](https://ava.li). propName: 'getInputElement', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'inputmode', @@ -4415,6 +4731,7 @@ Generated by [AVA](https://ava.li). propName: 'inputmode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'max', @@ -4429,6 +4746,7 @@ Generated by [AVA](https://ava.li). propName: 'max', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'maxlength', @@ -4443,6 +4761,7 @@ Generated by [AVA](https://ava.li). propName: 'maxlength', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'min', @@ -4457,6 +4776,7 @@ Generated by [AVA](https://ava.li). propName: 'min', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'minlength', @@ -4471,6 +4791,7 @@ Generated by [AVA](https://ava.li). propName: 'minlength', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -4485,6 +4806,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'multiple', @@ -4499,6 +4821,7 @@ Generated by [AVA](https://ava.li). propName: 'multiple', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'name', @@ -4513,6 +4836,7 @@ Generated by [AVA](https://ava.li). propName: 'name', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pattern', @@ -4527,6 +4851,7 @@ Generated by [AVA](https://ava.li). propName: 'pattern', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'placeholder', @@ -4541,6 +4866,7 @@ Generated by [AVA](https://ava.li). propName: 'placeholder', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'readonly', @@ -4555,6 +4881,7 @@ Generated by [AVA](https://ava.li). propName: 'readonly', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'required', @@ -4569,6 +4896,7 @@ Generated by [AVA](https://ava.li). propName: 'required', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -4582,6 +4910,7 @@ Generated by [AVA](https://ava.li). propName: 'setFocus', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'size', @@ -4596,6 +4925,7 @@ Generated by [AVA](https://ava.li). propName: 'size', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'spellcheck', @@ -4610,6 +4940,7 @@ Generated by [AVA](https://ava.li). propName: 'spellcheck', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'step', @@ -4624,6 +4955,7 @@ Generated by [AVA](https://ava.li). propName: 'step', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'type', @@ -4638,6 +4970,7 @@ Generated by [AVA](https://ava.li). propName: 'type', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -4652,6 +4985,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -4690,18 +5024,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'button', @@ -4716,6 +5053,7 @@ Generated by [AVA](https://ava.li). propName: 'button', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -4730,6 +5068,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'detail', @@ -4744,6 +5083,7 @@ Generated by [AVA](https://ava.li). propName: 'detail', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'detailIcon', @@ -4758,6 +5098,7 @@ Generated by [AVA](https://ava.li). propName: 'detailIcon', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -4772,6 +5113,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'href', @@ -4786,6 +5128,7 @@ Generated by [AVA](https://ava.li). propName: 'href', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'lines', @@ -4800,6 +5143,7 @@ Generated by [AVA](https://ava.li). propName: 'lines', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -4814,6 +5158,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'routerDirection', @@ -4828,6 +5173,7 @@ Generated by [AVA](https://ava.li). propName: 'routerDirection', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'type', @@ -4842,6 +5188,7 @@ Generated by [AVA](https://ava.li). propName: 'type', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -4880,18 +5227,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -4906,6 +5256,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -4920,6 +5271,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'sticky', @@ -4934,6 +5286,7 @@ Generated by [AVA](https://ava.li). propName: 'sticky', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -4972,18 +5325,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -5022,18 +5378,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -5048,6 +5407,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -5062,6 +5422,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'expandable', @@ -5076,6 +5437,7 @@ Generated by [AVA](https://ava.li). propName: 'expandable', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'href', @@ -5090,6 +5452,7 @@ Generated by [AVA](https://ava.li). propName: 'href', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -5104,6 +5467,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -5142,24 +5506,28 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSwipe', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5169,6 +5537,7 @@ Generated by [AVA](https://ava.li). propName: 'fireSwipeEvent', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'side', @@ -5183,6 +5552,7 @@ Generated by [AVA](https://ava.li). propName: 'side', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -5221,24 +5591,28 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonDrag', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5252,6 +5626,7 @@ Generated by [AVA](https://ava.li). propName: 'close', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5265,6 +5640,7 @@ Generated by [AVA](https://ava.li). propName: 'closeOpened', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -5279,6 +5655,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5292,6 +5669,7 @@ Generated by [AVA](https://ava.li). propName: 'getOpenAmount', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5305,6 +5683,7 @@ Generated by [AVA](https://ava.li). propName: 'getSlidingRatio', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5318,6 +5697,7 @@ Generated by [AVA](https://ava.li). propName: 'open', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -5356,18 +5736,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -5382,6 +5765,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -5396,6 +5780,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'position', @@ -5410,6 +5795,7 @@ Generated by [AVA](https://ava.li). propName: 'position', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -5448,18 +5834,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5473,6 +5862,7 @@ Generated by [AVA](https://ava.li). propName: 'closeSlidingItems', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'inset', @@ -5487,6 +5877,7 @@ Generated by [AVA](https://ava.li). propName: 'inset', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'lines', @@ -5501,6 +5892,7 @@ Generated by [AVA](https://ava.li). propName: 'lines', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -5515,6 +5907,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -5553,18 +5946,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -5579,6 +5975,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -5593,6 +5990,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -5631,42 +6029,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonLoadingDidDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonLoadingDidPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonLoadingWillDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonLoadingWillPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -5681,6 +6086,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'backdropDismiss', @@ -5695,6 +6101,7 @@ Generated by [AVA](https://ava.li). propName: 'backdropDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cssClass', @@ -5709,6 +6116,7 @@ Generated by [AVA](https://ava.li). propName: 'cssClass', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5722,6 +6130,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'duration', @@ -5736,6 +6145,7 @@ Generated by [AVA](https://ava.li). propName: 'duration', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'enterAnimation', @@ -5750,6 +6160,7 @@ Generated by [AVA](https://ava.li). propName: 'enterAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'keyboardClose', @@ -5764,6 +6175,7 @@ Generated by [AVA](https://ava.li). propName: 'keyboardClose', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'leaveAnimation', @@ -5778,6 +6190,7 @@ Generated by [AVA](https://ava.li). propName: 'leaveAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'message', @@ -5792,6 +6205,7 @@ Generated by [AVA](https://ava.li). propName: 'message', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -5806,6 +6220,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5819,6 +6234,7 @@ Generated by [AVA](https://ava.li). propName: 'onDidDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5832,6 +6248,7 @@ Generated by [AVA](https://ava.li). propName: 'onWillDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5841,6 +6258,7 @@ Generated by [AVA](https://ava.li). propName: 'overlayIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5854,6 +6272,7 @@ Generated by [AVA](https://ava.li). propName: 'present', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'showBackdrop', @@ -5868,6 +6287,7 @@ Generated by [AVA](https://ava.li). propName: 'showBackdrop', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'spinner', @@ -5882,6 +6302,7 @@ Generated by [AVA](https://ava.li). propName: 'spinner', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'translucent', @@ -5896,6 +6317,7 @@ Generated by [AVA](https://ava.li). propName: 'translucent', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -5934,18 +6356,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5959,6 +6384,7 @@ Generated by [AVA](https://ava.li). propName: 'create', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5972,6 +6398,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -5985,6 +6412,7 @@ Generated by [AVA](https://ava.li). propName: 'getTop', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -6023,42 +6451,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonDidClose', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonDidOpen', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonWillClose', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonWillOpen', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6072,6 +6507,7 @@ Generated by [AVA](https://ava.li). propName: 'close', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'contentId', @@ -6086,6 +6522,7 @@ Generated by [AVA](https://ava.li). propName: 'contentId', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -6100,6 +6537,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6113,6 +6551,7 @@ Generated by [AVA](https://ava.li). propName: 'isActive', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6126,6 +6565,7 @@ Generated by [AVA](https://ava.li). propName: 'isOpen', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'maxEdgeStart', @@ -6140,6 +6580,7 @@ Generated by [AVA](https://ava.li). propName: 'maxEdgeStart', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'menuId', @@ -6154,6 +6595,7 @@ Generated by [AVA](https://ava.li). propName: 'menuId', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6167,6 +6609,7 @@ Generated by [AVA](https://ava.li). propName: 'open', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6180,6 +6623,7 @@ Generated by [AVA](https://ava.li). propName: 'setOpen', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'side', @@ -6194,6 +6638,7 @@ Generated by [AVA](https://ava.li). propName: 'side', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'swipeGesture', @@ -6208,6 +6653,7 @@ Generated by [AVA](https://ava.li). propName: 'swipeGesture', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6221,6 +6667,7 @@ Generated by [AVA](https://ava.li). propName: 'toggle', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'type', @@ -6235,6 +6682,7 @@ Generated by [AVA](https://ava.li). propName: 'type', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -6273,18 +6721,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'autoHide', @@ -6299,6 +6750,7 @@ Generated by [AVA](https://ava.li). propName: 'autoHide', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -6313,6 +6765,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'menu', @@ -6327,6 +6780,7 @@ Generated by [AVA](https://ava.li). propName: 'menu', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -6341,6 +6795,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -6379,18 +6834,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6400,6 +6858,7 @@ Generated by [AVA](https://ava.li). propName: '_getInstance', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6413,6 +6872,7 @@ Generated by [AVA](https://ava.li). propName: 'close', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6426,6 +6886,7 @@ Generated by [AVA](https://ava.li). propName: 'enable', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6439,6 +6900,7 @@ Generated by [AVA](https://ava.li). propName: 'get', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6452,6 +6914,7 @@ Generated by [AVA](https://ava.li). propName: 'getMenus', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6465,6 +6928,7 @@ Generated by [AVA](https://ava.li). propName: 'getOpen', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6478,6 +6942,7 @@ Generated by [AVA](https://ava.li). propName: 'isAnimating', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6491,6 +6956,7 @@ Generated by [AVA](https://ava.li). propName: 'isEnabled', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6504,6 +6970,7 @@ Generated by [AVA](https://ava.li). propName: 'isOpen', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6517,6 +6984,7 @@ Generated by [AVA](https://ava.li). propName: 'open', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6530,6 +6998,7 @@ Generated by [AVA](https://ava.li). propName: 'registerAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6543,6 +7012,7 @@ Generated by [AVA](https://ava.li). propName: 'swipeGesture', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6556,6 +7026,7 @@ Generated by [AVA](https://ava.li). propName: 'toggle', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -6594,18 +7065,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'autoHide', @@ -6620,6 +7094,7 @@ Generated by [AVA](https://ava.li). propName: 'autoHide', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'menu', @@ -6634,6 +7109,7 @@ Generated by [AVA](https://ava.li). propName: 'menu', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -6672,42 +7148,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonModalDidDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonModalDidPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonModalWillDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonModalWillPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -6722,6 +7205,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'backdropDismiss', @@ -6736,6 +7220,7 @@ Generated by [AVA](https://ava.li). propName: 'backdropDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'component', @@ -6750,6 +7235,7 @@ Generated by [AVA](https://ava.li). propName: 'component', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'componentProps', @@ -6764,6 +7250,7 @@ Generated by [AVA](https://ava.li). propName: 'componentProps', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cssClass', @@ -6778,6 +7265,7 @@ Generated by [AVA](https://ava.li). propName: 'cssClass', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6787,6 +7275,7 @@ Generated by [AVA](https://ava.li). propName: 'delegate', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6800,6 +7289,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'enterAnimation', @@ -6814,6 +7304,7 @@ Generated by [AVA](https://ava.li). propName: 'enterAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'keyboardClose', @@ -6828,6 +7319,7 @@ Generated by [AVA](https://ava.li). propName: 'keyboardClose', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'leaveAnimation', @@ -6842,6 +7334,7 @@ Generated by [AVA](https://ava.li). propName: 'leaveAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -6856,6 +7349,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6869,6 +7363,7 @@ Generated by [AVA](https://ava.li). propName: 'onDidDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6882,6 +7377,7 @@ Generated by [AVA](https://ava.li). propName: 'onWillDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6891,6 +7387,7 @@ Generated by [AVA](https://ava.li). propName: 'overlayIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6904,6 +7401,7 @@ Generated by [AVA](https://ava.li). propName: 'present', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'showBackdrop', @@ -6918,6 +7416,7 @@ Generated by [AVA](https://ava.li). propName: 'showBackdrop', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -6956,18 +7455,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6981,6 +7483,7 @@ Generated by [AVA](https://ava.li). propName: 'create', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -6994,6 +7497,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7007,6 +7511,7 @@ Generated by [AVA](https://ava.li). propName: 'getTop', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -7045,30 +7550,35 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonNavDidChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonNavWillChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -7083,6 +7593,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'animation', @@ -7097,6 +7608,7 @@ Generated by [AVA](https://ava.li). propName: 'animation', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7110,6 +7622,7 @@ Generated by [AVA](https://ava.li). propName: 'canGoBack', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7119,6 +7632,7 @@ Generated by [AVA](https://ava.li). propName: 'delegate', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7132,6 +7646,7 @@ Generated by [AVA](https://ava.li). propName: 'getActive', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7145,6 +7660,7 @@ Generated by [AVA](https://ava.li). propName: 'getByIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7158,6 +7674,7 @@ Generated by [AVA](https://ava.li). propName: 'getPrevious', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7167,6 +7684,7 @@ Generated by [AVA](https://ava.li). propName: 'getRouteId', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7180,6 +7698,7 @@ Generated by [AVA](https://ava.li). propName: 'insert', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7193,6 +7712,7 @@ Generated by [AVA](https://ava.li). propName: 'insertPages', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7206,6 +7726,7 @@ Generated by [AVA](https://ava.li). propName: 'pop', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7219,6 +7740,7 @@ Generated by [AVA](https://ava.li). propName: 'popTo', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7232,6 +7754,7 @@ Generated by [AVA](https://ava.li). propName: 'popToRoot', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7245,6 +7768,7 @@ Generated by [AVA](https://ava.li). propName: 'push', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7258,6 +7782,7 @@ Generated by [AVA](https://ava.li). propName: 'removeIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'root', @@ -7272,6 +7797,7 @@ Generated by [AVA](https://ava.li). propName: 'root', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'rootParams', @@ -7286,6 +7812,7 @@ Generated by [AVA](https://ava.li). propName: 'rootParams', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7299,6 +7826,7 @@ Generated by [AVA](https://ava.li). propName: 'setPages', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7312,6 +7840,7 @@ Generated by [AVA](https://ava.li). propName: 'setRoot', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7321,6 +7850,7 @@ Generated by [AVA](https://ava.li). propName: 'setRouteId', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'swipeGesture', @@ -7335,6 +7865,7 @@ Generated by [AVA](https://ava.li). propName: 'swipeGesture', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -7373,18 +7904,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -7423,18 +7957,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'component', @@ -7449,6 +7986,7 @@ Generated by [AVA](https://ava.li). propName: 'component', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'componentProps', @@ -7463,6 +8001,7 @@ Generated by [AVA](https://ava.li). propName: 'componentProps', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -7501,18 +8040,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'component', @@ -7527,6 +8069,7 @@ Generated by [AVA](https://ava.li). propName: 'component', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'componentProps', @@ -7541,6 +8084,7 @@ Generated by [AVA](https://ava.li). propName: 'componentProps', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -7579,18 +8123,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -7605,6 +8152,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -7619,6 +8167,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -7657,42 +8206,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonPickerDidDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonPickerDidPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonPickerWillDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonPickerWillPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -7707,6 +8263,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'backdropDismiss', @@ -7721,6 +8278,7 @@ Generated by [AVA](https://ava.li). propName: 'backdropDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'buttons', @@ -7735,6 +8293,7 @@ Generated by [AVA](https://ava.li). propName: 'buttons', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'columns', @@ -7749,6 +8308,7 @@ Generated by [AVA](https://ava.li). propName: 'columns', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cssClass', @@ -7763,6 +8323,7 @@ Generated by [AVA](https://ava.li). propName: 'cssClass', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7776,6 +8337,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'duration', @@ -7790,6 +8352,7 @@ Generated by [AVA](https://ava.li). propName: 'duration', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'enterAnimation', @@ -7804,6 +8367,7 @@ Generated by [AVA](https://ava.li). propName: 'enterAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7817,6 +8381,7 @@ Generated by [AVA](https://ava.li). propName: 'getColumn', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'keyboardClose', @@ -7831,6 +8396,7 @@ Generated by [AVA](https://ava.li). propName: 'keyboardClose', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'leaveAnimation', @@ -7845,6 +8411,7 @@ Generated by [AVA](https://ava.li). propName: 'leaveAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -7859,6 +8426,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7872,6 +8440,7 @@ Generated by [AVA](https://ava.li). propName: 'onDidDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7885,6 +8454,7 @@ Generated by [AVA](https://ava.li). propName: 'onWillDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7894,6 +8464,7 @@ Generated by [AVA](https://ava.li). propName: 'overlayIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -7907,6 +8478,7 @@ Generated by [AVA](https://ava.li). propName: 'present', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'showBackdrop', @@ -7921,6 +8493,7 @@ Generated by [AVA](https://ava.li). propName: 'showBackdrop', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -7959,18 +8532,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'col', @@ -7985,6 +8561,7 @@ Generated by [AVA](https://ava.li). propName: 'col', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -8023,18 +8600,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8048,6 +8628,7 @@ Generated by [AVA](https://ava.li). propName: 'create', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8061,6 +8642,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8074,6 +8656,7 @@ Generated by [AVA](https://ava.li). propName: 'getTop', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -8112,42 +8695,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonPopoverDidDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonPopoverDidPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonPopoverWillDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonPopoverWillPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -8162,6 +8752,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'backdropDismiss', @@ -8176,6 +8767,7 @@ Generated by [AVA](https://ava.li). propName: 'backdropDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'component', @@ -8190,6 +8782,7 @@ Generated by [AVA](https://ava.li). propName: 'component', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'componentProps', @@ -8204,6 +8797,7 @@ Generated by [AVA](https://ava.li). propName: 'componentProps', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cssClass', @@ -8218,6 +8812,7 @@ Generated by [AVA](https://ava.li). propName: 'cssClass', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8227,6 +8822,7 @@ Generated by [AVA](https://ava.li). propName: 'delegate', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8240,6 +8836,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'enterAnimation', @@ -8254,6 +8851,7 @@ Generated by [AVA](https://ava.li). propName: 'enterAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'event', @@ -8268,6 +8866,7 @@ Generated by [AVA](https://ava.li). propName: 'event', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'keyboardClose', @@ -8282,6 +8881,7 @@ Generated by [AVA](https://ava.li). propName: 'keyboardClose', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'leaveAnimation', @@ -8296,6 +8896,7 @@ Generated by [AVA](https://ava.li). propName: 'leaveAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -8310,6 +8911,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8323,6 +8925,7 @@ Generated by [AVA](https://ava.li). propName: 'onDidDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8336,6 +8939,7 @@ Generated by [AVA](https://ava.li). propName: 'onWillDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8345,6 +8949,7 @@ Generated by [AVA](https://ava.li). propName: 'overlayIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8358,6 +8963,7 @@ Generated by [AVA](https://ava.li). propName: 'present', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'showBackdrop', @@ -8372,6 +8978,7 @@ Generated by [AVA](https://ava.li). propName: 'showBackdrop', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'translucent', @@ -8386,6 +8993,7 @@ Generated by [AVA](https://ava.li). propName: 'translucent', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -8424,18 +9032,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8449,6 +9060,7 @@ Generated by [AVA](https://ava.li). propName: 'create', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8462,6 +9074,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -8475,6 +9088,7 @@ Generated by [AVA](https://ava.li). propName: 'getTop', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -8513,18 +9127,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'buffer', @@ -8539,6 +9156,7 @@ Generated by [AVA](https://ava.li). propName: 'buffer', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -8553,6 +9171,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -8567,6 +9186,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'reversed', @@ -8581,6 +9201,7 @@ Generated by [AVA](https://ava.li). propName: 'reversed', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'type', @@ -8595,6 +9216,7 @@ Generated by [AVA](https://ava.li). propName: 'type', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -8609,6 +9231,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -8647,36 +9270,42 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSelect', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'checked', @@ -8691,6 +9320,7 @@ Generated by [AVA](https://ava.li). propName: 'checked', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -8705,6 +9335,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -8719,6 +9350,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -8733,6 +9365,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'name', @@ -8747,6 +9380,7 @@ Generated by [AVA](https://ava.li). propName: 'name', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -8761,6 +9395,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -8799,24 +9434,28 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'allowEmptySelection', @@ -8831,6 +9470,7 @@ Generated by [AVA](https://ava.li). propName: 'allowEmptySelection', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'name', @@ -8845,6 +9485,7 @@ Generated by [AVA](https://ava.li). propName: 'name', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -8859,6 +9500,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -8897,36 +9539,42 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -8941,6 +9589,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'debounce', @@ -8955,6 +9604,7 @@ Generated by [AVA](https://ava.li). propName: 'debounce', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -8969,6 +9619,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'dualKnobs', @@ -8983,6 +9634,7 @@ Generated by [AVA](https://ava.li). propName: 'dualKnobs', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'max', @@ -8997,6 +9649,7 @@ Generated by [AVA](https://ava.li). propName: 'max', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'min', @@ -9011,6 +9664,7 @@ Generated by [AVA](https://ava.li). propName: 'min', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -9025,6 +9679,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'name', @@ -9039,6 +9694,7 @@ Generated by [AVA](https://ava.li). propName: 'name', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pin', @@ -9053,6 +9709,7 @@ Generated by [AVA](https://ava.li). propName: 'pin', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'snaps', @@ -9067,6 +9724,7 @@ Generated by [AVA](https://ava.li). propName: 'snaps', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'step', @@ -9081,6 +9739,7 @@ Generated by [AVA](https://ava.li). propName: 'step', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'ticks', @@ -9095,6 +9754,7 @@ Generated by [AVA](https://ava.li). propName: 'ticks', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -9109,6 +9769,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -9147,36 +9808,42 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonPull', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonRefresh', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonStart', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -9190,6 +9857,7 @@ Generated by [AVA](https://ava.li). propName: 'cancel', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'closeDuration', @@ -9204,6 +9872,7 @@ Generated by [AVA](https://ava.li). propName: 'closeDuration', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -9217,6 +9886,7 @@ Generated by [AVA](https://ava.li). propName: 'complete', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -9231,6 +9901,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -9244,6 +9915,7 @@ Generated by [AVA](https://ava.li). propName: 'getProgress', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pullFactor', @@ -9258,6 +9930,7 @@ Generated by [AVA](https://ava.li). propName: 'pullFactor', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pullMax', @@ -9272,6 +9945,7 @@ Generated by [AVA](https://ava.li). propName: 'pullMax', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pullMin', @@ -9286,6 +9960,7 @@ Generated by [AVA](https://ava.li). propName: 'pullMin', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'snapbackDuration', @@ -9300,6 +9975,7 @@ Generated by [AVA](https://ava.li). propName: 'snapbackDuration', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -9338,18 +10014,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'pullingIcon', @@ -9364,6 +10043,7 @@ Generated by [AVA](https://ava.li). propName: 'pullingIcon', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pullingText', @@ -9378,6 +10058,7 @@ Generated by [AVA](https://ava.li). propName: 'pullingText', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'refreshingSpinner', @@ -9392,6 +10073,7 @@ Generated by [AVA](https://ava.li). propName: 'refreshingSpinner', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'refreshingText', @@ -9406,6 +10088,7 @@ Generated by [AVA](https://ava.li). propName: 'refreshingText', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -9444,18 +10127,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -9494,24 +10180,28 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonItemReorder', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -9525,6 +10215,7 @@ Generated by [AVA](https://ava.li). propName: 'complete', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -9539,6 +10230,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -9577,18 +10269,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -9602,6 +10297,7 @@ Generated by [AVA](https://ava.li). propName: 'addRipple', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'type', @@ -9616,6 +10312,7 @@ Generated by [AVA](https://ava.li). propName: 'type', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -9654,24 +10351,28 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonRouteDataChanged', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'component', @@ -9686,6 +10387,7 @@ Generated by [AVA](https://ava.li). propName: 'component', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'componentProps', @@ -9700,6 +10402,7 @@ Generated by [AVA](https://ava.li). propName: 'componentProps', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'url', @@ -9714,6 +10417,7 @@ Generated by [AVA](https://ava.li). propName: 'url', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -9752,24 +10456,28 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonRouteRedirectChanged', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'from', @@ -9784,6 +10492,7 @@ Generated by [AVA](https://ava.li). propName: 'from', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'to', @@ -9798,6 +10507,7 @@ Generated by [AVA](https://ava.li). propName: 'to', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -9836,30 +10546,35 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonRouteDidChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonRouteWillChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -9873,6 +10588,7 @@ Generated by [AVA](https://ava.li). propName: 'back', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -9882,6 +10598,7 @@ Generated by [AVA](https://ava.li). propName: 'navChanged', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -9891,6 +10608,7 @@ Generated by [AVA](https://ava.li). propName: 'printDebug', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -9904,6 +10622,7 @@ Generated by [AVA](https://ava.li). propName: 'push', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'root', @@ -9918,6 +10637,7 @@ Generated by [AVA](https://ava.li). propName: 'root', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'useHash', @@ -9932,6 +10652,7 @@ Generated by [AVA](https://ava.li). propName: 'useHash', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -9970,18 +10691,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -9996,6 +10720,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'animation', @@ -10010,6 +10735,7 @@ Generated by [AVA](https://ava.li). propName: 'animation', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -10019,6 +10745,7 @@ Generated by [AVA](https://ava.li). propName: 'commit', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -10028,6 +10755,7 @@ Generated by [AVA](https://ava.li). propName: 'delegate', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -10037,6 +10765,7 @@ Generated by [AVA](https://ava.li). propName: 'getRouteId', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -10046,6 +10775,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -10055,6 +10785,7 @@ Generated by [AVA](https://ava.li). propName: 'setRouteId', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -10064,6 +10795,7 @@ Generated by [AVA](https://ava.li). propName: 'swipeHandler', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -10102,18 +10834,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -10152,54 +10887,63 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonCancel', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonClear', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonInput', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -10214,6 +10958,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'autocomplete', @@ -10228,6 +10973,7 @@ Generated by [AVA](https://ava.li). propName: 'autocomplete', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'autocorrect', @@ -10242,6 +10988,7 @@ Generated by [AVA](https://ava.li). propName: 'autocorrect', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cancelButtonIcon', @@ -10256,6 +11003,7 @@ Generated by [AVA](https://ava.li). propName: 'cancelButtonIcon', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cancelButtonText', @@ -10270,6 +11018,7 @@ Generated by [AVA](https://ava.li). propName: 'cancelButtonText', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'clearIcon', @@ -10284,6 +11033,7 @@ Generated by [AVA](https://ava.li). propName: 'clearIcon', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -10298,6 +11048,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'debounce', @@ -10312,6 +11063,7 @@ Generated by [AVA](https://ava.li). propName: 'debounce', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -10326,6 +11078,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -10339,6 +11092,7 @@ Generated by [AVA](https://ava.li). propName: 'getInputElement', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -10353,6 +11107,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'placeholder', @@ -10367,6 +11122,7 @@ Generated by [AVA](https://ava.li). propName: 'placeholder', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'searchIcon', @@ -10381,6 +11137,7 @@ Generated by [AVA](https://ava.li). propName: 'searchIcon', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -10394,6 +11151,7 @@ Generated by [AVA](https://ava.li). propName: 'setFocus', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'showCancelButton', @@ -10408,6 +11166,7 @@ Generated by [AVA](https://ava.li). propName: 'showCancelButton', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'spellcheck', @@ -10422,6 +11181,7 @@ Generated by [AVA](https://ava.li). propName: 'spellcheck', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'type', @@ -10436,6 +11196,7 @@ Generated by [AVA](https://ava.li). propName: 'type', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -10450,6 +11211,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -10488,30 +11250,35 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonStyle', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -10526,6 +11293,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -10540,6 +11308,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -10554,6 +11323,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'scrollable', @@ -10568,6 +11338,7 @@ Generated by [AVA](https://ava.li). propName: 'scrollable', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -10582,6 +11353,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -10620,24 +11392,28 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSelect', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'checked', @@ -10652,6 +11428,7 @@ Generated by [AVA](https://ava.li). propName: 'checked', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -10666,6 +11443,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'layout', @@ -10680,6 +11458,7 @@ Generated by [AVA](https://ava.li). propName: 'layout', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -10694,6 +11473,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -10708,6 +11488,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -10746,42 +11527,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonCancel', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'cancelText', @@ -10796,6 +11584,7 @@ Generated by [AVA](https://ava.li). propName: 'cancelText', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'compareWith', @@ -10810,6 +11599,7 @@ Generated by [AVA](https://ava.li). propName: 'compareWith', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -10824,6 +11614,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'interface', @@ -10838,6 +11629,7 @@ Generated by [AVA](https://ava.li). propName: 'interface', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'interfaceOptions', @@ -10852,6 +11644,7 @@ Generated by [AVA](https://ava.li). propName: 'interfaceOptions', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -10866,6 +11659,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'multiple', @@ -10880,6 +11674,7 @@ Generated by [AVA](https://ava.li). propName: 'multiple', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'name', @@ -10894,6 +11689,7 @@ Generated by [AVA](https://ava.li). propName: 'name', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'okText', @@ -10908,6 +11704,7 @@ Generated by [AVA](https://ava.li). propName: 'okText', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -10921,6 +11718,7 @@ Generated by [AVA](https://ava.li). propName: 'open', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'placeholder', @@ -10935,6 +11733,7 @@ Generated by [AVA](https://ava.li). propName: 'placeholder', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'selectedText', @@ -10949,6 +11748,7 @@ Generated by [AVA](https://ava.li). propName: 'selectedText', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -10963,6 +11763,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -11001,18 +11802,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -11027,6 +11831,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'selected', @@ -11041,6 +11846,7 @@ Generated by [AVA](https://ava.li). propName: 'selected', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -11055,6 +11861,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -11093,18 +11900,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'header', @@ -11119,6 +11929,7 @@ Generated by [AVA](https://ava.li). propName: 'header', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'message', @@ -11133,6 +11944,7 @@ Generated by [AVA](https://ava.li). propName: 'message', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'options', @@ -11147,6 +11959,7 @@ Generated by [AVA](https://ava.li). propName: 'options', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'subHeader', @@ -11161,6 +11974,7 @@ Generated by [AVA](https://ava.li). propName: 'subHeader', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -11199,18 +12013,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -11225,6 +12042,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'width', @@ -11235,6 +12053,7 @@ Generated by [AVA](https://ava.li). propName: 'width', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -11273,18 +12092,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -11323,114 +12145,133 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideDidChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideDoubleTap', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideDrag', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideNextEnd', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideNextStart', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlidePrevEnd', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlidePrevStart', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideReachEnd', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideReachStart', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideTap', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideTouchEnd', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideTouchStart', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideTransitionEnd', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideTransitionStart', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlideWillChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSlidesDidLoad', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11444,6 +12285,7 @@ Generated by [AVA](https://ava.li). propName: 'getActiveIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11457,6 +12299,7 @@ Generated by [AVA](https://ava.li). propName: 'getPreviousIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11470,6 +12313,7 @@ Generated by [AVA](https://ava.li). propName: 'isBeginning', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11483,6 +12327,7 @@ Generated by [AVA](https://ava.li). propName: 'isEnd', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11496,6 +12341,7 @@ Generated by [AVA](https://ava.li). propName: 'length', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11509,6 +12355,7 @@ Generated by [AVA](https://ava.li). propName: 'lockSwipeToNext', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11522,6 +12369,7 @@ Generated by [AVA](https://ava.li). propName: 'lockSwipeToPrev', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11535,6 +12383,7 @@ Generated by [AVA](https://ava.li). propName: 'lockSwipes', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -11549,6 +12398,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'options', @@ -11563,6 +12413,7 @@ Generated by [AVA](https://ava.li). propName: 'options', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'pager', @@ -11577,6 +12428,7 @@ Generated by [AVA](https://ava.li). propName: 'pager', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'scrollbar', @@ -11591,6 +12443,7 @@ Generated by [AVA](https://ava.li). propName: 'scrollbar', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11604,6 +12457,7 @@ Generated by [AVA](https://ava.li). propName: 'slideNext', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11617,6 +12471,7 @@ Generated by [AVA](https://ava.li). propName: 'slidePrev', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11630,6 +12485,7 @@ Generated by [AVA](https://ava.li). propName: 'slideTo', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11643,6 +12499,7 @@ Generated by [AVA](https://ava.li). propName: 'startAutoplay', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11656,6 +12513,7 @@ Generated by [AVA](https://ava.li). propName: 'stopAutoplay', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11669,6 +12527,7 @@ Generated by [AVA](https://ava.li). propName: 'update', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11682,6 +12541,7 @@ Generated by [AVA](https://ava.li). propName: 'updateAutoHeight', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -11720,18 +12580,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -11746,6 +12609,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'duration', @@ -11760,6 +12624,7 @@ Generated by [AVA](https://ava.li). propName: 'duration', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'name', @@ -11774,6 +12639,7 @@ Generated by [AVA](https://ava.li). propName: 'name', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'paused', @@ -11788,6 +12654,7 @@ Generated by [AVA](https://ava.li). propName: 'paused', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -11826,24 +12693,28 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonSplitPaneVisible', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'contentId', @@ -11858,6 +12729,7 @@ Generated by [AVA](https://ava.li). propName: 'contentId', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -11872,6 +12744,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'when', @@ -11886,6 +12759,7 @@ Generated by [AVA](https://ava.li). propName: 'when', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -11924,18 +12798,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11945,6 +12822,7 @@ Generated by [AVA](https://ava.li). propName: 'active', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'component', @@ -11959,6 +12837,7 @@ Generated by [AVA](https://ava.li). propName: 'component', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11968,6 +12847,7 @@ Generated by [AVA](https://ava.li). propName: 'delegate', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -11981,6 +12861,7 @@ Generated by [AVA](https://ava.li). propName: 'setActive', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'tab', @@ -11995,6 +12876,7 @@ Generated by [AVA](https://ava.li). propName: 'tab', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -12033,18 +12915,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -12059,6 +12944,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -12073,6 +12959,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'selectedTab', @@ -12087,6 +12974,7 @@ Generated by [AVA](https://ava.li). propName: 'selectedTab', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'translucent', @@ -12101,6 +12989,7 @@ Generated by [AVA](https://ava.li). propName: 'translucent', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -12139,18 +13028,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -12165,6 +13057,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'href', @@ -12179,6 +13072,7 @@ Generated by [AVA](https://ava.li). propName: 'href', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'layout', @@ -12193,6 +13087,7 @@ Generated by [AVA](https://ava.li). propName: 'layout', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -12207,6 +13102,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'selected', @@ -12221,6 +13117,7 @@ Generated by [AVA](https://ava.li). propName: 'selected', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'tab', @@ -12235,6 +13132,7 @@ Generated by [AVA](https://ava.li). propName: 'tab', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -12273,30 +13171,35 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonTabsDidChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonTabsWillChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -12306,6 +13209,7 @@ Generated by [AVA](https://ava.li). propName: 'getRouteId', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -12319,6 +13223,7 @@ Generated by [AVA](https://ava.li). propName: 'getSelected', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -12332,6 +13237,7 @@ Generated by [AVA](https://ava.li). propName: 'getTab', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -12345,6 +13251,7 @@ Generated by [AVA](https://ava.li). propName: 'select', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -12354,6 +13261,7 @@ Generated by [AVA](https://ava.li). propName: 'setRouteId', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -12363,6 +13271,7 @@ Generated by [AVA](https://ava.li). propName: 'useRouter', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -12401,18 +13310,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -12427,6 +13339,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -12441,6 +13354,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -12479,42 +13393,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonInput', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'autoGrow', @@ -12529,6 +13450,7 @@ Generated by [AVA](https://ava.li). propName: 'autoGrow', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'autocapitalize', @@ -12543,6 +13465,7 @@ Generated by [AVA](https://ava.li). propName: 'autocapitalize', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'autofocus', @@ -12557,6 +13480,7 @@ Generated by [AVA](https://ava.li). propName: 'autofocus', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'clearOnEdit', @@ -12571,6 +13495,7 @@ Generated by [AVA](https://ava.li). propName: 'clearOnEdit', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -12585,6 +13510,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cols', @@ -12599,6 +13525,7 @@ Generated by [AVA](https://ava.li). propName: 'cols', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'debounce', @@ -12613,6 +13540,7 @@ Generated by [AVA](https://ava.li). propName: 'debounce', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -12627,6 +13555,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -12640,6 +13569,7 @@ Generated by [AVA](https://ava.li). propName: 'getInputElement', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'maxlength', @@ -12654,6 +13584,7 @@ Generated by [AVA](https://ava.li). propName: 'maxlength', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'minlength', @@ -12668,6 +13599,7 @@ Generated by [AVA](https://ava.li). propName: 'minlength', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -12682,6 +13614,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'name', @@ -12696,6 +13629,7 @@ Generated by [AVA](https://ava.li). propName: 'name', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'placeholder', @@ -12710,6 +13644,7 @@ Generated by [AVA](https://ava.li). propName: 'placeholder', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'readonly', @@ -12724,6 +13659,7 @@ Generated by [AVA](https://ava.li). propName: 'readonly', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'required', @@ -12738,6 +13674,7 @@ Generated by [AVA](https://ava.li). propName: 'required', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'rows', @@ -12752,6 +13689,7 @@ Generated by [AVA](https://ava.li). propName: 'rows', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -12765,6 +13703,7 @@ Generated by [AVA](https://ava.li). propName: 'setFocus', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'spellcheck', @@ -12779,6 +13718,7 @@ Generated by [AVA](https://ava.li). propName: 'spellcheck', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -12793,6 +13733,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'wrap', @@ -12807,6 +13748,7 @@ Generated by [AVA](https://ava.li). propName: 'wrap', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -12845,18 +13787,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -12895,18 +13840,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -12921,6 +13869,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -12959,42 +13908,49 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonToastDidDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonToastDidPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonToastWillDismiss', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonToastWillPresent', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'animated', @@ -13009,6 +13965,7 @@ Generated by [AVA](https://ava.li). propName: 'animated', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'buttons', @@ -13023,6 +13980,7 @@ Generated by [AVA](https://ava.li). propName: 'buttons', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'closeButtonText', @@ -13037,6 +13995,7 @@ Generated by [AVA](https://ava.li). propName: 'closeButtonText', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -13051,6 +14010,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cssClass', @@ -13065,6 +14025,7 @@ Generated by [AVA](https://ava.li). propName: 'cssClass', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13078,6 +14039,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'duration', @@ -13092,6 +14054,7 @@ Generated by [AVA](https://ava.li). propName: 'duration', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'enterAnimation', @@ -13106,6 +14069,7 @@ Generated by [AVA](https://ava.li). propName: 'enterAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'header', @@ -13120,6 +14084,7 @@ Generated by [AVA](https://ava.li). propName: 'header', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'keyboardClose', @@ -13134,6 +14099,7 @@ Generated by [AVA](https://ava.li). propName: 'keyboardClose', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'leaveAnimation', @@ -13148,6 +14114,7 @@ Generated by [AVA](https://ava.li). propName: 'leaveAnimation', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'message', @@ -13162,6 +14129,7 @@ Generated by [AVA](https://ava.li). propName: 'message', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -13176,6 +14144,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13189,6 +14158,7 @@ Generated by [AVA](https://ava.li). propName: 'onDidDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13202,6 +14172,7 @@ Generated by [AVA](https://ava.li). propName: 'onWillDismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13211,6 +14182,7 @@ Generated by [AVA](https://ava.li). propName: 'overlayIndex', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'position', @@ -13225,6 +14197,7 @@ Generated by [AVA](https://ava.li). propName: 'position', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13238,6 +14211,7 @@ Generated by [AVA](https://ava.li). propName: 'present', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'showCloseButton', @@ -13252,6 +14226,7 @@ Generated by [AVA](https://ava.li). propName: 'showCloseButton', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'translucent', @@ -13266,6 +14241,7 @@ Generated by [AVA](https://ava.li). propName: 'translucent', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -13304,18 +14280,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13329,6 +14308,7 @@ Generated by [AVA](https://ava.li). propName: 'create', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13342,6 +14322,7 @@ Generated by [AVA](https://ava.li). propName: 'dismiss', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13355,6 +14336,7 @@ Generated by [AVA](https://ava.li). propName: 'getTop', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -13393,36 +14375,42 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonBlur', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonChange', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'onIonFocus', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'checked', @@ -13437,6 +14425,7 @@ Generated by [AVA](https://ava.li). propName: 'checked', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -13451,6 +14440,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disabled', @@ -13465,6 +14455,7 @@ Generated by [AVA](https://ava.li). propName: 'disabled', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -13479,6 +14470,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'name', @@ -13493,6 +14485,7 @@ Generated by [AVA](https://ava.li). propName: 'name', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'value', @@ -13507,6 +14500,7 @@ Generated by [AVA](https://ava.li). propName: 'value', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -13545,18 +14539,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'color', @@ -13571,6 +14568,7 @@ Generated by [AVA](https://ava.li). propName: 'color', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'mode', @@ -13585,6 +14583,7 @@ Generated by [AVA](https://ava.li). propName: 'mode', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -13623,18 +14622,21 @@ Generated by [AVA](https://ava.li). kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'padding', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'margin', kind: 'attribute', node: '{NODE}', type: '{TYPE}', + visibility: 'public', }, { attrName: 'approxFooterHeight', @@ -13649,6 +14651,7 @@ Generated by [AVA](https://ava.li). propName: 'approxFooterHeight', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'approxHeaderHeight', @@ -13663,6 +14666,7 @@ Generated by [AVA](https://ava.li). propName: 'approxHeaderHeight', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'approxItemHeight', @@ -13677,6 +14681,7 @@ Generated by [AVA](https://ava.li). propName: 'approxItemHeight', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13690,6 +14695,7 @@ Generated by [AVA](https://ava.li). propName: 'checkEnd', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13703,6 +14709,7 @@ Generated by [AVA](https://ava.li). propName: 'checkRange', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13712,6 +14719,7 @@ Generated by [AVA](https://ava.li). propName: 'domRender', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'footerFn', @@ -13726,6 +14734,7 @@ Generated by [AVA](https://ava.li). propName: 'footerFn', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'headerFn', @@ -13740,6 +14749,7 @@ Generated by [AVA](https://ava.li). propName: 'headerFn', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'itemHeight', @@ -13754,6 +14764,7 @@ Generated by [AVA](https://ava.li). propName: 'itemHeight', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'items', @@ -13768,6 +14779,7 @@ Generated by [AVA](https://ava.li). propName: 'items', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'nodeRender', @@ -13782,6 +14794,7 @@ Generated by [AVA](https://ava.li). propName: 'nodeRender', required: false, type: '{TYPE}', + visibility: 'public', }, { default: undefined, @@ -13795,6 +14808,7 @@ Generated by [AVA](https://ava.li). propName: 'positionForItem', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'renderFooter', @@ -13809,6 +14823,7 @@ Generated by [AVA](https://ava.li). propName: 'renderFooter', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'renderHeader', @@ -13823,6 +14838,7 @@ Generated by [AVA](https://ava.li). propName: 'renderHeader', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'renderItem', @@ -13837,6 +14853,7 @@ Generated by [AVA](https://ava.li). propName: 'renderItem', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', diff --git a/test/snapshots/results/test/snapshots/stencil-ionic.ts.snap b/test/snapshots/results/test/snapshots/stencil-ionic.ts.snap index e920049b..2737211d 100644 Binary files a/test/snapshots/results/test/snapshots/stencil-ionic.ts.snap and b/test/snapshots/results/test/snapshots/stencil-ionic.ts.snap differ diff --git a/test/snapshots/results/test/snapshots/stencil-progress-ring.ts.md b/test/snapshots/results/test/snapshots/stencil-progress-ring.ts.md index 307adcd4..360dd9c2 100644 --- a/test/snapshots/results/test/snapshots/stencil-progress-ring.ts.md +++ b/test/snapshots/results/test/snapshots/stencil-progress-ring.ts.md @@ -39,6 +39,7 @@ Generated by [AVA](https://ava.li). propName: 'decimalSize', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'disableDigits', @@ -49,6 +50,7 @@ Generated by [AVA](https://ava.li). propName: 'disableDigits', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'duration', @@ -59,6 +61,7 @@ Generated by [AVA](https://ava.li). propName: 'duration', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'easingType', @@ -69,6 +72,7 @@ Generated by [AVA](https://ava.li). propName: 'easingType', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'intSize', @@ -83,6 +87,7 @@ Generated by [AVA](https://ava.li). propName: 'intSize', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'invertColors', @@ -97,6 +102,7 @@ Generated by [AVA](https://ava.li). propName: 'invertColors', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'percent', @@ -111,6 +117,7 @@ Generated by [AVA](https://ava.li). propName: 'percent', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'radius', @@ -125,6 +132,7 @@ Generated by [AVA](https://ava.li). propName: 'radius', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'strokeWidth', @@ -135,6 +143,7 @@ Generated by [AVA](https://ava.li). propName: 'strokeWidth', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', diff --git a/test/snapshots/results/test/snapshots/stencil-progress-ring.ts.snap b/test/snapshots/results/test/snapshots/stencil-progress-ring.ts.snap index f6a60eb6..6a52e67b 100644 Binary files a/test/snapshots/results/test/snapshots/stencil-progress-ring.ts.snap and b/test/snapshots/results/test/snapshots/stencil-progress-ring.ts.snap differ diff --git a/test/snapshots/results/test/snapshots/vanilla-masonry-layout.ts.md b/test/snapshots/results/test/snapshots/vanilla-masonry-layout.ts.md index 83ac3e52..e55ac8f8 100644 --- a/test/snapshots/results/test/snapshots/vanilla-masonry-layout.ts.md +++ b/test/snapshots/results/test/snapshots/vanilla-masonry-layout.ts.md @@ -76,6 +76,7 @@ Generated by [AVA](https://ava.li). propName: 'maxColWidth', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'collock', @@ -101,6 +102,7 @@ Generated by [AVA](https://ava.li). propName: 'colLock', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'gap', @@ -126,6 +128,7 @@ Generated by [AVA](https://ava.li). propName: 'gap', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cols', @@ -151,6 +154,7 @@ Generated by [AVA](https://ava.li). propName: 'cols', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'transition', @@ -176,6 +180,7 @@ Generated by [AVA](https://ava.li). propName: 'transition', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'debounce', @@ -201,6 +206,7 @@ Generated by [AVA](https://ava.li). propName: 'debounce', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', @@ -287,6 +293,7 @@ Generated by [AVA](https://ava.li). kind: 'NEVER', }, }, + visibility: 'public', }, { default: undefined, @@ -298,6 +305,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'UNDEFINED', }, + visibility: 'public', }, { default: false, @@ -309,6 +317,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'BOOLEAN', }, + visibility: 'public', }, { default: undefined, @@ -459,6 +468,7 @@ Generated by [AVA](https://ava.li). }, ], }, + visibility: 'public', }, { default: undefined, @@ -470,6 +480,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'ANY', }, + visibility: 'public', }, { default: undefined, @@ -481,6 +492,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'ANY', }, + visibility: 'public', }, { default: undefined, @@ -492,6 +504,7 @@ Generated by [AVA](https://ava.li). type: { kind: 'ANY', }, + visibility: 'public', }, { attrName: 'maxcolwidth', @@ -517,6 +530,7 @@ Generated by [AVA](https://ava.li). propName: 'maxColWidth', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'collock', @@ -542,6 +556,7 @@ Generated by [AVA](https://ava.li). propName: 'colLock', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'gap', @@ -567,6 +582,7 @@ Generated by [AVA](https://ava.li). propName: 'gap', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'cols', @@ -592,6 +608,7 @@ Generated by [AVA](https://ava.li). propName: 'cols', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'transition', @@ -616,6 +633,7 @@ Generated by [AVA](https://ava.li). propName: 'transition', required: false, type: '{TYPE}', + visibility: 'public', }, { attrName: 'debounce', @@ -641,6 +659,7 @@ Generated by [AVA](https://ava.li). propName: 'debounce', required: false, type: '{TYPE}', + visibility: 'public', }, ], node: '{NODE}', diff --git a/test/snapshots/results/test/snapshots/vanilla-masonry-layout.ts.snap b/test/snapshots/results/test/snapshots/vanilla-masonry-layout.ts.snap index 235dae7c..cd6cff50 100644 Binary files a/test/snapshots/results/test/snapshots/vanilla-masonry-layout.ts.snap and b/test/snapshots/results/test/snapshots/vanilla-masonry-layout.ts.snap differ