diff --git a/docs/typedocs/classes/AccordionComponent.html b/docs/typedocs/classes/AccordionComponent.html index 69af1338..31064d5c 100644 --- a/docs/typedocs/classes/AccordionComponent.html +++ b/docs/typedocs/classes/AccordionComponent.html @@ -1 +1 @@ -AccordionComponent | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • AccordionComponent

Implements

  • OnInit
  • OnChanges
  • OnDestroy

Index

Constructors

constructor

Properties

_bodyDblclkClose

_bodyDblclkClose: boolean = false

_isNumbered

_isNumbered: boolean = false

_itemStyle

_openedItems

_openedItems: string

accordionStyling

accordionStyling: IAccordionStyling = ...

closeSign

closeSign: string

listLogo

listLogo: string

openSign

openSign: string

Static idx

idx: number = 0

Accessors

accordionItems

  • get accordionItems(): AccordionItemInternal[]

accordionList

id

  • get id(): string

loadingTpl

  • get loadingTpl(): TemplateRef<Element>
  • set loadingTpl(val: TemplateRef<Element>): void

name

  • get name(): undefined | null | string

Methods

closeAll

  • closeAll(): void

ngOnChanges

  • ngOnChanges(changes: SimpleChanges): void

ngOnDestroy

  • ngOnDestroy(): void

ngOnInit

  • ngOnInit(): void

onItemToggled

  • onItemToggled(__namedParameters?: IToggler): void

trackByFn

  • trackByFn(_ind: number, __namedParameters: any): number

Generated using TypeDoc

\ No newline at end of file +AccordionComponent | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • AccordionComponent

Implements

  • OnInit
  • OnChanges
  • OnDestroy

Index

Constructors

constructor

Properties

_bodyDblclkClose

_bodyDblclkClose: boolean = false

_isNumbered

_isNumbered: boolean = false

_itemStyle

_openedItems

_openedItems: string

accordionStyling

accordionStyling: IAccordionStyling = ...

closeSign

closeSign: string

listLogo

listLogo: string

openSign

openSign: string

Static idx

idx: number = 0

Accessors

accordionItems

  • get accordionItems(): AccordionItemInternal[]

accordionList

id

  • get id(): string

loadingTpl

  • get loadingTpl(): TemplateRef<Element>
  • set loadingTpl(val: TemplateRef<Element>): void

name

  • get name(): undefined | null | string

Methods

closeAll

  • closeAll(): void

ngOnChanges

  • ngOnChanges(changes: SimpleChanges): void

ngOnDestroy

  • ngOnDestroy(): void

ngOnInit

  • ngOnInit(): void

onItemToggled

  • onItemToggled(__namedParameters?: IToggler): void

trackByFn

  • trackByFn(_ind: number, __namedParameters: any): number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/typedocs/interfaces/Accordion.html b/docs/typedocs/interfaces/Accordion.html index 9cf51799..4a4dfb7a 100644 --- a/docs/typedocs/interfaces/Accordion.html +++ b/docs/typedocs/interfaces/Accordion.html @@ -1,15 +1,15 @@ Accordion | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu
description

The default Data structure, which AccordionComponent accepts as an @Input property accordionList.

Data type accordion-component accepts as an {@link AccordionComponent#accordionList} Input

member

{Object} Accordion @extends AccordionItems

-

Hierarchy

Index

Properties

Properties

Optional id

id?: null | string | number
description

(Optional) Id property of accordion components. Would be set as dom element idattribute.

+

Hierarchy

Index

Properties

Properties

Optional id

id?: null | string | number
description

(Optional) Id property of accordion components. Would be set as dom element idattribute.

property

{string|number} id

Could be omitted (in the case id attribute would be set by AccordionComponent itself)

-

items

items: AccordionItem[]
description

Items defining Every AccordionItemsComponent shape

+

items

items: AccordionItem[]
description

Items defining Every AccordionItemsComponent shape

member

{Object[]} items single accordion item data AccordionItem

member

{number|string} items[].id id of an accordion item AccordionItem.id

member

{string} items[].title title of an accordion item AccordionItem.title

member

{string|Object} items[].body AccordionItem.body

-

Optional name

name?: null | string
description

(Optional) Name property of accordion components. Would be set as dom element name attribute.

+

Optional name

name?: null | string
description

(Optional) Name property of accordion components. Would be set as dom element name attribute.

property

{string} name

Could be omitted (in the case name attribute would be set by AccordionComponent itself)

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/typedocs/interfaces/AccordionItem.html b/docs/typedocs/interfaces/AccordionItem.html index a7b40cf2..2981871a 100644 --- a/docs/typedocs/interfaces/AccordionItem.html +++ b/docs/typedocs/interfaces/AccordionItem.html @@ -1,11 +1,11 @@ AccordionItem | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu
description

Properties of every Accordion items

member

{Object} AccordionItem

-

Hierarchy

  • AccordionItem

Index

Properties

Properties

body

body: string | ItemTemplateContext
description

body data of accordion item +

Hierarchy

  • AccordionItem

Index

Properties

Properties

body

body: string | ItemTemplateContext
description

body data of accordion item could be simple string (will be interpolated into body container of the corresponding AccordionItemComponent element), or: could be ItemTemplateContext

member

{Object} body complex object containing ItemTemplateContext.itemTemplate to provide custom accordion item body

member

{Object} body.itemTemplate the TemplateRef to be used as body of accordion item

member

{Object} body.itemBody string(/html) to be interpolated to ItemTemplateContext.itemBody

-

Optional id

id?: null | string | number
member

{number|string} id id of accordion item

-

title

title: string
member

{number|string} id title of accordion item

+

Optional id

id?: null | string | number
member

{number|string} id id of accordion item

+

title

title: string
member

{number|string} id title of accordion item

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/typedocs/interfaces/AccordionItems.html b/docs/typedocs/interfaces/AccordionItems.html index 45e3f0ac..2d31ba8d 100644 --- a/docs/typedocs/interfaces/AccordionItems.html +++ b/docs/typedocs/interfaces/AccordionItems.html @@ -1,5 +1,5 @@ AccordionItems | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu
description

Part of Accordion defining AccordionItemComponent's basic shape (id, title, body)

-

Hierarchy

Index

Properties

Properties

items

items: AccordionItem[]
description

Items defining Every AccordionItemsComponent shape

+

Hierarchy

Index

Properties

Properties

items

items: AccordionItem[]
description

Items defining Every AccordionItemsComponent shape

member

{Object[]} items single accordion item data AccordionItem

member

{number|string} items[].id id of an accordion item AccordionItem.id

member

{string} items[].title title of an accordion item AccordionItem.title

diff --git a/docs/typedocs/interfaces/IAccordionItemBodyStyling.html b/docs/typedocs/interfaces/IAccordionItemBodyStyling.html index 4c2fdf37..0904a18d 100644 --- a/docs/typedocs/interfaces/IAccordionItemBodyStyling.html +++ b/docs/typedocs/interfaces/IAccordionItemBodyStyling.html @@ -1,2 +1,2 @@ IAccordionItemBodyStyling | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IAccordionItemBodyStyling

description

stylings definitions for accordion item element's body

-

Hierarchy

  • IAccordionItemBodyStyling

Index

Properties

Optional bodyBgColor

bodyBgColor?: string

Optional bodyColor

bodyColor?: string

Optional bodyFont

bodyFont?: null | string

Optional bodyFontSize

bodyFontSize?: null | string

Optional bodyMargin

bodyMargin?: null | string | number

Optional bodyPadding

bodyPadding?: null | string | number

Optional bodyTextAlign

bodyTextAlign?: string

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Property
  • Static property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

  • IAccordionItemBodyStyling

Index

Properties

Optional bodyBgColor

bodyBgColor?: string

Optional bodyColor

bodyColor?: string

Optional bodyFont

bodyFont?: null | string

Optional bodyFontSize

bodyFontSize?: null | string

Optional bodyMargin

bodyMargin?: null | string | number

Optional bodyPadding

bodyPadding?: null | string | number

Optional bodyTextAlign

bodyTextAlign?: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/typedocs/interfaces/IAccordionItemHeadStyling.html b/docs/typedocs/interfaces/IAccordionItemHeadStyling.html index 36e3a9c0..cfadb2c6 100644 --- a/docs/typedocs/interfaces/IAccordionItemHeadStyling.html +++ b/docs/typedocs/interfaces/IAccordionItemHeadStyling.html @@ -1,2 +1,2 @@ IAccordionItemHeadStyling | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IAccordionItemHeadStyling

description

stylings definitions for accordion item element's header

-

Hierarchy

  • IAccordionItemHeadStyling

Index

Properties

Optional headBgColor

headBgColor?: string

Optional headColor

headColor?: string

Optional headFont

headFont?: null | string

Optional headFontSize

headFontSize?: null | string

Optional headHeight

headHeight?: null | string | number

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Properties

Optional headBgColor

headBgColor?: string

Optional headColor

headColor?: string

Optional headFont

headFont?: null | string

Optional headFontSize

headFontSize?: null | string

Optional headHeight

headHeight?: null | string | number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/typedocs/interfaces/IAccordionItemSpacingStyling.html b/docs/typedocs/interfaces/IAccordionItemSpacingStyling.html index 2d0ee6f6..92314756 100644 --- a/docs/typedocs/interfaces/IAccordionItemSpacingStyling.html +++ b/docs/typedocs/interfaces/IAccordionItemSpacingStyling.html @@ -1,2 +1,2 @@ IAccordionItemSpacingStyling | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IAccordionItemSpacingStyling

description

margins/paddings definitions for accordion item element

-

Hierarchy

  • IAccordionItemSpacingStyling

Index

Properties

Optional margin

margin?: null | string | number

Optional marginBottom

marginBottom?: null | string | number

Optional marginTop

marginTop?: null | string | number

Optional padding

padding?: null | string | number

Generated using TypeDoc

\ No newline at end of file +

Hierarchy

Index

Properties

Optional margin

margin?: null | string | number

Optional marginBottom

marginBottom?: null | string | number

Optional marginTop

marginTop?: null | string | number

Optional padding

padding?: null | string | number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/typedocs/interfaces/IAccordionStyling.html b/docs/typedocs/interfaces/IAccordionStyling.html index ef511c88..d3fd19cf 100644 --- a/docs/typedocs/interfaces/IAccordionStyling.html +++ b/docs/typedocs/interfaces/IAccordionStyling.html @@ -1,17 +1,17 @@ IAccordionStyling | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu
description

Data type accordion component accepts as an {@link AccordionComponent#accordionStyling} Input

Comprises AccordionComponent styling, as well as {@link AccordionItemComponent} stylings

Stylings type accordion component accepts as an {@link AccordionComponent#accordionStyling} Input

-

Hierarchy

  • IAccordionStyling

Index

Properties

Optional bodyDblclkCloseItems

bodyDblclkCloseItems?: boolean
+

Hierarchy

  • IAccordionStyling

Index

Properties

Optional bodyDblclkCloseItems

bodyDblclkCloseItems?: boolean

defines whether every accordion item element could be collapsed on double-click inside (previously) opened items' body element

-

Optional isMultiShow

isMultiShow?: boolean
+

Optional isMultiShow

isMultiShow?: boolean

defines whether every accordion item element should be collapsed upon opening another item of the same accordion component

-

Optional itemStyling

member

{Object} itemStyling styles and settings for every accordion item element in a particular Accordion

-

Optional itemsGuts

itemsGuts?: null | string | number
+

Optional itemStyling

member

{Object} itemStyling styles and settings for every accordion item element in a particular Accordion

+

Optional itemsGuts

itemsGuts?: null | string | number

defines margins between accordion elements

-

Optional margin

margin?: string | number
+

Optional margin

margin?: string | number

defines margin styles within accordion elements

-

Optional maxWidth

maxWidth?: null | string | number
+

Optional maxWidth

maxWidth?: null | string | number

max-width css style for accordion element

-

Optional numberedItems

numberedItems?: boolean
+

Optional numberedItems

numberedItems?: boolean

defines whether every accordion item element for particular accordion component should be numbered (have numbers in header element)

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/typedocs/interfaces/ItemTemplateContext.html b/docs/typedocs/interfaces/ItemTemplateContext.html index b5a86424..d8e0ce6d 100644 --- a/docs/typedocs/interfaces/ItemTemplateContext.html +++ b/docs/typedocs/interfaces/ItemTemplateContext.html @@ -1 +1 @@ -ItemTemplateContext | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ItemTemplateContext

Index

Properties

Optional itemBody

itemBody?: string | object

itemTemplate

itemTemplate: TemplateRef<Element | HTMLElement>

Generated using TypeDoc

\ No newline at end of file +ItemTemplateContext | @ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ItemTemplateContext

Index

Properties

Optional itemBody

itemBody?: string | object

itemTemplate

itemTemplate: TemplateRef<Element | HTMLElement>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/typedocs/modules.html b/docs/typedocs/modules.html index 7cbe2ce6..abae9719 100644 --- a/docs/typedocs/modules.html +++ b/docs/typedocs/modules.html @@ -1,3 +1,3 @@ -@ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu

@ngx-dummy/accordion-simple

Index

Type aliases

IAccordionItemStyling

IAccordionItemStyling: IAccordionItemFontStyling & IAccordionItemSpacingStyling & IAccordionItemBodyStyling & IAccordionItemHeadStyling
description

combined stylings for AccordionComponent children AccordionItemComponents elements;

+@ngx-dummy/accordion-simple
Options
All
  • Public
  • Public/Protected
  • All
Menu

@ngx-dummy/accordion-simple

Index

Type aliases

IAccordionItemStyling

IAccordionItemStyling: IAccordionItemFontStyling & IAccordionItemSpacingStyling & IAccordionItemBodyStyling & IAccordionItemHeadStyling
description

combined stylings for AccordionComponent children AccordionItemComponents elements;

comprises font-styles of every accordion item element, as well as spacing styles, and margins, paddings, colors and other styles for both items' header and body elements

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Property
  • Static property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file